@promptbook/templates 0.101.0-20 → 0.101.0-21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +139 -167
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +0 -24
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +0 -24
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +1 -1
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +2 -16
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +3 -0
- package/esm/typings/src/execution/PromptResult.d.ts +2 -4
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +2 -5
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +6 -2
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +3 -8
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -5
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +2 -5
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +2 -0
- package/esm/typings/src/llm-providers/mocked/test/joker.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/mocked/test/mocked-chat.test.d.ts +5 -0
- package/esm/typings/src/llm-providers/mocked/test/mocked-completion.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +3 -8
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -14
- package/esm/typings/src/scripting/_test/postprocessing.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +0 -1
- package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +2 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +139 -167
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +0 -16
- package/esm/typings/src/expectations/drafts/isDomainNameFree.d.ts +0 -10
- package/esm/typings/src/expectations/drafts/isGithubNameFree.d.ts +0 -10
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +0 -81
- /package/esm/typings/src/{llm-providers/_common/profiles/test/llmProviderProfiles.test.d.ts → cli/test/ptbk.test.d.ts} +0 -0
package/umd/index.umd.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* @generated
|
|
23
23
|
* @see https://github.com/webgptorg/promptbook
|
|
24
24
|
*/
|
|
25
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-21';
|
|
26
26
|
/**
|
|
27
27
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
28
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1568,45 +1568,35 @@
|
|
|
1568
1568
|
"modelsRequirements": [
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelVariant": "CHAT",
|
|
1571
|
-
"
|
|
1571
|
+
"models": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a senior Promptbook Project
|
|
1575
|
-
"temperature": 0.
|
|
1574
|
+
"systemMessage": "You are a senior developer of the Promptbook Project. Act as an implementation-focused assistant for prompt engineering, Promptbook DSL/templates, tooling integration, and LLM orchestration. Give precise, actionable answers with concise step-by-step guidance and correct code (TypeScript/Node and Python when relevant). Prefer deterministic outputs, state assumptions, and ask clarifying questions when requirements are ambiguous. Avoid speculation; if unsure, say you don't know.",
|
|
1575
|
+
"temperature": 0.2
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a friendly
|
|
1580
|
-
"temperature": 0.
|
|
1579
|
+
"systemMessage": "You are a friendly, knowledgeable Promptbook Project developer. Provide accurate, implementation-ready guidance on Promptbook usage, prompt design, integrations, and debugging. Keep replies concise and structured; include short code examples when helpful. Verify facts, avoid hallucinations, and ask for missing context.",
|
|
1580
|
+
"temperature": 0.3
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
"modelName": "o4-mini",
|
|
1584
|
-
"systemMessage": "You are a
|
|
1584
|
+
"systemMessage": "You are a fast reasoning assistant for a Promptbook developer. Solve problems step-by-step internally and present a concise, correct final answer with minimal verbosity. Focus on algorithmic planning, prompt evaluations, test harnesses, and edge cases. If information is missing, list the exact questions needed.",
|
|
1585
1585
|
"temperature": 0.2
|
|
1586
1586
|
},
|
|
1587
|
-
{
|
|
1588
|
-
"modelName": "gpt-4",
|
|
1589
|
-
"systemMessage": "You are an experienced Promptbook Project engineer and general-purpose virtual assistant. Deliver accurate, well-structured responses, minimize verbosity, and request clarification when needed. Do not provide chain-of-thought; give concise conclusions.",
|
|
1590
|
-
"temperature": 0.3
|
|
1591
|
-
},
|
|
1592
1587
|
{
|
|
1593
1588
|
"modelName": "o3",
|
|
1594
|
-
"systemMessage": "You are
|
|
1595
|
-
"temperature": 0.
|
|
1596
|
-
},
|
|
1597
|
-
{
|
|
1598
|
-
"modelName": "o1",
|
|
1599
|
-
"systemMessage": "You are a high-precision Promptbook developer assistant for analytical tasks. Produce deterministic, stepwise outputs with minimal verbosity. Ask targeted clarification questions and provide short rationale summaries without chain-of-thought.",
|
|
1600
|
-
"temperature": 0.2
|
|
1589
|
+
"systemMessage": "You are an advanced reasoning assistant for the Promptbook Project. Tackle complex design and debugging tasks (e.g., multi-agent orchestration, evaluation design, safety, and data pipelines). Think carefully and present a structured solution with clear assumptions and trade-offs. Do not expose internal chain-of-thought; provide only necessary reasoning summaries.",
|
|
1590
|
+
"temperature": 0.15
|
|
1601
1591
|
},
|
|
1602
1592
|
{
|
|
1603
|
-
"modelName": "
|
|
1604
|
-
"systemMessage": "You are
|
|
1605
|
-
"temperature": 0.
|
|
1593
|
+
"modelName": "gpt-4",
|
|
1594
|
+
"systemMessage": "You are an experienced Promptbook Project developer and helpful assistant. Provide practical, precise answers with correct code snippets and concise explanations. Ask clarifying questions when needed and avoid unsupported claims.",
|
|
1595
|
+
"temperature": 0.25
|
|
1606
1596
|
},
|
|
1607
1597
|
{
|
|
1608
1598
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1609
|
-
"systemMessage": "You are a
|
|
1599
|
+
"systemMessage": "You are a pragmatic Promptbook developer focused on cost-efficient support. Give concise, accurate answers and minimal examples. Confirm assumptions and request missing details before proceeding.",
|
|
1610
1600
|
"temperature": 0.2
|
|
1611
1601
|
}
|
|
1612
1602
|
]
|
|
@@ -1620,10 +1610,10 @@
|
|
|
1620
1610
|
"preparations": [
|
|
1621
1611
|
{
|
|
1622
1612
|
"id": 1,
|
|
1623
|
-
"promptbookVersion": "0.101.0-
|
|
1613
|
+
"promptbookVersion": "0.101.0-20",
|
|
1624
1614
|
"usage": {
|
|
1625
1615
|
"price": {
|
|
1626
|
-
"value": 0.
|
|
1616
|
+
"value": 0.03386375
|
|
1627
1617
|
},
|
|
1628
1618
|
"input": {
|
|
1629
1619
|
"tokensCount": {
|
|
@@ -1650,19 +1640,19 @@
|
|
|
1650
1640
|
},
|
|
1651
1641
|
"output": {
|
|
1652
1642
|
"tokensCount": {
|
|
1653
|
-
"value":
|
|
1643
|
+
"value": 2654
|
|
1654
1644
|
},
|
|
1655
1645
|
"charactersCount": {
|
|
1656
|
-
"value":
|
|
1646
|
+
"value": 2506
|
|
1657
1647
|
},
|
|
1658
1648
|
"wordsCount": {
|
|
1659
|
-
"value":
|
|
1649
|
+
"value": 322
|
|
1660
1650
|
},
|
|
1661
1651
|
"sentencesCount": {
|
|
1662
|
-
"value":
|
|
1652
|
+
"value": 34
|
|
1663
1653
|
},
|
|
1664
1654
|
"linesCount": {
|
|
1665
|
-
"value":
|
|
1655
|
+
"value": 65
|
|
1666
1656
|
},
|
|
1667
1657
|
"paragraphsCount": {
|
|
1668
1658
|
"value": 1
|
|
@@ -2148,45 +2138,35 @@
|
|
|
2148
2138
|
"modelsRequirements": [
|
|
2149
2139
|
{
|
|
2150
2140
|
"modelVariant": "CHAT",
|
|
2151
|
-
"
|
|
2141
|
+
"models": [
|
|
2152
2142
|
{
|
|
2153
2143
|
"modelName": "gpt-4.1",
|
|
2154
|
-
"systemMessage": "You are a senior Promptbook Project
|
|
2155
|
-
"temperature": 0.
|
|
2144
|
+
"systemMessage": "You are a senior developer of the Promptbook Project. Act as an implementation-focused assistant for prompt engineering, Promptbook DSL/templates, tooling integration, and LLM orchestration. Give precise, actionable answers with concise step-by-step guidance and correct code (TypeScript/Node and Python when relevant). Prefer deterministic outputs, state assumptions, and ask clarifying questions when requirements are ambiguous. Avoid speculation; if unsure, say you don't know.",
|
|
2145
|
+
"temperature": 0.2
|
|
2156
2146
|
},
|
|
2157
2147
|
{
|
|
2158
2148
|
"modelName": "chatgpt-4o-latest",
|
|
2159
|
-
"systemMessage": "You are a friendly
|
|
2160
|
-
"temperature": 0.
|
|
2149
|
+
"systemMessage": "You are a friendly, knowledgeable Promptbook Project developer. Provide accurate, implementation-ready guidance on Promptbook usage, prompt design, integrations, and debugging. Keep replies concise and structured; include short code examples when helpful. Verify facts, avoid hallucinations, and ask for missing context.",
|
|
2150
|
+
"temperature": 0.3
|
|
2161
2151
|
},
|
|
2162
2152
|
{
|
|
2163
2153
|
"modelName": "o4-mini",
|
|
2164
|
-
"systemMessage": "You are a
|
|
2154
|
+
"systemMessage": "You are a fast reasoning assistant for a Promptbook developer. Solve problems step-by-step internally and present a concise, correct final answer with minimal verbosity. Focus on algorithmic planning, prompt evaluations, test harnesses, and edge cases. If information is missing, list the exact questions needed.",
|
|
2165
2155
|
"temperature": 0.2
|
|
2166
2156
|
},
|
|
2167
|
-
{
|
|
2168
|
-
"modelName": "gpt-4",
|
|
2169
|
-
"systemMessage": "You are an experienced Promptbook Project engineer and general-purpose virtual assistant. Deliver accurate, well-structured responses, minimize verbosity, and request clarification when needed. Do not provide chain-of-thought; give concise conclusions.",
|
|
2170
|
-
"temperature": 0.3
|
|
2171
|
-
},
|
|
2172
2157
|
{
|
|
2173
2158
|
"modelName": "o3",
|
|
2174
|
-
"systemMessage": "You are
|
|
2175
|
-
"temperature": 0.
|
|
2176
|
-
},
|
|
2177
|
-
{
|
|
2178
|
-
"modelName": "o1",
|
|
2179
|
-
"systemMessage": "You are a high-precision Promptbook developer assistant for analytical tasks. Produce deterministic, stepwise outputs with minimal verbosity. Ask targeted clarification questions and provide short rationale summaries without chain-of-thought.",
|
|
2180
|
-
"temperature": 0.2
|
|
2159
|
+
"systemMessage": "You are an advanced reasoning assistant for the Promptbook Project. Tackle complex design and debugging tasks (e.g., multi-agent orchestration, evaluation design, safety, and data pipelines). Think carefully and present a structured solution with clear assumptions and trade-offs. Do not expose internal chain-of-thought; provide only necessary reasoning summaries.",
|
|
2160
|
+
"temperature": 0.15
|
|
2181
2161
|
},
|
|
2182
2162
|
{
|
|
2183
|
-
"modelName": "
|
|
2184
|
-
"systemMessage": "You are
|
|
2185
|
-
"temperature": 0.
|
|
2163
|
+
"modelName": "gpt-4",
|
|
2164
|
+
"systemMessage": "You are an experienced Promptbook Project developer and helpful assistant. Provide practical, precise answers with correct code snippets and concise explanations. Ask clarifying questions when needed and avoid unsupported claims.",
|
|
2165
|
+
"temperature": 0.25
|
|
2186
2166
|
},
|
|
2187
2167
|
{
|
|
2188
2168
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2189
|
-
"systemMessage": "You are a
|
|
2169
|
+
"systemMessage": "You are a pragmatic Promptbook developer focused on cost-efficient support. Give concise, accurate answers and minimal examples. Confirm assumptions and request missing details before proceeding.",
|
|
2190
2170
|
"temperature": 0.2
|
|
2191
2171
|
}
|
|
2192
2172
|
]
|
|
@@ -2200,10 +2180,10 @@
|
|
|
2200
2180
|
"preparations": [
|
|
2201
2181
|
{
|
|
2202
2182
|
"id": 1,
|
|
2203
|
-
"promptbookVersion": "0.101.0-
|
|
2183
|
+
"promptbookVersion": "0.101.0-20",
|
|
2204
2184
|
"usage": {
|
|
2205
2185
|
"price": {
|
|
2206
|
-
"value": 0.
|
|
2186
|
+
"value": 0.03386375
|
|
2207
2187
|
},
|
|
2208
2188
|
"input": {
|
|
2209
2189
|
"tokensCount": {
|
|
@@ -2230,19 +2210,19 @@
|
|
|
2230
2210
|
},
|
|
2231
2211
|
"output": {
|
|
2232
2212
|
"tokensCount": {
|
|
2233
|
-
"value":
|
|
2213
|
+
"value": 2654
|
|
2234
2214
|
},
|
|
2235
2215
|
"charactersCount": {
|
|
2236
|
-
"value":
|
|
2216
|
+
"value": 2506
|
|
2237
2217
|
},
|
|
2238
2218
|
"wordsCount": {
|
|
2239
|
-
"value":
|
|
2219
|
+
"value": 322
|
|
2240
2220
|
},
|
|
2241
2221
|
"sentencesCount": {
|
|
2242
|
-
"value":
|
|
2222
|
+
"value": 34
|
|
2243
2223
|
},
|
|
2244
2224
|
"linesCount": {
|
|
2245
|
-
"value":
|
|
2225
|
+
"value": 65
|
|
2246
2226
|
},
|
|
2247
2227
|
"paragraphsCount": {
|
|
2248
2228
|
"value": 1
|
|
@@ -2872,22 +2852,22 @@
|
|
|
2872
2852
|
"models": [
|
|
2873
2853
|
{
|
|
2874
2854
|
"modelName": "gpt-4.1",
|
|
2875
|
-
"systemMessage": "You are a professional linguist and
|
|
2855
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2876
2856
|
"temperature": 0.2
|
|
2877
2857
|
},
|
|
2878
|
-
{
|
|
2879
|
-
"modelName": "chatgpt-4o-latest",
|
|
2880
|
-
"systemMessage": "You are a professional linguist and precise text corrector. Your responsibilities: - Correct grammar, spelling, punctuation, agreement, and syntax while preserving the author’s meaning and voice. - Improve clarity, concision, tone, and flow according to the user’s requested dialect/variant (default: US English) and register. - Maintain factual content; do not introduce new information unless asked. - If instructions are ambiguous, ask one brief clarifying question before editing. - Default output: 1) the corrected text; 2) a short bullet list of key changes and rationale. If the user says “just fix,” return only the corrected text. - Support multilingual input and code-switching; do not translate unless requested. - Respect names, formatting, placeholders, and quoted material (edit within quotes only if asked). - Follow specified style guides (AP, Chicago, MLA, etc.) when provided; otherwise use a neutral, plain style.",
|
|
2881
|
-
"temperature": 0.25
|
|
2882
|
-
},
|
|
2883
2858
|
{
|
|
2884
2859
|
"modelName": "gpt-4",
|
|
2885
|
-
"systemMessage": "You are a professional linguist and
|
|
2860
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2886
2861
|
"temperature": 0.2
|
|
2887
2862
|
},
|
|
2863
|
+
{
|
|
2864
|
+
"modelName": "chatgpt-4o-latest",
|
|
2865
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2866
|
+
"temperature": 0.3
|
|
2867
|
+
},
|
|
2888
2868
|
{
|
|
2889
2869
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2890
|
-
"systemMessage": "You are a professional linguist and
|
|
2870
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2891
2871
|
"temperature": 0.2
|
|
2892
2872
|
}
|
|
2893
2873
|
]
|
|
@@ -2901,10 +2881,10 @@
|
|
|
2901
2881
|
"preparations": [
|
|
2902
2882
|
{
|
|
2903
2883
|
"id": 1,
|
|
2904
|
-
"promptbookVersion": "0.101.0-
|
|
2884
|
+
"promptbookVersion": "0.101.0-20",
|
|
2905
2885
|
"usage": {
|
|
2906
2886
|
"price": {
|
|
2907
|
-
"value": 0.
|
|
2887
|
+
"value": 0.030552500000000003
|
|
2908
2888
|
},
|
|
2909
2889
|
"input": {
|
|
2910
2890
|
"tokensCount": {
|
|
@@ -2931,19 +2911,19 @@
|
|
|
2931
2911
|
},
|
|
2932
2912
|
"output": {
|
|
2933
2913
|
"tokensCount": {
|
|
2934
|
-
"value":
|
|
2914
|
+
"value": 2323
|
|
2935
2915
|
},
|
|
2936
2916
|
"charactersCount": {
|
|
2937
|
-
"value":
|
|
2917
|
+
"value": 2202
|
|
2938
2918
|
},
|
|
2939
2919
|
"wordsCount": {
|
|
2940
|
-
"value":
|
|
2920
|
+
"value": 294
|
|
2941
2921
|
},
|
|
2942
2922
|
"sentencesCount": {
|
|
2943
|
-
"value":
|
|
2923
|
+
"value": 27
|
|
2944
2924
|
},
|
|
2945
2925
|
"linesCount": {
|
|
2946
|
-
"value":
|
|
2926
|
+
"value": 52
|
|
2947
2927
|
},
|
|
2948
2928
|
"paragraphsCount": {
|
|
2949
2929
|
"value": 1
|
|
@@ -3012,28 +2992,10 @@
|
|
|
3012
2992
|
"modelsRequirements": [
|
|
3013
2993
|
{
|
|
3014
2994
|
"modelVariant": "CHAT",
|
|
3015
|
-
"
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
"temperature": 0.7
|
|
3020
|
-
},
|
|
3021
|
-
{
|
|
3022
|
-
"modelName": "chatgpt-4o-latest",
|
|
3023
|
-
"systemMessage": "You are a fast, creative e-commerce copywriter and brainstorming partner. Produce multiple stylistic options (concise, persuasive, playful, luxury, technical) on request, plus alt versions for A/B tests. Maintain brand voice, integrate keywords naturally, and avoid unverifiable claims. Provide clear, skimmable output for product pages, ads, emails, and social captions.",
|
|
3024
|
-
"temperature": 0.75
|
|
3025
|
-
},
|
|
3026
|
-
{
|
|
3027
|
-
"modelName": "gpt-4",
|
|
3028
|
-
"systemMessage": "You are an experienced e-commerce copywriter focused on clarity and trust. Turn sparse specs into compelling copy, structure information for quick scanning, and suggest missing details to collect. Prioritize accuracy, policy compliance, and accessibility. Deliver title, bullets, description, and SEO meta as requested, keeping tone consistent with the brand.",
|
|
3029
|
-
"temperature": 0.6
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
3033
|
-
"systemMessage": "You are a cost-efficient e-commerce copywriter for bulk product listings. Generate consistent, SEO-friendly copy from semi-structured data, preserve brand tone, and keep outputs deterministic when temperature is low. Flag missing or risky claims and propose questions to fill gaps. Output should be easy to import into spreadsheets.",
|
|
3034
|
-
"temperature": 0.4
|
|
3035
|
-
}
|
|
3036
|
-
]
|
|
2995
|
+
"error": {
|
|
2996
|
+
"message": "Invalid request: The models 'gpt-4.1' and 'chatgpt-4o-latest' are not available or accessible in the current environment.",
|
|
2997
|
+
"code": "model_not_available"
|
|
2998
|
+
}
|
|
3037
2999
|
}
|
|
3038
3000
|
],
|
|
3039
3001
|
"preparationIds": [
|
|
@@ -3044,10 +3006,10 @@
|
|
|
3044
3006
|
"preparations": [
|
|
3045
3007
|
{
|
|
3046
3008
|
"id": 1,
|
|
3047
|
-
"promptbookVersion": "0.101.0-
|
|
3009
|
+
"promptbookVersion": "0.101.0-20",
|
|
3048
3010
|
"usage": {
|
|
3049
3011
|
"price": {
|
|
3050
|
-
"value": 0.
|
|
3012
|
+
"value": 0.029102500000000003
|
|
3051
3013
|
},
|
|
3052
3014
|
"input": {
|
|
3053
3015
|
"tokensCount": {
|
|
@@ -3074,25 +3036,25 @@
|
|
|
3074
3036
|
},
|
|
3075
3037
|
"output": {
|
|
3076
3038
|
"tokensCount": {
|
|
3077
|
-
"value":
|
|
3039
|
+
"value": 2178
|
|
3078
3040
|
},
|
|
3079
3041
|
"charactersCount": {
|
|
3080
|
-
"value":
|
|
3042
|
+
"value": 194
|
|
3081
3043
|
},
|
|
3082
3044
|
"wordsCount": {
|
|
3083
|
-
"value":
|
|
3045
|
+
"value": 26
|
|
3084
3046
|
},
|
|
3085
3047
|
"sentencesCount": {
|
|
3086
|
-
"value":
|
|
3048
|
+
"value": 3
|
|
3087
3049
|
},
|
|
3088
3050
|
"linesCount": {
|
|
3089
|
-
"value":
|
|
3051
|
+
"value": 8
|
|
3090
3052
|
},
|
|
3091
3053
|
"paragraphsCount": {
|
|
3092
3054
|
"value": 1
|
|
3093
3055
|
},
|
|
3094
3056
|
"pagesCount": {
|
|
3095
|
-
"value":
|
|
3057
|
+
"value": 1
|
|
3096
3058
|
}
|
|
3097
3059
|
}
|
|
3098
3060
|
}
|
|
@@ -3140,7 +3102,7 @@
|
|
|
3140
3102
|
"preparations": [
|
|
3141
3103
|
{
|
|
3142
3104
|
"id": 1,
|
|
3143
|
-
"promptbookVersion": "0.101.0-
|
|
3105
|
+
"promptbookVersion": "0.101.0-20",
|
|
3144
3106
|
"usage": {
|
|
3145
3107
|
"price": {
|
|
3146
3108
|
"value": 0
|
|
@@ -3249,28 +3211,33 @@
|
|
|
3249
3211
|
"models": [
|
|
3250
3212
|
{
|
|
3251
3213
|
"modelName": "gpt-4.1",
|
|
3252
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-
|
|
3253
|
-
"temperature": 0.
|
|
3214
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3215
|
+
"temperature": 0.4
|
|
3254
3216
|
},
|
|
3255
3217
|
{
|
|
3256
3218
|
"modelName": "chatgpt-4o-latest",
|
|
3257
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3258
3220
|
"temperature": 0.6
|
|
3259
3221
|
},
|
|
3260
3222
|
{
|
|
3261
3223
|
"modelName": "gpt-4",
|
|
3262
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3263
3225
|
"temperature": 0.5
|
|
3264
3226
|
},
|
|
3265
3227
|
{
|
|
3266
3228
|
"modelName": "o4-mini",
|
|
3267
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3268
|
-
"temperature": 0.
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3230
|
+
"temperature": 0.4
|
|
3269
3231
|
},
|
|
3270
3232
|
{
|
|
3271
3233
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3272
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3273
3235
|
"temperature": 0.6
|
|
3236
|
+
},
|
|
3237
|
+
{
|
|
3238
|
+
"modelName": "gpt-3.5-turbo",
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3240
|
+
"temperature": 0.5
|
|
3274
3241
|
}
|
|
3275
3242
|
]
|
|
3276
3243
|
}
|
|
@@ -3283,10 +3250,10 @@
|
|
|
3283
3250
|
"preparations": [
|
|
3284
3251
|
{
|
|
3285
3252
|
"id": 1,
|
|
3286
|
-
"promptbookVersion": "0.101.0-
|
|
3253
|
+
"promptbookVersion": "0.101.0-20",
|
|
3287
3254
|
"usage": {
|
|
3288
3255
|
"price": {
|
|
3289
|
-
"value": 0.
|
|
3256
|
+
"value": 0.0429225
|
|
3290
3257
|
},
|
|
3291
3258
|
"input": {
|
|
3292
3259
|
"tokensCount": {
|
|
@@ -3313,25 +3280,25 @@
|
|
|
3313
3280
|
},
|
|
3314
3281
|
"output": {
|
|
3315
3282
|
"tokensCount": {
|
|
3316
|
-
"value":
|
|
3283
|
+
"value": 3560
|
|
3317
3284
|
},
|
|
3318
3285
|
"charactersCount": {
|
|
3319
|
-
"value":
|
|
3286
|
+
"value": 5210
|
|
3320
3287
|
},
|
|
3321
3288
|
"wordsCount": {
|
|
3322
|
-
"value":
|
|
3289
|
+
"value": 692
|
|
3323
3290
|
},
|
|
3324
3291
|
"sentencesCount": {
|
|
3325
|
-
"value":
|
|
3292
|
+
"value": 88
|
|
3326
3293
|
},
|
|
3327
3294
|
"linesCount": {
|
|
3328
|
-
"value":
|
|
3295
|
+
"value": 106
|
|
3329
3296
|
},
|
|
3330
3297
|
"paragraphsCount": {
|
|
3331
3298
|
"value": 1
|
|
3332
3299
|
},
|
|
3333
3300
|
"pagesCount": {
|
|
3334
|
-
"value":
|
|
3301
|
+
"value": 3
|
|
3335
3302
|
}
|
|
3336
3303
|
}
|
|
3337
3304
|
}
|
|
@@ -3405,23 +3372,28 @@
|
|
|
3405
3372
|
"models": [
|
|
3406
3373
|
{
|
|
3407
3374
|
"modelName": "gpt-4.1",
|
|
3408
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3409
|
-
"temperature": 0.
|
|
3375
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3376
|
+
"temperature": 0.45
|
|
3410
3377
|
},
|
|
3411
3378
|
{
|
|
3412
3379
|
"modelName": "chatgpt-4o-latest",
|
|
3413
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3414
3381
|
"temperature": 0.6
|
|
3415
3382
|
},
|
|
3416
3383
|
{
|
|
3417
3384
|
"modelName": "gpt-4",
|
|
3418
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3419
3386
|
"temperature": 0.45
|
|
3420
3387
|
},
|
|
3421
3388
|
{
|
|
3422
3389
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3423
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3424
|
-
"temperature": 0.
|
|
3390
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3391
|
+
"temperature": 0.5
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"modelName": "gpt-3.5-turbo",
|
|
3395
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3396
|
+
"temperature": 0.5
|
|
3425
3397
|
}
|
|
3426
3398
|
]
|
|
3427
3399
|
}
|
|
@@ -3434,10 +3406,10 @@
|
|
|
3434
3406
|
"preparations": [
|
|
3435
3407
|
{
|
|
3436
3408
|
"id": 1,
|
|
3437
|
-
"promptbookVersion": "0.101.0-
|
|
3409
|
+
"promptbookVersion": "0.101.0-20",
|
|
3438
3410
|
"usage": {
|
|
3439
3411
|
"price": {
|
|
3440
|
-
"value": 0.
|
|
3412
|
+
"value": 0.039227500000000005
|
|
3441
3413
|
},
|
|
3442
3414
|
"input": {
|
|
3443
3415
|
"tokensCount": {
|
|
@@ -3464,25 +3436,25 @@
|
|
|
3464
3436
|
},
|
|
3465
3437
|
"output": {
|
|
3466
3438
|
"tokensCount": {
|
|
3467
|
-
"value":
|
|
3439
|
+
"value": 3190
|
|
3468
3440
|
},
|
|
3469
3441
|
"charactersCount": {
|
|
3470
|
-
"value":
|
|
3442
|
+
"value": 5471
|
|
3471
3443
|
},
|
|
3472
3444
|
"wordsCount": {
|
|
3473
|
-
"value":
|
|
3445
|
+
"value": 793
|
|
3474
3446
|
},
|
|
3475
3447
|
"sentencesCount": {
|
|
3476
|
-
"value":
|
|
3448
|
+
"value": 84
|
|
3477
3449
|
},
|
|
3478
3450
|
"linesCount": {
|
|
3479
|
-
"value":
|
|
3451
|
+
"value": 109
|
|
3480
3452
|
},
|
|
3481
3453
|
"paragraphsCount": {
|
|
3482
3454
|
"value": 1
|
|
3483
3455
|
},
|
|
3484
3456
|
"pagesCount": {
|
|
3485
|
-
"value":
|
|
3457
|
+
"value": 3
|
|
3486
3458
|
}
|
|
3487
3459
|
}
|
|
3488
3460
|
}
|
|
@@ -3730,26 +3702,26 @@
|
|
|
3730
3702
|
"modelsRequirements": [
|
|
3731
3703
|
{
|
|
3732
3704
|
"modelVariant": "CHAT",
|
|
3733
|
-
"
|
|
3734
|
-
{
|
|
3735
|
-
"modelName": "chatgpt-4o-latest",
|
|
3736
|
-
"systemMessage": "You are a linguist and Esperantist. Act as a friendly, precise virtual assistant specializing in multilingual translation and analysis, IPA transcription, grammatical parsing, etymology, and expert Esperanto usage/teaching. Detect the user’s language and reply in it; if the user writes in Esperanto, respond fully in Esperanto. Be concise, provide clear examples when helpful, and ask clarifying questions when ambiguity arises.",
|
|
3737
|
-
"temperature": 0.4
|
|
3738
|
-
},
|
|
3705
|
+
"models": [
|
|
3739
3706
|
{
|
|
3740
3707
|
"modelName": "gpt-4.1",
|
|
3741
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3708
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3742
3709
|
"temperature": 0.3
|
|
3743
3710
|
},
|
|
3711
|
+
{
|
|
3712
|
+
"modelName": "chatgpt-4o-latest",
|
|
3713
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3714
|
+
"temperature": 0.4
|
|
3715
|
+
},
|
|
3744
3716
|
{
|
|
3745
3717
|
"modelName": "gpt-4",
|
|
3746
|
-
"systemMessage": "You are a linguist and Esperantist. Provide accurate, concise
|
|
3747
|
-
"temperature": 0.
|
|
3718
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3719
|
+
"temperature": 0.3
|
|
3748
3720
|
},
|
|
3749
3721
|
{
|
|
3750
3722
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3751
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3752
|
-
"temperature": 0.
|
|
3723
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3724
|
+
"temperature": 0.4
|
|
3753
3725
|
}
|
|
3754
3726
|
]
|
|
3755
3727
|
}
|
|
@@ -3762,10 +3734,10 @@
|
|
|
3762
3734
|
"preparations": [
|
|
3763
3735
|
{
|
|
3764
3736
|
"id": 1,
|
|
3765
|
-
"promptbookVersion": "0.101.0-
|
|
3737
|
+
"promptbookVersion": "0.101.0-20",
|
|
3766
3738
|
"usage": {
|
|
3767
3739
|
"price": {
|
|
3768
|
-
"value": 0.
|
|
3740
|
+
"value": 0.024032500000000005
|
|
3769
3741
|
},
|
|
3770
3742
|
"input": {
|
|
3771
3743
|
"tokensCount": {
|
|
@@ -3792,19 +3764,19 @@
|
|
|
3792
3764
|
},
|
|
3793
3765
|
"output": {
|
|
3794
3766
|
"tokensCount": {
|
|
3795
|
-
"value":
|
|
3767
|
+
"value": 1671
|
|
3796
3768
|
},
|
|
3797
3769
|
"charactersCount": {
|
|
3798
|
-
"value":
|
|
3770
|
+
"value": 2038
|
|
3799
3771
|
},
|
|
3800
3772
|
"wordsCount": {
|
|
3801
|
-
"value":
|
|
3773
|
+
"value": 258
|
|
3802
3774
|
},
|
|
3803
3775
|
"sentencesCount": {
|
|
3804
|
-
"value":
|
|
3776
|
+
"value": 19
|
|
3805
3777
|
},
|
|
3806
3778
|
"linesCount": {
|
|
3807
|
-
"value":
|
|
3779
|
+
"value": 48
|
|
3808
3780
|
},
|
|
3809
3781
|
"paragraphsCount": {
|
|
3810
3782
|
"value": 1
|
|
@@ -3875,23 +3847,23 @@
|
|
|
3875
3847
|
"models": [
|
|
3876
3848
|
{
|
|
3877
3849
|
"modelName": "gpt-4.1",
|
|
3878
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3879
|
-
"temperature": 0.
|
|
3850
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3851
|
+
"temperature": 0.78
|
|
3880
3852
|
},
|
|
3881
3853
|
{
|
|
3882
3854
|
"modelName": "chatgpt-4o-latest",
|
|
3883
|
-
"systemMessage": "You are an accomplished poet and storyteller with
|
|
3884
|
-
"temperature": 0.
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3856
|
+
"temperature": 0.85
|
|
3885
3857
|
},
|
|
3886
3858
|
{
|
|
3887
3859
|
"modelName": "gpt-4",
|
|
3888
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3889
|
-
"temperature": 0.
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3861
|
+
"temperature": 0.8
|
|
3890
3862
|
},
|
|
3891
3863
|
{
|
|
3892
3864
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3893
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3894
|
-
"temperature": 0.
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3866
|
+
"temperature": 0.9
|
|
3895
3867
|
}
|
|
3896
3868
|
]
|
|
3897
3869
|
}
|
|
@@ -3904,10 +3876,10 @@
|
|
|
3904
3876
|
"preparations": [
|
|
3905
3877
|
{
|
|
3906
3878
|
"id": 1,
|
|
3907
|
-
"promptbookVersion": "0.101.0-
|
|
3879
|
+
"promptbookVersion": "0.101.0-20",
|
|
3908
3880
|
"usage": {
|
|
3909
3881
|
"price": {
|
|
3910
|
-
"value": 0.
|
|
3882
|
+
"value": 0.025831250000000004
|
|
3911
3883
|
},
|
|
3912
3884
|
"input": {
|
|
3913
3885
|
"tokensCount": {
|
|
@@ -3934,19 +3906,19 @@
|
|
|
3934
3906
|
},
|
|
3935
3907
|
"output": {
|
|
3936
3908
|
"tokensCount": {
|
|
3937
|
-
"value":
|
|
3909
|
+
"value": 1851
|
|
3938
3910
|
},
|
|
3939
3911
|
"charactersCount": {
|
|
3940
|
-
"value":
|
|
3912
|
+
"value": 2736
|
|
3941
3913
|
},
|
|
3942
3914
|
"wordsCount": {
|
|
3943
|
-
"value":
|
|
3915
|
+
"value": 390
|
|
3944
3916
|
},
|
|
3945
3917
|
"sentencesCount": {
|
|
3946
|
-
"value":
|
|
3918
|
+
"value": 43
|
|
3947
3919
|
},
|
|
3948
3920
|
"linesCount": {
|
|
3949
|
-
"value":
|
|
3921
|
+
"value": 60
|
|
3950
3922
|
},
|
|
3951
3923
|
"paragraphsCount": {
|
|
3952
3924
|
"value": 1
|