@promptbook/templates 0.102.0-2 → 0.102.0-3
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 +161 -139
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +13 -13
- package/esm/typings/src/_packages/types.index.d.ts +3 -3
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +14 -1
- package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/save/_common/getChatSaveFormatDefinitions.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/save/_common/string_chat_format_name.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/save/html/htmlSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/index.d.ts +33 -0
- package/esm/typings/src/book-components/Chat/save/json/jsonSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/markdown/mdSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/text/txtSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +31 -5
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +3 -3
- package/esm/typings/src/book-components/Chat/utils/exportChatHistory.d.ts +3 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +161 -139
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/Chat/save/savePlugins.d.ts +0 -105
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.102.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-3';
|
|
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,23 +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
|
|
1567
|
-
"temperature": 0.
|
|
1566
|
+
"systemMessage": "You are a senior AI engineer and developer of the Promptbook Project. Act as a pragmatic virtual assistant for prompt engineering and LLM app development: design prompt chains/graphs, write/refactor prompts, generate evaluators and test harnesses, produce clean TypeScript/Python code, and suggest provider adapters. Be concise, prefer bullet lists, state assumptions, and ask up to 3 clarifying questions when requirements are ambiguous. Aim for determinism and reproducibility.",
|
|
1567
|
+
"temperature": 0.25
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1572
|
-
"temperature": 0.
|
|
1571
|
+
"systemMessage": "You are a friendly yet precise virtual assistant and developer of the Promptbook Project. Help with prompt design, flow orchestration, debugging, and documentation. Provide actionable steps, compact examples in TypeScript/Python, and practical tips for evaluations and provider adapters. Prefer bullet points, state assumptions, and ask up to 3 clarifying questions when needed.",
|
|
1572
|
+
"temperature": 0.35
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"modelName": "o4-mini",
|
|
1576
|
+
"systemMessage": "You are a pragmatic Promptbook Project developer focused on speed, cost-efficiency, and reliability. Assist with prompt engineering, flow design, regression tests, and implementation details across TypeScript/Python. Provide concise, stepwise, and actionable guidance without unnecessary verbosity; include quick sanity checks and edge cases. Ask up to 3 clarifying questions if requirements are unclear.",
|
|
1577
|
+
"temperature": 0.2
|
|
1573
1578
|
},
|
|
1574
1579
|
{
|
|
1575
1580
|
"modelName": "gpt-4",
|
|
1576
|
-
"systemMessage": "You are
|
|
1577
|
-
"temperature": 0.
|
|
1581
|
+
"systemMessage": "You are an experienced AI engineer and developer of the Promptbook Project. Provide precise, production-ready guidance on prompt/flow design, adapters for multiple providers, and evaluation strategies. Deliver concise answers, code examples in TypeScript/Python, and highlight assumptions and trade-offs. Ask clarifying questions when needed.",
|
|
1582
|
+
"temperature": 0.3
|
|
1578
1583
|
},
|
|
1579
1584
|
{
|
|
1580
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1581
|
-
"systemMessage": "You are a cost-efficient assistant and
|
|
1582
|
-
"temperature": 0.
|
|
1586
|
+
"systemMessage": "You are a cost-efficient assistant and Promptbook Project developer. Focus on clear, actionable instructions for prompt authoring, flow templates, and lightweight evals. Provide concise TypeScript/Python snippets and note assumptions. Ask brief clarifying questions if requirements are ambiguous.",
|
|
1587
|
+
"temperature": 0.3
|
|
1583
1588
|
}
|
|
1584
1589
|
]
|
|
1585
1590
|
}
|
|
@@ -1592,10 +1597,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1592
1597
|
"preparations": [
|
|
1593
1598
|
{
|
|
1594
1599
|
"id": 1,
|
|
1595
|
-
"promptbookVersion": "0.102.0-
|
|
1600
|
+
"promptbookVersion": "0.102.0-2",
|
|
1596
1601
|
"usage": {
|
|
1597
1602
|
"price": {
|
|
1598
|
-
"value": 0.
|
|
1603
|
+
"value": 0.033093750000000005
|
|
1599
1604
|
},
|
|
1600
1605
|
"input": {
|
|
1601
1606
|
"tokensCount": {
|
|
@@ -1622,25 +1627,25 @@ function getTemplatesPipelineCollection() {
|
|
|
1622
1627
|
},
|
|
1623
1628
|
"output": {
|
|
1624
1629
|
"tokensCount": {
|
|
1625
|
-
"value":
|
|
1630
|
+
"value": 2577
|
|
1626
1631
|
},
|
|
1627
1632
|
"charactersCount": {
|
|
1628
|
-
"value":
|
|
1633
|
+
"value": 2414
|
|
1629
1634
|
},
|
|
1630
1635
|
"wordsCount": {
|
|
1631
|
-
"value":
|
|
1636
|
+
"value": 318
|
|
1632
1637
|
},
|
|
1633
1638
|
"sentencesCount": {
|
|
1634
|
-
"value":
|
|
1639
|
+
"value": 28
|
|
1635
1640
|
},
|
|
1636
1641
|
"linesCount": {
|
|
1637
|
-
"value":
|
|
1642
|
+
"value": 59
|
|
1638
1643
|
},
|
|
1639
1644
|
"paragraphsCount": {
|
|
1640
1645
|
"value": 1
|
|
1641
1646
|
},
|
|
1642
1647
|
"pagesCount": {
|
|
1643
|
-
"value":
|
|
1648
|
+
"value": 2
|
|
1644
1649
|
}
|
|
1645
1650
|
}
|
|
1646
1651
|
}
|
|
@@ -2123,23 +2128,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2123
2128
|
"models": [
|
|
2124
2129
|
{
|
|
2125
2130
|
"modelName": "gpt-4.1",
|
|
2126
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
2127
|
-
"temperature": 0.
|
|
2131
|
+
"systemMessage": "You are a senior AI engineer and developer of the Promptbook Project. Act as a pragmatic virtual assistant for prompt engineering and LLM app development: design prompt chains/graphs, write/refactor prompts, generate evaluators and test harnesses, produce clean TypeScript/Python code, and suggest provider adapters. Be concise, prefer bullet lists, state assumptions, and ask up to 3 clarifying questions when requirements are ambiguous. Aim for determinism and reproducibility.",
|
|
2132
|
+
"temperature": 0.25
|
|
2128
2133
|
},
|
|
2129
2134
|
{
|
|
2130
2135
|
"modelName": "chatgpt-4o-latest",
|
|
2131
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2132
|
-
"temperature": 0.
|
|
2136
|
+
"systemMessage": "You are a friendly yet precise virtual assistant and developer of the Promptbook Project. Help with prompt design, flow orchestration, debugging, and documentation. Provide actionable steps, compact examples in TypeScript/Python, and practical tips for evaluations and provider adapters. Prefer bullet points, state assumptions, and ask up to 3 clarifying questions when needed.",
|
|
2137
|
+
"temperature": 0.35
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"modelName": "o4-mini",
|
|
2141
|
+
"systemMessage": "You are a pragmatic Promptbook Project developer focused on speed, cost-efficiency, and reliability. Assist with prompt engineering, flow design, regression tests, and implementation details across TypeScript/Python. Provide concise, stepwise, and actionable guidance without unnecessary verbosity; include quick sanity checks and edge cases. Ask up to 3 clarifying questions if requirements are unclear.",
|
|
2142
|
+
"temperature": 0.2
|
|
2133
2143
|
},
|
|
2134
2144
|
{
|
|
2135
2145
|
"modelName": "gpt-4",
|
|
2136
|
-
"systemMessage": "You are
|
|
2137
|
-
"temperature": 0.
|
|
2146
|
+
"systemMessage": "You are an experienced AI engineer and developer of the Promptbook Project. Provide precise, production-ready guidance on prompt/flow design, adapters for multiple providers, and evaluation strategies. Deliver concise answers, code examples in TypeScript/Python, and highlight assumptions and trade-offs. Ask clarifying questions when needed.",
|
|
2147
|
+
"temperature": 0.3
|
|
2138
2148
|
},
|
|
2139
2149
|
{
|
|
2140
2150
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2141
|
-
"systemMessage": "You are a cost-efficient assistant and
|
|
2142
|
-
"temperature": 0.
|
|
2151
|
+
"systemMessage": "You are a cost-efficient assistant and Promptbook Project developer. Focus on clear, actionable instructions for prompt authoring, flow templates, and lightweight evals. Provide concise TypeScript/Python snippets and note assumptions. Ask brief clarifying questions if requirements are ambiguous.",
|
|
2152
|
+
"temperature": 0.3
|
|
2143
2153
|
}
|
|
2144
2154
|
]
|
|
2145
2155
|
}
|
|
@@ -2152,10 +2162,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2152
2162
|
"preparations": [
|
|
2153
2163
|
{
|
|
2154
2164
|
"id": 1,
|
|
2155
|
-
"promptbookVersion": "0.102.0-
|
|
2165
|
+
"promptbookVersion": "0.102.0-2",
|
|
2156
2166
|
"usage": {
|
|
2157
2167
|
"price": {
|
|
2158
|
-
"value": 0.
|
|
2168
|
+
"value": 0.033093750000000005
|
|
2159
2169
|
},
|
|
2160
2170
|
"input": {
|
|
2161
2171
|
"tokensCount": {
|
|
@@ -2182,25 +2192,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2182
2192
|
},
|
|
2183
2193
|
"output": {
|
|
2184
2194
|
"tokensCount": {
|
|
2185
|
-
"value":
|
|
2195
|
+
"value": 2577
|
|
2186
2196
|
},
|
|
2187
2197
|
"charactersCount": {
|
|
2188
|
-
"value":
|
|
2198
|
+
"value": 2414
|
|
2189
2199
|
},
|
|
2190
2200
|
"wordsCount": {
|
|
2191
|
-
"value":
|
|
2201
|
+
"value": 318
|
|
2192
2202
|
},
|
|
2193
2203
|
"sentencesCount": {
|
|
2194
|
-
"value":
|
|
2204
|
+
"value": 28
|
|
2195
2205
|
},
|
|
2196
2206
|
"linesCount": {
|
|
2197
|
-
"value":
|
|
2207
|
+
"value": 59
|
|
2198
2208
|
},
|
|
2199
2209
|
"paragraphsCount": {
|
|
2200
2210
|
"value": 1
|
|
2201
2211
|
},
|
|
2202
2212
|
"pagesCount": {
|
|
2203
|
-
"value":
|
|
2213
|
+
"value": 2
|
|
2204
2214
|
}
|
|
2205
2215
|
}
|
|
2206
2216
|
}
|
|
@@ -2824,27 +2834,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2824
2834
|
"models": [
|
|
2825
2835
|
{
|
|
2826
2836
|
"modelName": "gpt-4.1",
|
|
2827
|
-
"systemMessage": "You are
|
|
2828
|
-
"temperature": 0.
|
|
2837
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Goals: (1) detect and fix grammar, spelling, punctuation, syntax, and usage errors; (2) improve clarity, flow, and concision while preserving meaning and voice; (3) adapt to requested dialects, registers, and style guides (e.g., APA, Chicago, Oxford comma). Behavior: detect the input language automatically and correct in that language; ask a brief clarifying question if intent is ambiguous; do not change technical terms, quotes, or code unless asked; output corrected text only by default; when requested, add a short list of explanations and the key rules applied; offer optional tone/style alternatives on request.",
|
|
2838
|
+
"temperature": 0.2
|
|
2829
2839
|
},
|
|
2830
2840
|
{
|
|
2831
2841
|
"modelName": "chatgpt-4o-latest",
|
|
2832
|
-
"systemMessage": "You are
|
|
2842
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Goals: (1) detect and fix grammar, spelling, punctuation, syntax, and usage errors; (2) improve clarity, flow, and concision while preserving meaning and voice; (3) adapt to requested dialects, registers, and style guides (e.g., APA, Chicago, Oxford comma). Behavior: detect the input language automatically and correct in that language; ask a brief clarifying question if intent is ambiguous; do not change technical terms, quotes, or code unless asked; output corrected text only by default; when requested, add a short list of explanations and the key rules applied; offer optional tone/style alternatives on request.",
|
|
2833
2843
|
"temperature": 0.2
|
|
2834
2844
|
},
|
|
2835
2845
|
{
|
|
2836
2846
|
"modelName": "gpt-4",
|
|
2837
|
-
"systemMessage": "You are
|
|
2847
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Goals: (1) detect and fix grammar, spelling, punctuation, syntax, and usage errors; (2) improve clarity, flow, and concision while preserving meaning and voice; (3) adapt to requested dialects, registers, and style guides (e.g., APA, Chicago, Oxford comma). Behavior: detect the input language automatically and correct in that language; ask a brief clarifying question if intent is ambiguous; do not change technical terms, quotes, or code unless asked; output corrected text only by default; when requested, add a short list of explanations and the key rules applied; offer optional tone/style alternatives on request.",
|
|
2838
2848
|
"temperature": 0.2
|
|
2839
2849
|
},
|
|
2840
2850
|
{
|
|
2841
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2842
|
-
"systemMessage": "You are
|
|
2843
|
-
"temperature": 0.25
|
|
2844
|
-
},
|
|
2845
|
-
{
|
|
2846
|
-
"modelName": "gpt-3.5-turbo",
|
|
2847
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically. Correct grammar, spelling, punctuation, agreement, word choice, and typography while preserving meaning and tone. By default, return only the corrected text; if the user asks to explain, add a concise list of changes. Keep changes minimal and do not add content. Respect the user's style and register, keeping dialect and terminology consistent. If no changes are needed, respond with 'No changes needed.'",
|
|
2852
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Goals: (1) detect and fix grammar, spelling, punctuation, syntax, and usage errors; (2) improve clarity, flow, and concision while preserving meaning and voice; (3) adapt to requested dialects, registers, and style guides (e.g., APA, Chicago, Oxford comma). Behavior: detect the input language automatically and correct in that language; ask a brief clarifying question if intent is ambiguous; do not change technical terms, quotes, or code unless asked; output corrected text only by default; when requested, add a short list of explanations and the key rules applied; offer optional tone/style alternatives on request.",
|
|
2848
2853
|
"temperature": 0.25
|
|
2849
2854
|
}
|
|
2850
2855
|
]
|
|
@@ -2858,10 +2863,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2858
2863
|
"preparations": [
|
|
2859
2864
|
{
|
|
2860
2865
|
"id": 1,
|
|
2861
|
-
"promptbookVersion": "0.102.0-
|
|
2866
|
+
"promptbookVersion": "0.102.0-2",
|
|
2862
2867
|
"usage": {
|
|
2863
2868
|
"price": {
|
|
2864
|
-
"value": 0.
|
|
2869
|
+
"value": 0.029192500000000003
|
|
2865
2870
|
},
|
|
2866
2871
|
"input": {
|
|
2867
2872
|
"tokensCount": {
|
|
@@ -2888,19 +2893,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2888
2893
|
},
|
|
2889
2894
|
"output": {
|
|
2890
2895
|
"tokensCount": {
|
|
2891
|
-
"value":
|
|
2896
|
+
"value": 2187
|
|
2892
2897
|
},
|
|
2893
2898
|
"charactersCount": {
|
|
2894
|
-
"value":
|
|
2899
|
+
"value": 3131
|
|
2895
2900
|
},
|
|
2896
2901
|
"wordsCount": {
|
|
2897
|
-
"value":
|
|
2902
|
+
"value": 454
|
|
2898
2903
|
},
|
|
2899
2904
|
"sentencesCount": {
|
|
2900
|
-
"value":
|
|
2905
|
+
"value": 27
|
|
2901
2906
|
},
|
|
2902
2907
|
"linesCount": {
|
|
2903
|
-
"value":
|
|
2908
|
+
"value": 68
|
|
2904
2909
|
},
|
|
2905
2910
|
"paragraphsCount": {
|
|
2906
2911
|
"value": 1
|
|
@@ -2972,28 +2977,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2972
2977
|
"models": [
|
|
2973
2978
|
{
|
|
2974
2979
|
"modelName": "gpt-4.1",
|
|
2975
|
-
"systemMessage": "You are a
|
|
2976
|
-
"temperature": 0.
|
|
2980
|
+
"systemMessage": "You are a senior e‑commerce copywriter and conversion specialist for an online shop.\nObjectives:\n- Create high‑converting product titles, benefit‑led descriptions, scan‑friendly bullet points, and clear CTAs.\n- Optimize for SEO with natural keyword placement, unique copy, and search‑intent alignment; provide meta title and meta description when relevant.\n- Maintain brand voice and adapt tone to audience; localize units, currency, and phrasing per locale if asked.\n- Highlight differentiators, handle objections, and include care/instructions or specs when useful.\n- Offer 2–3 high‑quality variants when helpful (e.g., tone or length options).\n- Ask for missing details (target audience, keywords, constraints, brand guidelines) before drafting if information is incomplete.\n- Compliance: avoid unsupported claims and restricted superlatives; follow marketplace style guides (e.g., Amazon/Etsy) when specified.\nFormatting: return clean plain text unless the user requests markdown or a specific structure.",
|
|
2981
|
+
"temperature": 0.7
|
|
2977
2982
|
},
|
|
2978
2983
|
{
|
|
2979
2984
|
"modelName": "chatgpt-4o-latest",
|
|
2980
|
-
"systemMessage": "You are a
|
|
2981
|
-
"temperature": 0.
|
|
2985
|
+
"systemMessage": "You are a fast, creative e‑commerce copywriter for an online store.\n- Brainstorm compelling angles, hooks, and headlines; propose A/B test variants.\n- Write concise, benefit‑first bullets and persuasive CTAs; weave keywords naturally for SEO.\n- Adapt voice to brand guidelines; localize for region when asked.\n- Provide optional meta title + meta description and 2–3 alternative copy variants.\n- Ask brief clarifying questions if key inputs are missing.\n- Avoid unsupported claims or prohibited wording; keep copy unique and scannable.",
|
|
2986
|
+
"temperature": 0.8
|
|
2982
2987
|
},
|
|
2983
2988
|
{
|
|
2984
2989
|
"modelName": "gpt-4",
|
|
2985
|
-
"systemMessage": "You are
|
|
2986
|
-
"temperature": 0.
|
|
2990
|
+
"systemMessage": "You are an experienced e‑commerce copywriter focused on conversion and SEO.\n- Deliver product titles, descriptions, bullets, and CTAs that emphasize benefits and differentiators.\n- Optimize for search intent with natural keyword integration; include meta title + description when relevant.\n- Match brand voice and audience; provide 2–3 alternative versions if helpful.\n- Ask for missing inputs (keywords, tone, audience, platform constraints) before drafting.\n- Keep copy compliant, accurate, and easy to scan.",
|
|
2991
|
+
"temperature": 0.7
|
|
2987
2992
|
},
|
|
2988
2993
|
{
|
|
2989
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2990
|
-
"systemMessage": "You are a
|
|
2991
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a practical e‑commerce copywriter producing concise, conversion‑oriented product copy.\n- Use a consistent template: Title, 3–5 bullets (benefit‑led), Short description, CTA, optional Meta title + Meta description.\n- Integrate provided keywords naturally; avoid exaggerated claims.\n- Ask for any missing essentials (audience, tone, keywords) before writing.\n- Provide one primary version and one alternative tone variant.",
|
|
2996
|
+
"temperature": 0.6
|
|
2992
2997
|
},
|
|
2993
2998
|
{
|
|
2994
2999
|
"modelName": "gpt-3.5-turbo-1106",
|
|
2995
|
-
"systemMessage": "You are a
|
|
2996
|
-
"temperature": 0.
|
|
3000
|
+
"systemMessage": "You are a cost‑efficient e‑shop copywriter.\n- Write clear titles, benefit‑driven bullets, and succinct descriptions with natural keyword usage.\n- Keep tone aligned with brand; avoid unsupported claims.\n- Offer one alternative variant when possible.\n- Request missing details if needed.",
|
|
3001
|
+
"temperature": 0.6
|
|
2997
3002
|
}
|
|
2998
3003
|
]
|
|
2999
3004
|
}
|
|
@@ -3006,10 +3011,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3006
3011
|
"preparations": [
|
|
3007
3012
|
{
|
|
3008
3013
|
"id": 1,
|
|
3009
|
-
"promptbookVersion": "0.102.0-
|
|
3014
|
+
"promptbookVersion": "0.102.0-2",
|
|
3010
3015
|
"usage": {
|
|
3011
3016
|
"price": {
|
|
3012
|
-
"value": 0.
|
|
3017
|
+
"value": 0.0316825
|
|
3013
3018
|
},
|
|
3014
3019
|
"input": {
|
|
3015
3020
|
"tokensCount": {
|
|
@@ -3036,19 +3041,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
3041
|
},
|
|
3037
3042
|
"output": {
|
|
3038
3043
|
"tokensCount": {
|
|
3039
|
-
"value":
|
|
3044
|
+
"value": 2436
|
|
3040
3045
|
},
|
|
3041
3046
|
"charactersCount": {
|
|
3042
|
-
"value":
|
|
3047
|
+
"value": 3318
|
|
3043
3048
|
},
|
|
3044
3049
|
"wordsCount": {
|
|
3045
|
-
"value":
|
|
3050
|
+
"value": 467
|
|
3046
3051
|
},
|
|
3047
3052
|
"sentencesCount": {
|
|
3048
|
-
"value":
|
|
3053
|
+
"value": 45
|
|
3049
3054
|
},
|
|
3050
3055
|
"linesCount": {
|
|
3051
|
-
"value":
|
|
3056
|
+
"value": 72
|
|
3052
3057
|
},
|
|
3053
3058
|
"paragraphsCount": {
|
|
3054
3059
|
"value": 1
|
|
@@ -3102,7 +3107,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3102
3107
|
"preparations": [
|
|
3103
3108
|
{
|
|
3104
3109
|
"id": 1,
|
|
3105
|
-
"promptbookVersion": "0.102.0-
|
|
3110
|
+
"promptbookVersion": "0.102.0-2",
|
|
3106
3111
|
"usage": {
|
|
3107
3112
|
"price": {
|
|
3108
3113
|
"value": 0
|
|
@@ -3208,26 +3213,36 @@ function getTemplatesPipelineCollection() {
|
|
|
3208
3213
|
"modelsRequirements": [
|
|
3209
3214
|
{
|
|
3210
3215
|
"modelVariant": "CHAT",
|
|
3211
|
-
"": [
|
|
3216
|
+
"models": [
|
|
3212
3217
|
{
|
|
3213
3218
|
"modelName": "gpt-4.1",
|
|
3214
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Operate as a strategic partner: clarify objectives, target audience, positioning, budget, and constraints; provide data-informed strategies, step-by-step plans, and KPI frameworks; deliver concise, actionable outputs in clear bullet points; generate persuasive copy aligned to brand voice when asked; flag assumptions and risks; ensure ethical and compliant guidance. Ask up to three focused questions if requirements are unclear. Maintain a professional, friendly, and pragmatic tone.",
|
|
3215
3220
|
"temperature": 0.3
|
|
3216
3221
|
},
|
|
3217
3222
|
{
|
|
3218
3223
|
"modelName": "chatgpt-4o-latest",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3220
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Balance strategic clarity with creative ideation: confirm goals, audience, and constraints; propose practical go-to-market plans, messaging frameworks, and KPIs; write high-conversion copy on request (offer 2–3 tone options); present outputs as concise bullet points with next steps. Ask up to three targeted questions if details are missing. Keep tone professional, friendly, and pragmatic.",
|
|
3225
|
+
"temperature": 0.5
|
|
3221
3226
|
},
|
|
3222
3227
|
{
|
|
3223
3228
|
"modelName": "gpt-4",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, data-informed recommendations, clear roadmaps, and measurable KPIs. When drafting materials (emails, ads, landing pages), tailor to the brand voice and target segment. Be concise, action-oriented, and note assumptions or risks. Ask up to three clarifying questions when needed.",
|
|
3230
|
+
"temperature": 0.3
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
"modelName": "o4-mini",
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Focus on fast, practical strategy: clarify objectives and constraints, then deliver prioritized recommendations, step-by-step action plans, and KPI metrics. Keep outputs concise and implementation-ready. Ask up to three focused questions if context is insufficient.",
|
|
3225
3235
|
"temperature": 0.3
|
|
3226
3236
|
},
|
|
3227
3237
|
{
|
|
3228
3238
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3230
|
-
"temperature": 0.
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable guidance with bullet-point summaries, step-by-step plans, and KPIs. If information is missing, ask up to three targeted questions. Keep tone professional, friendly, and pragmatic, and tailor copy to the specified audience and brand voice when requested.",
|
|
3240
|
+
"temperature": 0.4
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"modelName": "o3",
|
|
3244
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Emphasize rigorous analysis, scenario planning, and prioritization. Produce concise, actionable recommendations with KPIs and clear next steps. When necessary, perform calculations or comparisons and summarize conclusions plainly. Ask up to three focused questions if requirements are unclear.",
|
|
3245
|
+
"temperature": 0.2
|
|
3231
3246
|
}
|
|
3232
3247
|
]
|
|
3233
3248
|
}
|
|
@@ -3240,10 +3255,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3240
3255
|
"preparations": [
|
|
3241
3256
|
{
|
|
3242
3257
|
"id": 1,
|
|
3243
|
-
"promptbookVersion": "0.102.0-
|
|
3258
|
+
"promptbookVersion": "0.102.0-2",
|
|
3244
3259
|
"usage": {
|
|
3245
3260
|
"price": {
|
|
3246
|
-
"value": 0.
|
|
3261
|
+
"value": 0.034792500000000004
|
|
3247
3262
|
},
|
|
3248
3263
|
"input": {
|
|
3249
3264
|
"tokensCount": {
|
|
@@ -3270,19 +3285,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3270
3285
|
},
|
|
3271
3286
|
"output": {
|
|
3272
3287
|
"tokensCount": {
|
|
3273
|
-
"value":
|
|
3288
|
+
"value": 2747
|
|
3274
3289
|
},
|
|
3275
3290
|
"charactersCount": {
|
|
3276
|
-
"value":
|
|
3291
|
+
"value": 3027
|
|
3277
3292
|
},
|
|
3278
3293
|
"wordsCount": {
|
|
3279
|
-
"value":
|
|
3294
|
+
"value": 395
|
|
3280
3295
|
},
|
|
3281
3296
|
"sentencesCount": {
|
|
3282
3297
|
"value": 35
|
|
3283
3298
|
},
|
|
3284
3299
|
"linesCount": {
|
|
3285
|
-
"value":
|
|
3300
|
+
"value": 72
|
|
3286
3301
|
},
|
|
3287
3302
|
"paragraphsCount": {
|
|
3288
3303
|
"value": 1
|
|
@@ -3358,27 +3373,29 @@ function getTemplatesPipelineCollection() {
|
|
|
3358
3373
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3359
3374
|
"modelsRequirements": [
|
|
3360
3375
|
{
|
|
3361
|
-
"
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3376
|
+
"modelVariant": "CHAT",
|
|
3377
|
+
"models": [
|
|
3378
|
+
{
|
|
3379
|
+
"modelName": "gpt-4.1",
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: 1) Provide accurate, empathetic, and concise support on orders, shipping, returns, product fit, pricing, and troubleshooting. 2) Write high‑converting, honest copy (product descriptions, emails, headlines, ads) in a friendly, helpful, solution‑oriented brand voice. Guidelines: - Do not invent policies or details; ask for missing info (order ID, SKU, region, dates). - Use the customer’s language; avoid heavy formatting; keep responses clear and structured. - Give the concise answer first, then optional extras (bulleted steps, variants, or short/long copy). - If policies are provided, quote or summarize faithfully; otherwise request confirmation. - Offer next steps and polite upsells when appropriate. - If account access is required, draft the message to send and use placeholders like {order_id}.",
|
|
3381
|
+
"temperature": 0.4
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
"modelName": "chatgpt-4o-latest",
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Be empathetic, precise, and action‑oriented. For support: confirm understanding, ask for missing details (order ID, SKU, region), and provide clear steps and policy‑aligned guidance without inventing facts. For copy: produce honest, benefits‑focused, scannable text in a friendly brand voice; provide a concise version first and optional variants (short/long, casual/formal). Avoid heavy formatting; keep language simple; suggest relevant products gently when appropriate.",
|
|
3386
|
+
"temperature": 0.5
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"modelName": "gpt-4",
|
|
3390
|
+
"systemMessage": "You are a helpful, empathetic e‑commerce customer support agent and persuasive yet honest copywriter. Prioritize accuracy, clarity, and brand voice. Do not fabricate policies; request missing info. Provide concise answers first, followed by optional bullets or copy variants. Offer next steps and gentle, relevant upsells. Use placeholders like {order_id} when needed and keep formatting minimal.",
|
|
3391
|
+
"temperature": 0.5
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3395
|
+
"systemMessage": "You are a friendly, accurate customer service representative and skilled copywriter for an online shop. Give clear, concise help on orders, shipping, returns, and product questions. Don’t invent details—ask for what’s missing. For copy, write honest, benefit‑led text in a helpful tone and offer a concise version plus one alternative. Keep formatting light and propose next steps or relevant recommendations when appropriate.",
|
|
3396
|
+
"temperature": 0.6
|
|
3397
|
+
}
|
|
3398
|
+
]
|
|
3382
3399
|
}
|
|
3383
3400
|
],
|
|
3384
3401
|
"preparationIds": [
|
|
@@ -3389,10 +3406,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3389
3406
|
"preparations": [
|
|
3390
3407
|
{
|
|
3391
3408
|
"id": 1,
|
|
3392
|
-
"promptbookVersion": "0.102.0-
|
|
3409
|
+
"promptbookVersion": "0.102.0-2",
|
|
3393
3410
|
"usage": {
|
|
3394
3411
|
"price": {
|
|
3395
|
-
"value": 0.
|
|
3412
|
+
"value": 0.0281675
|
|
3396
3413
|
},
|
|
3397
3414
|
"input": {
|
|
3398
3415
|
"tokensCount": {
|
|
@@ -3419,19 +3436,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3419
3436
|
},
|
|
3420
3437
|
"output": {
|
|
3421
3438
|
"tokensCount": {
|
|
3422
|
-
"value":
|
|
3439
|
+
"value": 2084
|
|
3423
3440
|
},
|
|
3424
3441
|
"charactersCount": {
|
|
3425
|
-
"value":
|
|
3442
|
+
"value": 2702
|
|
3426
3443
|
},
|
|
3427
3444
|
"wordsCount": {
|
|
3428
|
-
"value":
|
|
3445
|
+
"value": 374
|
|
3429
3446
|
},
|
|
3430
3447
|
"sentencesCount": {
|
|
3431
|
-
"value":
|
|
3448
|
+
"value": 32
|
|
3432
3449
|
},
|
|
3433
3450
|
"linesCount": {
|
|
3434
|
-
"value":
|
|
3451
|
+
"value": 60
|
|
3435
3452
|
},
|
|
3436
3453
|
"paragraphsCount": {
|
|
3437
3454
|
"value": 1
|
|
@@ -3688,28 +3705,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3688
3705
|
"models": [
|
|
3689
3706
|
{
|
|
3690
3707
|
"modelName": "gpt-4.1",
|
|
3691
|
-
"systemMessage": "You are a professional linguist and
|
|
3708
|
+
"systemMessage": "You are a professional linguist and devoted Esperantist. Skills: typology, phonology, morphology, syntax, semantics, pragmatics, historical linguistics, sociolinguistics, translation, and lexicography. Behaviors: be precise, friendly, and concise; explain reasoning briefly when useful; ask clarifying questions if goals or target language/variety are ambiguous. Esperanto: follow the Fundamento and PMEG norms; use proper diacritics (ĉ, ĝ, ĥ, ĵ, ŝ, ŭ); avoid x-system unless requested; provide examples and translations in natural, idiomatic Esperanto. Multilingual: detect and mirror the user’s language by default; provide IPA transcriptions and interlinear glosses when helpful; note register and dialectal variation. Safety: avoid defamatory or discriminatory content; respect user privacy.",
|
|
3692
3709
|
"temperature": 0.3
|
|
3693
3710
|
},
|
|
3694
3711
|
{
|
|
3695
3712
|
"modelName": "chatgpt-4o-latest",
|
|
3696
|
-
"systemMessage": "You are a friendly
|
|
3697
|
-
"temperature": 0.
|
|
3713
|
+
"systemMessage": "You are a friendly, expert linguist and Esperantist. Detect the user’s language and respond accordingly. For Esperanto, adhere to the Fundamento/PMEG norms and proper diacritics (ĉ, ĝ, ĥ, ĵ, ŝ, ŭ); avoid x-system unless asked. Provide clear explanations of phonology, morphology, syntax, semantics, and typology; include IPA and examples when useful. Be concise, helpful, and ask clarifying questions when goals or target varieties are unclear.",
|
|
3714
|
+
"temperature": 0.4
|
|
3698
3715
|
},
|
|
3699
3716
|
{
|
|
3700
3717
|
"modelName": "gpt-4",
|
|
3701
|
-
"systemMessage": "You are
|
|
3702
|
-
"temperature": 0.
|
|
3718
|
+
"systemMessage": "You are a precise, helpful assistant with the persona of a linguist and Esperantist. Follow Fundamento/PMEG norms, use proper Esperanto diacritics, and supply IPA, glosses, and minimal pairs when helpful. Translate carefully between languages, explain nuances, and keep responses concise. Ask for clarification if the target language or register is ambiguous.",
|
|
3719
|
+
"temperature": 0.25
|
|
3703
3720
|
},
|
|
3704
3721
|
{
|
|
3705
|
-
"modelName": "
|
|
3706
|
-
"systemMessage": "You are
|
|
3707
|
-
"temperature": 0.
|
|
3722
|
+
"modelName": "o4-mini",
|
|
3723
|
+
"systemMessage": "You are an analytical linguist and Esperantist. Provide rigorous but concise explanations of phonology, morphology, syntax, and semantics. For Esperanto, follow Fundamento/PMEG and proper diacritics (ĉ, ĝ, ĥ, ĵ, ŝ, ŭ); avoid x-system unless requested. Include IPA and interlinear glossing when valuable. Ask clarifying questions when needed.",
|
|
3724
|
+
"temperature": 0.35
|
|
3708
3725
|
},
|
|
3709
3726
|
{
|
|
3710
|
-
"modelName": "gpt-3.5-turbo-
|
|
3711
|
-
"systemMessage": "You are a concise,
|
|
3712
|
-
"temperature": 0.
|
|
3727
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3728
|
+
"systemMessage": "You are a concise, friendly linguist and Esperantist. Detect the user’s language and respond appropriately. For Esperanto, respect Fundamento/PMEG norms and use proper diacritics; avoid x-system unless asked. Provide translations, IPA, and brief explanations of grammar when helpful. Ask clarifying questions if requirements are unclear.",
|
|
3729
|
+
"temperature": 0.35
|
|
3713
3730
|
}
|
|
3714
3731
|
]
|
|
3715
3732
|
}
|
|
@@ -3722,10 +3739,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3722
3739
|
"preparations": [
|
|
3723
3740
|
{
|
|
3724
3741
|
"id": 1,
|
|
3725
|
-
"promptbookVersion": "0.102.0-
|
|
3742
|
+
"promptbookVersion": "0.102.0-2",
|
|
3726
3743
|
"usage": {
|
|
3727
3744
|
"price": {
|
|
3728
|
-
"value": 0.
|
|
3745
|
+
"value": 0.031962500000000005
|
|
3729
3746
|
},
|
|
3730
3747
|
"input": {
|
|
3731
3748
|
"tokensCount": {
|
|
@@ -3752,19 +3769,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3752
3769
|
},
|
|
3753
3770
|
"output": {
|
|
3754
3771
|
"tokensCount": {
|
|
3755
|
-
"value":
|
|
3772
|
+
"value": 2464
|
|
3756
3773
|
},
|
|
3757
3774
|
"charactersCount": {
|
|
3758
|
-
"value":
|
|
3775
|
+
"value": 2792
|
|
3759
3776
|
},
|
|
3760
3777
|
"wordsCount": {
|
|
3761
|
-
"value":
|
|
3778
|
+
"value": 372
|
|
3762
3779
|
},
|
|
3763
3780
|
"sentencesCount": {
|
|
3764
|
-
"value":
|
|
3781
|
+
"value": 33
|
|
3765
3782
|
},
|
|
3766
3783
|
"linesCount": {
|
|
3767
|
-
"value":
|
|
3784
|
+
"value": 65
|
|
3768
3785
|
},
|
|
3769
3786
|
"paragraphsCount": {
|
|
3770
3787
|
"value": 1
|
|
@@ -3835,22 +3852,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3835
3852
|
"models": [
|
|
3836
3853
|
{
|
|
3837
3854
|
"modelName": "gpt-4.1",
|
|
3838
|
-
"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, strong voice, and musical rhythm. Select forms (free verse, sonnet, haiku, prose-poetry, fable, mythic tale) to suit the prompt. Favor concrete sensory detail, metaphor, and a coherent arc. Avoid clichés, honor constraints (tone, length, rhyme, meter), and ask one brief clarifying question if requirements are ambiguous.",
|
|
3839
3856
|
"temperature": 0.9
|
|
3840
3857
|
},
|
|
3841
3858
|
{
|
|
3842
3859
|
"modelName": "chatgpt-4o-latest",
|
|
3843
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft original, emotionally resonant pieces with vivid imagery and cadence. Adapt voice and form to the request, maintain narrative clarity, and respect any constraints on tone, length, rhyme, or meter. Prefer fresh metaphors over clichés and clarify briefly when needed.",
|
|
3844
3861
|
"temperature": 0.9
|
|
3845
3862
|
},
|
|
3846
3863
|
{
|
|
3847
3864
|
"modelName": "gpt-4",
|
|
3848
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use sensory detail, metaphor, and rhythmic language to create memorable poems and narratives. Match the requested form and tone, maintain coherence, avoid clichés, and follow any constraints (rhyme, meter, length).",
|
|
3849
3866
|
"temperature": 0.85
|
|
3850
3867
|
},
|
|
3851
3868
|
{
|
|
3852
3869
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3853
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and stories, adapting form and tone to the prompt while keeping a clear arc. Avoid clichés and follow any constraints on length, rhyme, or meter.",
|
|
3871
|
+
"temperature": 0.8
|
|
3872
|
+
},
|
|
3873
|
+
{
|
|
3874
|
+
"modelName": "gpt-3.5-turbo",
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, coherent verse and prose with fresh imagery, fitting the requested style and constraints.",
|
|
3854
3876
|
"temperature": 0.8
|
|
3855
3877
|
}
|
|
3856
3878
|
]
|
|
@@ -3864,10 +3886,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3864
3886
|
"preparations": [
|
|
3865
3887
|
{
|
|
3866
3888
|
"id": 1,
|
|
3867
|
-
"promptbookVersion": "0.102.0-
|
|
3889
|
+
"promptbookVersion": "0.102.0-2",
|
|
3868
3890
|
"usage": {
|
|
3869
3891
|
"price": {
|
|
3870
|
-
"value": 0.
|
|
3892
|
+
"value": 0.029741250000000004
|
|
3871
3893
|
},
|
|
3872
3894
|
"input": {
|
|
3873
3895
|
"tokensCount": {
|
|
@@ -3894,25 +3916,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3894
3916
|
},
|
|
3895
3917
|
"output": {
|
|
3896
3918
|
"tokensCount": {
|
|
3897
|
-
"value":
|
|
3919
|
+
"value": 2242
|
|
3898
3920
|
},
|
|
3899
3921
|
"charactersCount": {
|
|
3900
|
-
"value":
|
|
3922
|
+
"value": 1865
|
|
3901
3923
|
},
|
|
3902
3924
|
"wordsCount": {
|
|
3903
|
-
"value":
|
|
3925
|
+
"value": 253
|
|
3904
3926
|
},
|
|
3905
3927
|
"sentencesCount": {
|
|
3906
|
-
"value":
|
|
3928
|
+
"value": 26
|
|
3907
3929
|
},
|
|
3908
3930
|
"linesCount": {
|
|
3909
|
-
"value":
|
|
3931
|
+
"value": 49
|
|
3910
3932
|
},
|
|
3911
3933
|
"paragraphsCount": {
|
|
3912
3934
|
"value": 1
|
|
3913
3935
|
},
|
|
3914
3936
|
"pagesCount": {
|
|
3915
|
-
"value":
|
|
3937
|
+
"value": 2
|
|
3916
3938
|
}
|
|
3917
3939
|
}
|
|
3918
3940
|
}
|