@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/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,32 +1571,27 @@
|
|
|
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
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
"modelName": "o4-mini",
|
|
1584
|
-
"systemMessage": "You are a
|
|
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
1585
|
"temperature": 0.2
|
|
1586
1586
|
},
|
|
1587
|
-
{
|
|
1588
|
-
"modelName": "o3",
|
|
1589
|
-
"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.",
|
|
1590
|
-
"temperature": 0.1
|
|
1591
|
-
},
|
|
1592
1587
|
{
|
|
1593
1588
|
"modelName": "gpt-4",
|
|
1594
|
-
"systemMessage": "You are
|
|
1595
|
-
"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
|
|
1596
1591
|
},
|
|
1597
1592
|
{
|
|
1598
1593
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1599
|
-
"systemMessage": "You are a
|
|
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.",
|
|
1600
1595
|
"temperature": 0.3
|
|
1601
1596
|
}
|
|
1602
1597
|
]
|
|
@@ -1610,10 +1605,10 @@
|
|
|
1610
1605
|
"preparations": [
|
|
1611
1606
|
{
|
|
1612
1607
|
"id": 1,
|
|
1613
|
-
"promptbookVersion": "0.102.0-
|
|
1608
|
+
"promptbookVersion": "0.102.0-2",
|
|
1614
1609
|
"usage": {
|
|
1615
1610
|
"price": {
|
|
1616
|
-
"value": 0.
|
|
1611
|
+
"value": 0.033093750000000005
|
|
1617
1612
|
},
|
|
1618
1613
|
"input": {
|
|
1619
1614
|
"tokensCount": {
|
|
@@ -1640,19 +1635,19 @@
|
|
|
1640
1635
|
},
|
|
1641
1636
|
"output": {
|
|
1642
1637
|
"tokensCount": {
|
|
1643
|
-
"value":
|
|
1638
|
+
"value": 2577
|
|
1644
1639
|
},
|
|
1645
1640
|
"charactersCount": {
|
|
1646
|
-
"value":
|
|
1641
|
+
"value": 2414
|
|
1647
1642
|
},
|
|
1648
1643
|
"wordsCount": {
|
|
1649
|
-
"value":
|
|
1644
|
+
"value": 318
|
|
1650
1645
|
},
|
|
1651
1646
|
"sentencesCount": {
|
|
1652
|
-
"value":
|
|
1647
|
+
"value": 28
|
|
1653
1648
|
},
|
|
1654
1649
|
"linesCount": {
|
|
1655
|
-
"value":
|
|
1650
|
+
"value": 59
|
|
1656
1651
|
},
|
|
1657
1652
|
"paragraphsCount": {
|
|
1658
1653
|
"value": 1
|
|
@@ -2141,32 +2136,27 @@
|
|
|
2141
2136
|
"models": [
|
|
2142
2137
|
{
|
|
2143
2138
|
"modelName": "gpt-4.1",
|
|
2144
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as a
|
|
2145
|
-
"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
|
|
2146
2141
|
},
|
|
2147
2142
|
{
|
|
2148
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2149
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2150
|
-
"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
|
|
2151
2146
|
},
|
|
2152
2147
|
{
|
|
2153
2148
|
"modelName": "o4-mini",
|
|
2154
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2155
2150
|
"temperature": 0.2
|
|
2156
2151
|
},
|
|
2157
|
-
{
|
|
2158
|
-
"modelName": "o3",
|
|
2159
|
-
"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.",
|
|
2160
|
-
"temperature": 0.1
|
|
2161
|
-
},
|
|
2162
2152
|
{
|
|
2163
2153
|
"modelName": "gpt-4",
|
|
2164
|
-
"systemMessage": "You are
|
|
2165
|
-
"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
|
|
2166
2156
|
},
|
|
2167
2157
|
{
|
|
2168
2158
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2169
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2170
2160
|
"temperature": 0.3
|
|
2171
2161
|
}
|
|
2172
2162
|
]
|
|
@@ -2180,10 +2170,10 @@
|
|
|
2180
2170
|
"preparations": [
|
|
2181
2171
|
{
|
|
2182
2172
|
"id": 1,
|
|
2183
|
-
"promptbookVersion": "0.102.0-
|
|
2173
|
+
"promptbookVersion": "0.102.0-2",
|
|
2184
2174
|
"usage": {
|
|
2185
2175
|
"price": {
|
|
2186
|
-
"value": 0.
|
|
2176
|
+
"value": 0.033093750000000005
|
|
2187
2177
|
},
|
|
2188
2178
|
"input": {
|
|
2189
2179
|
"tokensCount": {
|
|
@@ -2210,19 +2200,19 @@
|
|
|
2210
2200
|
},
|
|
2211
2201
|
"output": {
|
|
2212
2202
|
"tokensCount": {
|
|
2213
|
-
"value":
|
|
2203
|
+
"value": 2577
|
|
2214
2204
|
},
|
|
2215
2205
|
"charactersCount": {
|
|
2216
|
-
"value":
|
|
2206
|
+
"value": 2414
|
|
2217
2207
|
},
|
|
2218
2208
|
"wordsCount": {
|
|
2219
|
-
"value":
|
|
2209
|
+
"value": 318
|
|
2220
2210
|
},
|
|
2221
2211
|
"sentencesCount": {
|
|
2222
|
-
"value":
|
|
2212
|
+
"value": 28
|
|
2223
2213
|
},
|
|
2224
2214
|
"linesCount": {
|
|
2225
|
-
"value":
|
|
2215
|
+
"value": 59
|
|
2226
2216
|
},
|
|
2227
2217
|
"paragraphsCount": {
|
|
2228
2218
|
"value": 1
|
|
@@ -2852,23 +2842,23 @@
|
|
|
2852
2842
|
"models": [
|
|
2853
2843
|
{
|
|
2854
2844
|
"modelName": "gpt-4.1",
|
|
2855
|
-
"systemMessage": "You are
|
|
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.",
|
|
2856
2846
|
"temperature": 0.2
|
|
2857
2847
|
},
|
|
2858
2848
|
{
|
|
2859
2849
|
"modelName": "chatgpt-4o-latest",
|
|
2860
|
-
"systemMessage": "You are
|
|
2861
|
-
"temperature": 0.
|
|
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.",
|
|
2851
|
+
"temperature": 0.2
|
|
2862
2852
|
},
|
|
2863
2853
|
{
|
|
2864
2854
|
"modelName": "gpt-4",
|
|
2865
|
-
"systemMessage": "You are an expert linguist and
|
|
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.",
|
|
2866
2856
|
"temperature": 0.2
|
|
2867
2857
|
},
|
|
2868
2858
|
{
|
|
2869
2859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2870
|
-
"systemMessage": "You are
|
|
2871
|
-
"temperature": 0.
|
|
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.",
|
|
2861
|
+
"temperature": 0.25
|
|
2872
2862
|
}
|
|
2873
2863
|
]
|
|
2874
2864
|
}
|
|
@@ -2881,10 +2871,10 @@
|
|
|
2881
2871
|
"preparations": [
|
|
2882
2872
|
{
|
|
2883
2873
|
"id": 1,
|
|
2884
|
-
"promptbookVersion": "0.102.0-
|
|
2874
|
+
"promptbookVersion": "0.102.0-2",
|
|
2885
2875
|
"usage": {
|
|
2886
2876
|
"price": {
|
|
2887
|
-
"value": 0.
|
|
2877
|
+
"value": 0.029192500000000003
|
|
2888
2878
|
},
|
|
2889
2879
|
"input": {
|
|
2890
2880
|
"tokensCount": {
|
|
@@ -2911,19 +2901,19 @@
|
|
|
2911
2901
|
},
|
|
2912
2902
|
"output": {
|
|
2913
2903
|
"tokensCount": {
|
|
2914
|
-
"value":
|
|
2904
|
+
"value": 2187
|
|
2915
2905
|
},
|
|
2916
2906
|
"charactersCount": {
|
|
2917
|
-
"value":
|
|
2907
|
+
"value": 3131
|
|
2918
2908
|
},
|
|
2919
2909
|
"wordsCount": {
|
|
2920
|
-
"value":
|
|
2910
|
+
"value": 454
|
|
2921
2911
|
},
|
|
2922
2912
|
"sentencesCount": {
|
|
2923
|
-
"value":
|
|
2913
|
+
"value": 27
|
|
2924
2914
|
},
|
|
2925
2915
|
"linesCount": {
|
|
2926
|
-
"value":
|
|
2916
|
+
"value": 68
|
|
2927
2917
|
},
|
|
2928
2918
|
"paragraphsCount": {
|
|
2929
2919
|
"value": 1
|
|
@@ -2995,23 +2985,28 @@
|
|
|
2995
2985
|
"models": [
|
|
2996
2986
|
{
|
|
2997
2987
|
"modelName": "gpt-4.1",
|
|
2998
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2999
2989
|
"temperature": 0.7
|
|
3000
2990
|
},
|
|
3001
2991
|
{
|
|
3002
2992
|
"modelName": "chatgpt-4o-latest",
|
|
3003
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3004
2994
|
"temperature": 0.8
|
|
3005
2995
|
},
|
|
3006
2996
|
{
|
|
3007
2997
|
"modelName": "gpt-4",
|
|
3008
|
-
"systemMessage": "You are
|
|
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.",
|
|
3009
2999
|
"temperature": 0.7
|
|
3010
3000
|
},
|
|
3011
3001
|
{
|
|
3012
3002
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3013
|
-
"systemMessage": "You are a
|
|
3014
|
-
"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
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
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
|
|
3015
3010
|
}
|
|
3016
3011
|
]
|
|
3017
3012
|
}
|
|
@@ -3024,10 +3019,10 @@
|
|
|
3024
3019
|
"preparations": [
|
|
3025
3020
|
{
|
|
3026
3021
|
"id": 1,
|
|
3027
|
-
"promptbookVersion": "0.102.0-
|
|
3022
|
+
"promptbookVersion": "0.102.0-2",
|
|
3028
3023
|
"usage": {
|
|
3029
3024
|
"price": {
|
|
3030
|
-
"value": 0.
|
|
3025
|
+
"value": 0.0316825
|
|
3031
3026
|
},
|
|
3032
3027
|
"input": {
|
|
3033
3028
|
"tokensCount": {
|
|
@@ -3054,19 +3049,19 @@
|
|
|
3054
3049
|
},
|
|
3055
3050
|
"output": {
|
|
3056
3051
|
"tokensCount": {
|
|
3057
|
-
"value":
|
|
3052
|
+
"value": 2436
|
|
3058
3053
|
},
|
|
3059
3054
|
"charactersCount": {
|
|
3060
|
-
"value":
|
|
3055
|
+
"value": 3318
|
|
3061
3056
|
},
|
|
3062
3057
|
"wordsCount": {
|
|
3063
|
-
"value":
|
|
3058
|
+
"value": 467
|
|
3064
3059
|
},
|
|
3065
3060
|
"sentencesCount": {
|
|
3066
|
-
"value":
|
|
3061
|
+
"value": 45
|
|
3067
3062
|
},
|
|
3068
3063
|
"linesCount": {
|
|
3069
|
-
"value":
|
|
3064
|
+
"value": 72
|
|
3070
3065
|
},
|
|
3071
3066
|
"paragraphsCount": {
|
|
3072
3067
|
"value": 1
|
|
@@ -3120,7 +3115,7 @@
|
|
|
3120
3115
|
"preparations": [
|
|
3121
3116
|
{
|
|
3122
3117
|
"id": 1,
|
|
3123
|
-
"promptbookVersion": "0.102.0-
|
|
3118
|
+
"promptbookVersion": "0.102.0-2",
|
|
3124
3119
|
"usage": {
|
|
3125
3120
|
"price": {
|
|
3126
3121
|
"value": 0
|
|
@@ -3229,28 +3224,33 @@
|
|
|
3229
3224
|
"models": [
|
|
3230
3225
|
{
|
|
3231
3226
|
"modelName": "gpt-4.1",
|
|
3232
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3233
|
-
"temperature": 0.
|
|
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.",
|
|
3228
|
+
"temperature": 0.3
|
|
3234
3229
|
},
|
|
3235
3230
|
{
|
|
3236
3231
|
"modelName": "chatgpt-4o-latest",
|
|
3237
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3238
|
-
"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
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"modelName": "gpt-4",
|
|
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
3239
|
},
|
|
3240
3240
|
{
|
|
3241
3241
|
"modelName": "o4-mini",
|
|
3242
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3243
|
-
"temperature": 0.
|
|
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.",
|
|
3243
|
+
"temperature": 0.3
|
|
3244
3244
|
},
|
|
3245
3245
|
{
|
|
3246
|
-
"modelName": "gpt-
|
|
3247
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3246
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
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
3248
|
"temperature": 0.4
|
|
3249
3249
|
},
|
|
3250
3250
|
{
|
|
3251
|
-
"modelName": "
|
|
3252
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3253
|
-
"temperature": 0.
|
|
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
|
|
3254
3254
|
}
|
|
3255
3255
|
]
|
|
3256
3256
|
}
|
|
@@ -3263,10 +3263,10 @@
|
|
|
3263
3263
|
"preparations": [
|
|
3264
3264
|
{
|
|
3265
3265
|
"id": 1,
|
|
3266
|
-
"promptbookVersion": "0.102.0-
|
|
3266
|
+
"promptbookVersion": "0.102.0-2",
|
|
3267
3267
|
"usage": {
|
|
3268
3268
|
"price": {
|
|
3269
|
-
"value": 0.
|
|
3269
|
+
"value": 0.034792500000000004
|
|
3270
3270
|
},
|
|
3271
3271
|
"input": {
|
|
3272
3272
|
"tokensCount": {
|
|
@@ -3293,19 +3293,19 @@
|
|
|
3293
3293
|
},
|
|
3294
3294
|
"output": {
|
|
3295
3295
|
"tokensCount": {
|
|
3296
|
-
"value":
|
|
3296
|
+
"value": 2747
|
|
3297
3297
|
},
|
|
3298
3298
|
"charactersCount": {
|
|
3299
|
-
"value":
|
|
3299
|
+
"value": 3027
|
|
3300
3300
|
},
|
|
3301
3301
|
"wordsCount": {
|
|
3302
|
-
"value":
|
|
3302
|
+
"value": 395
|
|
3303
3303
|
},
|
|
3304
3304
|
"sentencesCount": {
|
|
3305
|
-
"value":
|
|
3305
|
+
"value": 35
|
|
3306
3306
|
},
|
|
3307
3307
|
"linesCount": {
|
|
3308
|
-
"value":
|
|
3308
|
+
"value": 72
|
|
3309
3309
|
},
|
|
3310
3310
|
"paragraphsCount": {
|
|
3311
3311
|
"value": 1
|
|
@@ -3385,22 +3385,22 @@
|
|
|
3385
3385
|
"models": [
|
|
3386
3386
|
{
|
|
3387
3387
|
"modelName": "gpt-4.1",
|
|
3388
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
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
3389
|
"temperature": 0.4
|
|
3390
3390
|
},
|
|
3391
3391
|
{
|
|
3392
3392
|
"modelName": "chatgpt-4o-latest",
|
|
3393
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3394
|
-
"temperature": 0.
|
|
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
3395
|
},
|
|
3396
3396
|
{
|
|
3397
3397
|
"modelName": "gpt-4",
|
|
3398
|
-
"systemMessage": "You are a
|
|
3399
|
-
"temperature": 0.
|
|
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
3400
|
},
|
|
3401
3401
|
{
|
|
3402
3402
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3403
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
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
3404
|
"temperature": 0.6
|
|
3405
3405
|
}
|
|
3406
3406
|
]
|
|
@@ -3414,10 +3414,10 @@
|
|
|
3414
3414
|
"preparations": [
|
|
3415
3415
|
{
|
|
3416
3416
|
"id": 1,
|
|
3417
|
-
"promptbookVersion": "0.102.0-
|
|
3417
|
+
"promptbookVersion": "0.102.0-2",
|
|
3418
3418
|
"usage": {
|
|
3419
3419
|
"price": {
|
|
3420
|
-
"value": 0.
|
|
3420
|
+
"value": 0.0281675
|
|
3421
3421
|
},
|
|
3422
3422
|
"input": {
|
|
3423
3423
|
"tokensCount": {
|
|
@@ -3444,19 +3444,19 @@
|
|
|
3444
3444
|
},
|
|
3445
3445
|
"output": {
|
|
3446
3446
|
"tokensCount": {
|
|
3447
|
-
"value":
|
|
3447
|
+
"value": 2084
|
|
3448
3448
|
},
|
|
3449
3449
|
"charactersCount": {
|
|
3450
|
-
"value":
|
|
3450
|
+
"value": 2702
|
|
3451
3451
|
},
|
|
3452
3452
|
"wordsCount": {
|
|
3453
|
-
"value":
|
|
3453
|
+
"value": 374
|
|
3454
3454
|
},
|
|
3455
3455
|
"sentencesCount": {
|
|
3456
|
-
"value":
|
|
3456
|
+
"value": 32
|
|
3457
3457
|
},
|
|
3458
3458
|
"linesCount": {
|
|
3459
|
-
"value":
|
|
3459
|
+
"value": 60
|
|
3460
3460
|
},
|
|
3461
3461
|
"paragraphsCount": {
|
|
3462
3462
|
"value": 1
|
|
@@ -3713,22 +3713,27 @@
|
|
|
3713
3713
|
"models": [
|
|
3714
3714
|
{
|
|
3715
3715
|
"modelName": "gpt-4.1",
|
|
3716
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3717
|
-
"temperature": 0.
|
|
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.",
|
|
3717
|
+
"temperature": 0.3
|
|
3718
3718
|
},
|
|
3719
3719
|
{
|
|
3720
3720
|
"modelName": "chatgpt-4o-latest",
|
|
3721
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3722
|
-
"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
|
|
3723
3723
|
},
|
|
3724
3724
|
{
|
|
3725
3725
|
"modelName": "gpt-4",
|
|
3726
|
-
"systemMessage": "You are a
|
|
3727
|
-
"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
|
|
3728
|
+
},
|
|
3729
|
+
{
|
|
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
|
|
3728
3733
|
},
|
|
3729
3734
|
{
|
|
3730
3735
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3731
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
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.",
|
|
3732
3737
|
"temperature": 0.35
|
|
3733
3738
|
}
|
|
3734
3739
|
]
|
|
@@ -3742,10 +3747,10 @@
|
|
|
3742
3747
|
"preparations": [
|
|
3743
3748
|
{
|
|
3744
3749
|
"id": 1,
|
|
3745
|
-
"promptbookVersion": "0.102.0-
|
|
3750
|
+
"promptbookVersion": "0.102.0-2",
|
|
3746
3751
|
"usage": {
|
|
3747
3752
|
"price": {
|
|
3748
|
-
"value": 0.
|
|
3753
|
+
"value": 0.031962500000000005
|
|
3749
3754
|
},
|
|
3750
3755
|
"input": {
|
|
3751
3756
|
"tokensCount": {
|
|
@@ -3772,19 +3777,19 @@
|
|
|
3772
3777
|
},
|
|
3773
3778
|
"output": {
|
|
3774
3779
|
"tokensCount": {
|
|
3775
|
-
"value":
|
|
3780
|
+
"value": 2464
|
|
3776
3781
|
},
|
|
3777
3782
|
"charactersCount": {
|
|
3778
|
-
"value":
|
|
3783
|
+
"value": 2792
|
|
3779
3784
|
},
|
|
3780
3785
|
"wordsCount": {
|
|
3781
|
-
"value":
|
|
3786
|
+
"value": 372
|
|
3782
3787
|
},
|
|
3783
3788
|
"sentencesCount": {
|
|
3784
|
-
"value":
|
|
3789
|
+
"value": 33
|
|
3785
3790
|
},
|
|
3786
3791
|
"linesCount": {
|
|
3787
|
-
"value":
|
|
3792
|
+
"value": 65
|
|
3788
3793
|
},
|
|
3789
3794
|
"paragraphsCount": {
|
|
3790
3795
|
"value": 1
|
|
@@ -3855,28 +3860,28 @@
|
|
|
3855
3860
|
"models": [
|
|
3856
3861
|
{
|
|
3857
3862
|
"modelName": "gpt-4.1",
|
|
3858
|
-
"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.",
|
|
3859
3864
|
"temperature": 0.9
|
|
3860
3865
|
},
|
|
3861
3866
|
{
|
|
3862
3867
|
"modelName": "chatgpt-4o-latest",
|
|
3863
|
-
"systemMessage": "You are an accomplished poet and storyteller. Craft
|
|
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.",
|
|
3864
3869
|
"temperature": 0.9
|
|
3865
3870
|
},
|
|
3866
3871
|
{
|
|
3867
3872
|
"modelName": "gpt-4",
|
|
3868
|
-
"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).",
|
|
3869
3874
|
"temperature": 0.85
|
|
3870
3875
|
},
|
|
3871
3876
|
{
|
|
3872
3877
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3873
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
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.",
|
|
3874
3879
|
"temperature": 0.8
|
|
3875
3880
|
},
|
|
3876
3881
|
{
|
|
3877
3882
|
"modelName": "gpt-3.5-turbo",
|
|
3878
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3879
|
-
"temperature": 0.
|
|
3883
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, coherent verse and prose with fresh imagery, fitting the requested style and constraints.",
|
|
3884
|
+
"temperature": 0.8
|
|
3880
3885
|
}
|
|
3881
3886
|
]
|
|
3882
3887
|
}
|
|
@@ -3889,10 +3894,10 @@
|
|
|
3889
3894
|
"preparations": [
|
|
3890
3895
|
{
|
|
3891
3896
|
"id": 1,
|
|
3892
|
-
"promptbookVersion": "0.102.0-
|
|
3897
|
+
"promptbookVersion": "0.102.0-2",
|
|
3893
3898
|
"usage": {
|
|
3894
3899
|
"price": {
|
|
3895
|
-
"value": 0.
|
|
3900
|
+
"value": 0.029741250000000004
|
|
3896
3901
|
},
|
|
3897
3902
|
"input": {
|
|
3898
3903
|
"tokensCount": {
|
|
@@ -3919,19 +3924,19 @@
|
|
|
3919
3924
|
},
|
|
3920
3925
|
"output": {
|
|
3921
3926
|
"tokensCount": {
|
|
3922
|
-
"value":
|
|
3927
|
+
"value": 2242
|
|
3923
3928
|
},
|
|
3924
3929
|
"charactersCount": {
|
|
3925
|
-
"value":
|
|
3930
|
+
"value": 1865
|
|
3926
3931
|
},
|
|
3927
3932
|
"wordsCount": {
|
|
3928
|
-
"value":
|
|
3933
|
+
"value": 253
|
|
3929
3934
|
},
|
|
3930
3935
|
"sentencesCount": {
|
|
3931
|
-
"value":
|
|
3936
|
+
"value": 26
|
|
3932
3937
|
},
|
|
3933
3938
|
"linesCount": {
|
|
3934
|
-
"value":
|
|
3939
|
+
"value": 49
|
|
3935
3940
|
},
|
|
3936
3941
|
"paragraphsCount": {
|
|
3937
3942
|
"value": 1
|