@promptbook/templates 0.101.0-9 → 0.102.0-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 (89) hide show
  1. package/esm/index.es.js +115 -120
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/typings/src/_packages/components.index.d.ts +30 -0
  4. package/esm/typings/src/_packages/core.index.d.ts +12 -0
  5. package/esm/typings/src/_packages/types.index.d.ts +12 -0
  6. package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +11 -4
  7. package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +3 -0
  8. package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +4 -22
  9. package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.d.ts +1 -26
  10. package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +0 -12
  11. package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +0 -24
  12. package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +0 -12
  13. package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +0 -12
  14. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +0 -6
  15. package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +0 -12
  16. package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +0 -12
  17. package/esm/typings/src/book-2.0/commitments/META/META.d.ts +0 -6
  18. package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +0 -6
  19. package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +0 -6
  20. package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +23 -14
  21. package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +2 -14
  22. package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +0 -12
  23. package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +0 -12
  24. package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +0 -12
  25. package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +0 -12
  26. package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +0 -12
  27. package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +1 -1
  28. package/esm/typings/src/book-2.0/commitments/index.d.ts +1 -1
  29. package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -0
  30. package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +5 -2
  31. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
  32. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +18 -1
  33. package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +8 -0
  34. package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +2 -15
  35. package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +5 -1
  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/Chat/utils/savePlugins.d.ts +55 -0
  43. package/esm/typings/src/book-components/icons/PauseIcon.d.ts +8 -0
  44. package/esm/typings/src/book-components/icons/PlayIcon.d.ts +8 -0
  45. package/esm/typings/src/execution/PromptResult.d.ts +2 -4
  46. package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -2
  47. package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +1 -3
  48. package/esm/typings/src/formats/csv/CsvFormatError.d.ts +1 -1
  49. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +1 -1
  50. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
  51. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +1 -2
  52. package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.d.ts +8 -2
  53. package/esm/typings/src/llm-providers/_common/utils/removeUnsupportedModelRequirements.d.ts +25 -0
  54. package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +7 -18
  55. package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +11 -0
  56. package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +2 -1
  57. package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +58 -0
  58. package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +29 -0
  59. package/esm/typings/src/llm-providers/agent/playground/playground.d.ts +8 -0
  60. package/esm/typings/src/llm-providers/agent/register-configuration.d.ts +11 -0
  61. package/esm/typings/src/llm-providers/agent/register-constructor.d.ts +13 -0
  62. package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +3 -8
  63. package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -5
  64. package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +1 -0
  65. package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +4 -10
  66. package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +4 -6
  67. package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +3 -3
  68. package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +16 -8
  69. package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +3 -8
  70. package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -14
  71. package/esm/typings/src/personas/preparePersona.d.ts +1 -0
  72. package/esm/typings/src/remote-server/openapi-types.d.ts +31 -31
  73. package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +1 -2
  74. package/esm/typings/src/types/ModelRequirements.d.ts +2 -4
  75. package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +1 -1
  76. package/esm/typings/src/utils/editable/edit-pipeline-string/addPipelineCommand.d.ts +1 -1
  77. package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +0 -1
  78. package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +2 -2
  79. package/esm/typings/src/version.d.ts +1 -1
  80. package/package.json +2 -2
  81. package/umd/index.umd.js +115 -120
  82. package/umd/index.umd.js.map +1 -1
  83. package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +0 -17
  84. package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +0 -12
  85. package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +0 -16
  86. package/esm/typings/src/expectations/drafts/isDomainNameFree.d.ts +0 -10
  87. package/esm/typings/src/expectations/drafts/isGithubNameFree.d.ts +0 -10
  88. package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +0 -81
  89. /package/esm/typings/src/llm-providers/_common/{profiles/test/llmProviderProfiles.test.d.ts → utils/removeUnsupportedModelRequirements.test.d.ts} +0 -0
package/esm/index.es.js CHANGED
@@ -14,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
14
14
  * @generated
15
15
  * @see https://github.com/webgptorg/promptbook
16
16
  */
