@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/umd/index.umd.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* @generated
|
|
23
23
|
* @see https://github.com/webgptorg/promptbook
|
|
24
24
|
*/
|
|
25
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-3';
|
|
26
26
|
/**
|
|
27
27
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
28
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1571,23 +1571,28 @@
|
|
|
1571
1571
|
"models": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
1575
|
-
"temperature": 0.
|
|
1574
|
+
"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.",
|
|
1575
|
+
"temperature": 0.25
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1580
|
-
"temperature": 0.
|
|
1579
|
+
"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.",
|
|
1580
|
+
"temperature": 0.35
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"modelName": "o4-mini",
|
|
1584
|
+
"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.",
|
|
1585
|
+
"temperature": 0.2
|
|
1581
1586
|
},
|
|
1582
1587
|
{
|
|
1583
1588
|
"modelName": "gpt-4",
|
|
1584
|
-
"systemMessage": "You are
|
|
1585
|
-
"temperature": 0.
|
|
1589
|
+
"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.",
|
|
1590
|
+
"temperature": 0.3
|
|
1586
1591
|
},
|
|
1587
1592
|
{
|
|
1588
1593
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1589
|
-
"systemMessage": "You are a cost-efficient assistant and
|
|
1590
|
-
"temperature": 0.
|
|
1594
|
+
"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.",
|
|
1595
|
+
"temperature": 0.3
|
|
1591
1596
|
}
|
|
1592
1597
|
]
|
|
1593
1598
|
}
|
|
@@ -1600,10 +1605,10 @@
|
|
|
1600
1605
|
"preparations": [
|
|
1601
1606
|
{
|
|
1602
1607
|
"id": 1,
|
|
1603
|
-
"promptbookVersion": "0.102.0-
|
|
1608
|
+
"promptbookVersion": "0.102.0-2",
|
|
1604
1609
|
"usage": {
|
|
1605
1610
|
"price": {
|
|
1606
|
-
"value": 0.
|
|
1611
|
+
"value": 0.033093750000000005
|
|
1607
1612
|
},
|
|
1608
1613
|
"input": {
|
|
1609
1614
|
"tokensCount": {
|
|
@@ -1630,25 +1635,25 @@
|
|
|
1630
1635
|
},
|
|
1631
1636
|
"output": {
|
|
1632
1637
|
"tokensCount": {
|
|
1633
|
-
"value":
|
|
1638
|
+
"value": 2577
|
|
1634
1639
|
},
|
|
1635
1640
|
"charactersCount": {
|
|
1636
|
-
"value":
|
|
1641
|
+
"value": 2414
|
|
1637
1642
|
},
|
|
1638
1643
|
"wordsCount": {
|
|
1639
|
-
"value":
|
|
1644
|
+
"value": 318
|
|
1640
1645
|
},
|
|
1641
1646
|
"sentencesCount": {
|
|
1642
|
-
"value":
|
|
1647
|
+
"value": 28
|
|
1643
1648
|
},
|
|
1644
1649
|
"linesCount": {
|
|
1645
|
-
"value":
|
|
1650
|
+
"value": 59
|
|
1646
1651
|
},
|
|
1647
1652
|
"paragraphsCount": {
|
|
1648
1653
|
"value": 1
|
|
1649
1654
|
},
|
|
1650
1655
|
"pagesCount": {
|
|
1651
|
-
"value":
|
|
1656
|
+
"value": 2
|
|
1652
1657
|
}
|
|
1653
1658
|
}
|
|
1654
1659
|
}
|
|
@@ -2131,23 +2136,28 @@
|
|
|
2131
2136
|
"models": [
|
|
2132
2137
|
{
|
|
2133
2138
|
"modelName": "gpt-4.1",
|
|
2134
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
2135
|
-
"temperature": 0.
|
|
2139
|
+
"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.",
|
|
2140
|
+
"temperature": 0.25
|
|
2136
2141
|
},
|
|
2137
2142
|
{
|
|
2138
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2139
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2140
|
-
"temperature": 0.
|
|
2144
|
+
"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.",
|
|
2145
|
+
"temperature": 0.35
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
"modelName": "o4-mini",
|
|
2149
|
+
"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.",
|
|
2150
|
+
"temperature": 0.2
|
|
2141
2151
|
},
|
|
2142
2152
|
{
|
|
2143
2153
|
"modelName": "gpt-4",
|
|
2144
|
-
"systemMessage": "You are
|
|
2145
|
-
"temperature": 0.
|
|
2154
|
+
"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.",
|
|
2155
|
+
"temperature": 0.3
|
|
2146
2156
|
},
|
|
2147
2157
|
{
|
|
2148
2158
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2149
|
-
"systemMessage": "You are a cost-efficient assistant and
|
|
2150
|
-
"temperature": 0.
|
|
2159
|
+
"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.",
|
|
2160
|
+
"temperature": 0.3
|
|
2151
2161
|
}
|
|
2152
2162
|
]
|
|
2153
2163
|
}
|
|
@@ -2160,10 +2170,10 @@
|
|
|
2160
2170
|
"preparations": [
|
|
2161
2171
|
{
|
|
2162
2172
|
"id": 1,
|
|
2163
|
-
"promptbookVersion": "0.102.0-
|
|
2173
|
+
"promptbookVersion": "0.102.0-2",
|
|
2164
2174
|
"usage": {
|
|
2165
2175
|
"price": {
|
|
2166
|
-
"value": 0.
|
|
2176
|
+
"value": 0.033093750000000005
|
|
2167
2177
|
},
|
|
2168
2178
|
"input": {
|
|
2169
2179
|
"tokensCount": {
|
|
@@ -2190,25 +2200,25 @@
|
|
|
2190
2200
|
},
|
|
2191
2201
|
"output": {
|
|
2192
2202
|
"tokensCount": {
|
|
2193
|
-
"value":
|
|
2203
|
+
"value": 2577
|
|
2194
2204
|
},
|
|
2195
2205
|
"charactersCount": {
|
|
2196
|
-
"value":
|
|
2206
|
+
"value": 2414
|
|
2197
2207
|
},
|
|
2198
2208
|
"wordsCount": {
|
|
2199
|
-
"value":
|
|
2209
|
+
"value": 318
|
|
2200
2210
|
},
|
|
2201
2211
|
"sentencesCount": {
|
|
2202
|
-
"value":
|
|
2212
|
+
"value": 28
|
|
2203
2213
|
},
|
|
2204
2214
|
"linesCount": {
|
|
2205
|
-
"value":
|
|
2215
|
+
"value": 59
|
|
2206
2216
|
},
|
|
2207
2217
|
"paragraphsCount": {
|
|
2208
2218
|
"value": 1
|
|
2209
2219
|
},
|
|
2210
2220
|
"pagesCount": {
|
|
2211
|
-
"value":
|
|
2221
|
+
"value": 2
|
|
2212
2222
|
}
|
|
2213
2223
|
}
|
|
2214
2224
|
}
|
|
@@ -2832,27 +2842,22 @@
|
|
|
2832
2842
|
"models": [
|
|
2833
2843
|
{
|
|
2834
2844
|
"modelName": "gpt-4.1",
|
|
2835
|
-
"systemMessage": "You are
|
|
2836
|
-
"temperature": 0.
|
|
2845
|
+
"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.",
|
|
2846
|
+
"temperature": 0.2
|
|
2837
2847
|
},
|
|
2838
2848
|
{
|
|
2839
2849
|
"modelName": "chatgpt-4o-latest",
|
|
2840
|
-
"systemMessage": "You are
|
|
2850
|
+
"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.",
|
|
2841
2851
|
"temperature": 0.2
|
|
2842
2852
|
},
|
|
2843
2853
|
{
|
|
2844
2854
|
"modelName": "gpt-4",
|
|
2845
|
-
"systemMessage": "You are
|
|
2855
|
+
"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.",
|
|
2846
2856
|
"temperature": 0.2
|
|
2847
2857
|
},
|
|
2848
2858
|
{
|
|
2849
2859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2850
|
-
"systemMessage": "You are
|
|
2851
|
-
"temperature": 0.25
|
|
2852
|
-
},
|
|
2853
|
-
{
|
|
2854
|
-
"modelName": "gpt-3.5-turbo",
|
|
2855
|
-
"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.'",
|
|
2860
|
+
"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.",
|
|
2856
2861
|
"temperature": 0.25
|
|
2857
2862
|
}
|
|
2858
2863
|
]
|
|
@@ -2866,10 +2871,10 @@
|
|
|
2866
2871
|
"preparations": [
|
|
2867
2872
|
{
|
|
2868
2873
|
"id": 1,
|
|
2869
|
-
"promptbookVersion": "0.102.0-
|
|
2874
|
+
"promptbookVersion": "0.102.0-2",
|
|
2870
2875
|
"usage": {
|
|
2871
2876
|
"price": {
|
|
2872
|
-
"value": 0.
|
|
2877
|
+
"value": 0.029192500000000003
|
|
2873
2878
|
},
|
|
2874
2879
|
"input": {
|
|
2875
2880
|
"tokensCount": {
|
|
@@ -2896,19 +2901,19 @@
|
|
|
2896
2901
|
},
|
|
2897
2902
|
"output": {
|
|
2898
2903
|
"tokensCount": {
|
|
2899
|
-
"value":
|
|
2904
|
+
"value": 2187
|
|
2900
2905
|
},
|
|
2901
2906
|
"charactersCount": {
|
|
2902
|
-
"value":
|
|
2907
|
+
"value": 3131
|
|
2903
2908
|
},
|
|
2904
2909
|
"wordsCount": {
|
|
2905
|
-
"value":
|
|
2910
|
+
"value": 454
|
|
2906
2911
|
},
|
|
2907
2912
|
"sentencesCount": {
|
|
2908
|
-
"value":
|
|
2913
|
+
"value": 27
|
|
2909
2914
|
},
|
|
2910
2915
|
"linesCount": {
|
|
2911
|
-
"value":
|
|
2916
|
+
"value": 68
|
|
2912
2917
|
},
|
|
2913
2918
|
"paragraphsCount": {
|
|
2914
2919
|
"value": 1
|
|
@@ -2980,28 +2985,28 @@
|
|
|
2980
2985
|
"models": [
|
|
2981
2986
|
{
|
|
2982
2987
|
"modelName": "gpt-4.1",
|
|
2983
|
-
"systemMessage": "You are a
|
|
2984
|
-
"temperature": 0.
|
|
2988
|
+
"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.",
|
|
2989
|
+
"temperature": 0.7
|
|
2985
2990
|
},
|
|
2986
2991
|
{
|
|
2987
2992
|
"modelName": "chatgpt-4o-latest",
|
|
2988
|
-
"systemMessage": "You are a
|
|
2989
|
-
"temperature": 0.
|
|
2993
|
+
"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.",
|
|
2994
|
+
"temperature": 0.8
|
|
2990
2995
|
},
|
|
2991
2996
|
{
|
|
2992
2997
|
"modelName": "gpt-4",
|
|
2993
|
-
"systemMessage": "You are
|
|
2994
|
-
"temperature": 0.
|
|
2998
|
+
"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.",
|
|
2999
|
+
"temperature": 0.7
|
|
2995
3000
|
},
|
|
2996
3001
|
{
|
|
2997
3002
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2998
|
-
"systemMessage": "You are a
|
|
2999
|
-
"temperature": 0.
|
|
3003
|
+
"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.",
|
|
3004
|
+
"temperature": 0.6
|
|
3000
3005
|
},
|
|
3001
3006
|
{
|
|
3002
3007
|
"modelName": "gpt-3.5-turbo-1106",
|
|
3003
|
-
"systemMessage": "You are a
|
|
3004
|
-
"temperature": 0.
|
|
3008
|
+
"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.",
|
|
3009
|
+
"temperature": 0.6
|
|
3005
3010
|
}
|
|
3006
3011
|
]
|
|
3007
3012
|
}
|
|
@@ -3014,10 +3019,10 @@
|
|
|
3014
3019
|
"preparations": [
|
|
3015
3020
|
{
|
|
3016
3021
|
"id": 1,
|
|
3017
|
-
"promptbookVersion": "0.102.0-
|
|
3022
|
+
"promptbookVersion": "0.102.0-2",
|
|
3018
3023
|
"usage": {
|
|
3019
3024
|
"price": {
|
|
3020
|
-
"value": 0.
|
|
3025
|
+
"value": 0.0316825
|
|
3021
3026
|
},
|
|
3022
3027
|
"input": {
|
|
3023
3028
|
"tokensCount": {
|
|
@@ -3044,19 +3049,19 @@
|
|
|
3044
3049
|
},
|
|
3045
3050
|
"output": {
|
|
3046
3051
|
"tokensCount": {
|
|
3047
|
-
"value":
|
|
3052
|
+
"value": 2436
|
|
3048
3053
|
},
|
|
3049
3054
|
"charactersCount": {
|
|
3050
|
-
"value":
|
|
3055
|
+
"value": 3318
|
|
3051
3056
|
},
|
|
3052
3057
|
"wordsCount": {
|
|
3053
|
-
"value":
|
|
3058
|
+
"value": 467
|
|
3054
3059
|
},
|
|
3055
3060
|
"sentencesCount": {
|
|
3056
|
-
"value":
|
|
3061
|
+
"value": 45
|
|
3057
3062
|
},
|
|
3058
3063
|
"linesCount": {
|
|
3059
|
-
"value":
|
|
3064
|
+
"value": 72
|
|
3060
3065
|
},
|
|
3061
3066
|
"paragraphsCount": {
|
|
3062
3067
|
"value": 1
|
|
@@ -3110,7 +3115,7 @@
|
|
|
3110
3115
|
"preparations": [
|
|
3111
3116
|
{
|
|
3112
3117
|
"id": 1,
|
|
3113
|
-
"promptbookVersion": "0.102.0-
|
|
3118
|
+
"promptbookVersion": "0.102.0-2",
|
|
3114
3119
|
"usage": {
|
|
3115
3120
|
"price": {
|
|
3116
3121
|
"value": 0
|
|
@@ -3216,26 +3221,36 @@
|
|
|
3216
3221
|
"modelsRequirements": [
|
|
3217
3222
|
{
|
|
3218
3223
|
"modelVariant": "CHAT",
|
|
3219
|
-
"": [
|
|
3224
|
+
"models": [
|
|
3220
3225
|
{
|
|
3221
3226
|
"modelName": "gpt-4.1",
|
|
3222
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3227
|
+
"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.",
|
|
3223
3228
|
"temperature": 0.3
|
|
3224
3229
|
},
|
|
3225
3230
|
{
|
|
3226
3231
|
"modelName": "chatgpt-4o-latest",
|
|
3227
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3228
|
-
"temperature": 0.
|
|
3232
|
+
"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.",
|
|
3233
|
+
"temperature": 0.5
|
|
3229
3234
|
},
|
|
3230
3235
|
{
|
|
3231
3236
|
"modelName": "gpt-4",
|
|
3232
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3237
|
+
"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.",
|
|
3238
|
+
"temperature": 0.3
|
|
3239
|
+
},
|
|
3240
|
+
{
|
|
3241
|
+
"modelName": "o4-mini",
|
|
3242
|
+
"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.",
|
|
3233
3243
|
"temperature": 0.3
|
|
3234
3244
|
},
|
|
3235
3245
|
{
|
|
3236
3246
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3237
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3238
|
-
"temperature": 0.
|
|
3247
|
+
"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.",
|
|
3248
|
+
"temperature": 0.4
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"modelName": "o3",
|
|
3252
|
+
"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.",
|
|
3253
|
+
"temperature": 0.2
|
|
3239
3254
|
}
|
|
3240
3255
|
]
|
|
3241
3256
|
}
|
|
@@ -3248,10 +3263,10 @@
|
|
|
3248
3263
|
"preparations": [
|
|
3249
3264
|
{
|
|
3250
3265
|
"id": 1,
|
|
3251
|
-
"promptbookVersion": "0.102.0-
|
|
3266
|
+
"promptbookVersion": "0.102.0-2",
|
|
3252
3267
|
"usage": {
|
|
3253
3268
|
"price": {
|
|
3254
|
-
"value": 0.
|
|
3269
|
+
"value": 0.034792500000000004
|
|
3255
3270
|
},
|
|
3256
3271
|
"input": {
|
|
3257
3272
|
"tokensCount": {
|
|
@@ -3278,19 +3293,19 @@
|
|
|
3278
3293
|
},
|
|
3279
3294
|
"output": {
|
|
3280
3295
|
"tokensCount": {
|
|
3281
|
-
"value":
|
|
3296
|
+
"value": 2747
|
|
3282
3297
|
},
|
|
3283
3298
|
"charactersCount": {
|
|
3284
|
-
"value":
|
|
3299
|
+
"value": 3027
|
|
3285
3300
|
},
|
|
3286
3301
|
"wordsCount": {
|
|
3287
|
-
"value":
|
|
3302
|
+
"value": 395
|
|
3288
3303
|
},
|
|
3289
3304
|
"sentencesCount": {
|
|
3290
3305
|
"value": 35
|
|
3291
3306
|
},
|
|
3292
3307
|
"linesCount": {
|
|
3293
|
-
"value":
|
|
3308
|
+
"value": 72
|
|
3294
3309
|
},
|
|
3295
3310
|
"paragraphsCount": {
|
|
3296
3311
|
"value": 1
|
|
@@ -3366,27 +3381,29 @@
|
|
|
3366
3381
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3367
3382
|
"modelsRequirements": [
|
|
3368
3383
|
{
|
|
3369
|
-
"
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3384
|
+
"modelVariant": "CHAT",
|
|
3385
|
+
"models": [
|
|
3386
|
+
{
|
|
3387
|
+
"modelName": "gpt-4.1",
|
|
3388
|
+
"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}.",
|
|
3389
|
+
"temperature": 0.4
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
"modelName": "chatgpt-4o-latest",
|
|
3393
|
+
"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.",
|
|
3394
|
+
"temperature": 0.5
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"modelName": "gpt-4",
|
|
3398
|
+
"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.",
|
|
3399
|
+
"temperature": 0.5
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3403
|
+
"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.",
|
|
3404
|
+
"temperature": 0.6
|
|
3405
|
+
}
|
|
3406
|
+
]
|
|
3390
3407
|
}
|
|
3391
3408
|
],
|
|
3392
3409
|
"preparationIds": [
|
|
@@ -3397,10 +3414,10 @@
|
|
|
3397
3414
|
"preparations": [
|
|
3398
3415
|
{
|
|
3399
3416
|
"id": 1,
|
|
3400
|
-
"promptbookVersion": "0.102.0-
|
|
3417
|
+
"promptbookVersion": "0.102.0-2",
|
|
3401
3418
|
"usage": {
|
|
3402
3419
|
"price": {
|
|
3403
|
-
"value": 0.
|
|
3420
|
+
"value": 0.0281675
|
|
3404
3421
|
},
|
|
3405
3422
|
"input": {
|
|
3406
3423
|
"tokensCount": {
|
|
@@ -3427,19 +3444,19 @@
|
|
|
3427
3444
|
},
|
|
3428
3445
|
"output": {
|
|
3429
3446
|
"tokensCount": {
|
|
3430
|
-
"value":
|
|
3447
|
+
"value": 2084
|
|
3431
3448
|
},
|
|
3432
3449
|
"charactersCount": {
|
|
3433
|
-
"value":
|
|
3450
|
+
"value": 2702
|
|
3434
3451
|
},
|
|
3435
3452
|
"wordsCount": {
|
|
3436
|
-
"value":
|
|
3453
|
+
"value": 374
|
|
3437
3454
|
},
|
|
3438
3455
|
"sentencesCount": {
|
|
3439
|
-
"value":
|
|
3456
|
+
"value": 32
|
|
3440
3457
|
},
|
|
3441
3458
|
"linesCount": {
|
|
3442
|
-
"value":
|
|
3459
|
+
"value": 60
|
|
3443
3460
|
},
|
|
3444
3461
|
"paragraphsCount": {
|
|
3445
3462
|
"value": 1
|
|
@@ -3696,28 +3713,28 @@
|
|
|
3696
3713
|
"models": [
|
|
3697
3714
|
{
|
|
3698
3715
|
"modelName": "gpt-4.1",
|
|
3699
|
-
"systemMessage": "You are a professional linguist and
|
|
3716
|
+
"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.",
|
|
3700
3717
|
"temperature": 0.3
|
|
3701
3718
|
},
|
|
3702
3719
|
{
|
|
3703
3720
|
"modelName": "chatgpt-4o-latest",
|
|
3704
|
-
"systemMessage": "You are a friendly
|
|
3705
|
-
"temperature": 0.
|
|
3721
|
+
"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.",
|
|
3722
|
+
"temperature": 0.4
|
|
3706
3723
|
},
|
|
3707
3724
|
{
|
|
3708
3725
|
"modelName": "gpt-4",
|
|
3709
|
-
"systemMessage": "You are
|
|
3710
|
-
"temperature": 0.
|
|
3726
|
+
"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.",
|
|
3727
|
+
"temperature": 0.25
|
|
3711
3728
|
},
|
|
3712
3729
|
{
|
|
3713
|
-
"modelName": "
|
|
3714
|
-
"systemMessage": "You are
|
|
3715
|
-
"temperature": 0.
|
|
3730
|
+
"modelName": "o4-mini",
|
|
3731
|
+
"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.",
|
|
3732
|
+
"temperature": 0.35
|
|
3716
3733
|
},
|
|
3717
3734
|
{
|
|
3718
|
-
"modelName": "gpt-3.5-turbo-
|
|
3719
|
-
"systemMessage": "You are a concise,
|
|
3720
|
-
"temperature": 0.
|
|
3735
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3736
|
+
"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.",
|
|
3737
|
+
"temperature": 0.35
|
|
3721
3738
|
}
|
|
3722
3739
|
]
|
|
3723
3740
|
}
|
|
@@ -3730,10 +3747,10 @@
|
|
|
3730
3747
|
"preparations": [
|
|
3731
3748
|
{
|
|
3732
3749
|
"id": 1,
|
|
3733
|
-
"promptbookVersion": "0.102.0-
|
|
3750
|
+
"promptbookVersion": "0.102.0-2",
|
|
3734
3751
|
"usage": {
|
|
3735
3752
|
"price": {
|
|
3736
|
-
"value": 0.
|
|
3753
|
+
"value": 0.031962500000000005
|
|
3737
3754
|
},
|
|
3738
3755
|
"input": {
|
|
3739
3756
|
"tokensCount": {
|
|
@@ -3760,19 +3777,19 @@
|
|
|
3760
3777
|
},
|
|
3761
3778
|
"output": {
|
|
3762
3779
|
"tokensCount": {
|
|
3763
|
-
"value":
|
|
3780
|
+
"value": 2464
|
|
3764
3781
|
},
|
|
3765
3782
|
"charactersCount": {
|
|
3766
|
-
"value":
|
|
3783
|
+
"value": 2792
|
|
3767
3784
|
},
|
|
3768
3785
|
"wordsCount": {
|
|
3769
|
-
"value":
|
|
3786
|
+
"value": 372
|
|
3770
3787
|
},
|
|
3771
3788
|
"sentencesCount": {
|
|
3772
|
-
"value":
|
|
3789
|
+
"value": 33
|
|
3773
3790
|
},
|
|
3774
3791
|
"linesCount": {
|
|
3775
|
-
"value":
|
|
3792
|
+
"value": 65
|
|
3776
3793
|
},
|
|
3777
3794
|
"paragraphsCount": {
|
|
3778
3795
|
"value": 1
|
|
@@ -3843,22 +3860,27 @@
|
|
|
3843
3860
|
"models": [
|
|
3844
3861
|
{
|
|
3845
3862
|
"modelName": "gpt-4.1",
|
|
3846
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3863
|
+
"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.",
|
|
3847
3864
|
"temperature": 0.9
|
|
3848
3865
|
},
|
|
3849
3866
|
{
|
|
3850
3867
|
"modelName": "chatgpt-4o-latest",
|
|
3851
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3868
|
+
"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.",
|
|
3852
3869
|
"temperature": 0.9
|
|
3853
3870
|
},
|
|
3854
3871
|
{
|
|
3855
3872
|
"modelName": "gpt-4",
|
|
3856
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3873
|
+
"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).",
|
|
3857
3874
|
"temperature": 0.85
|
|
3858
3875
|
},
|
|
3859
3876
|
{
|
|
3860
3877
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3861
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3878
|
+
"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.",
|
|
3879
|
+
"temperature": 0.8
|
|
3880
|
+
},
|
|
3881
|
+
{
|
|
3882
|
+
"modelName": "gpt-3.5-turbo",
|
|
3883
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, coherent verse and prose with fresh imagery, fitting the requested style and constraints.",
|
|
3862
3884
|
"temperature": 0.8
|
|
3863
3885
|
}
|
|
3864
3886
|
]
|
|
@@ -3872,10 +3894,10 @@
|
|
|
3872
3894
|
"preparations": [
|
|
3873
3895
|
{
|
|
3874
3896
|
"id": 1,
|
|
3875
|
-
"promptbookVersion": "0.102.0-
|
|
3897
|
+
"promptbookVersion": "0.102.0-2",
|
|
3876
3898
|
"usage": {
|
|
3877
3899
|
"price": {
|
|
3878
|
-
"value": 0.
|
|
3900
|
+
"value": 0.029741250000000004
|
|
3879
3901
|
},
|
|
3880
3902
|
"input": {
|
|
3881
3903
|
"tokensCount": {
|
|
@@ -3902,25 +3924,25 @@
|
|
|
3902
3924
|
},
|
|
3903
3925
|
"output": {
|
|
3904
3926
|
"tokensCount": {
|
|
3905
|
-
"value":
|
|
3927
|
+
"value": 2242
|
|
3906
3928
|
},
|
|
3907
3929
|
"charactersCount": {
|
|
3908
|
-
"value":
|
|
3930
|
+
"value": 1865
|
|
3909
3931
|
},
|
|
3910
3932
|
"wordsCount": {
|
|
3911
|
-
"value":
|
|
3933
|
+
"value": 253
|
|
3912
3934
|
},
|
|
3913
3935
|
"sentencesCount": {
|
|
3914
|
-
"value":
|
|
3936
|
+
"value": 26
|
|
3915
3937
|
},
|
|
3916
3938
|
"linesCount": {
|
|
3917
|
-
"value":
|
|
3939
|
+
"value": 49
|
|
3918
3940
|
},
|
|
3919
3941
|
"paragraphsCount": {
|
|
3920
3942
|
"value": 1
|
|
3921
3943
|
},
|
|
3922
3944
|
"pagesCount": {
|
|
3923
|
-
"value":
|
|
3945
|
+
"value": 2
|
|
3924
3946
|
}
|
|
3925
3947
|
}
|
|
3926
3948
|
}
|