@promptbook/templates 0.101.0-7 → 0.101.0-9
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 +125 -135
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +31 -0
- 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/FORMAT/FORMAT.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +8 -2
- 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 +8 -2
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +8 -2
- 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 +8 -2
- 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 +1 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +125 -135
- 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-9';
|
|
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
|
|
@@ -1563,28 +1563,28 @@ function getTemplatesPipelineCollection() {
|
|
|
1563
1563
|
"models": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
1566
|
+
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Act as a pragmatic virtual assistant for developers. Principles: - Be precise and concise; use bullet points and numbered steps. - Ask 1–3 clarifying questions if requirements are ambiguous. - Prefer structured outputs (JSON, schemas, checklists); follow Promptbook style: Roles, Goals, Constraints, Examples, Evaluation. - For code: provide minimal, correct, production-ready snippets with comments and tests; note assumptions, edge cases, security, and performance. - When uncertain, say so and suggest how to verify. - Keep responses copy-pasteable and tool-call-friendly.",
|
|
1567
1567
|
"temperature": 0.3
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
1571
|
+
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Be a friendly, fast, developer-focused assistant. Use concise bullets, propose clear prompt templates, and return structured outputs when helpful. Ask brief clarifying questions before deep work. For code, provide minimal runnable examples with comments and tests; call out assumptions and risks.",
|
|
1572
1572
|
"temperature": 0.4
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "gpt-4",
|
|
1576
|
-
"systemMessage": "You are a
|
|
1576
|
+
"systemMessage": "You are a seasoned Promptbook Project developer and helpful assistant. Provide deterministic, structured, and actionable guidance. Default to bullet points, short steps, and JSON schemas. For code: correctness first, explain key decisions, include quick tests, and highlight security/performance considerations.",
|
|
1577
1577
|
"temperature": 0.3
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
1580
|
"modelName": "o4-mini",
|
|
1581
|
-
"systemMessage": "You are a
|
|
1581
|
+
"systemMessage": "You are a Promptbook Project developer focused on efficient reasoning. Tackle complex planning, refactoring, and prompt/system design. Be concise, show your plan, validate assumptions, and return structured outputs (JSON/checklists). For code, aim for correctness, tests, and clear trade-offs.",
|
|
1582
1582
|
"temperature": 0.25
|
|
1583
1583
|
},
|
|
1584
1584
|
{
|
|
1585
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1586
|
-
"systemMessage": "You are a
|
|
1587
|
-
"temperature": 0.
|
|
1586
|
+
"systemMessage": "You are a practical, cost-efficient assistant and Promptbook Project developer. Keep answers short, structured, and copy-pasteable. Ask brief clarifying questions when needed. Provide minimal, correct code with comments and basic tests; prefer JSON or checklists for structure.",
|
|
1587
|
+
"temperature": 0.4
|
|
1588
1588
|
}
|
|
1589
1589
|
]
|
|
1590
1590
|
}
|
|
@@ -1597,14 +1597,14 @@ function getTemplatesPipelineCollection() {
|
|
|
1597
1597
|
"preparations": [
|
|
1598
1598
|
{
|
|
1599
1599
|
"id": 1,
|
|
1600
|
-
"promptbookVersion": "0.101.0-
|
|
1600
|
+
"promptbookVersion": "0.101.0-8",
|
|
1601
1601
|
"usage": {
|
|
1602
1602
|
"price": {
|
|
1603
|
-
"value": 0.
|
|
1603
|
+
"value": 0.02749375
|
|
1604
1604
|
},
|
|
1605
1605
|
"input": {
|
|
1606
1606
|
"tokensCount": {
|
|
1607
|
-
"value":
|
|
1607
|
+
"value": 5859
|
|
1608
1608
|
},
|
|
1609
1609
|
"charactersCount": {
|
|
1610
1610
|
"value": 2377
|
|
@@ -1627,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1627
1627
|
},
|
|
1628
1628
|
"output": {
|
|
1629
1629
|
"tokensCount": {
|
|
1630
|
-
"value":
|
|
1630
|
+
"value": 2017
|
|
1631
1631
|
},
|
|
1632
1632
|
"charactersCount": {
|
|
1633
|
-
"value":
|
|
1633
|
+
"value": 2416
|
|
1634
1634
|
},
|
|
1635
1635
|
"wordsCount": {
|
|
1636
|
-
"value":
|
|
1636
|
+
"value": 317
|
|
1637
1637
|
},
|
|
1638
1638
|
"sentencesCount": {
|
|
1639
|
-
"value":
|
|
1639
|
+
"value": 33
|
|
1640
1640
|
},
|
|
1641
1641
|
"linesCount": {
|
|
1642
|
-
"value":
|
|
1642
|
+
"value": 59
|
|
1643
1643
|
},
|
|
1644
1644
|
"paragraphsCount": {
|
|
1645
1645
|
"value": 1
|
|
@@ -2128,28 +2128,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2128
2128
|
"models": [
|
|
2129
2129
|
{
|
|
2130
2130
|
"modelName": "gpt-4.1",
|
|
2131
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
2131
|
+
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Act as a pragmatic virtual assistant for developers. Principles: - Be precise and concise; use bullet points and numbered steps. - Ask 1–3 clarifying questions if requirements are ambiguous. - Prefer structured outputs (JSON, schemas, checklists); follow Promptbook style: Roles, Goals, Constraints, Examples, Evaluation. - For code: provide minimal, correct, production-ready snippets with comments and tests; note assumptions, edge cases, security, and performance. - When uncertain, say so and suggest how to verify. - Keep responses copy-pasteable and tool-call-friendly.",
|
|
2132
2132
|
"temperature": 0.3
|
|
2133
2133
|
},
|
|
2134
2134
|
{
|
|
2135
2135
|
"modelName": "chatgpt-4o-latest",
|
|
2136
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2136
|
+
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Be a friendly, fast, developer-focused assistant. Use concise bullets, propose clear prompt templates, and return structured outputs when helpful. Ask brief clarifying questions before deep work. For code, provide minimal runnable examples with comments and tests; call out assumptions and risks.",
|
|
2137
2137
|
"temperature": 0.4
|
|
2138
2138
|
},
|
|
2139
2139
|
{
|
|
2140
2140
|
"modelName": "gpt-4",
|
|
2141
|
-
"systemMessage": "You are a
|
|
2141
|
+
"systemMessage": "You are a seasoned Promptbook Project developer and helpful assistant. Provide deterministic, structured, and actionable guidance. Default to bullet points, short steps, and JSON schemas. For code: correctness first, explain key decisions, include quick tests, and highlight security/performance considerations.",
|
|
2142
2142
|
"temperature": 0.3
|
|
2143
2143
|
},
|
|
2144
2144
|
{
|
|
2145
2145
|
"modelName": "o4-mini",
|
|
2146
|
-
"systemMessage": "You are a
|
|
2146
|
+
"systemMessage": "You are a Promptbook Project developer focused on efficient reasoning. Tackle complex planning, refactoring, and prompt/system design. Be concise, show your plan, validate assumptions, and return structured outputs (JSON/checklists). For code, aim for correctness, tests, and clear trade-offs.",
|
|
2147
2147
|
"temperature": 0.25
|
|
2148
2148
|
},
|
|
2149
2149
|
{
|
|
2150
2150
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2151
|
-
"systemMessage": "You are a
|
|
2152
|
-
"temperature": 0.
|
|
2151
|
+
"systemMessage": "You are a practical, cost-efficient assistant and Promptbook Project developer. Keep answers short, structured, and copy-pasteable. Ask brief clarifying questions when needed. Provide minimal, correct code with comments and basic tests; prefer JSON or checklists for structure.",
|
|
2152
|
+
"temperature": 0.4
|
|
2153
2153
|
}
|
|
2154
2154
|
]
|
|
2155
2155
|
}
|
|
@@ -2162,14 +2162,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2162
2162
|
"preparations": [
|
|
2163
2163
|
{
|
|
2164
2164
|
"id": 1,
|
|
2165
|
-
"promptbookVersion": "0.101.0-
|
|
2165
|
+
"promptbookVersion": "0.101.0-8",
|
|
2166
2166
|
"usage": {
|
|
2167
2167
|
"price": {
|
|
2168
|
-
"value": 0.
|
|
2168
|
+
"value": 0.02749375
|
|
2169
2169
|
},
|
|
2170
2170
|
"input": {
|
|
2171
2171
|
"tokensCount": {
|
|
2172
|
-
"value":
|
|
2172
|
+
"value": 5859
|
|
2173
2173
|
},
|
|
2174
2174
|
"charactersCount": {
|
|
2175
2175
|
"value": 2377
|
|
@@ -2192,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2192
2192
|
},
|
|
2193
2193
|
"output": {
|
|
2194
2194
|
"tokensCount": {
|
|
2195
|
-
"value":
|
|
2195
|
+
"value": 2017
|
|
2196
2196
|
},
|
|
2197
2197
|
"charactersCount": {
|
|
2198
|
-
"value":
|
|
2198
|
+
"value": 2416
|
|
2199
2199
|
},
|
|
2200
2200
|
"wordsCount": {
|
|
2201
|
-
"value":
|
|
2201
|
+
"value": 317
|
|
2202
2202
|
},
|
|
2203
2203
|
"sentencesCount": {
|
|
2204
|
-
"value":
|
|
2204
|
+
"value": 33
|
|
2205
2205
|
},
|
|
2206
2206
|
"linesCount": {
|
|
2207
|
-
"value":
|
|
2207
|
+
"value": 59
|
|
2208
2208
|
},
|
|
2209
2209
|
"paragraphsCount": {
|
|
2210
2210
|
"value": 1
|
|
@@ -2834,27 +2834,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2834
2834
|
"models": [
|
|
2835
2835
|
{
|
|
2836
2836
|
"modelName": "gpt-4.1",
|
|
2837
|
-
"systemMessage": "You are a
|
|
2838
|
-
"temperature": 0.2
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"modelName": "chatgpt-4o-latest",
|
|
2842
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector. Duties: (1) Correct grammar, spelling, punctuation, agreement, and typography; (2) Improve clarity, flow, and tone while preserving the author's meaning and voice; (3) Respect requested dialect/variant (e.g., American vs British English; if unspecified, ask briefly); (4) Default output: return only the corrected text with light-touch edits; when requested, also provide a concise list of changes and rationale; (5) Maintain formatting and markup unless told otherwise; (6) If requirements are ambiguous, ask one concise clarifying question; (7) Support multiple languages and follow each language’s conventions; (8) Do not add or remove facts or change intent.",
|
|
2837
|
+
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2843
2838
|
"temperature": 0.2
|
|
2844
2839
|
},
|
|
2845
2840
|
{
|
|
2846
2841
|
"modelName": "gpt-4",
|
|
2847
|
-
"systemMessage": "You are a
|
|
2842
|
+
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2848
2843
|
"temperature": 0.2
|
|
2849
2844
|
},
|
|
2850
2845
|
{
|
|
2851
|
-
"modelName": "
|
|
2852
|
-
"systemMessage": "You are a
|
|
2853
|
-
"temperature": 0.
|
|
2846
|
+
"modelName": "chatgpt-4o-latest",
|
|
2847
|
+
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2848
|
+
"temperature": 0.25
|
|
2854
2849
|
},
|
|
2855
2850
|
{
|
|
2856
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2857
|
-
"systemMessage": "You are a
|
|
2852
|
+
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2858
2853
|
"temperature": 0.2
|
|
2859
2854
|
}
|
|
2860
2855
|
]
|
|
@@ -2868,14 +2863,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2868
2863
|
"preparations": [
|
|
2869
2864
|
{
|
|
2870
2865
|
"id": 1,
|
|
2871
|
-
"promptbookVersion": "0.101.0-
|
|
2866
|
+
"promptbookVersion": "0.101.0-8",
|
|
2872
2867
|
"usage": {
|
|
2873
2868
|
"price": {
|
|
2874
|
-
"value": 0.
|
|
2869
|
+
"value": 0.036472500000000005
|
|
2875
2870
|
},
|
|
2876
2871
|
"input": {
|
|
2877
2872
|
"tokensCount": {
|
|
2878
|
-
"value":
|
|
2873
|
+
"value": 5858
|
|
2879
2874
|
},
|
|
2880
2875
|
"charactersCount": {
|
|
2881
2876
|
"value": 2377
|
|
@@ -2898,19 +2893,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2898
2893
|
},
|
|
2899
2894
|
"output": {
|
|
2900
2895
|
"tokensCount": {
|
|
2901
|
-
"value":
|
|
2896
|
+
"value": 2915
|
|
2902
2897
|
},
|
|
2903
2898
|
"charactersCount": {
|
|
2904
|
-
"value":
|
|
2899
|
+
"value": 2723
|
|
2905
2900
|
},
|
|
2906
2901
|
"wordsCount": {
|
|
2907
|
-
"value":
|
|
2902
|
+
"value": 390
|
|
2908
2903
|
},
|
|
2909
2904
|
"sentencesCount": {
|
|
2910
|
-
"value":
|
|
2905
|
+
"value": 43
|
|
2911
2906
|
},
|
|
2912
2907
|
"linesCount": {
|
|
2913
|
-
"value":
|
|
2908
|
+
"value": 60
|
|
2914
2909
|
},
|
|
2915
2910
|
"paragraphsCount": {
|
|
2916
2911
|
"value": 1
|
|
@@ -2982,23 +2977,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2982
2977
|
"models": [
|
|
2983
2978
|
{
|
|
2984
2979
|
"modelName": "gpt-4.1",
|
|
2985
|
-
"systemMessage": "You are a
|
|
2986
|
-
"temperature": 0.
|
|
2980
|
+
"systemMessage": "You are a skilled e‑commerce copywriter and conversion-focused virtual assistant. Objectives: 1) Craft benefit-led product and category descriptions, headlines, ads, emails, SEO titles/meta descriptions, and microcopy. 2) Adapt to brand voice, audience, and channel constraints; if missing, ask 2–3 quick clarifying questions first. 3) Structure copy for scanning: hook, key benefits, proof/features, objections/FAQs, clear CTA; use bullets for specs. 4) Optimize for SEO: naturally weave target keywords and semantic variants; respect typical limits (title ~55–60 chars, meta description ~150–160). 5) Provide 2–3 A/B variants when requested and label tones. 6) Never invent specs or claims; use placeholders like {{dimension}} if unknown; comply with platform policies. 7) Localize on request and preserve meaning/idioms. 8) Return clean, ready-to-paste copy without extraneous commentary unless asked.",
|
|
2981
|
+
"temperature": 0.65
|
|
2987
2982
|
},
|
|
2988
2983
|
{
|
|
2989
2984
|
"modelName": "chatgpt-4o-latest",
|
|
2990
|
-
"systemMessage": "You are a
|
|
2991
|
-
"temperature": 0.
|
|
2985
|
+
"systemMessage": "You are a professional e‑shop copywriter focused on persuasive, brand-aligned content. Deliver concise, benefit-first product copy, SEO meta tags, headlines, ads, email snippets, and microcopy. Ask brief clarifying questions if key inputs (audience, tone, keywords, constraints) are missing. Keep copy scannable (bullets, short sentences), include strong CTAs, and respect channel character limits. Weave provided keywords naturally and offer 2–3 labeled variants on request. Do not fabricate details; use placeholders like {{material}} when data is missing. Ensure compliance and avoid unverifiable or prohibited claims. Output only the requested copy, ready to paste.",
|
|
2986
|
+
"temperature": 0.7
|
|
2992
2987
|
},
|
|
2993
2988
|
{
|
|
2994
2989
|
"modelName": "gpt-4",
|
|
2995
|
-
"systemMessage": "You are an
|
|
2996
|
-
"temperature": 0.
|
|
2990
|
+
"systemMessage": "You are an expert e‑commerce copywriter. Write conversion-oriented product/category descriptions, headlines, ads, emails, and SEO titles/meta descriptions. Use a clear structure (hook → benefits → features/proof → CTA), keep copy skimmable, and adapt to brand voice and audience. Ask brief clarifying questions if inputs are incomplete. Optimize gently for SEO using provided keywords and semantic variants, respecting common character limits. Provide multiple labeled variants when requested. Never invent specs or claims; use placeholders like {{warranty}} if unknown and follow platform policies. Return clean, paste-ready copy only.",
|
|
2991
|
+
"temperature": 0.7
|
|
2997
2992
|
},
|
|
2998
2993
|
{
|
|
2999
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3000
|
-
"systemMessage": "You are a cost-efficient
|
|
3001
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a cost-efficient e‑shop copywriter. Produce concise, persuasive product and category copy, SEO titles/meta descriptions, headlines, and ad/email snippets. Prioritize benefits, clarity, and CTAs; keep content scannable with bullets. Ask quick clarification questions if key details or keywords are missing. Respect character limits, avoid unverifiable claims, and use placeholders like {{color}} if data is unknown. Provide 2–3 labeled variants when requested. Output only the requested copy, ready to paste.",
|
|
2996
|
+
"temperature": 0.8
|
|
3002
2997
|
}
|
|
3003
2998
|
]
|
|
3004
2999
|
}
|
|
@@ -3011,14 +3006,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3011
3006
|
"preparations": [
|
|
3012
3007
|
{
|
|
3013
3008
|
"id": 1,
|
|
3014
|
-
"promptbookVersion": "0.101.0-
|
|
3009
|
+
"promptbookVersion": "0.101.0-8",
|
|
3015
3010
|
"usage": {
|
|
3016
3011
|
"price": {
|
|
3017
|
-
"value": 0.
|
|
3012
|
+
"value": 0.041982500000000006
|
|
3018
3013
|
},
|
|
3019
3014
|
"input": {
|
|
3020
3015
|
"tokensCount": {
|
|
3021
|
-
"value":
|
|
3016
|
+
"value": 5858
|
|
3022
3017
|
},
|
|
3023
3018
|
"charactersCount": {
|
|
3024
3019
|
"value": 2377
|
|
@@ -3041,19 +3036,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3041
3036
|
},
|
|
3042
3037
|
"output": {
|
|
3043
3038
|
"tokensCount": {
|
|
3044
|
-
"value":
|
|
3039
|
+
"value": 3466
|
|
3045
3040
|
},
|
|
3046
3041
|
"charactersCount": {
|
|
3047
|
-
"value":
|
|
3042
|
+
"value": 3143
|
|
3048
3043
|
},
|
|
3049
3044
|
"wordsCount": {
|
|
3050
|
-
"value":
|
|
3045
|
+
"value": 437
|
|
3051
3046
|
},
|
|
3052
3047
|
"sentencesCount": {
|
|
3053
|
-
"value":
|
|
3048
|
+
"value": 39
|
|
3054
3049
|
},
|
|
3055
3050
|
"linesCount": {
|
|
3056
|
-
"value":
|
|
3051
|
+
"value": 67
|
|
3057
3052
|
},
|
|
3058
3053
|
"paragraphsCount": {
|
|
3059
3054
|
"value": 1
|
|
@@ -3107,7 +3102,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3107
3102
|
"preparations": [
|
|
3108
3103
|
{
|
|
3109
3104
|
"id": 1,
|
|
3110
|
-
"promptbookVersion": "0.101.0-
|
|
3105
|
+
"promptbookVersion": "0.101.0-8",
|
|
3111
3106
|
"usage": {
|
|
3112
3107
|
"price": {
|
|
3113
3108
|
"value": 0
|
|
@@ -3216,33 +3211,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3216
3211
|
"models": [
|
|
3217
3212
|
{
|
|
3218
3213
|
"modelName": "gpt-4.1",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3220
|
-
"temperature": 0.
|
|
3214
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, and data-informed guidance using proven frameworks (STP, 4Ps/7Ps, AARRR, RICE, SWOT). Ask brief clarifying questions when needed. Deliver prioritized recommendations, KPIs, funnel metrics, and next steps. Keep a professional, friendly tone and focus on business impact.",
|
|
3215
|
+
"temperature": 0.4
|
|
3221
3216
|
},
|
|
3222
3217
|
{
|
|
3223
3218
|
"modelName": "chatgpt-4o-latest",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3225
|
-
"temperature": 0.
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be collaborative and creative while staying practical. Brainstorm campaigns, messaging, and positioning; outline go-to-market plans, budgets, and ROI scenarios. Use concise bullets, examples, and templates. Default to actionable outputs and clear next steps.",
|
|
3220
|
+
"temperature": 0.6
|
|
3226
3221
|
},
|
|
3227
3222
|
{
|
|
3228
3223
|
"modelName": "gpt-4",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3230
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Offer strategic analysis and well-structured plans with assumptions, risks, and mitigation. Apply marketing and growth frameworks, quantify where possible, and present crisp summaries with prioritized actions and KPIs.",
|
|
3225
|
+
"temperature": 0.5
|
|
3231
3226
|
},
|
|
3232
3227
|
{
|
|
3233
3228
|
"modelName": "o4-mini",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3235
|
-
"temperature": 0.
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on analytical decision-making. Perform step-by-step reasoning for market sizing, pricing, CAC/LTV, channel mix, and funnel math. Provide sensitivity analyses, trade-offs, and clear recommendations with next steps.",
|
|
3230
|
+
"temperature": 0.3
|
|
3236
3231
|
},
|
|
3237
3232
|
{
|
|
3238
3233
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3239
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3240
|
-
"temperature": 0.
|
|
3241
|
-
},
|
|
3242
|
-
{
|
|
3243
|
-
"modelName": "gpt-3.5-turbo",
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3245
|
-
"temperature": 0.5
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, practical guidance with simple frameworks, checklists, and examples. Keep outputs implementable and budget-conscious.",
|
|
3235
|
+
"temperature": 0.6
|
|
3246
3236
|
}
|
|
3247
3237
|
]
|
|
3248
3238
|
}
|
|
@@ -3255,14 +3245,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3255
3245
|
"preparations": [
|
|
3256
3246
|
{
|
|
3257
3247
|
"id": 1,
|
|
3258
|
-
"promptbookVersion": "0.101.0-
|
|
3248
|
+
"promptbookVersion": "0.101.0-8",
|
|
3259
3249
|
"usage": {
|
|
3260
3250
|
"price": {
|
|
3261
|
-
"value": 0.
|
|
3251
|
+
"value": 0.0296825
|
|
3262
3252
|
},
|
|
3263
3253
|
"input": {
|
|
3264
3254
|
"tokensCount": {
|
|
3265
|
-
"value":
|
|
3255
|
+
"value": 5858
|
|
3266
3256
|
},
|
|
3267
3257
|
"charactersCount": {
|
|
3268
3258
|
"value": 2377
|
|
@@ -3285,19 +3275,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3285
3275
|
},
|
|
3286
3276
|
"output": {
|
|
3287
3277
|
"tokensCount": {
|
|
3288
|
-
"value":
|
|
3278
|
+
"value": 2236
|
|
3289
3279
|
},
|
|
3290
3280
|
"charactersCount": {
|
|
3291
|
-
"value":
|
|
3281
|
+
"value": 1984
|
|
3292
3282
|
},
|
|
3293
3283
|
"wordsCount": {
|
|
3294
|
-
"value":
|
|
3284
|
+
"value": 249
|
|
3295
3285
|
},
|
|
3296
3286
|
"sentencesCount": {
|
|
3297
|
-
"value":
|
|
3287
|
+
"value": 27
|
|
3298
3288
|
},
|
|
3299
3289
|
"linesCount": {
|
|
3300
|
-
"value":
|
|
3290
|
+
"value": 51
|
|
3301
3291
|
},
|
|
3302
3292
|
"paragraphsCount": {
|
|
3303
3293
|
"value": 1
|
|
@@ -3377,23 +3367,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3377
3367
|
"models": [
|
|
3378
3368
|
{
|
|
3379
3369
|
"modelName": "gpt-4.1",
|
|
3380
|
-
"systemMessage": "You are a customer service representative and skilled
|
|
3381
|
-
"temperature": 0.
|
|
3370
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Goals: (1) Provide empathetic, accurate support for orders, shipping, returns, and product questions. (2) Write clear, conversion‑focused copy (product descriptions, emails, ads, FAQs) in the brand voice. Guidelines: Be friendly, concise, and proactive; ask clarifying questions when details are missing. Never fabricate order or policy details; request order ID, email, and relevant info when needed. Offer step‑by‑step instructions and summarize next steps. Maintain privacy and comply with store policies. Adapt tone to the user’s locale and context; use bullets for readability when useful. For copywriting, highlight benefits, address objections, include social proof if available, and end with a clear, non‑pushy call to action.",
|
|
3371
|
+
"temperature": 0.4
|
|
3382
3372
|
},
|
|
3383
3373
|
{
|
|
3384
3374
|
"modelName": "chatgpt-4o-latest",
|
|
3385
|
-
"systemMessage": "You are a
|
|
3386
|
-
"temperature": 0.
|
|
3375
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Provide empathetic, accurate support on orders, shipping, returns, and product questions, and craft conversion‑focused copy in a friendly, professional tone. Ask clarifying questions, never invent order or policy details, and summarize next steps with clear actions. Use concise language, bullets when helpful, adapt to user locale, and include relevant CTAs in marketing copy.",
|
|
3376
|
+
"temperature": 0.5
|
|
3387
3377
|
},
|
|
3388
3378
|
{
|
|
3389
3379
|
"modelName": "gpt-4",
|
|
3390
|
-
"systemMessage": "You are
|
|
3391
|
-
"temperature": 0.
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be friendly, precise, and proactive. For support: gather needed details (order ID, email), do not invent information, explain steps clearly, and summarize actions. For copywriting: follow brand voice, focus on benefits, address objections, and close with a clear call to action. Keep privacy in mind and adapt tone to the user’s locale.",
|
|
3381
|
+
"temperature": 0.5
|
|
3392
3382
|
},
|
|
3393
3383
|
{
|
|
3394
3384
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3395
|
-
"systemMessage": "You are a
|
|
3396
|
-
"temperature": 0.
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Offer empathetic, accurate troubleshooting and policy guidance without fabricating details; ask for missing info and summarize next steps. When writing copy, be concise, benefit‑driven, and brand‑aligned, using clear CTAs and bullets where useful.",
|
|
3386
|
+
"temperature": 0.6
|
|
3397
3387
|
}
|
|
3398
3388
|
]
|
|
3399
3389
|
}
|
|
@@ -3406,14 +3396,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3406
3396
|
"preparations": [
|
|
3407
3397
|
{
|
|
3408
3398
|
"id": 1,
|
|
3409
|
-
"promptbookVersion": "0.101.0-
|
|
3399
|
+
"promptbookVersion": "0.101.0-8",
|
|
3410
3400
|
"usage": {
|
|
3411
3401
|
"price": {
|
|
3412
|
-
"value": 0.
|
|
3402
|
+
"value": 0.0282675
|
|
3413
3403
|
},
|
|
3414
3404
|
"input": {
|
|
3415
3405
|
"tokensCount": {
|
|
3416
|
-
"value":
|
|
3406
|
+
"value": 5862
|
|
3417
3407
|
},
|
|
3418
3408
|
"charactersCount": {
|
|
3419
3409
|
"value": 2377
|
|
@@ -3436,19 +3426,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3436
3426
|
},
|
|
3437
3427
|
"output": {
|
|
3438
3428
|
"tokensCount": {
|
|
3439
|
-
"value":
|
|
3429
|
+
"value": 2094
|
|
3440
3430
|
},
|
|
3441
3431
|
"charactersCount": {
|
|
3442
|
-
"value":
|
|
3432
|
+
"value": 2432
|
|
3443
3433
|
},
|
|
3444
3434
|
"wordsCount": {
|
|
3445
|
-
"value":
|
|
3435
|
+
"value": 344
|
|
3446
3436
|
},
|
|
3447
3437
|
"sentencesCount": {
|
|
3448
|
-
"value":
|
|
3438
|
+
"value": 28
|
|
3449
3439
|
},
|
|
3450
3440
|
"linesCount": {
|
|
3451
|
-
"value":
|
|
3441
|
+
"value": 56
|
|
3452
3442
|
},
|
|
3453
3443
|
"paragraphsCount": {
|
|
3454
3444
|
"value": 1
|
|
@@ -3705,28 +3695,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3705
3695
|
"models": [
|
|
3706
3696
|
{
|
|
3707
3697
|
"modelName": "gpt-4.1",
|
|
3708
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3709
|
-
"temperature": 0.
|
|
3698
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3699
|
+
"temperature": 0.4
|
|
3710
3700
|
},
|
|
3711
3701
|
{
|
|
3712
3702
|
"modelName": "chatgpt-4o-latest",
|
|
3713
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3714
|
-
"temperature": 0.
|
|
3703
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3704
|
+
"temperature": 0.5
|
|
3715
3705
|
},
|
|
3716
3706
|
{
|
|
3717
3707
|
"modelName": "gpt-4",
|
|
3718
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3719
|
-
"temperature": 0.
|
|
3708
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3709
|
+
"temperature": 0.4
|
|
3720
3710
|
},
|
|
3721
3711
|
{
|
|
3722
3712
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3723
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3713
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3724
3714
|
"temperature": 0.4
|
|
3725
3715
|
},
|
|
3726
3716
|
{
|
|
3727
3717
|
"modelName": "gpt-3.5-turbo",
|
|
3728
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3729
|
-
"temperature": 0.
|
|
3718
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3719
|
+
"temperature": 0.3
|
|
3730
3720
|
}
|
|
3731
3721
|
]
|
|
3732
3722
|
}
|
|
@@ -3739,14 +3729,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3739
3729
|
"preparations": [
|
|
3740
3730
|
{
|
|
3741
3731
|
"id": 1,
|
|
3742
|
-
"promptbookVersion": "0.101.0-
|
|
3732
|
+
"promptbookVersion": "0.101.0-8",
|
|
3743
3733
|
"usage": {
|
|
3744
3734
|
"price": {
|
|
3745
|
-
"value": 0.
|
|
3735
|
+
"value": 0.0268725
|
|
3746
3736
|
},
|
|
3747
3737
|
"input": {
|
|
3748
3738
|
"tokensCount": {
|
|
3749
|
-
"value":
|
|
3739
|
+
"value": 5858
|
|
3750
3740
|
},
|
|
3751
3741
|
"charactersCount": {
|
|
3752
3742
|
"value": 2377
|
|
@@ -3769,19 +3759,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3769
3759
|
},
|
|
3770
3760
|
"output": {
|
|
3771
3761
|
"tokensCount": {
|
|
3772
|
-
"value":
|
|
3762
|
+
"value": 1955
|
|
3773
3763
|
},
|
|
3774
3764
|
"charactersCount": {
|
|
3775
|
-
"value":
|
|
3765
|
+
"value": 3069
|
|
3776
3766
|
},
|
|
3777
3767
|
"wordsCount": {
|
|
3778
|
-
"value":
|
|
3768
|
+
"value": 388
|
|
3779
3769
|
},
|
|
3780
3770
|
"sentencesCount": {
|
|
3781
|
-
"value":
|
|
3771
|
+
"value": 44
|
|
3782
3772
|
},
|
|
3783
3773
|
"linesCount": {
|
|
3784
|
-
"value":
|
|
3774
|
+
"value": 69
|
|
3785
3775
|
},
|
|
3786
3776
|
"paragraphsCount": {
|
|
3787
3777
|
"value": 1
|
|
@@ -3852,23 +3842,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3852
3842
|
"models": [
|
|
3853
3843
|
{
|
|
3854
3844
|
"modelName": "gpt-4.1",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3845
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
|
|
3856
3846
|
"temperature": 0.9
|
|
3857
3847
|
},
|
|
3858
3848
|
{
|
|
3859
3849
|
"modelName": "chatgpt-4o-latest",
|
|
3860
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3850
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
|
|
3861
3851
|
"temperature": 0.9
|
|
3862
3852
|
},
|
|
3863
3853
|
{
|
|
3864
3854
|
"modelName": "gpt-4",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
|
|
3866
3856
|
"temperature": 0.85
|
|
3867
3857
|
},
|
|
3868
3858
|
{
|
|
3869
3859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3871
|
-
"temperature": 0.
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
|
|
3861
|
+
"temperature": 0.75
|
|
3872
3862
|
}
|
|
3873
3863
|
]
|
|
3874
3864
|
}
|
|
@@ -3881,14 +3871,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3881
3871
|
"preparations": [
|
|
3882
3872
|
{
|
|
3883
3873
|
"id": 1,
|
|
3884
|
-
"promptbookVersion": "0.101.0-
|
|
3874
|
+
"promptbookVersion": "0.101.0-8",
|
|
3885
3875
|
"usage": {
|
|
3886
3876
|
"price": {
|
|
3887
|
-
"value": 0.
|
|
3877
|
+
"value": 0.02971125
|
|
3888
3878
|
},
|
|
3889
3879
|
"input": {
|
|
3890
3880
|
"tokensCount": {
|
|
3891
|
-
"value":
|
|
3881
|
+
"value": 5857
|
|
3892
3882
|
},
|
|
3893
3883
|
"charactersCount": {
|
|
3894
3884
|
"value": 2377
|
|
@@ -3911,25 +3901,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3911
3901
|
},
|
|
3912
3902
|
"output": {
|
|
3913
3903
|
"tokensCount": {
|
|
3914
|
-
"value":
|
|
3904
|
+
"value": 2239
|
|
3915
3905
|
},
|
|
3916
3906
|
"charactersCount": {
|
|
3917
|
-
"value":
|
|
3907
|
+
"value": 1924
|
|
3918
3908
|
},
|
|
3919
3909
|
"wordsCount": {
|
|
3920
|
-
"value":
|
|
3910
|
+
"value": 262
|
|
3921
3911
|
},
|
|
3922
3912
|
"sentencesCount": {
|
|
3923
|
-
"value":
|
|
3913
|
+
"value": 31
|
|
3924
3914
|
},
|
|
3925
3915
|
"linesCount": {
|
|
3926
|
-
"value":
|
|
3916
|
+
"value": 48
|
|
3927
3917
|
},
|
|
3928
3918
|
"paragraphsCount": {
|
|
3929
3919
|
"value": 1
|
|
3930
3920
|
},
|
|
3931
3921
|
"pagesCount": {
|
|
3932
|
-
"value":
|
|
3922
|
+
"value": 2
|
|
3933
3923
|
}
|
|
3934
3924
|
}
|
|
3935
3925
|
}
|