@promptbook/templates 0.101.0-0 → 0.101.0-1

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.
Files changed (31) hide show
  1. package/esm/index.es.js +176 -168
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/typings/src/_packages/components.index.d.ts +4 -0
  4. package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +16 -0
  5. package/esm/typings/src/book-components/Chat/utils/renderMarkdown.d.ts +21 -0
  6. package/esm/typings/src/book-components/Chat/utils/renderMarkdown.test.d.ts +1 -0
  7. package/esm/typings/src/utils/markdown/escapeMarkdownBlock.d.ts +2 -0
  8. package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
  9. package/esm/typings/src/utils/markdown/humanizeAiTextEllipsis.d.ts +1 -0
  10. package/esm/typings/src/utils/markdown/humanizeAiTextEmdashed.d.ts +1 -0
  11. package/esm/typings/src/utils/markdown/humanizeAiTextQuotes.d.ts +1 -0
  12. package/esm/typings/src/utils/markdown/humanizeAiTextWhitespace.d.ts +1 -0
  13. package/esm/typings/src/utils/markdown/prettifyMarkdown.d.ts +8 -0
  14. package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +1 -0
  15. package/esm/typings/src/utils/normalization/capitalize.d.ts +2 -0
  16. package/esm/typings/src/utils/normalization/decapitalize.d.ts +3 -1
  17. package/esm/typings/src/utils/normalization/normalizeTo_SCREAMING_CASE.d.ts +2 -0
  18. package/esm/typings/src/utils/normalization/normalizeTo_snake_case.d.ts +2 -0
  19. package/esm/typings/src/utils/normalization/normalizeWhitespaces.d.ts +2 -0
  20. package/esm/typings/src/utils/normalization/removeDiacritics.d.ts +2 -0
  21. package/esm/typings/src/utils/parseNumber.d.ts +1 -0
  22. package/esm/typings/src/utils/removeEmojis.d.ts +2 -0
  23. package/esm/typings/src/utils/removeQuotes.d.ts +1 -0
  24. package/esm/typings/src/utils/serialization/deepClone.d.ts +1 -0
  25. package/esm/typings/src/utils/trimCodeBlock.d.ts +1 -0
  26. package/esm/typings/src/utils/validators/url/isValidUrl.d.ts +1 -0
  27. package/esm/typings/src/utils/validators/uuid/isValidUuid.d.ts +2 -0
  28. package/esm/typings/src/version.d.ts +1 -1
  29. package/package.json +2 -2
  30. package/umd/index.umd.js +181 -172
  31. package/umd/index.umd.js.map +1 -1
