@promptbook/templates 0.101.0-1 → 0.101.0-10
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 +140 -165
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +14 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +6 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +41 -3
- package/esm/typings/src/book-2.0/agent-source/parseParameters.d.ts +13 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +59 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +47 -0
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/index.d.ts +7 -3
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +46 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/index.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +10 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +3 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +0 -5
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +28 -2
- package/esm/typings/src/book-components/Chat/Chat/constants.d.ts +8 -0
- package/esm/typings/src/book-components/icons/ArrowIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ResetIcon.d.ts +6 -0
- package/esm/typings/src/book-components/icons/SendIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/TemplateIcon.d.ts +8 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +140 -165
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -14,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
14
14
|
* @generated
|
|
15
15
|
* @see https://github.com/webgptorg/promptbook
|
|
16
16
|
*/
|
|
17
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-10';
|
|
18
18
|
/**
|
|
19
19
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
20
20
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1561,40 +1561,30 @@ function getTemplatesPipelineCollection() {
|
|
|
1561
1561
|
{
|
|
1562
1562
|
"modelVariant": "CHAT",
|
|
1563
1563
|
"models": [
|
|
1564
|
-
{
|
|
1565
|
-
"modelName": "chatgpt-4o-latest",
|
|
1566
|
-
"systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
|
|
1567
|
-
"temperature": 0.4
|
|
1568
|
-
},
|
|
1569
1564
|
{
|
|
1570
1565
|
"modelName": "gpt-4.1",
|
|
1571
|
-
"systemMessage": "You are
|
|
1572
|
-
"temperature": 0.
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
"modelName": "gpt-realtime",
|
|
1576
|
-
"systemMessage": "You are a low-latency conversational assistant for a Promptbook developer. Keep replies brief and natural, confirm understanding, and summarize next actions. Use short sentences suitable for TTS and live interaction. Be helpful but avoid unnecessary detail unless requested.",
|
|
1577
|
-
"temperature": 0.6
|
|
1566
|
+
"systemMessage": "You are a senior Promptbook Project developer and helpful assistant. Design and audit prompts, assistant flows, and tool/function schemas using Promptbook conventions (clear roles, typed variables, steps, and eval hooks). Be precise, concise, and implementation-focused. Prefer deterministic outputs with runnable code and tests. Ask targeted clarifying questions when requirements are ambiguous. Keep internal reasoning private; provide brief summaries of conclusions.",
|
|
1567
|
+
"temperature": 0.2
|
|
1578
1568
|
},
|
|
1579
1569
|
{
|
|
1580
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are a
|
|
1570
|
+
"modelName": "chatgpt-4o-latest",
|
|
1571
|
+
"systemMessage": "You are a Promptbook Project developer focused on building fast, reliable virtual assistants. Produce concise, actionable answers with code snippets and prompt templates. Follow Promptbook structure for roles, variables, and validation. Optimize for low latency and clarity. Keep internal reasoning private; provide short justifications only when needed.",
|
|
1582
1572
|
"temperature": 0.3
|
|
1583
1573
|
},
|
|
1584
1574
|
{
|
|
1585
1575
|
"modelName": "o4-mini",
|
|
1586
|
-
"systemMessage": "You are a
|
|
1576
|
+
"systemMessage": "You are a Promptbook developer specializing in cost-efficient reasoning for virtual assistants. Tackle nontrivial logic, planning, and data-wrangling tasks with high accuracy. Present compact plans and final outputs suitable for integration into Promptbook flows. Keep internal reasoning private; return only essential steps and results.",
|
|
1587
1577
|
"temperature": 0.2
|
|
1588
1578
|
},
|
|
1589
1579
|
{
|
|
1590
|
-
"modelName": "gpt-
|
|
1591
|
-
"systemMessage": "You are a
|
|
1592
|
-
"temperature": 0.
|
|
1580
|
+
"modelName": "gpt-4",
|
|
1581
|
+
"systemMessage": "You are a senior Promptbook developer and practical assistant. Provide reliable prompt designs, tool-calling schemas, and clean, tested code. Default to concise, deterministic outputs and ask for missing requirements early. Summarize reasoning briefly without exposing chain-of-thought.",
|
|
1582
|
+
"temperature": 0.2
|
|
1593
1583
|
},
|
|
1594
1584
|
{
|
|
1595
|
-
"modelName": "
|
|
1596
|
-
"systemMessage": "You are
|
|
1597
|
-
"temperature": 0.
|
|
1585
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1586
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Provide concise, implementation-ready answers, prompt templates, and minimal code examples. Ask brief clarifying questions when needed and avoid unnecessary verbosity or hidden reasoning.",
|
|
1587
|
+
"temperature": 0.3
|
|
1598
1588
|
}
|
|
1599
1589
|
]
|
|
1600
1590
|
}
|
|
@@ -1607,14 +1597,14 @@ function getTemplatesPipelineCollection() {
|
|
|
1607
1597
|
"preparations": [
|
|
1608
1598
|
{
|
|
1609
1599
|
"id": 1,
|
|
1610
|
-
"promptbookVersion": "0.101.0-
|
|
1600
|
+
"promptbookVersion": "0.101.0-9",
|
|
1611
1601
|
"usage": {
|
|
1612
1602
|
"price": {
|
|
1613
|
-
"value": 0.
|
|
1603
|
+
"value": 0.03444375
|
|
1614
1604
|
},
|
|
1615
1605
|
"input": {
|
|
1616
1606
|
"tokensCount": {
|
|
1617
|
-
"value":
|
|
1607
|
+
"value": 5859
|
|
1618
1608
|
},
|
|
1619
1609
|
"charactersCount": {
|
|
1620
1610
|
"value": 2377
|
|
@@ -1637,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1637
1627
|
},
|
|
1638
1628
|
"output": {
|
|
1639
1629
|
"tokensCount": {
|
|
1640
|
-
"value":
|
|
1630
|
+
"value": 2712
|
|
1641
1631
|
},
|
|
1642
1632
|
"charactersCount": {
|
|
1643
|
-
"value":
|
|
1633
|
+
"value": 2203
|
|
1644
1634
|
},
|
|
1645
1635
|
"wordsCount": {
|
|
1646
|
-
"value":
|
|
1636
|
+
"value": 277
|
|
1647
1637
|
},
|
|
1648
1638
|
"sentencesCount": {
|
|
1649
|
-
"value":
|
|
1639
|
+
"value": 30
|
|
1650
1640
|
},
|
|
1651
1641
|
"linesCount": {
|
|
1652
|
-
"value":
|
|
1642
|
+
"value": 55
|
|
1653
1643
|
},
|
|
1654
1644
|
"paragraphsCount": {
|
|
1655
1645
|
"value": 1
|
|
@@ -2136,40 +2126,30 @@ function getTemplatesPipelineCollection() {
|
|
|
2136
2126
|
{
|
|
2137
2127
|
"modelVariant": "CHAT",
|
|
2138
2128
|
"models": [
|
|
2139
|
-
{
|
|
2140
|
-
"modelName": "chatgpt-4o-latest",
|
|
2141
|
-
"systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
|
|
2142
|
-
"temperature": 0.4
|
|
2143
|
-
},
|
|
2144
2129
|
{
|
|
2145
2130
|
"modelName": "gpt-4.1",
|
|
2146
|
-
"systemMessage": "You are
|
|
2147
|
-
"temperature": 0.
|
|
2148
|
-
},
|
|
2149
|
-
{
|
|
2150
|
-
"modelName": "gpt-realtime",
|
|
2151
|
-
"systemMessage": "You are a low-latency conversational assistant for a Promptbook developer. Keep replies brief and natural, confirm understanding, and summarize next actions. Use short sentences suitable for TTS and live interaction. Be helpful but avoid unnecessary detail unless requested.",
|
|
2152
|
-
"temperature": 0.6
|
|
2131
|
+
"systemMessage": "You are a senior Promptbook Project developer and helpful assistant. Design and audit prompts, assistant flows, and tool/function schemas using Promptbook conventions (clear roles, typed variables, steps, and eval hooks). Be precise, concise, and implementation-focused. Prefer deterministic outputs with runnable code and tests. Ask targeted clarifying questions when requirements are ambiguous. Keep internal reasoning private; provide brief summaries of conclusions.",
|
|
2132
|
+
"temperature": 0.2
|
|
2153
2133
|
},
|
|
2154
2134
|
{
|
|
2155
|
-
"modelName": "
|
|
2156
|
-
"systemMessage": "You are a
|
|
2135
|
+
"modelName": "chatgpt-4o-latest",
|
|
2136
|
+
"systemMessage": "You are a Promptbook Project developer focused on building fast, reliable virtual assistants. Produce concise, actionable answers with code snippets and prompt templates. Follow Promptbook structure for roles, variables, and validation. Optimize for low latency and clarity. Keep internal reasoning private; provide short justifications only when needed.",
|
|
2157
2137
|
"temperature": 0.3
|
|
2158
2138
|
},
|
|
2159
2139
|
{
|
|
2160
2140
|
"modelName": "o4-mini",
|
|
2161
|
-
"systemMessage": "You are a
|
|
2141
|
+
"systemMessage": "You are a Promptbook developer specializing in cost-efficient reasoning for virtual assistants. Tackle nontrivial logic, planning, and data-wrangling tasks with high accuracy. Present compact plans and final outputs suitable for integration into Promptbook flows. Keep internal reasoning private; return only essential steps and results.",
|
|
2162
2142
|
"temperature": 0.2
|
|
2163
2143
|
},
|
|
2164
2144
|
{
|
|
2165
|
-
"modelName": "gpt-
|
|
2166
|
-
"systemMessage": "You are a
|
|
2167
|
-
"temperature": 0.
|
|
2145
|
+
"modelName": "gpt-4",
|
|
2146
|
+
"systemMessage": "You are a senior Promptbook developer and practical assistant. Provide reliable prompt designs, tool-calling schemas, and clean, tested code. Default to concise, deterministic outputs and ask for missing requirements early. Summarize reasoning briefly without exposing chain-of-thought.",
|
|
2147
|
+
"temperature": 0.2
|
|
2168
2148
|
},
|
|
2169
2149
|
{
|
|
2170
|
-
"modelName": "
|
|
2171
|
-
"systemMessage": "You are
|
|
2172
|
-
"temperature": 0.
|
|
2150
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2151
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Provide concise, implementation-ready answers, prompt templates, and minimal code examples. Ask brief clarifying questions when needed and avoid unnecessary verbosity or hidden reasoning.",
|
|
2152
|
+
"temperature": 0.3
|
|
2173
2153
|
}
|
|
2174
2154
|
]
|
|
2175
2155
|
}
|
|
@@ -2182,14 +2162,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2182
2162
|
"preparations": [
|
|
2183
2163
|
{
|
|
2184
2164
|
"id": 1,
|
|
2185
|
-
"promptbookVersion": "0.101.0-
|
|
2165
|
+
"promptbookVersion": "0.101.0-9",
|
|
2186
2166
|
"usage": {
|
|
2187
2167
|
"price": {
|
|
2188
|
-
"value": 0.
|
|
2168
|
+
"value": 0.03444375
|
|
2189
2169
|
},
|
|
2190
2170
|
"input": {
|
|
2191
2171
|
"tokensCount": {
|
|
2192
|
-
"value":
|
|
2172
|
+
"value": 5859
|
|
2193
2173
|
},
|
|
2194
2174
|
"charactersCount": {
|
|
2195
2175
|
"value": 2377
|
|
@@ -2212,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2212
2192
|
},
|
|
2213
2193
|
"output": {
|
|
2214
2194
|
"tokensCount": {
|
|
2215
|
-
"value":
|
|
2195
|
+
"value": 2712
|
|
2216
2196
|
},
|
|
2217
2197
|
"charactersCount": {
|
|
2218
|
-
"value":
|
|
2198
|
+
"value": 2203
|
|
2219
2199
|
},
|
|
2220
2200
|
"wordsCount": {
|
|
2221
|
-
"value":
|
|
2201
|
+
"value": 277
|
|
2222
2202
|
},
|
|
2223
2203
|
"sentencesCount": {
|
|
2224
|
-
"value":
|
|
2204
|
+
"value": 30
|
|
2225
2205
|
},
|
|
2226
2206
|
"linesCount": {
|
|
2227
|
-
"value":
|
|
2207
|
+
"value": 55
|
|
2228
2208
|
},
|
|
2229
2209
|
"paragraphsCount": {
|
|
2230
2210
|
"value": 1
|
|
@@ -2854,28 +2834,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2854
2834
|
"models": [
|
|
2855
2835
|
{
|
|
2856
2836
|
"modelName": "gpt-4.1",
|
|
2857
|
-
"systemMessage": "You are
|
|
2858
|
-
"temperature": 0.
|
|
2837
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your job is to: \n- Correct grammar, spelling, punctuation, syntax, and usage while preserving meaning and authorial voice.\n- Improve clarity and tone only when necessary; keep edits minimal and precise.\n- Provide two outputs: (1) Corrected text, (2) Brief change notes (bullet points, only for non-obvious edits).\n- Ask for target language, dialect, tone, and audience if ambiguous; default to American English.\n- Respect formatting, quotes, code blocks, math, and URLs—do not modify code or links.\n- If no corrections are needed, say \"No changes needed\" and optionally offer small style suggestions.",
|
|
2838
|
+
"temperature": 0.2
|
|
2859
2839
|
},
|
|
2860
2840
|
{
|
|
2861
2841
|
"modelName": "gpt-4",
|
|
2862
|
-
"systemMessage": "You are
|
|
2863
|
-
"temperature": 0.
|
|
2842
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Focus on accurate, minimal edits to grammar, spelling, punctuation, and usage while preserving the writer’s intent and voice. Provide: (1) Corrected text and (2) brief notes for non-obvious changes. Ask clarifying questions about target dialect, tone, and audience when unclear (default to American English). Do not alter code blocks, math, or URLs. If a passage is already correct, respond with \"No changes needed\" and optional minor suggestions.",
|
|
2843
|
+
"temperature": 0.2
|
|
2864
2844
|
},
|
|
2865
2845
|
{
|
|
2866
2846
|
"modelName": "chatgpt-4o-latest",
|
|
2867
|
-
"systemMessage": "You are
|
|
2868
|
-
"temperature": 0.
|
|
2847
|
+
"systemMessage": "You are a linguist and careful text corrector. Make precise, minimally invasive edits for correctness and clarity, keep the author’s voice, and provide corrected text plus brief notes for non-obvious changes. Ask for target language/dialect/tone if unclear (default American English). Do not modify code, math, or links. If already correct, say \"No changes needed\" and optionally suggest refinements.",
|
|
2848
|
+
"temperature": 0.25
|
|
2869
2849
|
},
|
|
2870
2850
|
{
|
|
2871
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2872
|
-
"systemMessage": "You are
|
|
2873
|
-
"temperature": 0.
|
|
2874
|
-
},
|
|
2875
|
-
{
|
|
2876
|
-
"modelName": "gpt-3.5-turbo",
|
|
2877
|
-
"systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
|
|
2878
|
-
"temperature": 0.2
|
|
2852
|
+
"systemMessage": "You are a linguist and text corrector. Perform minimal, accurate corrections to grammar, spelling, punctuation, and usage while preserving meaning and voice. Output corrected text and short notes for non-obvious changes. Clarify target dialect/tone when ambiguous; default to American English. Do not change code blocks, math, or URLs. If no edits are needed, say \"No changes needed\" and add optional minor suggestions.",
|
|
2853
|
+
"temperature": 0.1
|
|
2879
2854
|
}
|
|
2880
2855
|
]
|
|
2881
2856
|
}
|
|
@@ -2888,14 +2863,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2888
2863
|
"preparations": [
|
|
2889
2864
|
{
|
|
2890
2865
|
"id": 1,
|
|
2891
|
-
"promptbookVersion": "0.101.0-
|
|
2866
|
+
"promptbookVersion": "0.101.0-9",
|
|
2892
2867
|
"usage": {
|
|
2893
2868
|
"price": {
|
|
2894
|
-
"value": 0.
|
|
2869
|
+
"value": 0.0309725
|
|
2895
2870
|
},
|
|
2896
2871
|
"input": {
|
|
2897
2872
|
"tokensCount": {
|
|
2898
|
-
"value":
|
|
2873
|
+
"value": 5858
|
|
2899
2874
|
},
|
|
2900
2875
|
"charactersCount": {
|
|
2901
2876
|
"value": 2377
|
|
@@ -2918,25 +2893,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2918
2893
|
},
|
|
2919
2894
|
"output": {
|
|
2920
2895
|
"tokensCount": {
|
|
2921
|
-
"value":
|
|
2896
|
+
"value": 2365
|
|
2922
2897
|
},
|
|
2923
2898
|
"charactersCount": {
|
|
2924
|
-
"value":
|
|
2899
|
+
"value": 2425
|
|
2925
2900
|
},
|
|
2926
2901
|
"wordsCount": {
|
|
2927
|
-
"value":
|
|
2902
|
+
"value": 350
|
|
2928
2903
|
},
|
|
2929
2904
|
"sentencesCount": {
|
|
2930
|
-
"value":
|
|
2905
|
+
"value": 31
|
|
2931
2906
|
},
|
|
2932
2907
|
"linesCount": {
|
|
2933
|
-
"value":
|
|
2908
|
+
"value": 56
|
|
2934
2909
|
},
|
|
2935
2910
|
"paragraphsCount": {
|
|
2936
2911
|
"value": 1
|
|
2937
2912
|
},
|
|
2938
2913
|
"pagesCount": {
|
|
2939
|
-
"value":
|
|
2914
|
+
"value": 2
|
|
2940
2915
|
}
|
|
2941
2916
|
}
|
|
2942
2917
|
}
|
|
@@ -3002,23 +2977,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3002
2977
|
"models": [
|
|
3003
2978
|
{
|
|
3004
2979
|
"modelName": "gpt-4.1",
|
|
3005
|
-
"systemMessage": "You are a skilled e
|
|
3006
|
-
"temperature": 0.
|
|
2980
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
2981
|
+
"temperature": 0.7
|
|
3007
2982
|
},
|
|
3008
2983
|
{
|
|
3009
2984
|
"modelName": "chatgpt-4o-latest",
|
|
3010
|
-
"systemMessage": "You are a skilled e
|
|
3011
|
-
"temperature": 0.
|
|
2985
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
2986
|
+
"temperature": 0.75
|
|
3012
2987
|
},
|
|
3013
2988
|
{
|
|
3014
2989
|
"modelName": "gpt-4",
|
|
3015
|
-
"systemMessage": "You are a skilled e
|
|
3016
|
-
"temperature": 0.
|
|
2990
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
2991
|
+
"temperature": 0.7
|
|
3017
2992
|
},
|
|
3018
2993
|
{
|
|
3019
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3020
|
-
"systemMessage": "You are a skilled e
|
|
3021
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
2996
|
+
"temperature": 0.8
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
"modelName": "gpt-3.5-turbo",
|
|
3000
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
3001
|
+
"temperature": 0.85
|
|
3022
3002
|
}
|
|
3023
3003
|
]
|
|
3024
3004
|
}
|
|
@@ -3031,14 +3011,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3031
3011
|
"preparations": [
|
|
3032
3012
|
{
|
|
3033
3013
|
"id": 1,
|
|
3034
|
-
"promptbookVersion": "0.101.0-
|
|
3014
|
+
"promptbookVersion": "0.101.0-9",
|
|
3035
3015
|
"usage": {
|
|
3036
3016
|
"price": {
|
|
3037
|
-
"value": 0.
|
|
3017
|
+
"value": 0.040302500000000005
|
|
3038
3018
|
},
|
|
3039
3019
|
"input": {
|
|
3040
3020
|
"tokensCount": {
|
|
3041
|
-
"value":
|
|
3021
|
+
"value": 5858
|
|
3042
3022
|
},
|
|
3043
3023
|
"charactersCount": {
|
|
3044
3024
|
"value": 2377
|
|
@@ -3061,25 +3041,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3061
3041
|
},
|
|
3062
3042
|
"output": {
|
|
3063
3043
|
"tokensCount": {
|
|
3064
|
-
"value":
|
|
3044
|
+
"value": 3298
|
|
3065
3045
|
},
|
|
3066
3046
|
"charactersCount": {
|
|
3067
|
-
"value":
|
|
3047
|
+
"value": 5196
|
|
3068
3048
|
},
|
|
3069
3049
|
"wordsCount": {
|
|
3070
|
-
"value":
|
|
3050
|
+
"value": 763
|
|
3071
3051
|
},
|
|
3072
3052
|
"sentencesCount": {
|
|
3073
|
-
"value":
|
|
3053
|
+
"value": 54
|
|
3074
3054
|
},
|
|
3075
3055
|
"linesCount": {
|
|
3076
|
-
"value":
|
|
3056
|
+
"value": 104
|
|
3077
3057
|
},
|
|
3078
3058
|
"paragraphsCount": {
|
|
3079
3059
|
"value": 1
|
|
3080
3060
|
},
|
|
3081
3061
|
"pagesCount": {
|
|
3082
|
-
"value":
|
|
3062
|
+
"value": 3
|
|
3083
3063
|
}
|
|
3084
3064
|
}
|
|
3085
3065
|
}
|
|
@@ -3127,7 +3107,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3127
3107
|
"preparations": [
|
|
3128
3108
|
{
|
|
3129
3109
|
"id": 1,
|
|
3130
|
-
"promptbookVersion": "0.101.0-
|
|
3110
|
+
"promptbookVersion": "0.101.0-9",
|
|
3131
3111
|
"usage": {
|
|
3132
3112
|
"price": {
|
|
3133
3113
|
"value": 0
|
|
@@ -3236,22 +3216,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3236
3216
|
"models": [
|
|
3237
3217
|
{
|
|
3238
3218
|
"modelName": "gpt-4.1",
|
|
3239
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, and data-informed guidance. Use proven frameworks (STP, 4Ps/7Ps, AARRR, JTBD, SWOT, BCG), outline step-by-step plans with timelines, budgets, and KPIs, and propose lean experiments. Quantify assumptions, cite sources when possible, and flag uncertainties. Ask concise clarifying questions before giving recommendations if context is missing. Be professional, pragmatic, and concise.",
|
|
3240
3220
|
"temperature": 0.4
|
|
3241
3221
|
},
|
|
3242
3222
|
{
|
|
3243
3223
|
"modelName": "chatgpt-4o-latest",
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3245
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on creative ideation. Generate multiple high-quality options (positioning, messaging, campaign concepts, content calendars, growth experiments) with rationale and target metrics. Keep ideas practical for the stated budget and resources. Ask brief clarifying questions when needed. Tone: friendly, energetic, and commercially savvy.",
|
|
3225
|
+
"temperature": 0.7
|
|
3246
3226
|
},
|
|
3247
3227
|
{
|
|
3248
3228
|
"modelName": "gpt-4",
|
|
3249
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver structured, evidence-based advice with step-by-step plans, KPIs, and prioritized next actions. Use standard frameworks and quantify trade-offs. Be concise and professional; ask for missing info.",
|
|
3250
3230
|
"temperature": 0.4
|
|
3251
3231
|
},
|
|
3232
|
+
{
|
|
3233
|
+
"modelName": "o4-mini",
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant specializing in quantitative analysis. Build simple models for CAC/LTV, payback, funnel conversion, and forecasting. Show assumptions, formulas, and sensitivities; present results and recommendations clearly. If data is missing, ask for it or provide reasonable defaults.",
|
|
3235
|
+
"temperature": 0.2
|
|
3236
|
+
},
|
|
3252
3237
|
{
|
|
3253
3238
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3254
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, practical guidance using checklists, templates, and ready-to-use prompts. Ask a few clarifying questions if context is lacking and keep outputs cost-efficient and to the point.",
|
|
3255
3240
|
"temperature": 0.5
|
|
3256
3241
|
}
|
|
3257
3242
|
]
|
|
@@ -3265,14 +3250,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3265
3250
|
"preparations": [
|
|
3266
3251
|
{
|
|
3267
3252
|
"id": 1,
|
|
3268
|
-
"promptbookVersion": "0.101.0-
|
|
3253
|
+
"promptbookVersion": "0.101.0-9",
|
|
3269
3254
|
"usage": {
|
|
3270
3255
|
"price": {
|
|
3271
|
-
"value": 0.
|
|
3256
|
+
"value": 0.0321825
|
|
3272
3257
|
},
|
|
3273
3258
|
"input": {
|
|
3274
3259
|
"tokensCount": {
|
|
3275
|
-
"value":
|
|
3260
|
+
"value": 5858
|
|
3276
3261
|
},
|
|
3277
3262
|
"charactersCount": {
|
|
3278
3263
|
"value": 2377
|
|
@@ -3295,19 +3280,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3295
3280
|
},
|
|
3296
3281
|
"output": {
|
|
3297
3282
|
"tokensCount": {
|
|
3298
|
-
"value":
|
|
3283
|
+
"value": 2486
|
|
3299
3284
|
},
|
|
3300
3285
|
"charactersCount": {
|
|
3301
|
-
"value":
|
|
3286
|
+
"value": 2270
|
|
3302
3287
|
},
|
|
3303
3288
|
"wordsCount": {
|
|
3304
|
-
"value":
|
|
3289
|
+
"value": 291
|
|
3305
3290
|
},
|
|
3306
3291
|
"sentencesCount": {
|
|
3307
|
-
"value":
|
|
3292
|
+
"value": 30
|
|
3308
3293
|
},
|
|
3309
3294
|
"linesCount": {
|
|
3310
|
-
"value":
|
|
3295
|
+
"value": 55
|
|
3311
3296
|
},
|
|
3312
3297
|
"paragraphsCount": {
|
|
3313
3298
|
"value": 1
|
|
@@ -3387,28 +3372,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3387
3372
|
"models": [
|
|
3388
3373
|
{
|
|
3389
3374
|
"modelName": "gpt-4.1",
|
|
3390
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3375
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3391
3376
|
"temperature": 0.4
|
|
3392
3377
|
},
|
|
3393
3378
|
{
|
|
3394
3379
|
"modelName": "chatgpt-4o-latest",
|
|
3395
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3396
|
-
"temperature": 0.
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3381
|
+
"temperature": 0.6
|
|
3397
3382
|
},
|
|
3398
3383
|
{
|
|
3399
3384
|
"modelName": "gpt-4",
|
|
3400
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3401
3386
|
"temperature": 0.4
|
|
3402
3387
|
},
|
|
3403
|
-
{
|
|
3404
|
-
"modelName": "o4-mini",
|
|
3405
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: resolve customer issues quickly and accurately; write persuasive, on-brand product copy. Behaviors: be empathetic, concise, and proactive; ask for missing details; follow store policies exactly; never invent facts; suggest relevant cross-sells only when appropriate; adapt tone to the channel. For support requests, provide clear steps and summarize next actions. For copy requests, first ask about product, audience, channel, tone, and length if unknown; then deliver 1–3 polished options with strong CTAs and benefits. Use plain language and local spelling. Escalate when policy or data are unclear.",
|
|
3406
|
-
"temperature": 0.45
|
|
3407
|
-
},
|
|
3408
3388
|
{
|
|
3409
3389
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3410
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3411
|
-
"temperature": 0.
|
|
3390
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3391
|
+
"temperature": 0.3
|
|
3412
3392
|
}
|
|
3413
3393
|
]
|
|
3414
3394
|
}
|
|
@@ -3421,14 +3401,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3421
3401
|
"preparations": [
|
|
3422
3402
|
{
|
|
3423
3403
|
"id": 1,
|
|
3424
|
-
"promptbookVersion": "0.101.0-
|
|
3404
|
+
"promptbookVersion": "0.101.0-9",
|
|
3425
3405
|
"usage": {
|
|
3426
3406
|
"price": {
|
|
3427
|
-
"value": 0.
|
|
3407
|
+
"value": 0.0370375
|
|
3428
3408
|
},
|
|
3429
3409
|
"input": {
|
|
3430
3410
|
"tokensCount": {
|
|
3431
|
-
"value":
|
|
3411
|
+
"value": 5862
|
|
3432
3412
|
},
|
|
3433
3413
|
"charactersCount": {
|
|
3434
3414
|
"value": 2377
|
|
@@ -3451,16 +3431,16 @@ function getTemplatesPipelineCollection() {
|
|
|
3451
3431
|
},
|
|
3452
3432
|
"output": {
|
|
3453
3433
|
"tokensCount": {
|
|
3454
|
-
"value":
|
|
3434
|
+
"value": 2971
|
|
3455
3435
|
},
|
|
3456
3436
|
"charactersCount": {
|
|
3457
|
-
"value":
|
|
3437
|
+
"value": 4290
|
|
3458
3438
|
},
|
|
3459
3439
|
"wordsCount": {
|
|
3460
|
-
"value":
|
|
3440
|
+
"value": 598
|
|
3461
3441
|
},
|
|
3462
3442
|
"sentencesCount": {
|
|
3463
|
-
"value":
|
|
3443
|
+
"value": 51
|
|
3464
3444
|
},
|
|
3465
3445
|
"linesCount": {
|
|
3466
3446
|
"value": 84
|
|
@@ -3717,25 +3697,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3717
3697
|
"modelsRequirements": [
|
|
3718
3698
|
{
|
|
3719
3699
|
"modelVariant": "CHAT",
|
|
3720
|
-
"
|
|
3700
|
+
"": [
|
|
3721
3701
|
{
|
|
3722
3702
|
"modelName": "gpt-4.1",
|
|
3723
|
-
"systemMessage": "You are
|
|
3703
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3724
3704
|
"temperature": 0.4
|
|
3725
3705
|
},
|
|
3726
3706
|
{
|
|
3727
3707
|
"modelName": "chatgpt-4o-latest",
|
|
3728
|
-
"systemMessage": "You are
|
|
3729
|
-
"temperature": 0.
|
|
3708
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3709
|
+
"temperature": 0.5
|
|
3730
3710
|
},
|
|
3731
3711
|
{
|
|
3732
3712
|
"modelName": "gpt-4",
|
|
3733
|
-
"systemMessage": "You are
|
|
3734
|
-
"temperature": 0.
|
|
3713
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3714
|
+
"temperature": 0.35
|
|
3735
3715
|
},
|
|
3736
3716
|
{
|
|
3737
3717
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3738
|
-
"systemMessage": "You are
|
|
3718
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3739
3719
|
"temperature": 0.5
|
|
3740
3720
|
}
|
|
3741
3721
|
]
|
|
@@ -3749,14 +3729,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3749
3729
|
"preparations": [
|
|
3750
3730
|
{
|
|
3751
3731
|
"id": 1,
|
|
3752
|
-
"promptbookVersion": "0.101.0-
|
|
3732
|
+
"promptbookVersion": "0.101.0-9",
|
|
3753
3733
|
"usage": {
|
|
3754
3734
|
"price": {
|
|
3755
|
-
"value": 0.
|
|
3735
|
+
"value": 0.036862500000000006
|
|
3756
3736
|
},
|
|
3757
3737
|
"input": {
|
|
3758
3738
|
"tokensCount": {
|
|
3759
|
-
"value":
|
|
3739
|
+
"value": 5858
|
|
3760
3740
|
},
|
|
3761
3741
|
"charactersCount": {
|
|
3762
3742
|
"value": 2377
|
|
@@ -3779,19 +3759,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3779
3759
|
},
|
|
3780
3760
|
"output": {
|
|
3781
3761
|
"tokensCount": {
|
|
3782
|
-
"value":
|
|
3762
|
+
"value": 2954
|
|
3783
3763
|
},
|
|
3784
3764
|
"charactersCount": {
|
|
3785
|
-
"value":
|
|
3765
|
+
"value": 3069
|
|
3786
3766
|
},
|
|
3787
3767
|
"wordsCount": {
|
|
3788
|
-
"value":
|
|
3768
|
+
"value": 433
|
|
3789
3769
|
},
|
|
3790
3770
|
"sentencesCount": {
|
|
3791
|
-
"value":
|
|
3771
|
+
"value": 47
|
|
3792
3772
|
},
|
|
3793
3773
|
"linesCount": {
|
|
3794
|
-
"value":
|
|
3774
|
+
"value": 64
|
|
3795
3775
|
},
|
|
3796
3776
|
"paragraphsCount": {
|
|
3797
3777
|
"value": 1
|
|
@@ -3862,28 +3842,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3862
3842
|
"models": [
|
|
3863
3843
|
{
|
|
3864
3844
|
"modelName": "gpt-4.1",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3845
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical language, and emotional depth. Vary form and voice to suit the brief, maintain clarity and narrative momentum, and prefer concrete detail over abstraction. When asked for edits, preserve the author's intent while strengthening rhythm, diction, and structure.",
|
|
3866
3846
|
"temperature": 0.9
|
|
3867
3847
|
},
|
|
3868
3848
|
{
|
|
3869
3849
|
"modelName": "chatgpt-4o-latest",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3871
|
-
"temperature":
|
|
3850
|
+
"systemMessage": "You are an accomplished poet and storyteller—equally at ease with free verse, formal meters, microfiction, and epic narrative. Be imaginative yet precise; favor showing over telling, fresh metaphors, and strong cadence. Offer stylistic options when helpful and explain your choices briefly on request.",
|
|
3851
|
+
"temperature": 1
|
|
3872
3852
|
},
|
|
3873
3853
|
{
|
|
3874
3854
|
"modelName": "gpt-4",
|
|
3875
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft original, evocative writing with coherent arcs, sensory detail, and a distinctive voice. Honor constraints (form, meter, POV, length) and ask one clarifying question if requirements are ambiguous.",
|
|
3876
3856
|
"temperature": 0.85
|
|
3877
3857
|
},
|
|
3878
3858
|
{
|
|
3879
3859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3880
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3881
|
-
"temperature": 0.
|
|
3882
|
-
},
|
|
3883
|
-
{
|
|
3884
|
-
"modelName": "gpt-3.5-turbo-1106",
|
|
3885
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and narratives with strong imagery, rhythm, and voice. Adapt form and tone to the prompt (free verse, meter, rhyme, microfiction, myth, folktale, etc.). Favor concrete sensory detail, fresh metaphors, and precise diction; avoid clichés and filler. Maintain coherence and, when telling stories, clear character, setting, and arc. Ask one brief clarifying question if the brief is ambiguous. Provide one alternate take when useful.",
|
|
3886
|
-
"temperature": 0.7
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller focused on concise, engaging pieces. Keep language vivid but accessible, and when helpful provide two alternative styles or tones for comparison.",
|
|
3861
|
+
"temperature": 0.85
|
|
3887
3862
|
}
|
|
3888
3863
|
]
|
|
3889
3864
|
}
|
|
@@ -3896,14 +3871,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3896
3871
|
"preparations": [
|
|
3897
3872
|
{
|
|
3898
3873
|
"id": 1,
|
|
3899
|
-
"promptbookVersion": "0.101.0-
|
|
3874
|
+
"promptbookVersion": "0.101.0-9",
|
|
3900
3875
|
"usage": {
|
|
3901
3876
|
"price": {
|
|
3902
|
-
"value": 0.
|
|
3877
|
+
"value": 0.026181250000000003
|
|
3903
3878
|
},
|
|
3904
3879
|
"input": {
|
|
3905
3880
|
"tokensCount": {
|
|
3906
|
-
"value":
|
|
3881
|
+
"value": 5857
|
|
3907
3882
|
},
|
|
3908
3883
|
"charactersCount": {
|
|
3909
3884
|
"value": 2377
|
|
@@ -3926,25 +3901,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3926
3901
|
},
|
|
3927
3902
|
"output": {
|
|
3928
3903
|
"tokensCount": {
|
|
3929
|
-
"value":
|
|
3904
|
+
"value": 1886
|
|
3930
3905
|
},
|
|
3931
3906
|
"charactersCount": {
|
|
3932
|
-
"value":
|
|
3907
|
+
"value": 1497
|
|
3933
3908
|
},
|
|
3934
3909
|
"wordsCount": {
|
|
3935
|
-
"value":
|
|
3910
|
+
"value": 199
|
|
3936
3911
|
},
|
|
3937
3912
|
"sentencesCount": {
|
|
3938
|
-
"value":
|
|
3913
|
+
"value": 19
|
|
3939
3914
|
},
|
|
3940
3915
|
"linesCount": {
|
|
3941
|
-
"value":
|
|
3916
|
+
"value": 41
|
|
3942
3917
|
},
|
|
3943
3918
|
"paragraphsCount": {
|
|
3944
3919
|
"value": 1
|
|
3945
3920
|
},
|
|
3946
3921
|
"pagesCount": {
|
|
3947
|
-
"value":
|
|
3922
|
+
"value": 1
|
|
3948
3923
|
}
|
|
3949
3924
|
}
|
|
3950
3925
|
}
|