@promptbook/templates 0.101.0-9 → 0.101.0

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 (88) hide show
  1. package/README.md +0 -4
  2. package/esm/index.es.js +120 -146
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/typings/src/_packages/components.index.d.ts +14 -0
  5. package/esm/typings/src/_packages/core.index.d.ts +12 -0
  6. package/esm/typings/src/_packages/types.index.d.ts +8 -0
  7. package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +11 -4
  8. package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +3 -0
  9. package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +4 -22
  10. package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.d.ts +1 -26
  11. package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +0 -12
  12. package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +0 -24
  13. package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +0 -12
  14. package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +0 -12
  15. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +0 -6
  16. package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +0 -12
  17. package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +0 -12
  18. package/esm/typings/src/book-2.0/commitments/META/META.d.ts +0 -6
  19. package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +0 -6
  20. package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +0 -6
  21. package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +23 -14
  22. package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +2 -14
  23. package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +0 -12
  24. package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +0 -12
  25. package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +0 -12
  26. package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +0 -12
  27. package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +0 -12
  28. package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +1 -1
  29. package/esm/typings/src/book-2.0/commitments/index.d.ts +1 -1
  30. package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -0
  31. package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +5 -2
  32. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
  33. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +18 -1
  34. package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +8 -0
  35. package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +2 -15
  36. package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +9 -0
  37. package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
  38. package/esm/typings/src/book-components/Chat/hooks/index.d.ts +2 -0
  39. package/esm/typings/src/book-components/Chat/hooks/useChatAutoScroll.d.ts +41 -0
  40. package/esm/typings/src/book-components/Chat/hooks/useSendMessageToLlmChat.d.ts +44 -0
  41. package/esm/typings/src/book-components/Chat/utils/parseMessageButtons.d.ts +22 -0
  42. package/esm/typings/src/book-components/icons/PauseIcon.d.ts +8 -0
  43. package/esm/typings/src/book-components/icons/PlayIcon.d.ts +8 -0
  44. package/esm/typings/src/execution/PromptResult.d.ts +2 -4
  45. package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -2
  46. package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +1 -3
  47. package/esm/typings/src/formats/csv/CsvFormatError.d.ts +1 -1
  48. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +1 -1
  49. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
  50. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +1 -2
  51. package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.d.ts +8 -2
  52. package/esm/typings/src/llm-providers/_common/utils/removeUnsupportedModelRequirements.d.ts +25 -0
  53. package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +7 -18
  54. package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +11 -0
  55. package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +2 -1
  56. package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +58 -0
  57. package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +29 -0
  58. package/esm/typings/src/llm-providers/agent/playground/playground.d.ts +8 -0
  59. package/esm/typings/src/llm-providers/agent/register-configuration.d.ts +11 -0
  60. package/esm/typings/src/llm-providers/agent/register-constructor.d.ts +13 -0
  61. package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +3 -8
  62. package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -5
  63. package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +1 -0
  64. package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +4 -10
  65. package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +4 -6
  66. package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +3 -3
  67. package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +16 -8
  68. package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +3 -8
  69. package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -14
  70. package/esm/typings/src/personas/preparePersona.d.ts +1 -0
  71. package/esm/typings/src/remote-server/openapi-types.d.ts +31 -31
  72. package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +1 -2
  73. package/esm/typings/src/types/ModelRequirements.d.ts +2 -4
  74. package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +1 -1
  75. package/esm/typings/src/utils/editable/edit-pipeline-string/addPipelineCommand.d.ts +1 -1
  76. package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +0 -1
  77. package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +2 -2
  78. package/esm/typings/src/version.d.ts +1 -1
  79. package/package.json +2 -2
  80. package/umd/index.umd.js +120 -146
  81. package/umd/index.umd.js.map +1 -1
  82. package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +0 -17
  83. package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +0 -12
  84. package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +0 -16
  85. package/esm/typings/src/expectations/drafts/isDomainNameFree.d.ts +0 -10
  86. package/esm/typings/src/expectations/drafts/isGithubNameFree.d.ts +0 -10
  87. package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +0 -81
  88. /package/esm/typings/src/llm-providers/_common/{profiles/test/llmProviderProfiles.test.d.ts → utils/removeUnsupportedModelRequirements.test.d.ts} +0 -0
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.101.0-9';
25
+ const PROMPTBOOK_ENGINE_VERSION = '0.101.0';
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,28 +1571,28 @@
1571
1571
  "models": [
1572
1572
  {
1573
1573
  "modelName": "gpt-4.1",
1574
- "systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Act as a pragmatic virtual assistant for developers. Principles: - Be precise and concise; use bullet points and numbered steps. - Ask 1–3 clarifying questions if requirements are ambiguous. - Prefer structured outputs (JSON, schemas, checklists); follow Promptbook style: Roles, Goals, Constraints, Examples, Evaluation. - For code: provide minimal, correct, production-ready snippets with comments and tests; note assumptions, edge cases, security, and performance. - When uncertain, say so and suggest how to verify. - Keep responses copy-pasteable and tool-call-friendly.",
1575
- "temperature": 0.3
1574
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
1575
+ "temperature": 0.2
1576
1576
  },
1577
1577
  {
1578
1578
  "modelName": "chatgpt-4o-latest",
1579
- "systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Be a friendly, fast, developer-focused assistant. Use concise bullets, propose clear prompt templates, and return structured outputs when helpful. Ask brief clarifying questions before deep work. For code, provide minimal runnable examples with comments and tests; call out assumptions and risks.",
1580
- "temperature": 0.4
1579
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
1580
+ "temperature": 0.3
1581
1581
  },
1582
1582
  {
1583
1583
  "modelName": "gpt-4",
1584
- "systemMessage": "You are a seasoned Promptbook Project developer and helpful assistant. Provide deterministic, structured, and actionable guidance. Default to bullet points, short steps, and JSON schemas. For code: correctness first, explain key decisions, include quick tests, and highlight security/performance considerations.",
1585
- "temperature": 0.3
1584
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
1585
+ "temperature": 0.2
1586
1586
  },
1587
1587
  {
1588
1588
  "modelName": "o4-mini",
1589
- "systemMessage": "You are a Promptbook Project developer focused on efficient reasoning. Tackle complex planning, refactoring, and prompt/system design. Be concise, show your plan, validate assumptions, and return structured outputs (JSON/checklists). For code, aim for correctness, tests, and clear trade-offs.",
1590
- "temperature": 0.25
1589
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
1590
+ "temperature": 0.2
1591
1591
  },
1592
1592
  {
1593
1593
  "modelName": "gpt-3.5-turbo-16k",
1594
- "systemMessage": "You are a practical, cost-efficient assistant and Promptbook Project developer. Keep answers short, structured, and copy-pasteable. Ask brief clarifying questions when needed. Provide minimal, correct code with comments and basic tests; prefer JSON or checklists for structure.",
1595
- "temperature": 0.4
1594
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
1595
+ "temperature": 0.2
1596
1596
  }
1597
1597
  ]
