@promptbook/templates 0.102.0-1 → 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 +130 -125
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +17 -13
- package/esm/typings/src/_packages/types.index.d.ts +5 -3
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.delete.test.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +10 -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/book-components/icons/AttachmentIcon.d.ts +11 -0
- package/esm/typings/src/book-components/icons/CloseIcon.d.ts +11 -0
- package/esm/typings/src/remote-server/ui/ServerApp.d.ts +13 -0
- package/esm/typings/src/remote-server/ui/renderServerIndexHtml.d.ts +7 -0
- package/esm/typings/src/remote-server/ui/types.d.ts +16 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +130 -125
- 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,32 +1563,27 @@ 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
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "o4-mini",
|
|
1576
|
-
"systemMessage": "You are a
|
|
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
1577
|
"temperature": 0.2
|
|
1578
1578
|
},
|
|
1579
|
-
{
|
|
1580
|
-
"modelName": "o3",
|
|
1581
|
-
"systemMessage": "You are a developer of the Promptbook Project tackling complex analytical tasks. Disambiguate requirements first, then deliver a concise final solution with key assumptions and a minimal, reproducible example. Keep outputs deterministic and focused.",
|
|
1582
|
-
"temperature": 0.1
|
|
1583
|
-
},
|
|
1584
1579
|
{
|
|
1585
1580
|
"modelName": "gpt-4",
|
|
1586
|
-
"systemMessage": "You are
|
|
1587
|
-
"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
|
|
1588
1583
|
},
|
|
1589
1584
|
{
|
|
1590
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1591
|
-
"systemMessage": "You are a
|
|
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.",
|
|
1592
1587
|
"temperature": 0.3
|
|
1593
1588
|
}
|
|
1594
1589
|
]
|
|
@@ -1602,10 +1597,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1602
1597
|
"preparations": [
|
|
1603
1598
|
{
|
|
1604
1599
|
"id": 1,
|
|
1605
|
-
"promptbookVersion": "0.102.0-
|
|
1600
|
+
"promptbookVersion": "0.102.0-2",
|
|
1606
1601
|
"usage": {
|
|
1607
1602
|
"price": {
|
|
1608
|
-
"value": 0.
|
|
1603
|
+
"value": 0.033093750000000005
|
|
1609
1604
|
},
|
|
1610
1605
|
"input": {
|
|
1611
1606
|
"tokensCount": {
|
|
@@ -1632,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1632
1627
|
},
|
|
1633
1628
|
"output": {
|
|
1634
1629
|
"tokensCount": {
|
|
1635
|
-
"value":
|
|
1630
|
+
"value": 2577
|
|
1636
1631
|
},
|
|
1637
1632
|
"charactersCount": {
|
|
1638
|
-
"value":
|
|
1633
|
+
"value": 2414
|
|
1639
1634
|
},
|
|
1640
1635
|
"wordsCount": {
|
|
1641
|
-
"value":
|
|
1636
|
+
"value": 318
|
|
1642
1637
|
},
|
|
1643
1638
|
"sentencesCount": {
|
|
1644
|
-
"value":
|
|
1639
|
+
"value": 28
|
|
1645
1640
|
},
|
|
1646
1641
|
"linesCount": {
|
|
1647
|
-
"value":
|
|
1642
|
+
"value": 59
|
|
1648
1643
|
},
|
|
1649
1644
|
"paragraphsCount": {
|
|
1650
1645
|
"value": 1
|
|
@@ -2133,32 +2128,27 @@ function getTemplatesPipelineCollection() {
|
|
|
2133
2128
|
"models": [
|
|
2134
2129
|
{
|
|
2135
2130
|
"modelName": "gpt-4.1",
|
|
2136
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
2137
|
-
"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
|
|
2138
2133
|
},
|
|
2139
2134
|
{
|
|
2140
2135
|
"modelName": "chatgpt-4o-latest",
|
|
2141
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2142
|
-
"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
|
|
2143
2138
|
},
|
|
2144
2139
|
{
|
|
2145
2140
|
"modelName": "o4-mini",
|
|
2146
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2147
2142
|
"temperature": 0.2
|
|
2148
2143
|
},
|
|
2149
|
-
{
|
|
2150
|
-
"modelName": "o3",
|
|
2151
|
-
"systemMessage": "You are a developer of the Promptbook Project tackling complex analytical tasks. Disambiguate requirements first, then deliver a concise final solution with key assumptions and a minimal, reproducible example. Keep outputs deterministic and focused.",
|
|
2152
|
-
"temperature": 0.1
|
|
2153
|
-
},
|
|
2154
2144
|
{
|
|
2155
2145
|
"modelName": "gpt-4",
|
|
2156
|
-
"systemMessage": "You are
|
|
2157
|
-
"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
|
|
2158
2148
|
},
|
|
2159
2149
|
{
|
|
2160
2150
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2161
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2162
2152
|
"temperature": 0.3
|
|
2163
2153
|
}
|
|
2164
2154
|
]
|
|
@@ -2172,10 +2162,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2172
2162
|
"preparations": [
|
|
2173
2163
|
{
|
|
2174
2164
|
"id": 1,
|
|
2175
|
-
"promptbookVersion": "0.102.0-
|
|
2165
|
+
"promptbookVersion": "0.102.0-2",
|
|
2176
2166
|
"usage": {
|
|
2177
2167
|
"price": {
|
|
2178
|
-
"value": 0.
|
|
2168
|
+
"value": 0.033093750000000005
|
|
2179
2169
|
},
|
|
2180
2170
|
"input": {
|
|
2181
2171
|
"tokensCount": {
|
|
@@ -2202,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2202
2192
|
},
|
|
2203
2193
|
"output": {
|
|
2204
2194
|
"tokensCount": {
|
|
2205
|
-
"value":
|
|
2195
|
+
"value": 2577
|
|
2206
2196
|
},
|
|
2207
2197
|
"charactersCount": {
|
|
2208
|
-
"value":
|
|
2198
|
+
"value": 2414
|
|
2209
2199
|
},
|
|
2210
2200
|
"wordsCount": {
|
|
2211
|
-
"value":
|
|
2201
|
+
"value": 318
|
|
2212
2202
|
},
|
|
2213
2203
|
"sentencesCount": {
|
|
2214
|
-
"value":
|
|
2204
|
+
"value": 28
|
|
2215
2205
|
},
|
|
2216
2206
|
"linesCount": {
|
|
2217
|
-
"value":
|
|
2207
|
+
"value": 59
|
|
2218
2208
|
},
|
|
2219
2209
|
"paragraphsCount": {
|
|
2220
2210
|
"value": 1
|
|
@@ -2844,23 +2834,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2844
2834
|
"models": [
|
|
2845
2835
|
{
|
|
2846
2836
|
"modelName": "gpt-4.1",
|
|
2847
|
-
"systemMessage": "You are
|
|
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.",
|
|
2848
2838
|
"temperature": 0.2
|
|
2849
2839
|
},
|
|
2850
2840
|
{
|
|
2851
2841
|
"modelName": "chatgpt-4o-latest",
|
|
2852
|
-
"systemMessage": "You are
|
|
2853
|
-
"temperature": 0.
|
|
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.",
|
|
2843
|
+
"temperature": 0.2
|
|
2854
2844
|
},
|
|
2855
2845
|
{
|
|
2856
2846
|
"modelName": "gpt-4",
|
|
2857
|
-
"systemMessage": "You are an expert linguist and
|
|
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.",
|
|
2858
2848
|
"temperature": 0.2
|
|
2859
2849
|
},
|
|
2860
2850
|
{
|
|
2861
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2862
|
-
"systemMessage": "You are
|
|
2863
|
-
"temperature": 0.
|
|
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.",
|
|
2853
|
+
"temperature": 0.25
|
|
2864
2854
|
}
|
|
2865
2855
|
]
|
|
2866
2856
|
}
|
|
@@ -2873,10 +2863,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2873
2863
|
"preparations": [
|
|
2874
2864
|
{
|
|
2875
2865
|
"id": 1,
|
|
2876
|
-
"promptbookVersion": "0.102.0-
|
|
2866
|
+
"promptbookVersion": "0.102.0-2",
|
|
2877
2867
|
"usage": {
|
|
2878
2868
|
"price": {
|
|
2879
|
-
"value": 0.
|
|
2869
|
+
"value": 0.029192500000000003
|
|
2880
2870
|
},
|
|
2881
2871
|
"input": {
|
|
2882
2872
|
"tokensCount": {
|
|
@@ -2903,19 +2893,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2903
2893
|
},
|
|
2904
2894
|
"output": {
|
|
2905
2895
|
"tokensCount": {
|
|
2906
|
-
"value":
|
|
2896
|
+
"value": 2187
|
|
2907
2897
|
},
|
|
2908
2898
|
"charactersCount": {
|
|
2909
|
-
"value":
|
|
2899
|
+
"value": 3131
|
|
2910
2900
|
},
|
|
2911
2901
|
"wordsCount": {
|
|
2912
|
-
"value":
|
|
2902
|
+
"value": 454
|
|
2913
2903
|
},
|
|
2914
2904
|
"sentencesCount": {
|
|
2915
|
-
"value":
|
|
2905
|
+
"value": 27
|
|
2916
2906
|
},
|
|
2917
2907
|
"linesCount": {
|
|
2918
|
-
"value":
|
|
2908
|
+
"value": 68
|
|
2919
2909
|
},
|
|
2920
2910
|
"paragraphsCount": {
|
|
2921
2911
|
"value": 1
|
|
@@ -2987,23 +2977,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2987
2977
|
"models": [
|
|
2988
2978
|
{
|
|
2989
2979
|
"modelName": "gpt-4.1",
|
|
2990
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2991
2981
|
"temperature": 0.7
|
|
2992
2982
|
},
|
|
2993
2983
|
{
|
|
2994
2984
|
"modelName": "chatgpt-4o-latest",
|
|
2995
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2996
2986
|
"temperature": 0.8
|
|
2997
2987
|
},
|
|
2998
2988
|
{
|
|
2999
2989
|
"modelName": "gpt-4",
|
|
3000
|
-
"systemMessage": "You are
|
|
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.",
|
|
3001
2991
|
"temperature": 0.7
|
|
3002
2992
|
},
|
|
3003
2993
|
{
|
|
3004
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3005
|
-
"systemMessage": "You are a
|
|
3006
|
-
"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
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
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
|
|
3007
3002
|
}
|
|
3008
3003
|
]
|
|
3009
3004
|
}
|
|
@@ -3016,10 +3011,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3016
3011
|
"preparations": [
|
|
3017
3012
|
{
|
|
3018
3013
|
"id": 1,
|
|
3019
|
-
"promptbookVersion": "0.102.0-
|
|
3014
|
+
"promptbookVersion": "0.102.0-2",
|
|
3020
3015
|
"usage": {
|
|
3021
3016
|
"price": {
|
|
3022
|
-
"value": 0.
|
|
3017
|
+
"value": 0.0316825
|
|
3023
3018
|
},
|
|
3024
3019
|
"input": {
|
|
3025
3020
|
"tokensCount": {
|
|
@@ -3046,19 +3041,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3046
3041
|
},
|
|
3047
3042
|
"output": {
|
|
3048
3043
|
"tokensCount": {
|
|
3049
|
-
"value":
|
|
3044
|
+
"value": 2436
|
|
3050
3045
|
},
|
|
3051
3046
|
"charactersCount": {
|
|
3052
|
-
"value":
|
|
3047
|
+
"value": 3318
|
|
3053
3048
|
},
|
|
3054
3049
|
"wordsCount": {
|
|
3055
|
-
"value":
|
|
3050
|
+
"value": 467
|
|
3056
3051
|
},
|
|
3057
3052
|
"sentencesCount": {
|
|
3058
|
-
"value":
|
|
3053
|
+
"value": 45
|
|
3059
3054
|
},
|
|
3060
3055
|
"linesCount": {
|
|
3061
|
-
"value":
|
|
3056
|
+
"value": 72
|
|
3062
3057
|
},
|
|
3063
3058
|
"paragraphsCount": {
|
|
3064
3059
|
"value": 1
|
|
@@ -3112,7 +3107,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3112
3107
|
"preparations": [
|
|
3113
3108
|
{
|
|
3114
3109
|
"id": 1,
|
|
3115
|
-
"promptbookVersion": "0.102.0-
|
|
3110
|
+
"promptbookVersion": "0.102.0-2",
|
|
3116
3111
|
"usage": {
|
|
3117
3112
|
"price": {
|
|
3118
3113
|
"value": 0
|
|
@@ -3221,28 +3216,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3221
3216
|
"models": [
|
|
3222
3217
|
{
|
|
3223
3218
|
"modelName": "gpt-4.1",
|
|
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. 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.",
|
|
3220
|
+
"temperature": 0.3
|
|
3226
3221
|
},
|
|
3227
3222
|
{
|
|
3228
3223
|
"modelName": "chatgpt-4o-latest",
|
|
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. 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
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"modelName": "gpt-4",
|
|
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
3231
|
},
|
|
3232
3232
|
{
|
|
3233
3233
|
"modelName": "o4-mini",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3235
|
-
"temperature": 0.
|
|
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.",
|
|
3235
|
+
"temperature": 0.3
|
|
3236
3236
|
},
|
|
3237
3237
|
{
|
|
3238
|
-
"modelName": "gpt-
|
|
3239
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3238
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
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
3240
|
"temperature": 0.4
|
|
3241
3241
|
},
|
|
3242
3242
|
{
|
|
3243
|
-
"modelName": "
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3245
|
-
"temperature": 0.
|
|
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
|
|
3246
3246
|
}
|
|
3247
3247
|
]
|
|
3248
3248
|
}
|
|
@@ -3255,10 +3255,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3255
3255
|
"preparations": [
|
|
3256
3256
|
{
|
|
3257
3257
|
"id": 1,
|
|
3258
|
-
"promptbookVersion": "0.102.0-
|
|
3258
|
+
"promptbookVersion": "0.102.0-2",
|
|
3259
3259
|
"usage": {
|
|
3260
3260
|
"price": {
|
|
3261
|
-
"value": 0.
|
|
3261
|
+
"value": 0.034792500000000004
|
|
3262
3262
|
},
|
|
3263
3263
|
"input": {
|
|
3264
3264
|
"tokensCount": {
|
|
@@ -3285,19 +3285,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3285
3285
|
},
|
|
3286
3286
|
"output": {
|
|
3287
3287
|
"tokensCount": {
|
|
3288
|
-
"value":
|
|
3288
|
+
"value": 2747
|
|
3289
3289
|
},
|
|
3290
3290
|
"charactersCount": {
|
|
3291
|
-
"value":
|
|
3291
|
+
"value": 3027
|
|
3292
3292
|
},
|
|
3293
3293
|
"wordsCount": {
|
|
3294
|
-
"value":
|
|
3294
|
+
"value": 395
|
|
3295
3295
|
},
|
|
3296
3296
|
"sentencesCount": {
|
|
3297
|
-
"value":
|
|
3297
|
+
"value": 35
|
|
3298
3298
|
},
|
|
3299
3299
|
"linesCount": {
|
|
3300
|
-
"value":
|
|
3300
|
+
"value": 72
|
|
3301
3301
|
},
|
|
3302
3302
|
"paragraphsCount": {
|
|
3303
3303
|
"value": 1
|
|
@@ -3377,22 +3377,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3377
3377
|
"models": [
|
|
3378
3378
|
{
|
|
3379
3379
|
"modelName": "gpt-4.1",
|
|
3380
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑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
3381
|
"temperature": 0.4
|
|
3382
3382
|
},
|
|
3383
3383
|
{
|
|
3384
3384
|
"modelName": "chatgpt-4o-latest",
|
|
3385
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3386
|
-
"temperature": 0.
|
|
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
3387
|
},
|
|
3388
3388
|
{
|
|
3389
3389
|
"modelName": "gpt-4",
|
|
3390
|
-
"systemMessage": "You are a
|
|
3391
|
-
"temperature": 0.
|
|
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
3392
|
},
|
|
3393
3393
|
{
|
|
3394
3394
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3395
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
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
3396
|
"temperature": 0.6
|
|
3397
3397
|
}
|
|
3398
3398
|
]
|
|
@@ -3406,10 +3406,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3406
3406
|
"preparations": [
|
|
3407
3407
|
{
|
|
3408
3408
|
"id": 1,
|
|
3409
|
-
"promptbookVersion": "0.102.0-
|
|
3409
|
+
"promptbookVersion": "0.102.0-2",
|
|
3410
3410
|
"usage": {
|
|
3411
3411
|
"price": {
|
|
3412
|
-
"value": 0.
|
|
3412
|
+
"value": 0.0281675
|
|
3413
3413
|
},
|
|
3414
3414
|
"input": {
|
|
3415
3415
|
"tokensCount": {
|
|
@@ -3436,19 +3436,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3436
3436
|
},
|
|
3437
3437
|
"output": {
|
|
3438
3438
|
"tokensCount": {
|
|
3439
|
-
"value":
|
|
3439
|
+
"value": 2084
|
|
3440
3440
|
},
|
|
3441
3441
|
"charactersCount": {
|
|
3442
|
-
"value":
|
|
3442
|
+
"value": 2702
|
|
3443
3443
|
},
|
|
3444
3444
|
"wordsCount": {
|
|
3445
|
-
"value":
|
|
3445
|
+
"value": 374
|
|
3446
3446
|
},
|
|
3447
3447
|
"sentencesCount": {
|
|
3448
|
-
"value":
|
|
3448
|
+
"value": 32
|
|
3449
3449
|
},
|
|
3450
3450
|
"linesCount": {
|
|
3451
|
-
"value":
|
|
3451
|
+
"value": 60
|
|
3452
3452
|
},
|
|
3453
3453
|
"paragraphsCount": {
|
|
3454
3454
|
"value": 1
|
|
@@ -3705,22 +3705,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3705
3705
|
"models": [
|
|
3706
3706
|
{
|
|
3707
3707
|
"modelName": "gpt-4.1",
|
|
3708
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3709
|
-
"temperature": 0.
|
|
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.",
|
|
3709
|
+
"temperature": 0.3
|
|
3710
3710
|
},
|
|
3711
3711
|
{
|
|
3712
3712
|
"modelName": "chatgpt-4o-latest",
|
|
3713
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3714
|
-
"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
|
|
3715
3715
|
},
|
|
3716
3716
|
{
|
|
3717
3717
|
"modelName": "gpt-4",
|
|
3718
|
-
"systemMessage": "You are a
|
|
3719
|
-
"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
|
|
3720
|
+
},
|
|
3721
|
+
{
|
|
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
|
|
3720
3725
|
},
|
|
3721
3726
|
{
|
|
3722
3727
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3723
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
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.",
|
|
3724
3729
|
"temperature": 0.35
|
|
3725
3730
|
}
|
|
3726
3731
|
]
|
|
@@ -3734,10 +3739,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3734
3739
|
"preparations": [
|
|
3735
3740
|
{
|
|
3736
3741
|
"id": 1,
|
|
3737
|
-
"promptbookVersion": "0.102.0-
|
|
3742
|
+
"promptbookVersion": "0.102.0-2",
|
|
3738
3743
|
"usage": {
|
|
3739
3744
|
"price": {
|
|
3740
|
-
"value": 0.
|
|
3745
|
+
"value": 0.031962500000000005
|
|
3741
3746
|
},
|
|
3742
3747
|
"input": {
|
|
3743
3748
|
"tokensCount": {
|
|
@@ -3764,19 +3769,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3764
3769
|
},
|
|
3765
3770
|
"output": {
|
|
3766
3771
|
"tokensCount": {
|
|
3767
|
-
"value":
|
|
3772
|
+
"value": 2464
|
|
3768
3773
|
},
|
|
3769
3774
|
"charactersCount": {
|
|
3770
|
-
"value":
|
|
3775
|
+
"value": 2792
|
|
3771
3776
|
},
|
|
3772
3777
|
"wordsCount": {
|
|
3773
|
-
"value":
|
|
3778
|
+
"value": 372
|
|
3774
3779
|
},
|
|
3775
3780
|
"sentencesCount": {
|
|
3776
|
-
"value":
|
|
3781
|
+
"value": 33
|
|
3777
3782
|
},
|
|
3778
3783
|
"linesCount": {
|
|
3779
|
-
"value":
|
|
3784
|
+
"value": 65
|
|
3780
3785
|
},
|
|
3781
3786
|
"paragraphsCount": {
|
|
3782
3787
|
"value": 1
|
|
@@ -3847,28 +3852,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3847
3852
|
"models": [
|
|
3848
3853
|
{
|
|
3849
3854
|
"modelName": "gpt-4.1",
|
|
3850
|
-
"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.",
|
|
3851
3856
|
"temperature": 0.9
|
|
3852
3857
|
},
|
|
3853
3858
|
{
|
|
3854
3859
|
"modelName": "chatgpt-4o-latest",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller. Craft
|
|
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.",
|
|
3856
3861
|
"temperature": 0.9
|
|
3857
3862
|
},
|
|
3858
3863
|
{
|
|
3859
3864
|
"modelName": "gpt-4",
|
|
3860
|
-
"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).",
|
|
3861
3866
|
"temperature": 0.85
|
|
3862
3867
|
},
|
|
3863
3868
|
{
|
|
3864
3869
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
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.",
|
|
3866
3871
|
"temperature": 0.8
|
|
3867
3872
|
},
|
|
3868
3873
|
{
|
|
3869
3874
|
"modelName": "gpt-3.5-turbo",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3871
|
-
"temperature": 0.
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, coherent verse and prose with fresh imagery, fitting the requested style and constraints.",
|
|
3876
|
+
"temperature": 0.8
|
|
3872
3877
|
}
|
|
3873
3878
|
]
|
|
3874
3879
|
}
|
|
@@ -3881,10 +3886,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3881
3886
|
"preparations": [
|
|
3882
3887
|
{
|
|
3883
3888
|
"id": 1,
|
|
3884
|
-
"promptbookVersion": "0.102.0-
|
|
3889
|
+
"promptbookVersion": "0.102.0-2",
|
|
3885
3890
|
"usage": {
|
|
3886
3891
|
"price": {
|
|
3887
|
-
"value": 0.
|
|
3892
|
+
"value": 0.029741250000000004
|
|
3888
3893
|
},
|
|
3889
3894
|
"input": {
|
|
3890
3895
|
"tokensCount": {
|
|
@@ -3911,19 +3916,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3911
3916
|
},
|
|
3912
3917
|
"output": {
|
|
3913
3918
|
"tokensCount": {
|
|
3914
|
-
"value":
|
|
3919
|
+
"value": 2242
|
|
3915
3920
|
},
|
|
3916
3921
|
"charactersCount": {
|
|
3917
|
-
"value":
|
|
3922
|
+
"value": 1865
|
|
3918
3923
|
},
|
|
3919
3924
|
"wordsCount": {
|
|
3920
|
-
"value":
|
|
3925
|
+
"value": 253
|
|
3921
3926
|
},
|
|
3922
3927
|
"sentencesCount": {
|
|
3923
|
-
"value":
|
|
3928
|
+
"value": 26
|
|
3924
3929
|
},
|
|
3925
3930
|
"linesCount": {
|
|
3926
|
-
"value":
|
|
3931
|
+
"value": 49
|
|
3927
3932
|
},
|
|
3928
3933
|
"paragraphsCount": {
|
|
3929
3934
|
"value": 1
|