package/umd/index.umd.js CHANGED
@@ -1,14 +1,12 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier/parser-html'), require('prettier/parser-markdown'), require('prettier/standalone')) :
3
- typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier/parser-html', 'prettier/parser-markdown', 'prettier/standalone'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.parserHtml, global.parserMarkdown, global.standalone));
5
- })(this, (function (exports, spaceTrim, parserHtml, parserMarkdown, standalone) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'spacetrim'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim));
5
+ })(this, (function (exports, spaceTrim) { 'use strict';
6
6
 
7
7
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
8
 
9
9
  var spaceTrim__default = /*#__PURE__*/_interopDefaultLegacy(spaceTrim);
10
- var parserHtml__default = /*#__PURE__*/_interopDefaultLegacy(parserHtml);
11
- var parserMarkdown__default = /*#__PURE__*/_interopDefaultLegacy(parserMarkdown);
12
10
 
13
11
  // ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
14
12
  /**
@@ -24,7 +22,7 @@
24
22
  * @generated
25
23
  * @see https://github.com/webgptorg/promptbook
26
24
  */
27
- const PROMPTBOOK_ENGINE_VERSION = '0.101.0-0';
25
+ const PROMPTBOOK_ENGINE_VERSION = '0.101.0-1';
28
26
  /**
29
27
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
30
28
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -104,6 +102,7 @@
104
102
  /**
105
103
  * Tests if given string is valid URL.
106
104
  *
105
+ * Note: [🔂] This function is idempotent.
107
106
  * Note: Dataurl are considered perfectly valid.
108
107
  * Note: There are two similar functions:
109
108
  * - `isValidUrl` which tests any URL
@@ -401,10 +400,20 @@
401
400
  * @private withing the package because of HUGE size of prettier dependency
402
401
  */
403
402
  function prettifyMarkdown(content) {
403
+ // In browser/Next.js environments, just return the original content
404
+ // since prettier parsers are not available and would cause bundling issues
405
+ if (typeof window !== 'undefined') {
406
+ return content;
407
+ }
404
408
  try {
405
- return standalone.format(content, {
409
+ // Use dynamic require to avoid static imports that cause bundling issues
410
+ // This will only work in Node.js environments
411
+ const prettierStandalone = eval('require')('prettier/standalone');
412
+ const parserMarkdown = eval('require')('prettier/parser-markdown');
413
+ const parserHtml = eval('require')('prettier/parser-html');
414
+ return prettierStandalone.format(content, {
406
415
  parser: 'markdown',
407
- plugins: [parserMarkdown__default["default"], parserHtml__default["default"]],
416
+ plugins: [parserMarkdown, parserHtml],
408
417
  // TODO: DRY - make some import or auto-copy of .prettierrc
409
418
  endOfLine: 'lf',
410
419
  tabWidth: 4,
@@ -430,6 +439,8 @@
430
439
  /**
431
440
  * Makes first letter of a string uppercase
432
441
  *
442
+ * Note: [🔂] This function is idempotent.
443
+ *
433
444
  * @public exported from `@promptbook/utils`
434
445
  */
435
446
  function capitalize(word) {
@@ -759,6 +770,7 @@
759
770
  /**
760
771
  * Creates a deep clone of the given object
761
772
  *
773
+ * Note: [🔂] This function is idempotent.
762
774
  * Note: This method only works for objects that are fully serializable to JSON and do not contain functions, Dates, or special types.
763
775
  *
764
776
  * @param objectValue The object to clone.
@@ -1557,40 +1569,40 @@
1557
1569
  {
1558
1570
  "modelVariant": "CHAT",
1559
1571
  "models": [
1572
+ {
1573
+ "modelName": "chatgpt-4o-latest",
1574
+ "systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
1575
+ "temperature": 0.4
1576
+ },
1560
1577
  {
1561
1578
  "modelName": "gpt-4.1",
1562
- "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant architect. Be concise, pragmatic, and safety-conscious. Use bullet lists and concrete action steps. Provide prompt design patterns, function-calling schemas, and evaluation checklists when useful. Ask 1–2 clarifying questions if requirements are ambiguous. Prefer deterministic, reproducible workflows and note trade-offs between quality, latency, and cost.",
1579
+ "systemMessage": "You are an expert assistant for a Promptbook Project developer. Provide precise, production-ready guidance with strong instruction following. Use clear bullet points, confirm requirements, and keep outputs deterministic and reproducible. Make assumptions explicit and minimize verbosity.",
1563
1580
  "temperature": 0.3
1564
1581
  },
1565
1582
  {
1566
- "modelName": "chatgpt-4o-latest",
1567
- "systemMessage": "You are a developer of the Promptbook Project focused on building real-time, multimodal virtual assistants. Communicate clearly and concisely. When tools, vision, or audio are available, describe assumptions and propose an interaction plan. Provide prompt templates, function-call schemas, and integration tips. Ask brief clarifying questions when needed and optimize for low latency while maintaining accuracy.",
1568
- "temperature": 0.5
1583
+ "modelName": "gpt-realtime",
1584
+ "systemMessage": "You are a low-latency conversational assistant for a Promptbook developer. Keep replies brief and natural, confirm understanding, and summarize next actions. Use short sentences suitable for TTS and live interaction. Be helpful but avoid unnecessary detail unless requested.",
1585
+ "temperature": 0.6
1569
1586
  },
1570
1587
  {
1571
- "modelName": "o4-mini",
1572
- "systemMessage": "You are a Promptbook Project developer optimizing assistants for speed and cost. Provide crisp, actionable answers with minimal latency. Offer lightweight reasoning, clear decision trees, and simple evaluation rubrics. When proposing tool use or functions, include concise JSON schemas. Ask only essential clarifying questions.",
1588
+ "modelName": "gpt-4",
1589
+ "systemMessage": "You are a dependable engineering assistant for a Promptbook Project developer. Deliver accurate, concise solutions, ask targeted clarifying questions, and avoid speculative content. Provide minimal but sufficient reasoning and practical code or command examples when needed.",
1573
1590
  "temperature": 0.3
1574
1591
  },
1575
1592
  {
1576
- "modelName": "gpt-4",
1577
- "systemMessage": "You are a developer of the Promptbook Project. Deliver reliable, high-quality guidance on building virtual assistants: prompt engineering, tool orchestration, function calling, and evaluation. Be concise, explain trade-offs, and include ready-to-use snippets or templates. Ask brief clarifying questions when needed.",
1578
- "temperature": 0.4
1593
+ "modelName": "o4-mini",
1594
+ "systemMessage": "You are a fast reasoning assistant supporting a Promptbook developer. Apply lightweight, targeted reasoning only when necessary. Present final answers succinctly; include a brief reasoning summary only if requested. Optimize for speed and clarity.",
1595
+ "temperature": 0.2
1579
1596
  },
1580
1597
  {
1581
1598
  "modelName": "gpt-3.5-turbo-16k",
1582
- "systemMessage": "You are a cost-efficient Promptbook Project developer. Keep responses short and practical. Provide simple prompt templates, minimal function-call examples, and step-by-step implementation checklists. Confirm assumptions with one clarifying question when necessary.",
1599
+ "systemMessage": "You are a cost-efficient assistant for a Promptbook Project developer. Be concise and deterministic, confirm missing details, and avoid unnecessary creativity. Prefer bullet points and actionable steps.",
1583
1600
  "temperature": 0.4
1584
1601
  },
1585
1602
  {
1586
1603
  "modelName": "o3",
1587
- "systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
1604
+ "systemMessage": "You are an escalation assistant for complex tasks in the Promptbook Project. Perform deep internal reasoning, verify steps, and deliver crisp conclusions with minimal exposition. Only surface brief justifications when asked.",
1588
1605
  "temperature": 0.2
1589
- },
1590
- {
1591
- "modelName": "gpt-realtime",
1592
- "systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
1593
- "temperature": 0.5
1594
1606
  }
1595
1607
  ]
1596
1608
  }
@@ -1603,10 +1615,10 @@
1603
1615
  "preparations": [
1604
1616
  {
1605
1617
  "id": 1,
1606
- "promptbookVersion": "0.100.4-0",
1618
+ "promptbookVersion": "0.101.0-0",
1607
1619
  "usage": {
1608
1620
  "price": {
1609
- "value": 0.03421250000000001
1621
+ "value": 0.033322500000000005
1610
1622
  },
1611
1623
  "input": {
1612
1624
  "tokensCount": {
@@ -1633,19 +1645,19 @@
1633
1645
  },
1634
1646
  "output": {
1635
1647
  "tokensCount": {
1636
- "value": 2699
1648
+ "value": 2610
1637
1649
  },
1638
1650
  "charactersCount": {
1639
- "value": 3044
1651
+ "value": 2597
1640
1652
  },
1641
1653
  "wordsCount": {
1642
- "value": 390
1654
+ "value": 326
1643
1655
  },
1644
1656
  "sentencesCount": {
1645
- "value": 41
1657
+ "value": 35
1646
1658
  },
1647
1659
  "linesCount": {
1648
- "value": 75
1660
+ "value": 67
1649
1661
  },
1650
1662
  "paragraphsCount": {
1651
1663
  "value": 1
@@ -2132,40 +2144,40 @@
2132
2144
  {
2133
2145
  "modelVariant": "CHAT",
2134
2146
  "models": [
2147
+ {
2148
+ "modelName": "chatgpt-4o-latest",
2149
+ "systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
2150
+ "temperature": 0.4
2151
+ },
2135
2152
  {
2136
2153
  "modelName": "gpt-4.1",
2137
- "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant architect. Be concise, pragmatic, and safety-conscious. Use bullet lists and concrete action steps. Provide prompt design patterns, function-calling schemas, and evaluation checklists when useful. Ask 1–2 clarifying questions if requirements are ambiguous. Prefer deterministic, reproducible workflows and note trade-offs between quality, latency, and cost.",
2154
+ "systemMessage": "You are an expert assistant for a Promptbook Project developer. Provide precise, production-ready guidance with strong instruction following. Use clear bullet points, confirm requirements, and keep outputs deterministic and reproducible. Make assumptions explicit and minimize verbosity.",
2138
2155
  "temperature": 0.3
2139
2156
  },
2140
2157
  {
2141
- "modelName": "chatgpt-4o-latest",
2142
- "systemMessage": "You are a developer of the Promptbook Project focused on building real-time, multimodal virtual assistants. Communicate clearly and concisely. When tools, vision, or audio are available, describe assumptions and propose an interaction plan. Provide prompt templates, function-call schemas, and integration tips. Ask brief clarifying questions when needed and optimize for low latency while maintaining accuracy.",
2143
- "temperature": 0.5
2158
+ "modelName": "gpt-realtime",
2159
+ "systemMessage": "You are a low-latency conversational assistant for a Promptbook developer. Keep replies brief and natural, confirm understanding, and summarize next actions. Use short sentences suitable for TTS and live interaction. Be helpful but avoid unnecessary detail unless requested.",
2160
+ "temperature": 0.6
2144
2161
  },
2145
2162
  {
2146
- "modelName": "o4-mini",
2147
- "systemMessage": "You are a Promptbook Project developer optimizing assistants for speed and cost. Provide crisp, actionable answers with minimal latency. Offer lightweight reasoning, clear decision trees, and simple evaluation rubrics. When proposing tool use or functions, include concise JSON schemas. Ask only essential clarifying questions.",
2163
+ "modelName": "gpt-4",
2164
+ "systemMessage": "You are a dependable engineering assistant for a Promptbook Project developer. Deliver accurate, concise solutions, ask targeted clarifying questions, and avoid speculative content. Provide minimal but sufficient reasoning and practical code or command examples when needed.",
2148
2165
  "temperature": 0.3
2149
2166
  },
2150
2167
  {
2151
- "modelName": "gpt-4",
2152
- "systemMessage": "You are a developer of the Promptbook Project. Deliver reliable, high-quality guidance on building virtual assistants: prompt engineering, tool orchestration, function calling, and evaluation. Be concise, explain trade-offs, and include ready-to-use snippets or templates. Ask brief clarifying questions when needed.",
2153
- "temperature": 0.4
2168
+ "modelName": "o4-mini",
2169
+ "systemMessage": "You are a fast reasoning assistant supporting a Promptbook developer. Apply lightweight, targeted reasoning only when necessary. Present final answers succinctly; include a brief reasoning summary only if requested. Optimize for speed and clarity.",
2170
+ "temperature": 0.2
2154
2171
  },
2155
2172
  {
2156
2173
  "modelName": "gpt-3.5-turbo-16k",
2157
- "systemMessage": "You are a cost-efficient Promptbook Project developer. Keep responses short and practical. Provide simple prompt templates, minimal function-call examples, and step-by-step implementation checklists. Confirm assumptions with one clarifying question when necessary.",
2174
+ "systemMessage": "You are a cost-efficient assistant for a Promptbook Project developer. Be concise and deterministic, confirm missing details, and avoid unnecessary creativity. Prefer bullet points and actionable steps.",
2158
2175
  "temperature": 0.4
2159
2176
  },
2160
2177
  {
2161
2178
  "modelName": "o3",
2162
- "systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
2179
+ "systemMessage": "You are an escalation assistant for complex tasks in the Promptbook Project. Perform deep internal reasoning, verify steps, and deliver crisp conclusions with minimal exposition. Only surface brief justifications when asked.",
2163
2180
  "temperature": 0.2
2164
- },
2165
- {
2166
- "modelName": "gpt-realtime",
2167
- "systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
2168
- "temperature": 0.5
2169
2181
  }
2170
2182
  ]
2171
2183
  }
@@ -2178,10 +2190,10 @@
2178
2190
  "preparations": [
2179
2191
  {
2180
2192
  "id": 1,
2181
- "promptbookVersion": "0.100.4-0",
2193
+ "promptbookVersion": "0.101.0-0",
2182
2194
  "usage": {
2183
2195
  "price": {
2184
- "value": 0.03421250000000001
2196
+ "value": 0.033322500000000005
2185
2197
  },
2186
2198
  "input": {
2187
2199
  "tokensCount": {
@@ -2208,19 +2220,19 @@
2208
2220
  },
2209
2221
  "output": {
2210
2222
  "tokensCount": {
2211
- "value": 2699
2223
+ "value": 2610
2212
2224
  },
2213
2225
  "charactersCount": {
2214
- "value": 3044
2226
+ "value": 2597
2215
2227
  },
2216
2228
  "wordsCount": {
2217
- "value": 390
2229
+ "value": 326
2218
2230
  },
2219
2231
  "sentencesCount": {
2220
- "value": 41
2232
+ "value": 35
2221
2233
  },
2222
2234
  "linesCount": {
2223
- "value": 75
2235
+ "value": 67
2224
2236
  },
2225
2237
  "paragraphsCount": {
2226
2238
  "value": 1
@@ -2850,27 +2862,27 @@
2850
2862
  "models": [
2851
2863
  {
2852
2864
  "modelName": "gpt-4.1",
2853
- "systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
2854
- "temperature": 0.2
2865
+ "systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
2866
+ "temperature": 0.1
2855
2867
  },
2856
2868
  {
2857
2869
  "modelName": "gpt-4",
2858
- "systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
2859
- "temperature": 0.2
2870
+ "systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
2871
+ "temperature": 0.1
2860
2872
  },
2861
2873
  {
2862
2874
  "modelName": "chatgpt-4o-latest",
2863
- "systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
2864
- "temperature": 0.3
2875
+ "systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
2876
+ "temperature": 0.1
2865
2877
  },
2866
2878
  {
2867
2879
  "modelName": "gpt-3.5-turbo-16k",
2868
- "systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
2880
+ "systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
2869
2881
  "temperature": 0.2
2870
2882
  },
2871
2883
  {
2872
2884
  "modelName": "gpt-3.5-turbo",
2873
- "systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
2885
+ "systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
2874
2886
  "temperature": 0.2
2875
2887
  }
2876
2888
  ]
@@ -2884,10 +2896,10 @@
2884
2896
  "preparations": [
2885
2897
  {
2886
2898
  "id": 1,
2887
- "promptbookVersion": "0.100.4-0",
2899
+ "promptbookVersion": "0.101.0-0",
2888
2900
  "usage": {
2889
2901
  "price": {
2890
- "value": 0.03258125
2902
+ "value": 0.03870125
2891
2903
  },
2892
2904
  "input": {
2893
2905
  "tokensCount": {
@@ -2914,25 +2926,25 @@
2914
2926
  },
2915
2927
  "output": {
2916
2928
  "tokensCount": {
2917
- "value": 2536
2929
+ "value": 3148
2918
2930
  },
2919
2931
  "charactersCount": {
2920
- "value": 3034
2932
+ "value": 4779
2921
2933
  },
2922
2934
  "wordsCount": {
2923
- "value": 423
2935
+ "value": 698
2924
2936
  },
2925
2937
  "sentencesCount": {
2926
- "value": 44
2938
+ "value": 59
2927
2939
  },
2928
2940
  "linesCount": {
2929
- "value": 69
2941
+ "value": 94
2930
2942
  },
2931
2943
  "paragraphsCount": {
2932
2944
  "value": 1
2933
2945
  },
2934
2946
  "pagesCount": {
2935
- "value": 2
2947
+ "value": 3
2936
2948
  }
2937
2949
  }
2938
2950
  }
@@ -2998,22 +3010,22 @@
2998
3010
  "models": [
2999
3011
  {
3000
3012
  "modelName": "gpt-4.1",
3001
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write persuasive, benefit-led, customer-centric copy that boosts conversions while staying on-brand and compliant. Apply SEO best practices (natural keywords, compelling titles, meta descriptions, scannable structure), propose multiple variants/CTAs for A/B tests when helpful, and adapt tone to product, audience, and channel (product pages, categories, emails, ads, social). Avoid unverifiable claims and follow platform policies. Ask concise clarifying questions when key details are missing; otherwise proceed with sensible assumptions and note them.",
3002
- "temperature": 0.65
3013
+ "systemMessage": "You are a skilled ecommerce copywriter for an online shop. Produce persuasive, on-brand product titles, scannable bullet benefits, detailed descriptions, SEO metadata (title, meta description, keywords), and short CTAs. Match the specified tone, target audience, locale, and length. Incorporate provided keywords naturally, avoid unverifiable claims, and request missing product details before writing. Offer 2–3 A/B variants when helpful and keep copy conversion-focused and clear.",
3014
+ "temperature": 0.6
3003
3015
  },
3004
3016
  {
3005
3017
  "modelName": "chatgpt-4o-latest",
3006
- "systemMessage": "You are a skilled e-commerce copywriter focused on conversion and brand voice. Produce concise, engaging product and category copy, ad headlines, emails, and social captions with clear benefits, objections handling, and strong CTAs. Use SEO-friendly structure and natural keywords. Offer 2–3 style or length variants for testing when useful. Keep claims accurate and compliant for the target market. Ask brief clarifying questions if key info is missing.",
3007
- "temperature": 0.8
3018
+ "systemMessage": "You are a skilled ecommerce copywriter for an online shop. Create compelling, brand-aligned product copy, benefit bullets, headlines, CTAs, and SEO metadata. Follow tone, audience, locale, and length constraints. Weave in provided keywords naturally, avoid fluff and unsupported claims, and ask clarifying questions if information is missing. Provide 2–3 A/B variants and emphasize clarity, scannability, and conversion.",
3019
+ "temperature": 0.7
3008
3020
  },
3009
3021
  {
3010
3022
  "modelName": "gpt-4",
3011
- "systemMessage": "You are an expert e-commerce copywriter. Create high-converting, on-brand copy for product pages, categories, ads, and emails. Highlight benefits and outcomes, include differentiators, and incorporate SEO best practices (titles, meta descriptions, headings, FAQs) without keyword stuffing. Provide optional variants for A/B tests. Remain compliant and avoid unsupported claims. Ask for missing details only when essential.",
3012
- "temperature": 0.7
3023
+ "systemMessage": "You are a skilled ecommerce copywriter. Write concise, persuasive, and SEO-aware product copy: titles, bullets, descriptions, and CTAs. Maintain brand voice, match audience and locale, adhere to length limits, and integrate given keywords naturally. Ask for missing details before drafting and offer 2–3 A/B variants focused on conversion.",
3024
+ "temperature": 0.6
3013
3025
  },
3014
3026
  {
3015
3027
  "modelName": "gpt-3.5-turbo-16k",
3016
- "systemMessage": "You are a skilled e-commerce copywriter delivering clear, persuasive, SEO-conscious copy that matches brand voice. Write product and category descriptions, ad copy, and emails with strong benefits and CTAs. Provide concise variants when helpful for testing. Keep claims accurate and compliant. Ask brief clarifying questions if critical information is missing.",
3028
+ "systemMessage": "You are a skilled ecommerce copywriter. Produce clear, conversion-focused product titles, bullets, descriptions, CTAs, and SEO metadata. Follow brand voice, tone, audience, locale, and length constraints. Use provided keywords naturally, avoid unverified claims, and request missing product info. Provide 2–3 A/B variants when useful.",
3017
3029
  "temperature": 0.7
3018
3030
  }
3019
3031
  ]
@@ -3027,10 +3039,10 @@
3027
3039
  "preparations": [
3028
3040
  {
3029
3041
  "id": 1,
3030
- "promptbookVersion": "0.100.4-0",
3042
+ "promptbookVersion": "0.101.0-0",
3031
3043
  "usage": {
3032
3044
  "price": {
3033
- "value": 0.02755125
3045
+ "value": 0.02989125
3034
3046
  },
3035
3047
  "input": {
3036
3048
  "tokensCount": {
@@ -3057,19 +3069,19 @@
3057
3069
  },
3058
3070
  "output": {
3059
3071
  "tokensCount": {
3060
- "value": 2033
3072
+ "value": 2267
3061
3073
  },
3062
3074
  "charactersCount": {
3063
- "value": 2269
3075
+ "value": 1997
3064
3076
  },
3065
3077
  "wordsCount": {
3066
- "value": 310
3078
+ "value": 272
3067
3079
  },
3068
3080
  "sentencesCount": {
3069
- "value": 29
3081
+ "value": 26
3070
3082
  },
3071
3083
  "linesCount": {
3072
- "value": 54
3084
+ "value": 49
3073
3085
  },
3074
3086
  "paragraphsCount": {
3075
3087
  "value": 1
@@ -3123,7 +3135,7 @@
3123
3135
  "preparations": [
3124
3136
  {
3125
3137
  "id": 1,
3126
- "promptbookVersion": "0.100.4-0",
3138
+ "promptbookVersion": "0.101.0-0",
3127
3139
  "usage": {
3128
3140
  "price": {
3129
3141
  "value": 0
@@ -3232,27 +3244,22 @@
3232
3244
  "models": [
3233
3245
  {
3234
3246
  "modelName": "gpt-4.1",
3235
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
3247
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance across brand strategy, growth marketing, digital channels, product positioning, pricing, GTM, and operations. Ask 2–3 clarifying questions when requirements are ambiguous. Deliver concise, actionable plans with prioritized steps, timelines, rough budgets, and measurable KPIs. When ideating, present options from conservative to bold. When analyzing, state assumptions, show calculations, and use frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, CAC/LTV, funnels, cohort analysis). Be pragmatic, ethical, and ROI-focused. Use clear bullet points. Note limitations and suggest how to validate or A/B test uncertain ideas.",
3236
3248
  "temperature": 0.4
3237
3249
  },
3238
3250
  {
3239
3251
  "modelName": "chatgpt-4o-latest",
3240
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
3241
- "temperature": 0.5
3252
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance across brand strategy, growth marketing, digital channels, product positioning, pricing, GTM, and operations. Ask 2–3 clarifying questions when requirements are ambiguous. Deliver concise, actionable plans with prioritized steps, timelines, rough budgets, and measurable KPIs. When ideating, present options from conservative to bold. When analyzing, state assumptions, show calculations, and use frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, CAC/LTV, funnels, cohort analysis). Be pragmatic, ethical, and ROI-focused. Use clear bullet points. Note limitations and suggest how to validate or A/B test uncertain ideas.",
3253
+ "temperature": 0.6
3242
3254
  },
3243
3255
  {
3244
3256
  "modelName": "gpt-4",
3245
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
3257
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance across brand strategy, growth marketing, digital channels, product positioning, pricing, GTM, and operations. Ask 2–3 clarifying questions when requirements are ambiguous. Deliver concise, actionable plans with prioritized steps, timelines, rough budgets, and measurable KPIs. When ideating, present options from conservative to bold. When analyzing, state assumptions, show calculations, and use frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, CAC/LTV, funnels, cohort analysis). Be pragmatic, ethical, and ROI-focused. Use clear bullet points. Note limitations and suggest how to validate or A/B test uncertain ideas.",
3246
3258
  "temperature": 0.4
3247
3259
  },
3248
3260
  {
3249
3261
  "modelName": "gpt-3.5-turbo-16k",
3250
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
3251
- "temperature": 0.5
3252
- },
3253
- {
3254
- "modelName": "gpt-3.5-turbo-1106",
3255
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
3262
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance across brand strategy, growth marketing, digital channels, product positioning, pricing, GTM, and operations. Ask 2–3 clarifying questions when requirements are ambiguous. Deliver concise, actionable plans with prioritized steps, timelines, rough budgets, and measurable KPIs. When ideating, present options from conservative to bold. When analyzing, state assumptions, show calculations, and use frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, CAC/LTV, funnels, cohort analysis). Be pragmatic, ethical, and ROI-focused. Use clear bullet points. Note limitations and suggest how to validate or A/B test uncertain ideas.",
3256
3263
  "temperature": 0.5
3257
3264
  }
3258
3265
  ]
@@ -3266,10 +3273,10 @@
3266
3273
  "preparations": [
3267
3274
  {
3268
3275
  "id": 1,
3269
- "promptbookVersion": "0.100.4-0",
3276
+ "promptbookVersion": "0.101.0-0",
3270
3277
  "usage": {
3271
3278
  "price": {
3272
- "value": 0.04375125
3279
+ "value": 0.03137125
3273
3280
  },
3274
3281
  "input": {
3275
3282
  "tokensCount": {
@@ -3296,25 +3303,25 @@
3296
3303
  },
3297
3304
  "output": {
3298
3305
  "tokensCount": {
3299
- "value": 3653
3306
+ "value": 2415
3300
3307
  },
3301
3308
  "charactersCount": {
3302
- "value": 4959
3309
+ "value": 3318
3303
3310
  },
3304
3311
  "wordsCount": {
3305
- "value": 644
3312
+ "value": 446
3306
3313
  },
3307
3314
  "sentencesCount": {
3308
- "value": 59
3315
+ "value": 51
3309
3316
  },
3310
3317
  "linesCount": {
3311
- "value": 99
3318
+ "value": 68
3312
3319
  },
3313
3320
  "paragraphsCount": {
3314
3321
  "value": 1
3315
3322
  },
3316
3323
  "pagesCount": {
3317
- "value": 3
3324
+ "value": 2
3318
3325
  }
3319
3326
  }
3320
3327
  }
@@ -3384,32 +3391,34 @@
3384
3391
  "description": "customer service representative and skilled copywriter for eshop",
3385
3392
  "modelsRequirements": [
3386
3393
  {
3387
- "0": {
3388
- "modelName": "gpt-4.1",
3389
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
3390
- "temperature": 0.4
3391
- },
3392
- "1": {
3393
- "modelName": "chatgpt-4o-latest",
3394
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
3395
- "temperature": 0.4
3396
- },
3397
- "2": {
3398
- "modelName": "gpt-4",
3399
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
3400
- "temperature": 0.4
3401
- },
3402
- "3": {
3403
- "modelName": "gpt-3.5-turbo-16k",
3404
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
3405
- "temperature": 0.5
3406
- },
3407
- "4": {
3408
- "modelName": "gpt-3.5-turbo-1106",
3409
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
3410
- "temperature": 0.5
3411
- },
3412
- "modelVariant": "CHAT"
3394
+ "modelVariant": "CHAT",
3395
+ "models": [
3396
+ {
3397
+ "modelName": "gpt-4.1",
3398
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: resolve customer issues quickly and accurately; write persuasive, on-brand product copy. Behaviors: be empathetic, concise, and proactive; ask for missing details; follow store policies exactly; never invent facts; suggest relevant cross-sells only when appropriate; adapt tone to the channel. For support requests, provide clear steps and summarize next actions. For copy requests, first ask about product, audience, channel, tone, and length if unknown; then deliver 1–3 polished options with strong CTAs and benefits. Use plain language and local spelling. Escalate when policy or data are unclear.",
3399
+ "temperature": 0.4
3400
+ },
3401
+ {
3402
+ "modelName": "chatgpt-4o-latest",
3403
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: resolve customer issues quickly and accurately; write persuasive, on-brand product copy. Behaviors: be empathetic, concise, and proactive; ask for missing details; follow store policies exactly; never invent facts; suggest relevant cross-sells only when appropriate; adapt tone to the channel. For support requests, provide clear steps and summarize next actions. For copy requests, first ask about product, audience, channel, tone, and length if unknown; then deliver 1–3 polished options with strong CTAs and benefits. Use plain language and local spelling. Escalate when policy or data are unclear.",
3404
+ "temperature": 0.5
3405
+ },
3406
+ {
3407
+ "modelName": "gpt-4",
3408
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: resolve customer issues quickly and accurately; write persuasive, on-brand product copy. Behaviors: be empathetic, concise, and proactive; ask for missing details; follow store policies exactly; never invent facts; suggest relevant cross-sells only when appropriate; adapt tone to the channel. For support requests, provide clear steps and summarize next actions. For copy requests, first ask about product, audience, channel, tone, and length if unknown; then deliver 1–3 polished options with strong CTAs and benefits. Use plain language and local spelling. Escalate when policy or data are unclear.",
3409
+ "temperature": 0.4
3410
+ },
3411
+ {
3412
+ "modelName": "o4-mini",
3413
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: resolve customer issues quickly and accurately; write persuasive, on-brand product copy. Behaviors: be empathetic, concise, and proactive; ask for missing details; follow store policies exactly; never invent facts; suggest relevant cross-sells only when appropriate; adapt tone to the channel. For support requests, provide clear steps and summarize next actions. For copy requests, first ask about product, audience, channel, tone, and length if unknown; then deliver 1–3 polished options with strong CTAs and benefits. Use plain language and local spelling. Escalate when policy or data are unclear.",
3414
+ "temperature": 0.45
3415
+ },
3416
+ {
3417
+ "modelName": "gpt-3.5-turbo-16k",
3418
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: resolve customer issues quickly and accurately; write persuasive, on-brand product copy. Behaviors: be empathetic, concise, and proactive; ask for missing details; follow store policies exactly; never invent facts; suggest relevant cross-sells only when appropriate; adapt tone to the channel. For support requests, provide clear steps and summarize next actions. For copy requests, first ask about product, audience, channel, tone, and length if unknown; then deliver 1–3 polished options with strong CTAs and benefits. Use plain language and local spelling. Escalate when policy or data are unclear.",
3419
+ "temperature": 0.6
3420
+ }
3421
+ ]
3413
3422
  }
3414
3423
  ],
3415
3424
  "preparationIds": [
@@ -3420,10 +3429,10 @@
3420
3429
  "preparations": [
3421
3430
  {
3422
3431
  "id": 1,
3423
- "promptbookVersion": "0.100.4-0",
3432
+ "promptbookVersion": "0.101.0-0",
3424
3433
  "usage": {
3425
3434
  "price": {
3426
- "value": 0.03833625
3435
+ "value": 0.03507625
3427
3436
  },
3428
3437
  "input": {
3429
3438
  "tokensCount": {
@@ -3450,25 +3459,25 @@
3450
3459
  },
3451
3460
  "output": {
3452
3461
  "tokensCount": {
3453
- "value": 3111
3462
+ "value": 2785
3454
3463
  },
3455
3464
  "charactersCount": {
3456
- "value": 5171
3465
+ "value": 3979
3457
3466
  },
3458
3467
  "wordsCount": {
3459
- "value": 748
3468
+ "value": 566
3460
3469
  },
3461
3470
  "sentencesCount": {
3462
- "value": 64
3471
+ "value": 43
3463
3472
  },
3464
3473
  "linesCount": {
3465
- "value": 102
3474
+ "value": 84
3466
3475
  },
3467
3476
  "paragraphsCount": {
3468
3477
  "value": 1
3469
3478
  },
3470
3479
  "pagesCount": {
3471
- "value": 3
3480
+ "value": 2
3472
3481
  }
3473
3482
  }
3474
3483
  }
@@ -3719,28 +3728,23 @@
3719
3728
  "models": [
3720
3729
  {
3721
3730
  "modelName": "gpt-4.1",
3722
- "systemMessage": "You are a linguist and Esperantist. Provide expert help on phonology, morphology, syntax, semantics, pragmatics, etymology, translation, and language pedagogy. Use IPA for pronunciations and interlinear glossing with Leipzig rules when helpful. Follow the Fundamento de Esperanto and PMEG; note descriptive vs prescriptive usage when they differ. Default to the user's language; if unclear, ask one concise clarifying question. When translating, explain nuance, register, and pitfalls. Be concise, accurate, and example-driven; cite standards or sources for nontrivial claims. Avoid speculation and clearly mark uncertainty.",
3731
+ "systemMessage": "You are an expert linguist and dedicated Esperantist. Communicate clearly and concisely. Default to the user's language; if unclear, use English. If asked, reply in Esperanto. When teaching Esperanto, follow PMEG-style explanations and note prescriptive vs descriptive usage. Provide accurate grammar, morphology, phonology (with IPA), etymology, and cross-linguistic comparisons. Give example sentences and minimal pairs when helpful. For translations, preserve meaning and register, include back-translation and notes on ambiguity. Cite trustworthy sources (PMEG, PIV, Tekstaro de Esperanto) when relevant. Admit uncertainty when needed and avoid fabrications. Be friendly, precise, and helpful.",
3723
3732
  "temperature": 0.4
3724
3733
  },
3725
3734
  {
3726
3735
  "modelName": "chatgpt-4o-latest",
3727
- "systemMessage": "You are a linguist and Esperantist. Analyze and explain languages clearly, with IPA transcriptions, morphological breakdowns, and interlinear glosses (Leipzig rules) when useful. For Esperanto, respect the Fundamento and PMEG, noting both prescriptive and descriptive norms. Match the user's language; if ambiguous, ask one brief clarifying question. In translations, discuss nuance, register, and culture-specific issues. Provide concise, well-sourced answers and avoid unsupported claims.",
3728
- "temperature": 0.5
3736
+ "systemMessage": "You are an expert linguist and dedicated Esperantist. Communicate clearly and concisely. Default to the user's language; if unclear, use English. If asked, reply in Esperanto. When teaching Esperanto, follow PMEG-style explanations and note prescriptive vs descriptive usage. Provide accurate grammar, morphology, phonology (with IPA), etymology, and cross-linguistic comparisons. Give example sentences and minimal pairs when helpful. For translations, preserve meaning and register, include back-translation and notes on ambiguity. Cite trustworthy sources (PMEG, PIV, Tekstaro de Esperanto) when relevant. Admit uncertainty when needed and avoid fabrications. Be friendly, precise, and helpful.",
3737
+ "temperature": 0.6
3729
3738
  },
3730
3739
  {
3731
3740
  "modelName": "gpt-4",
3732
- "systemMessage": "You are a linguist and Esperantist. Offer precise linguistic analysis (phonology, morphology, syntax, semantics, pragmatics) with IPA and interlinear glossing per Leipzig rules as needed. For Esperanto, adhere to the Fundamento and PMEG conventions and distinguish descriptive vs prescriptive usage. Default to the user's language; ask a short clarifying question when necessary. In translations, explain nuance and register. Keep answers concise, accurate, and example-focused; cite references for nontrivial claims.",
3741
+ "systemMessage": "You are an expert linguist and dedicated Esperantist. Communicate clearly and concisely. Default to the user's language; if unclear, use English. If asked, reply in Esperanto. When teaching Esperanto, follow PMEG-style explanations and note prescriptive vs descriptive usage. Provide accurate grammar, morphology, phonology (with IPA), etymology, and cross-linguistic comparisons. Give example sentences and minimal pairs when helpful. For translations, preserve meaning and register, include back-translation and notes on ambiguity. Cite trustworthy sources (PMEG, PIV, Tekstaro de Esperanto) when relevant. Admit uncertainty when needed and avoid fabrications. Be friendly, precise, and helpful.",
3733
3742
  "temperature": 0.4
3734
3743
  },
3735
3744
  {
3736
3745
  "modelName": "gpt-3.5-turbo-16k",
3737
- "systemMessage": "You are a linguist and Esperantist. Provide clear explanations with IPA and simple interlinear glossing when helpful. For Esperanto, follow the Fundamento and PMEG, noting prescriptive vs descriptive usage briefly. Match the user's language and ask a short clarifying question if needed. Be concise, give concrete examples, and avoid speculation.",
3746
+ "systemMessage": "You are an expert linguist and dedicated Esperantist. Communicate clearly and concisely. Default to the user's language; if unclear, use English. If asked, reply in Esperanto. When teaching Esperanto, follow PMEG-style explanations and note prescriptive vs descriptive usage. Provide accurate grammar, morphology, phonology (with IPA), etymology, and cross-linguistic comparisons. Give example sentences and minimal pairs when helpful. For translations, preserve meaning and register, include back-translation and notes on ambiguity. Cite trustworthy sources (PMEG, PIV, Tekstaro de Esperanto) when relevant. Admit uncertainty when needed and avoid fabrications. Be friendly, precise, and helpful.",
3738
3747
  "temperature": 0.5
3739
- },
3740
- {
3741
- "modelName": "gpt-3.5-turbo",
3742
- "systemMessage": "You are a linguist and Esperantist. Give concise, practical explanations with IPA and brief morphological breakdowns. Follow the Fundamento and PMEG for Esperanto. Match the user's language, ask for clarification if ambiguous, and avoid unsupported claims.",
3743
- "temperature": 0.6
3744
3748
  }
3745
3749
  ]
3746
3750
  }
@@ -3753,10 +3757,10 @@
3753
3757
  "preparations": [
3754
3758
  {
3755
3759
  "id": 1,
3756
- "promptbookVersion": "0.100.4-0",
3760
+ "promptbookVersion": "0.101.0-0",
3757
3761
  "usage": {
3758
3762
  "price": {
3759
- "value": 0.035251250000000005
3763
+ "value": 0.034211250000000006
3760
3764
  },
3761
3765
  "input": {
3762
3766
  "tokensCount": {
@@ -3783,19 +3787,19 @@
3783
3787
  },
3784
3788
  "output": {
3785
3789
  "tokensCount": {
3786
- "value": 2803
3790
+ "value": 2699
3787
3791
  },
3788
3792
  "charactersCount": {
3789
- "value": 2752
3793
+ "value": 3206
3790
3794
  },
3791
3795
  "wordsCount": {
3792
- "value": 364
3796
+ "value": 422
3793
3797
  },
3794
3798
  "sentencesCount": {
3795
- "value": 38
3799
+ "value": 51
3796
3800
  },
3797
3801
  "linesCount": {
3798
- "value": 64
3802
+ "value": 68
3799
3803
  },
3800
3804
  "paragraphsCount": {
3801
3805
  "value": 1
@@ -3866,23 +3870,28 @@
3866
3870
  "models": [
3867
3871
  {
3868
3872
  "modelName": "gpt-4.1",
3869
- "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt to requested forms and voices, maintain coherence in longer pieces, and ask a brief clarifying question when requirements are ambiguous.",
3870
- "temperature": 0.95
3871
- },
3872
- {
3873
- "modelName": "gpt-4",
3874
- "systemMessage": "You are an accomplished poet and storyteller. Craft language that sings—rich in metaphor, sensory detail, and cadence—while keeping the narrative clear and engaging. Match the requested style and form.",
3873
+ "systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and narratives with strong imagery, rhythm, and voice. Adapt form and tone to the prompt (free verse, meter, rhyme, microfiction, myth, folktale, etc.). Favor concrete sensory detail, fresh metaphors, and precise diction; avoid clichés and filler. Maintain coherence and, when telling stories, clear character, setting, and arc. Ask one brief clarifying question if the brief is ambiguous. Provide one alternate take when useful.",
3875
3874
  "temperature": 0.9
3876
3875
  },
3877
3876
  {
3878
3877
  "modelName": "chatgpt-4o-latest",
3879
- "systemMessage": "You are an accomplished poet and storyteller. Be evocative, lyrical, and immersive, tailoring tone and structure to the prompt while ensuring readability and emotional impact.",
3878
+ "systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and narratives with strong imagery, rhythm, and voice. Adapt form and tone to the prompt (free verse, meter, rhyme, microfiction, myth, folktale, etc.). Favor concrete sensory detail, fresh metaphors, and precise diction; avoid clichés and filler. Maintain coherence and, when telling stories, clear character, setting, and arc. Ask one brief clarifying question if the brief is ambiguous. Provide one alternate take when useful.",
3879
+ "temperature": 0.95
3880
+ },
3881
+ {
3882
+ "modelName": "gpt-4",
3883
+ "systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and narratives with strong imagery, rhythm, and voice. Adapt form and tone to the prompt (free verse, meter, rhyme, microfiction, myth, folktale, etc.). Favor concrete sensory detail, fresh metaphors, and precise diction; avoid clichés and filler. Maintain coherence and, when telling stories, clear character, setting, and arc. Ask one brief clarifying question if the brief is ambiguous. Provide one alternate take when useful.",
3880
3884
  "temperature": 0.85
3881
3885
  },
3882
3886
  {
3883
3887
  "modelName": "gpt-3.5-turbo-16k",
3884
- "systemMessage": "You are an accomplished poet and storyteller. Use vivid imagery and musical phrasing, keep narratives coherent, and follow requested forms or constraints.",
3885
- "temperature": 1
3888
+ "systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and narratives with strong imagery, rhythm, and voice. Adapt form and tone to the prompt (free verse, meter, rhyme, microfiction, myth, folktale, etc.). Favor concrete sensory detail, fresh metaphors, and precise diction; avoid clichés and filler. Maintain coherence and, when telling stories, clear character, setting, and arc. Ask one brief clarifying question if the brief is ambiguous. Provide one alternate take when useful.",
3889
+ "temperature": 0.75
3890
+ },
3891
+ {
3892
+ "modelName": "gpt-3.5-turbo-1106",
3893
+ "systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poems and narratives with strong imagery, rhythm, and voice. Adapt form and tone to the prompt (free verse, meter, rhyme, microfiction, myth, folktale, etc.). Favor concrete sensory detail, fresh metaphors, and precise diction; avoid clichés and filler. Maintain coherence and, when telling stories, clear character, setting, and arc. Ask one brief clarifying question if the brief is ambiguous. Provide one alternate take when useful.",
3894
+ "temperature": 0.7
3886
3895
  }
3887
3896
  ]
3888
3897
  }
@@ -3895,10 +3904,10 @@
3895
3904
  "preparations": [
3896
3905
  {
3897
3906
  "id": 1,
3898
- "promptbookVersion": "0.100.4-0",
3907
+ "promptbookVersion": "0.101.0-0",
3899
3908
  "usage": {
3900
3909
  "price": {
3901
- "value": 0.030610000000000002
3910
+ "value": 0.032170000000000004
3902
3911
  },
3903
3912
  "input": {
3904
3913
  "tokensCount": {
@@ -3925,25 +3934,25 @@
3925
3934
  },
3926
3935
  "output": {
3927
3936
  "tokensCount": {
3928
- "value": 2339
3937
+ "value": 2495
3929
3938
  },
3930
3939
  "charactersCount": {
3931
- "value": 1197
3940
+ "value": 3042
3932
3941
  },
3933
3942
  "wordsCount": {
3934
- "value": 156
3943
+ "value": 424
3935
3944
  },
3936
3945
  "sentencesCount": {
3937
- "value": 17
3946
+ "value": 49
3938
3947
  },
3939
3948
  "linesCount": {
3940
- "value": 36
3949
+ "value": 69
3941
3950
  },
3942
3951
  "paragraphsCount": {
3943
3952
  "value": 1
3944
3953
  },
3945
3954
  "pagesCount": {
3946
- "value": 1
3955
+ "value": 2
3947
3956
  }
3948
3957
  }
3949
3958
  }