17
- const PROMPTBOOK_ENGINE_VERSION = '0.101.0-9';
17
+ const PROMPTBOOK_ENGINE_VERSION = '0.102.0-0';
18
18
  /**
19
19
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
20
20
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -1563,27 +1563,27 @@ function getTemplatesPipelineCollection() {
1563
1563
  "models": [
1564
1564
  {
1565
1565
  "modelName": "gpt-4.1",
1566
- "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.",
1566
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an expert in prompt engineering and assistant design. Be concise, pragmatic, and reproducible; prefer clear structure, minimal fluff, and verifiable claims. Ask targeted clarifying questions when requirements are ambiguous. When asked for structured data, return strict JSON. Do not reveal chain-of-thought; provide short answers and final conclusions.",
1567
1567
  "temperature": 0.3
1568
1568
  },
1569
1569
  {
1570
1570
  "modelName": "chatgpt-4o-latest",
1571
- "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.",
1571
+ "systemMessage": "You are a developer of the Promptbook Project and a helpful assistant. Communicate clearly and efficiently; provide copy-pasteable prompt templates and checklists when useful. Optimize for tool integration and deterministic outputs. Avoid hidden reasoning; summarize succinctly and ask clarifying questions when needed.",
1572
1572
  "temperature": 0.4
1573
1573
  },
1574
1574
  {
1575
1575
  "modelName": "gpt-4",
1576
- "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.",
1576
+ "systemMessage": "You are a developer of the Promptbook Project. Be structured, precise, and implementation-focused. Prefer concise answers, minimal speculation, and testable guidance. Return strict JSON when requested and avoid exposing chain-of-thought.",
1577
1577
  "temperature": 0.3
1578
1578
  },
1579
1579
  {
1580
- "modelName": "o4-mini",
1581
- "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.",
1582
- "temperature": 0.25
1580
+ "modelName": "gpt-3.5-turbo-16k",
1581
+ "systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Produce template-friendly outputs, ask targeted clarifying questions, and keep responses deterministic and reproducible. Avoid chain-of-thought and provide concise conclusions.",
1582
+ "temperature": 0.4
1583
1583
  },
1584
1584
  {
1585
- "modelName": "gpt-3.5-turbo-16k",
1586
- "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.",
1585
+ "modelName": "gpt-3.5-turbo",
1586
+ "systemMessage": "You are a developer of the Promptbook Project. Deliver concise, practical guidance with template-ready outputs. Ask clarifying questions when requirements are unclear and avoid chain-of-thought in your responses.",
1587
1587
  "temperature": 0.4
1588
1588
  }
1589
1589
  ]
@@ -1597,10 +1597,10 @@ function getTemplatesPipelineCollection() {
1597
1597
  "preparations": [
1598
1598
  {
1599
1599
  "id": 1,
1600
- "promptbookVersion": "0.101.0-8",
1600
+ "promptbookVersion": "0.101.0",
1601
1601
  "usage": {
1602
1602
  "price": {
1603
- "value": 0.02749375
1603
+ "value": 0.03161375
1604
1604
  },
1605
1605
  "input": {
1606
1606
  "tokensCount": {
@@ -1627,19 +1627,19 @@ function getTemplatesPipelineCollection() {
1627
1627
  },
1628
1628
  "output": {
1629
1629
  "tokensCount": {
1630
- "value": 2017
1630
+ "value": 2429
1631
1631
  },
1632
1632
  "charactersCount": {
1633
- "value": 2416
1633
+ "value": 1944
1634
1634
  },
1635
1635
  "wordsCount": {
1636
- "value": 317
1636
+ "value": 254
1637
1637
  },
1638
1638
  "sentencesCount": {
1639
- "value": 33
1639
+ "value": 30
1640
1640
  },
1641
1641
  "linesCount": {
1642
- "value": 59
1642
+ "value": 51
1643
1643
  },
1644
1644
  "paragraphsCount": {
1645
1645
  "value": 1
@@ -2128,27 +2128,27 @@ function getTemplatesPipelineCollection() {
2128
2128
  "models": [
2129
2129
  {
2130
2130
  "modelName": "gpt-4.1",
2131
- "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.",
2131
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an expert in prompt engineering and assistant design. Be concise, pragmatic, and reproducible; prefer clear structure, minimal fluff, and verifiable claims. Ask targeted clarifying questions when requirements are ambiguous. When asked for structured data, return strict JSON. Do not reveal chain-of-thought; provide short answers and final conclusions.",
2132
2132
  "temperature": 0.3
2133
2133
  },
2134
2134
  {
2135
2135
  "modelName": "chatgpt-4o-latest",
2136
- "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.",
2136
+ "systemMessage": "You are a developer of the Promptbook Project and a helpful assistant. Communicate clearly and efficiently; provide copy-pasteable prompt templates and checklists when useful. Optimize for tool integration and deterministic outputs. Avoid hidden reasoning; summarize succinctly and ask clarifying questions when needed.",
2137
2137
  "temperature": 0.4
2138
2138
  },
2139
2139
  {
2140
2140
  "modelName": "gpt-4",
2141
- "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.",
2141
+ "systemMessage": "You are a developer of the Promptbook Project. Be structured, precise, and implementation-focused. Prefer concise answers, minimal speculation, and testable guidance. Return strict JSON when requested and avoid exposing chain-of-thought.",
2142
2142
  "temperature": 0.3
2143
2143
  },
2144
2144
  {
2145
- "modelName": "o4-mini",
2146
- "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.",
2147
- "temperature": 0.25
2145
+ "modelName": "gpt-3.5-turbo-16k",
2146
+ "systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Produce template-friendly outputs, ask targeted clarifying questions, and keep responses deterministic and reproducible. Avoid chain-of-thought and provide concise conclusions.",
2147
+ "temperature": 0.4
2148
2148
  },
2149
2149
  {
2150
- "modelName": "gpt-3.5-turbo-16k",
2151
- "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.",
2150
+ "modelName": "gpt-3.5-turbo",
2151
+ "systemMessage": "You are a developer of the Promptbook Project. Deliver concise, practical guidance with template-ready outputs. Ask clarifying questions when requirements are unclear and avoid chain-of-thought in your responses.",
2152
2152
  "temperature": 0.4
2153
2153
  }
2154
2154
  ]
@@ -2162,10 +2162,10 @@ function getTemplatesPipelineCollection() {
2162
2162
  "preparations": [
2163
2163
  {
2164
2164
  "id": 1,
2165
- "promptbookVersion": "0.101.0-8",
2165
+ "promptbookVersion": "0.101.0",
2166
2166
  "usage": {
2167
2167
  "price": {
2168
- "value": 0.02749375
2168
+ "value": 0.03161375
2169
2169
  },
2170
2170
  "input": {
2171
2171
  "tokensCount": {
@@ -2192,19 +2192,19 @@ function getTemplatesPipelineCollection() {
2192
2192
  },
2193
2193
  "output": {
2194
2194
  "tokensCount": {
2195
- "value": 2017
2195
+ "value": 2429
2196
2196
  },
2197
2197
  "charactersCount": {
2198
- "value": 2416
2198
+ "value": 1944
2199
2199
  },
2200
2200
  "wordsCount": {
2201
- "value": 317
2201
+ "value": 254
2202
2202
  },
2203
2203
  "sentencesCount": {
2204
- "value": 33
2204
+ "value": 30
2205
2205
  },
2206
2206
  "linesCount": {
2207
- "value": 59
2207
+ "value": 51
2208
2208
  },
2209
2209
  "paragraphsCount": {
2210
2210
  "value": 1
@@ -2834,22 +2834,22 @@ function getTemplatesPipelineCollection() {
2834
2834
  "models": [
2835
2835
  {
2836
2836
  "modelName": "gpt-4.1",
2837
- "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.",
2837
+ "systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
2838
2838
  "temperature": 0.2
2839
2839
  },
2840
2840
  {
2841
- "modelName": "gpt-4",
2842
- "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.",
2843
- "temperature": 0.2
2841
+ "modelName": "chatgpt-4o-latest",
2842
+ "systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
2843
+ "temperature": 0.3
2844
2844
  },
2845
2845
  {
2846
- "modelName": "chatgpt-4o-latest",
2847
- "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.",
2848
- "temperature": 0.25
2846
+ "modelName": "gpt-4",
2847
+ "systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
2848
+ "temperature": 0.2
2849
2849
  },
2850
2850
  {
2851
2851
  "modelName": "gpt-3.5-turbo-16k",
2852
- "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.",
2852
+ "systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
2853
2853
  "temperature": 0.2
2854
2854
  }
2855
2855
  ]
@@ -2863,10 +2863,10 @@ function getTemplatesPipelineCollection() {
2863
2863
  "preparations": [
2864
2864
  {
2865
2865
  "id": 1,
2866
- "promptbookVersion": "0.101.0-8",
2866
+ "promptbookVersion": "0.101.0",
2867
2867
  "usage": {
2868
2868
  "price": {
2869
- "value": 0.036472500000000005
2869
+ "value": 0.031512500000000006
2870
2870
  },
2871
2871
  "input": {
2872
2872
  "tokensCount": {
@@ -2893,16 +2893,16 @@ function getTemplatesPipelineCollection() {
2893
2893
  },
2894
2894
  "output": {
2895
2895
  "tokensCount": {
2896
- "value": 2915
2896
+ "value": 2419
2897
2897
  },
2898
2898
  "charactersCount": {
2899
- "value": 2723
2899
+ "value": 2834
2900
2900
  },
2901
2901
  "wordsCount": {
2902
- "value": 390
2902
+ "value": 386
2903
2903
  },
2904
2904
  "sentencesCount": {
2905
- "value": 43
2905
+ "value": 51
2906
2906
  },
2907
2907
  "linesCount": {
2908
2908
  "value": 60
@@ -2977,22 +2977,22 @@ function getTemplatesPipelineCollection() {
2977
2977
  "models": [
2978
2978
  {
2979
2979
  "modelName": "gpt-4.1",
2980
- "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.",
2981
- "temperature": 0.65
2980
+ "systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
2981
+ "temperature": 0.7
2982
2982
  },
2983
2983
  {
2984
2984
  "modelName": "chatgpt-4o-latest",
2985
- "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.",
2986
- "temperature": 0.7
2985
+ "systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
2986
+ "temperature": 0.8
2987
2987
  },
2988
2988
  {
2989
2989
  "modelName": "gpt-4",
2990
- "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.",
2991
- "temperature": 0.7
2990
+ "systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
2991
+ "temperature": 0.65
2992
2992
  },
2993
2993
  {
2994
2994
  "modelName": "gpt-3.5-turbo-16k",
2995
- "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 23 labeled variants when requested. Output only the requested copy, ready to paste.",
2995
+ "systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
2996
2996
  "temperature": 0.8
2997
2997
  }
2998
2998
  ]
@@ -3006,10 +3006,10 @@ function getTemplatesPipelineCollection() {
3006
3006
  "preparations": [
3007
3007
  {
3008
3008
  "id": 1,
3009
- "promptbookVersion": "0.101.0-8",
3009
+ "promptbookVersion": "0.101.0",
3010
3010
  "usage": {
3011
3011
  "price": {
3012
- "value": 0.041982500000000006
3012
+ "value": 0.030552500000000003
3013
3013
  },
3014
3014
  "input": {
3015
3015
  "tokensCount": {
@@ -3036,19 +3036,19 @@ function getTemplatesPipelineCollection() {
3036
3036
  },
3037
3037
  "output": {
3038
3038
  "tokensCount": {
3039
- "value": 3466
3039
+ "value": 2323
3040
3040
  },
3041
3041
  "charactersCount": {
3042
- "value": 3143
3042
+ "value": 3427
3043
3043
  },
3044
3044
  "wordsCount": {
3045
- "value": 437
3045
+ "value": 482
3046
3046
  },
3047
3047
  "sentencesCount": {
3048
- "value": 39
3048
+ "value": 27
3049
3049
  },
3050
3050
  "linesCount": {
3051
- "value": 67
3051
+ "value": 72
3052
3052
  },
3053
3053
  "paragraphsCount": {
3054
3054
  "value": 1
@@ -3102,7 +3102,7 @@ function getTemplatesPipelineCollection() {
3102
3102
  "preparations": [
3103
3103
  {
3104
3104
  "id": 1,
3105
- "promptbookVersion": "0.101.0-8",
3105
+ "promptbookVersion": "0.101.0",
3106
3106
  "usage": {
3107
3107
  "price": {
3108
3108
  "value": 0
@@ -3211,27 +3211,27 @@ function getTemplatesPipelineCollection() {
3211
3211
  "models": [
3212
3212
  {
3213
3213
  "modelName": "gpt-4.1",
3214
- "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.",
3214
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
3215
3215
  "temperature": 0.4
3216
3216
  },
3217
3217
  {
3218
3218
  "modelName": "chatgpt-4o-latest",
3219
- "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.",
3219
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
3220
3220
  "temperature": 0.6
3221
3221
  },
3222
3222
  {
3223
3223
  "modelName": "gpt-4",
3224
- "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.",
3224
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
3225
3225
  "temperature": 0.5
3226
3226
  },
3227
3227
  {
3228
3228
  "modelName": "o4-mini",
3229
- "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.",
3230
- "temperature": 0.3
3229
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
3230
+ "temperature": 0.4
3231
3231
  },
3232
3232
  {
3233
3233
  "modelName": "gpt-3.5-turbo-16k",
3234
- "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.",
3234
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
3235
3235
  "temperature": 0.6
3236
3236
  }
3237
3237
  ]
@@ -3245,10 +3245,10 @@ function getTemplatesPipelineCollection() {
3245
3245
  "preparations": [
3246
3246
  {
3247
3247
  "id": 1,
3248
- "promptbookVersion": "0.101.0-8",
3248
+ "promptbookVersion": "0.101.0",
3249
3249
  "usage": {
3250
3250
  "price": {
3251
- "value": 0.0296825
3251
+ "value": 0.038622500000000004
3252
3252
  },
3253
3253
  "input": {
3254
3254
  "tokensCount": {
@@ -3275,19 +3275,19 @@ function getTemplatesPipelineCollection() {
3275
3275
  },
3276
3276
  "output": {
3277
3277
  "tokensCount": {
3278
- "value": 2236
3278
+ "value": 3130
3279
3279
  },
3280
3280
  "charactersCount": {
3281
- "value": 1984
3281
+ "value": 4148
3282
3282
  },
3283
3283
  "wordsCount": {
3284
- "value": 249
3284
+ "value": 546
3285
3285
  },
3286
3286
  "sentencesCount": {
3287
- "value": 27
3287
+ "value": 58
3288
3288
  },
3289
3289
  "linesCount": {
3290
- "value": 51
3290
+ "value": 84
3291
3291
  },
3292
3292
  "paragraphsCount": {
3293
3293
  "value": 1
@@ -3367,23 +3367,23 @@ function getTemplatesPipelineCollection() {
3367
3367
  "models": [
3368
3368
  {
3369
3369
  "modelName": "gpt-4.1",
3370
- "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, conversion‑focused 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.",
3371
- "temperature": 0.4
3370
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: (1) Resolve customer issues quickly and empathetically. (2) Write clear, persuasive, on-brand copy (product pages, emails, ads, social, SEO). Behavior: - Be friendly, concise, and actionable. - Ask targeted clarifying questions when details are missing (order number, item, issue, dates, photos). - Follow store policies precisely; never invent policy. If unsure, state that and propose next steps or escalate to a human. - Offer options, set expectations (costs, timelines, return windows), and summarize decisions. - For copy: adapt to brand voice, highlight benefits and differentiators, include a clear CTA, avoid unverifiable claims, and provide 2–3 variations on request. - Use bullet points for steps, keep formatting clean, and include placeholders for links or SKUs when needed. - Localize tone and spelling to the customer’s locale when evident.",
3371
+ "temperature": 0.55
3372
3372
  },
3373
3373
  {
3374
3374
  "modelName": "chatgpt-4o-latest",
3375
- "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.",
3376
- "temperature": 0.5
3375
+ "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be empathetic, efficient, and brand-aligned. For support: ask for missing essentials (order number, item, issue, dates, photos), follow policy exactly, summarize options, set timelines/costs, and escalate when uncertain. For copy: write persuasive, benefits-led content with a clear CTA, match brand voice, avoid unsupported claims, and provide alternate variations on request. Use clean formatting and bullet points where helpful.",
3376
+ "temperature": 0.6
3377
3377
  },
3378
3378
  {
3379
3379
  "modelName": "gpt-4",
3380
- "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.",
3380
+ "systemMessage": "Act as a friendly, efficient ecommerce customer support agent and on-brand copywriter. Clarify missing details, follow policies faithfully, give actionable next steps, and summarize outcomes. For marketing copy, highlight benefits and differentiators, keep claims accurate, include a strong CTA, and adapt to the customer’s locale and brand voice.",
3381
3381
  "temperature": 0.5
3382
3382
  },
3383
3383
  {
3384
3384
  "modelName": "gpt-3.5-turbo-16k",
3385
- "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.",
3386
- "temperature": 0.6
3385
+ "systemMessage": "You are an empathetic ecommerce customer service rep and practical copywriter. Keep answers concise and actionable, ask for missing details (order number, product, issue), follow store policy, and summarize options with timelines. For copy, write clear, benefit-focused text with a suitable CTA and provide a second variation when asked.",
3386
+ "temperature": 0.4
3387
3387
  }
3388
3388
  ]
3389
3389
  }
@@ -3396,10 +3396,10 @@ function getTemplatesPipelineCollection() {
3396
3396
  "preparations": [
3397
3397
  {
3398
3398
  "id": 1,
3399
- "promptbookVersion": "0.101.0-8",
3399
+ "promptbookVersion": "0.101.0",
3400
3400
  "usage": {
3401
3401
  "price": {
3402
- "value": 0.0282675
3402
+ "value": 0.0374275
3403
3403
  },
3404
3404
  "input": {
3405
3405
  "tokensCount": {
@@ -3426,19 +3426,19 @@ function getTemplatesPipelineCollection() {
3426
3426
  },
3427
3427
  "output": {
3428
3428
  "tokensCount": {
3429
- "value": 2094
3429
+ "value": 3010
3430
3430
  },
3431
3431
  "charactersCount": {
3432
- "value": 2432
3432
+ "value": 2566
3433
3433
  },
3434
3434
  "wordsCount": {
3435
- "value": 344
3435
+ "value": 353
3436
3436
  },
3437
3437
  "sentencesCount": {
3438
- "value": 28
3438
+ "value": 29
3439
3439
  },
3440
3440
  "linesCount": {
3441
- "value": 56
3441
+ "value": 57
3442
3442
  },
3443
3443
  "paragraphsCount": {
3444
3444
  "value": 1
@@ -3695,28 +3695,23 @@ function getTemplatesPipelineCollection() {
3695
3695
  "models": [
3696
3696
  {
3697
3697
  "modelName": "gpt-4.1",
3698
- "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.",
3699
- "temperature": 0.4
3698
+ "systemMessage": "You are a linguist and Esperantist. Be a helpful virtual assistant with strong multilingual skills. Provide clear explanations of phonetics, morphology, syntax, etymology, and translation. Use standard Esperanto orthography ĝ ĥ ĵ ŝ ŭ) and switch to x-system only if requested. When useful, include IPA and brief Leipzig-style glosses. Ask clarifying questions when ambiguity exists. Be polite, precise, and concise.",
3699
+ "temperature": 0.3
3700
3700
  },
3701
3701
  {
3702
3702
  "modelName": "chatgpt-4o-latest",
3703
- "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.",
3704
- "temperature": 0.5
3703
+ "systemMessage": "You are a linguist and Esperantist. Be a friendly, knowledgeable assistant with excellent multilingual capabilities. Offer precise analyses (phonetics, morphology, syntax) and high-quality translations. Default to standard Esperanto orthography; use x-system only on request. Include IPA and short Leipzig-style glosses when helpful. Ask clarifying questions if context is missing. Keep answers clear and concise.",
3704
+ "temperature": 0.4
3705
3705
  },
3706
3706
  {
3707
3707
  "modelName": "gpt-4",
3708
- "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.",
3709
- "temperature": 0.4
3708
+ "systemMessage": "You are a linguist and Esperantist. Provide accurate linguistic analysis, pragmatic guidance, and translations. Prefer standard Esperanto orthography; use x-system only if asked. Include IPA and brief glosses when useful. Confirm assumptions, ask clarifying questions when ambiguous, and keep the tone courteous and concise.",
3709
+ "temperature": 0.3
3710
3710
  },
3711
3711
  {
3712
3712
  "modelName": "gpt-3.5-turbo-16k",
3713
- "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.",
3714
- "temperature": 0.4
3715
- },
3716
- {
3717
- "modelName": "gpt-3.5-turbo",
3718
- "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.",
3719
- "temperature": 0.3
3713
+ "systemMessage": "You are a linguist and Esperantist. Give clear, concise help with translation and linguistic topics (phonetics, morphology, syntax). Use standard Esperanto orthography by default; switch to x-system only if requested. Include IPA when helpful and ask clarifying questions if the prompt is ambiguous.",
3714
+ "temperature": 0.5
3720
3715
  }
3721
3716
  ]
3722
3717
  }
@@ -3729,10 +3724,10 @@ function getTemplatesPipelineCollection() {
3729
3724
  "preparations": [
3730
3725
  {
3731
3726
  "id": 1,
3732
- "promptbookVersion": "0.101.0-8",
3727
+ "promptbookVersion": "0.101.0",
3733
3728
  "usage": {
3734
3729
  "price": {
3735
- "value": 0.0268725
3730
+ "value": 0.0245125
3736
3731
  },
3737
3732
  "input": {
3738
3733
  "tokensCount": {
@@ -3759,19 +3754,19 @@ function getTemplatesPipelineCollection() {
3759
3754
  },
3760
3755
  "output": {
3761
3756
  "tokensCount": {
3762
- "value": 1955
3757
+ "value": 1719
3763
3758
  },
3764
3759
  "charactersCount": {
3765
- "value": 3069
3760
+ "value": 1872
3766
3761
  },
3767
3762
  "wordsCount": {
3768
- "value": 388
3763
+ "value": 251
3769
3764
  },
3770
3765
  "sentencesCount": {
3771
- "value": 44
3766
+ "value": 30
3772
3767
  },
3773
3768
  "linesCount": {
3774
- "value": 69
3769
+ "value": 47
3775
3770
  },
3776
3771
  "paragraphsCount": {
3777
3772
  "value": 1
@@ -3842,23 +3837,23 @@ function getTemplatesPipelineCollection() {
3842
3837
  "models": [
3843
3838
  {
3844
3839
  "modelName": "gpt-4.1",
3845
- "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.",
3840
+ "systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and narrative across forms and genres. Use striking imagery, musicality, and clear emotional arcs. Adapt tone to the prompt, avoid clichés, and prefer concrete, sensory detail. Offer a brief outline for longer pieces when helpful, then deliver polished language.",
3846
3841
  "temperature": 0.9
3847
3842
  },
3848
3843
  {
3849
3844
  "modelName": "chatgpt-4o-latest",
3850
- "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.",
3845
+ "systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, evocative verse and compelling narratives with strong voice, rhythm, and sensory detail. Match style to the prompt, avoid clichés, and aim for emotional resonance. For longer works, propose a concise outline before writing.",
3851
3846
  "temperature": 0.9
3852
3847
  },
3853
3848
  {
3854
3849
  "modelName": "gpt-4",
3855
- "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.",
3850
+ "systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, emotionally rich poems and stories with vivid imagery, clear arcs, and musical language. Tailor form and tone to the request and keep prose concise yet expressive.",
3856
3851
  "temperature": 0.85
3857
3852
  },
3858
3853
  {
3859
3854
  "modelName": "gpt-3.5-turbo-16k",
3860
- "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.",
3861
- "temperature": 0.75
3855
+ "systemMessage": "You are an accomplished poet and storyteller. Generate clear, engaging poems and stories with concrete imagery, strong rhythm, and focused narrative arcs. Keep language fresh and avoid clichés.",
3856
+ "temperature": 0.8
3862
3857
  }
3863
3858
  ]
3864
3859
  }
@@ -3871,10 +3866,10 @@ function getTemplatesPipelineCollection() {
3871
3866
  "preparations": [
3872
3867
  {
3873
3868
  "id": 1,
3874
- "promptbookVersion": "0.101.0-8",
3869
+ "promptbookVersion": "0.101.0",
3875
3870
  "usage": {
3876
3871
  "price": {
3877
- "value": 0.02971125
3872
+ "value": 0.024831250000000003
3878
3873
  },
3879
3874
  "input": {
3880
3875
  "tokensCount": {
@@ -3901,25 +3896,25 @@ function getTemplatesPipelineCollection() {
3901
3896
  },
3902
3897
  "output": {
3903
3898
  "tokensCount": {
3904
- "value": 2239
3899
+ "value": 1751
3905
3900
  },
3906
3901
  "charactersCount": {
3907
- "value": 1924
3902
+ "value": 1463
3908
3903
  },
3909
3904
  "wordsCount": {
3910
- "value": 262
3905
+ "value": 197
3911
3906
  },
3912
3907
  "sentencesCount": {
3913
- "value": 31
3908
+ "value": 22
3914
3909
  },
3915
3910
  "linesCount": {
3916
- "value": 48
3911
+ "value": 40
3917
3912
  },
3918
3913
  "paragraphsCount": {
3919
3914
  "value": 1
3920
3915
  },
3921
3916
  "pagesCount": {
3922
- "value": 2
3917
+ "value": 1
3923
3918
  }
3924
3919
  }
3925
3920
  }