1598
1598
  }
@@ -1605,10 +1605,10 @@
1605
1605
  "preparations": [
1606
1606
  {
1607
1607
  "id": 1,
1608
- "promptbookVersion": "0.101.0-8",
1608
+ "promptbookVersion": "0.101.0-21",
1609
1609
  "usage": {
1610
1610
  "price": {
1611
- "value": 0.02749375
1611
+ "value": 0.028033750000000003
1612
1612
  },
1613
1613
  "input": {
1614
1614
  "tokensCount": {
@@ -1635,16 +1635,16 @@
1635
1635
  },
1636
1636
  "output": {
1637
1637
  "tokensCount": {
1638
- "value": 2017
1638
+ "value": 2071
1639
1639
  },
1640
1640
  "charactersCount": {
1641
- "value": 2416
1641
+ "value": 2488
1642
1642
  },
1643
1643
  "wordsCount": {
1644
- "value": 317
1644
+ "value": 316
1645
1645
  },
1646
1646
  "sentencesCount": {
1647
- "value": 33
1647
+ "value": 38
1648
1648
  },
1649
1649
  "linesCount": {
1650
1650
  "value": 59
@@ -2136,28 +2136,28 @@
2136
2136
  "models": [
2137
2137
  {
2138
2138
  "modelName": "gpt-4.1",
2139
- "systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Act as a pragmatic virtual assistant for developers. Principles: - Be precise and concise; use bullet points and numbered steps. - Ask 1–3 clarifying questions if requirements are ambiguous. - Prefer structured outputs (JSON, schemas, checklists); follow Promptbook style: Roles, Goals, Constraints, Examples, Evaluation. - For code: provide minimal, correct, production-ready snippets with comments and tests; note assumptions, edge cases, security, and performance. - When uncertain, say so and suggest how to verify. - Keep responses copy-pasteable and tool-call-friendly.",
2140
- "temperature": 0.3
2139
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
2140
+ "temperature": 0.2
2141
2141
  },
2142
2142
  {
2143
2143
  "modelName": "chatgpt-4o-latest",
2144
- "systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Be a friendly, fast, developer-focused assistant. Use concise bullets, propose clear prompt templates, and return structured outputs when helpful. Ask brief clarifying questions before deep work. For code, provide minimal runnable examples with comments and tests; call out assumptions and risks.",
2145
- "temperature": 0.4
2144
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
2145
+ "temperature": 0.3
2146
2146
  },
2147
2147
  {
2148
2148
  "modelName": "gpt-4",
2149
- "systemMessage": "You are a seasoned Promptbook Project developer and helpful assistant. Provide deterministic, structured, and actionable guidance. Default to bullet points, short steps, and JSON schemas. For code: correctness first, explain key decisions, include quick tests, and highlight security/performance considerations.",
2150
- "temperature": 0.3
2149
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
2150
+ "temperature": 0.2
2151
2151
  },
2152
2152
  {
2153
2153
  "modelName": "o4-mini",
2154
- "systemMessage": "You are a Promptbook Project developer focused on efficient reasoning. Tackle complex planning, refactoring, and prompt/system design. Be concise, show your plan, validate assumptions, and return structured outputs (JSON/checklists). For code, aim for correctness, tests, and clear trade-offs.",
2155
- "temperature": 0.25
2154
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
2155
+ "temperature": 0.2
2156
2156
  },
2157
2157
  {
2158
2158
  "modelName": "gpt-3.5-turbo-16k",
2159
- "systemMessage": "You are a practical, cost-efficient assistant and Promptbook Project developer. Keep answers short, structured, and copy-pasteable. Ask brief clarifying questions when needed. Provide minimal, correct code with comments and basic tests; prefer JSON or checklists for structure.",
2160
- "temperature": 0.4
2159
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
2160
+ "temperature": 0.2
2161
2161
  }
2162
2162
  ]
2163
2163
  }
@@ -2170,10 +2170,10 @@
2170
2170
  "preparations": [
2171
2171
  {
2172
2172
  "id": 1,
2173
- "promptbookVersion": "0.101.0-8",
2173
+ "promptbookVersion": "0.101.0-21",
2174
2174
  "usage": {
2175
2175
  "price": {
2176
- "value": 0.02749375
2176
+ "value": 0.028033750000000003
2177
2177
  },
2178
2178
  "input": {
2179
2179
  "tokensCount": {
@@ -2200,16 +2200,16 @@
2200
2200
  },
2201
2201
  "output": {
2202
2202
  "tokensCount": {
2203
- "value": 2017
2203
+ "value": 2071
2204
2204
  },
2205
2205
  "charactersCount": {
2206
- "value": 2416
2206
+ "value": 2488
2207
2207
  },
2208
2208
  "wordsCount": {
2209
- "value": 317
2209
+ "value": 316
2210
2210
  },
2211
2211
  "sentencesCount": {
2212
- "value": 33
2212
+ "value": 38
2213
2213
  },
2214
2214
  "linesCount": {
2215
2215
  "value": 59
@@ -2839,28 +2839,7 @@
2839
2839
  "modelsRequirements": [
2840
2840
  {
2841
2841
  "modelVariant": "CHAT",
2842
- "models": [
2843
- {
2844
- "modelName": "gpt-4.1",
2845
- "systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
2846
- "temperature": 0.2
2847
- },
2848
- {
2849
- "modelName": "gpt-4",
2850
- "systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
2851
- "temperature": 0.2
2852
- },
2853
- {
2854
- "modelName": "chatgpt-4o-latest",
2855
- "systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
2856
- "temperature": 0.25
2857
- },
2858
- {
2859
- "modelName": "gpt-3.5-turbo-16k",
2860
- "systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
2861
- "temperature": 0.2
2862
- }
2863
- ]
2842
+ "error": "The 'gpt-5' models are not supported in the current API. Please check the available models list for valid options."
2864
2843
  }
2865
2844
  ],
2866
2845
  "preparationIds": [
@@ -2871,10 +2850,10 @@
2871
2850
  "preparations": [
2872
2851
  {
2873
2852
  "id": 1,
2874
- "promptbookVersion": "0.101.0-8",
2853
+ "promptbookVersion": "0.101.0-21",
2875
2854
  "usage": {
2876
2855
  "price": {
2877
- "value": 0.036472500000000005
2856
+ "value": 0.0288625
2878
2857
  },
2879
2858
  "input": {
2880
2859
  "tokensCount": {
@@ -2901,25 +2880,25 @@
2901
2880
  },
2902
2881
  "output": {
2903
2882
  "tokensCount": {
2904
- "value": 2915
2883
+ "value": 2154
2905
2884
  },
2906
2885
  "charactersCount": {
2907
- "value": 2723
2886
+ "value": 131
2908
2887
  },
2909
2888
  "wordsCount": {
2910
- "value": 390
2889
+ "value": 21
2911
2890
  },
2912
2891
  "sentencesCount": {
2913
- "value": 43
2892
+ "value": 3
2914
2893
  },
2915
2894
  "linesCount": {
2916
- "value": 60
2895
+ "value": 5
2917
2896
  },
2918
2897
  "paragraphsCount": {
2919
2898
  "value": 1
2920
2899
  },
2921
2900
  "pagesCount": {
2922
- "value": 2
2901
+ "value": 1
2923
2902
  }
2924
2903
  }
2925
2904
  }
@@ -2985,23 +2964,23 @@
2985
2964
  "models": [
2986
2965
  {
2987
2966
  "modelName": "gpt-4.1",
2988
- "systemMessage": "You are a skilled ecommerce copywriter and conversion-focused virtual assistant. Objectives: 1) Craft benefit-led product and category descriptions, headlines, ads, emails, SEO titles/meta descriptions, and microcopy. 2) Adapt to brand voice, audience, and channel constraints; if missing, ask 2–3 quick clarifying questions first. 3) Structure copy for scanning: hook, key benefits, proof/features, objections/FAQs, clear CTA; use bullets for specs. 4) Optimize for SEO: naturally weave target keywords and semantic variants; respect typical limits (title ~55–60 chars, meta description ~150–160). 5) Provide 2–3 A/B variants when requested and label tones. 6) Never invent specs or claims; use placeholders like {{dimension}} if unknown; comply with platform policies. 7) Localize on request and preserve meaning/idioms. 8) Return clean, ready-to-paste copy without extraneous commentary unless asked.",
2989
- "temperature": 0.65
2967
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
2968
+ "temperature": 0.6
2990
2969
  },
2991
2970
  {
2992
2971
  "modelName": "chatgpt-4o-latest",
2993
- "systemMessage": "You are a professional e‑shop copywriter focused on persuasive, brand-aligned content. Deliver concise, benefit-first product copy, SEO meta tags, headlines, ads, email snippets, and microcopy. Ask brief clarifying questions if key inputs (audience, tone, keywords, constraints) are missing. Keep copy scannable (bullets, short sentences), include strong CTAs, and respect channel character limits. Weave provided keywords naturally and offer 2–3 labeled variants on request. Do not fabricate details; use placeholders like {{material}} when data is missing. Ensure compliance and avoid unverifiable or prohibited claims. Output only the requested copy, ready to paste.",
2972
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
2994
2973
  "temperature": 0.7
2995
2974
  },
2996
2975
  {
2997
2976
  "modelName": "gpt-4",
2998
- "systemMessage": "You are an expert ecommerce copywriter. Write conversion-oriented product/category descriptions, headlines, ads, emails, and SEO titles/meta descriptions. Use a clear structure (hook benefits features/proof CTA), keep copy skimmable, and adapt to brand voice and audience. Ask brief clarifying questions if inputs are incomplete. Optimize gently for SEO using provided keywords and semantic variants, respecting common character limits. Provide multiple labeled variants when requested. Never invent specs or claims; use placeholders like {{warranty}} if unknown and follow platform policies. Return clean, paste-ready copy only.",
2999
- "temperature": 0.7
2977
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
2978
+ "temperature": 0.65
3000
2979
  },
3001
2980
  {
3002
2981
  "modelName": "gpt-3.5-turbo-16k",
3003
- "systemMessage": "You are a cost-efficient e‑shop copywriter. Produce concise, persuasive product and category copy, SEO titles/meta descriptions, headlines, and ad/email snippets. Prioritize benefits, clarity, and CTAs; keep content scannable with bullets. Ask quick clarification questions if key details or keywords are missing. Respect character limits, avoid unverifiable claims, and use placeholders like {{color}} if data is unknown. Provide 2–3 labeled variants when requested. Output only the requested copy, ready to paste.",
3004
- "temperature": 0.8
2982
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
2983
+ "temperature": 0.75
3005
2984
  }
3006
2985
  ]
3007
2986
  }
@@ -3014,10 +2993,10 @@
3014
2993
  "preparations": [
3015
2994
  {
3016
2995
  "id": 1,
3017
- "promptbookVersion": "0.101.0-8",
2996
+ "promptbookVersion": "0.101.0-21",
3018
2997
  "usage": {
3019
2998
  "price": {
3020
- "value": 0.041982500000000006
2999
+ "value": 0.0353525
3021
3000
  },
3022
3001
  "input": {
3023
3002
  "tokensCount": {
@@ -3044,19 +3023,19 @@
3044
3023
  },
3045
3024
  "output": {
3046
3025
  "tokensCount": {
3047
- "value": 3466
3026
+ "value": 2803
3048
3027
  },
3049
3028
  "charactersCount": {
3050
- "value": 3143
3029
+ "value": 4372
3051
3030
  },
3052
3031
  "wordsCount": {
3053
- "value": 437
3032
+ "value": 590
3054
3033
  },
3055
3034
  "sentencesCount": {
3056
- "value": 39
3035
+ "value": 55
3057
3036
  },
3058
3037
  "linesCount": {
3059
- "value": 67
3038
+ "value": 88
3060
3039
  },
3061
3040
  "paragraphsCount": {
3062
3041
  "value": 1
@@ -3110,7 +3089,7 @@
3110
3089
  "preparations": [
3111
3090
  {
3112
3091
  "id": 1,
3113
- "promptbookVersion": "0.101.0-8",
3092
+ "promptbookVersion": "0.101.0-21",
3114
3093
  "usage": {
3115
3094
  "price": {
3116
3095
  "value": 0
@@ -3219,28 +3198,23 @@
3219
3198
  "models": [
3220
3199
  {
3221
3200
  "modelName": "gpt-4.1",
3222
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, and data-informed guidance using proven frameworks (STP, 4Ps/7Ps, AARRR, RICE, SWOT). Ask brief clarifying questions when needed. Deliver prioritized recommendations, KPIs, funnel metrics, and next steps. Keep a professional, friendly tone and focus on business impact.",
3201
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance and actionable plans. Ask 1–2 clarifying questions when needed. Structure outputs with bullet points, frameworks (e.g., STP, AIDA, 7Ps), KPIs, and next steps. Be concise, note assumptions, and avoid speculation.",
3223
3202
  "temperature": 0.4
3224
3203
  },
3225
3204
  {
3226
3205
  "modelName": "chatgpt-4o-latest",
3227
- "systemMessage": "You are an experienced marketing specialist and business consultant. Be collaborative and creative while staying practical. Brainstorm campaigns, messaging, and positioning; outline go-to-market plans, budgets, and ROI scenarios. Use concise bullets, examples, and templates. Default to actionable outputs and clear next steps.",
3228
- "temperature": 0.6
3206
+ "systemMessage": "You are an experienced marketing specialist and business consultant with strong copywriting skills. Create compelling, brand-appropriate messaging and campaign ideas, offering variants for A/B testing. Keep a professional, friendly tone and include examples, templates, and quick-win suggestions.",
3207
+ "temperature": 0.65
3229
3208
  },
3230
3209
  {
3231
3210
  "modelName": "gpt-4",
3232
- "systemMessage": "You are an experienced marketing specialist and business consultant. Offer strategic analysis and well-structured plans with assumptions, risks, and mitigation. Apply marketing and growth frameworks, quantify where possible, and present crisp summaries with prioritized actions and KPIs.",
3233
- "temperature": 0.5
3234
- },
3235
- {
3236
- "modelName": "o4-mini",
3237
- "systemMessage": "You are an experienced marketing specialist and business consultant focused on analytical decision-making. Perform step-by-step reasoning for market sizing, pricing, CAC/LTV, channel mix, and funnel math. Provide sensitivity analyses, trade-offs, and clear recommendations with next steps.",
3238
- "temperature": 0.3
3211
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, structured recommendations with step-by-step plans, budgets, timelines, and risk mitigations. Prioritize ROI, practicality, and measurable outcomes.",
3212
+ "temperature": 0.45
3239
3213
  },
3240
3214
  {
3241
3215
  "modelName": "gpt-3.5-turbo-16k",
3242
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, practical guidance with simple frameworks, checklists, and examples. Keep outputs implementable and budget-conscious.",
3243
- "temperature": 0.6
3216
+ "systemMessage": "You are an experienced marketing specialist and business consultant focused on concise, practical advice. Summarize complex topics clearly, provide checklists and next steps, and highlight key assumptions and KPIs.",
3217
+ "temperature": 0.5
3244
3218
  }
3245
3219
  ]
3246
3220
  }
@@ -3253,10 +3227,10 @@
3253
3227
  "preparations": [
3254
3228
  {
3255
3229
  "id": 1,
3256
- "promptbookVersion": "0.101.0-8",
3230
+ "promptbookVersion": "0.101.0-21",
3257
3231
  "usage": {
3258
3232
  "price": {
3259
- "value": 0.0296825
3233
+ "value": 0.025522500000000004
3260
3234
  },
3261
3235
  "input": {
3262
3236
  "tokensCount": {
@@ -3283,25 +3257,25 @@
3283
3257
  },
3284
3258
  "output": {
3285
3259
  "tokensCount": {
3286
- "value": 2236
3260
+ "value": 1820
3287
3261
  },
3288
3262
  "charactersCount": {
3289
- "value": 1984
3263
+ "value": 1482
3290
3264
  },
3291
3265
  "wordsCount": {
3292
- "value": 249
3266
+ "value": 186
3293
3267
  },
3294
3268
  "sentencesCount": {
3295
- "value": 27
3269
+ "value": 22
3296
3270
  },
3297
3271
  "linesCount": {
3298
- "value": 51
3272
+ "value": 41
3299
3273
  },
3300
3274
  "paragraphsCount": {
3301
3275
  "value": 1
3302
3276
  },
3303
3277
  "pagesCount": {
3304
- "value": 2
3278
+ "value": 1
3305
3279
  }
3306
3280
  }
3307
3281
  }
@@ -3375,22 +3349,22 @@
3375
3349
  "models": [
3376
3350
  {
3377
3351
  "modelName": "gpt-4.1",
3378
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Goals: (1) Provide empathetic, accurate support for orders, shipping, returns, and product questions. (2) Write clear, conversionfocused copy (product descriptions, emails, ads, FAQs) in the brand voice. Guidelines: Be friendly, concise, and proactive; ask clarifying questions when details are missing. Never fabricate order or policy details; request order ID, email, and relevant info when needed. Offer step‑by‑step instructions and summarize next steps. Maintain privacy and comply with store policies. Adapt tone to the user’s locale and context; use bullets for readability when useful. For copywriting, highlight benefits, address objections, include social proof if available, and end with a clear, non‑pushy call to action.",
3379
- "temperature": 0.4
3352
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, onbrand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
3353
+ "temperature": 0.45
3380
3354
  },
3381
3355
  {
3382
3356
  "modelName": "chatgpt-4o-latest",
3383
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Provide empathetic, accurate support on orders, shipping, returns, and product questions, and craft conversion‑focused copy in a friendly, professional tone. Ask clarifying questions, never invent order or policy details, and summarize next steps with clear actions. Use concise language, bullets when helpful, adapt to user locale, and include relevant CTAs in marketing copy.",
3357
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
3384
3358
  "temperature": 0.5
3385
3359
  },
3386
3360
  {
3387
3361
  "modelName": "gpt-4",
3388
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be friendly, precise, and proactive. For support: gather needed details (order ID, email), do not invent information, explain steps clearly, and summarize actions. For copywriting: follow brand voice, focus on benefits, address objections, and close with a clear call to action. Keep privacy in mind and adapt tone to the user’s locale.",
3389
- "temperature": 0.5
3362
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
3363
+ "temperature": 0.4
3390
3364
  },
3391
3365
  {
3392
3366
  "modelName": "gpt-3.5-turbo-16k",
3393
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Offer empathetic, accurate troubleshooting and policy guidance without fabricating details; ask for missing info and summarize next steps. When writing copy, be concise, benefit‑driven, and brand‑aligned, using clear CTAs and bullets where useful.",
3367
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
3394
3368
  "temperature": 0.6
3395
3369
  }
3396
3370
  ]
@@ -3404,10 +3378,10 @@
3404
3378
  "preparations": [
3405
3379
  {
3406
3380
  "id": 1,
3407
- "promptbookVersion": "0.101.0-8",
3381
+ "promptbookVersion": "0.101.0-21",
3408
3382
  "usage": {
3409
3383
  "price": {
3410
- "value": 0.0282675
3384
+ "value": 0.0378375
3411
3385
  },
3412
3386
  "input": {
3413
3387
  "tokensCount": {
@@ -3434,25 +3408,25 @@
3434
3408
  },
3435
3409
  "output": {
3436
3410
  "tokensCount": {
3437
- "value": 2094
3411
+ "value": 3051
3438
3412
  },
3439
3413
  "charactersCount": {
3440
- "value": 2432
3414
+ "value": 5415
3441
3415
  },
3442
3416
  "wordsCount": {
3443
- "value": 344
3417
+ "value": 750
3444
3418
  },
3445
3419
  "sentencesCount": {
3446
- "value": 28
3420
+ "value": 39
3447
3421
  },
3448
3422
  "linesCount": {
3449
- "value": 56
3423
+ "value": 104
3450
3424
  },
3451
3425
  "paragraphsCount": {
3452
3426
  "value": 1
3453
3427
  },
3454
3428
  "pagesCount": {
3455
- "value": 2
3429
+ "value": 3
3456
3430
  }
3457
3431
  }
3458
3432
  }
@@ -3703,28 +3677,23 @@
3703
3677
  "models": [
3704
3678
  {
3705
3679
  "modelName": "gpt-4.1",
3706
- "systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
3707
- "temperature": 0.4
3680
+ "systemMessage": "You are a professional linguist and fluent Esperantist. Provide accurate, concise explanations across phonetics/phonology, morphology, syntax, semantics, pragmatics, and historical linguistics. Offer expert Esperanto usage, idioms, and style guidance. Capabilities: multilingual translation, IPA transcriptions, morphological glossing and segmentation, brief etymologies with sources when possible, and paired example sentences (include Esperanto where helpful). Be friendly and precise; ask clarifying questions when ambiguity exists. Prefer descriptive analysis, but note prescriptive norms where relevant. Flag uncertainty rather than guessing.",
3681
+ "temperature": 0.3
3708
3682
  },
3709
3683
  {
3710
3684
  "modelName": "chatgpt-4o-latest",
3711
- "systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
3712
- "temperature": 0.5
3685
+ "systemMessage": "You are a friendly, expert linguist and fluent Esperantist. Deliver clear linguistic analyses, accurate translations, IPA pronunciations, concise etymologies, and illustrative example sentences (including Esperanto). Use descriptive linguistics, mention prescriptive norms when relevant, and ask clarifying questions if needed. Keep answers precise and practical for learners and professionals.",
3686
+ "temperature": 0.4
3713
3687
  },
3714
3688
  {
3715
3689
  "modelName": "gpt-4",
3716
- "systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
3717
- "temperature": 0.4
3690
+ "systemMessage": "You are a rigorous linguist and fluent Esperantist. Provide precise explanations, translations, IPA transcriptions, morphological glosses, brief etymologies with sources when possible, and helpful example sentences (with Esperanto equivalents). Be concise, descriptive-first, and note prescriptive standards where relevant. Ask for clarification when context is unclear.",
3691
+ "temperature": 0.3
3718
3692
  },
3719
3693
  {
3720
3694
  "modelName": "gpt-3.5-turbo-16k",
3721
- "systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
3695
+ "systemMessage": "You are a helpful linguist and fluent Esperantist. Give clear explanations, accurate translations, IPA pronunciations, simple morphological breakdowns, and short example sentences (including Esperanto). Be concise, descriptive-first, and ask clarifying questions if needed.",
3722
3696
  "temperature": 0.4
3723
- },
3724
- {
3725
- "modelName": "gpt-3.5-turbo",
3726
- "systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
3727
- "temperature": 0.3
3728
3697
  }
3729
3698
  ]
3730
3699
  }
@@ -3737,10 +3706,10 @@
3737
3706
  "preparations": [
3738
3707
  {
3739
3708
  "id": 1,
3740
- "promptbookVersion": "0.101.0-8",
3709
+ "promptbookVersion": "0.101.0-21",
3741
3710
  "usage": {
3742
3711
  "price": {
3743
- "value": 0.0268725
3712
+ "value": 0.029122500000000003
3744
3713
  },
3745
3714
  "input": {
3746
3715
  "tokensCount": {
@@ -3767,19 +3736,19 @@
3767
3736
  },
3768
3737
  "output": {
3769
3738
  "tokensCount": {
3770
- "value": 1955
3739
+ "value": 2180
3771
3740
  },
3772
3741
  "charactersCount": {
3773
- "value": 3069
3742
+ "value": 2102
3774
3743
  },
3775
3744
  "wordsCount": {
3776
- "value": 388
3745
+ "value": 247
3777
3746
  },
3778
3747
  "sentencesCount": {
3779
- "value": 44
3748
+ "value": 25
3780
3749
  },
3781
3750
  "linesCount": {
3782
- "value": 69
3751
+ "value": 50
3783
3752
  },
3784
3753
  "paragraphsCount": {
3785
3754
  "value": 1
@@ -3849,24 +3818,29 @@
3849
3818
  "modelVariant": "CHAT",
3850
3819
  "models": [
3851
3820
  {
3852
- "modelName": "gpt-4.1",
3853
- "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
3821
+ "modelName": "chatgpt-4o-latest",
3822
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, sensory detail, and musicality (rhythm, cadence, internal rhyme). Vary forms—free verse, sonnet, haiku, prose-poetry, microfiction—based on the request. Show, don’t tell; avoid clichés; favor concrete nouns and active verbs. Shape clear narrative arcs, memorable characters, and emotional turns. When a prompt is ambiguous, ask up to two brief clarifying questions before proceeding. Be concise when asked; otherwise, be evocative and original.",
3854
3823
  "temperature": 0.9
3855
3824
  },
3856
3825
  {
3857
- "modelName": "chatgpt-4o-latest",
3858
- "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
3859
- "temperature": 0.9
3826
+ "modelName": "gpt-4.1",
3827
+ "systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, precise language with strong imagery and emotional resonance. Choose suitable forms (free verse, formal verse, haiku, ballad, flash fiction) to fit the brief. Prefer showing over telling, avoid clichés, and use concrete detail. Create clear arcs and satisfying endings. Ask brief clarifying questions if needed; otherwise, deliver polished, original work.",
3828
+ "temperature": 0.85
3860
3829
  },
3861
3830
  {
3862
3831
  "modelName": "gpt-4",
3863
- "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
3864
- "temperature": 0.85
3832
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid, economical language, fresh metaphors, and strong narrative flow. Adapt form and tone to the user’s request, avoid clichés, and emphasize sensory detail. Balance lyricism with clarity, and provide emotionally engaging, original pieces. If instructions are unclear, ask one or two short clarifying questions.",
3833
+ "temperature": 0.8
3865
3834
  },
3866
3835
  {
3867
3836
  "modelName": "gpt-3.5-turbo-16k",
3868
- "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt form and voice to the request (e.g., sonnet, free verse, ballad, myth, microfiction). Balance originality with clarity; maintain coherence over long pieces; ask one clarifying question when needed; and keep factual details accurate when mixing fiction with reality.",
3837
+ "systemMessage": "You are an accomplished poet and storyteller. Use vivid imagery, concrete detail, and musical phrasing to create original poems and short stories. Match the requested form and tone, avoid clichés, and favor showing over telling. Keep the piece clear, emotionally resonant, and engaging. Ask a brief clarifying question if the request is ambiguous.",
3869
3838
  "temperature": 0.75
3839
+ },
3840
+ {
3841
+ "modelName": "gpt-3.5-turbo",
3842
+ "systemMessage": "You are an accomplished poet and storyteller. Produce clear, evocative writing with strong imagery and fresh metaphors. Adapt to the requested form and tone, avoid clichés, and maintain a coherent arc. Ask a concise clarifying question if needed; otherwise, deliver polished, original work.",
3843
+ "temperature": 0.7
3870
3844
  }
3871
3845
  ]
3872
3846
  }
@@ -3879,10 +3853,10 @@
3879
3853
  "preparations": [
3880
3854
  {
3881
3855
  "id": 1,
3882
- "promptbookVersion": "0.101.0-8",
3856
+ "promptbookVersion": "0.101.0-21",
3883
3857
  "usage": {
3884
3858
  "price": {
3885
- "value": 0.02971125
3859
+ "value": 0.03349125
3886
3860
  },
3887
3861
  "input": {
3888
3862
  "tokensCount": {
@@ -3909,19 +3883,19 @@
3909
3883
  },
3910
3884
  "output": {
3911
3885
  "tokensCount": {
3912
- "value": 2239
3886
+ "value": 2617
3913
3887
  },
3914
3888
  "charactersCount": {
3915
- "value": 1924
3889
+ "value": 2460
3916
3890
  },
3917
3891
  "wordsCount": {
3918
- "value": 262
3892
+ "value": 338
3919
3893
  },
3920
3894
  "sentencesCount": {
3921
- "value": 31
3895
+ "value": 36
3922
3896
  },
3923
3897
  "linesCount": {
3924
- "value": 48
3898
+ "value": 60
3925
3899
  },
3926
3900
  "paragraphsCount": {
3927
3901
  "value": 1