@promptbook/templates 0.100.0-9 → 0.100.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 (129) hide show
  1. package/README.md +7 -14
  2. package/esm/index.es.js +305 -284
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/typings/src/_packages/color.index.d.ts +50 -0
  5. package/esm/typings/src/_packages/components.index.d.ts +36 -0
  6. package/esm/typings/src/_packages/core.index.d.ts +30 -0
  7. package/esm/typings/src/_packages/types.index.d.ts +38 -0
  8. package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +30 -0
  9. package/esm/typings/src/book-2.0/agent-source/parseAgentSource.test.d.ts +1 -0
  10. package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +26 -0
  11. package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +38 -0
  12. package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +39 -0
  13. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +45 -0
  14. package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +44 -0
  15. package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +56 -0
  16. package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +39 -0
  17. package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +49 -0
  18. package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +46 -0
  19. package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +44 -0
  20. package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +44 -0
  21. package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +38 -0
  22. package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +52 -0
  23. package/esm/typings/src/book-2.0/commitments/_base/BookCommitment.d.ts +5 -0
  24. package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +48 -0
  25. package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +22 -0
  26. package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +19 -0
  27. package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +37 -0
  28. package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +18 -0
  29. package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +22 -0
  30. package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirements.d.ts +62 -0
  31. package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirementsWithCommitments.d.ts +36 -0
  32. package/esm/typings/src/book-2.0/commitments/_misc/createCommitmentRegex.d.ts +20 -0
  33. package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +24 -0
  34. package/esm/typings/src/book-2.0/commitments/_misc/removeCommentsFromSystemMessage.d.ts +11 -0
  35. package/esm/typings/src/book-2.0/commitments/index.d.ts +56 -0
  36. package/esm/typings/src/book-2.0/utils/profileImageUtils.d.ts +39 -0
  37. package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +35 -0
  38. package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChipFromSource.d.ts +21 -0
  39. package/esm/typings/src/book-components/AvatarProfile/AvatarChip/index.d.ts +2 -0
  40. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +26 -0
  41. package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileFromSource.d.ts +19 -0
  42. package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +35 -0
  43. package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +15 -0
  44. package/esm/typings/src/book-components/BookEditor/config.d.ts +10 -0
  45. package/esm/typings/src/book-components/BookEditor/injectCssModuleIntoShadowRoot.d.ts +11 -0
  46. package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +20 -0
  47. package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +110 -0
  48. package/esm/typings/src/book-components/Chat/LlmChat/LlmChat.d.ts +14 -0
  49. package/esm/typings/src/book-components/Chat/LlmChat/LlmChat.test.d.ts +1 -0
  50. package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +24 -0
  51. package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +16 -0
  52. package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +32 -0
  53. package/esm/typings/src/book-components/Chat/utils/ChatPersistence.d.ts +25 -0
  54. package/esm/typings/src/book-components/Chat/utils/ExportFormat.d.ts +4 -0
  55. package/esm/typings/src/book-components/Chat/utils/addUtmParamsToUrl.d.ts +7 -0
  56. package/esm/typings/src/book-components/Chat/utils/createShortLinkForChat.d.ts +7 -0
  57. package/esm/typings/src/book-components/Chat/utils/downloadFile.d.ts +6 -0
  58. package/esm/typings/src/book-components/Chat/utils/exportChatHistory.d.ts +9 -0
  59. package/esm/typings/src/book-components/Chat/utils/generatePdfContent.d.ts +8 -0
  60. package/esm/typings/src/book-components/Chat/utils/generateQrDataUrl.d.ts +7 -0
  61. package/esm/typings/src/book-components/Chat/utils/getPromptbookBranding.d.ts +6 -0
  62. package/esm/typings/src/book-components/Chat/utils/messagesToHtml.d.ts +8 -0
  63. package/esm/typings/src/book-components/Chat/utils/messagesToJson.d.ts +7 -0
  64. package/esm/typings/src/book-components/Chat/utils/messagesToMarkdown.d.ts +8 -0
  65. package/esm/typings/src/book-components/Chat/utils/messagesToText.d.ts +8 -0
  66. package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +7 -0
  67. package/esm/typings/src/book-components/_common/react-utils/collectCssTextsForClass.d.ts +7 -0
  68. package/esm/typings/src/book-components/_common/react-utils/escapeHtml.d.ts +6 -0
  69. package/esm/typings/src/book-components/_common/react-utils/escapeRegex.d.ts +6 -0
  70. package/esm/typings/src/config.d.ts +19 -0
  71. package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
  72. package/esm/typings/src/execution/ExecutionTask.d.ts +27 -1
  73. package/esm/typings/src/execution/LlmExecutionTools.d.ts +8 -0
  74. package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +6 -1
  75. package/esm/typings/src/llm-providers/_common/filterModels.d.ts +0 -3
  76. package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +81 -0
  77. package/esm/typings/src/llm-providers/_common/profiles/test/llmProviderProfiles.test.d.ts +1 -0
  78. package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +5 -0
  79. package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +5 -5
  80. package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
  81. package/esm/typings/src/llm-providers/deepseek/deepseek-models.d.ts +1 -1
  82. package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
  83. package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +5 -0
  84. package/esm/typings/src/llm-providers/ollama/ollama-models.d.ts +1 -1
  85. package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +8 -0
  86. package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +5 -0
  87. package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
  88. package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -0
  89. package/esm/typings/src/pipeline/book-notation.d.ts +2 -1
  90. package/esm/typings/src/playground/permanent/error-handling-playground.d.ts +5 -0
  91. package/esm/typings/src/types/ModelRequirements.d.ts +0 -2
  92. package/esm/typings/src/types/typeAliases.d.ts +6 -0
  93. package/esm/typings/src/utils/color/$randomColor.d.ts +11 -0
  94. package/esm/typings/src/utils/color/Color.d.ts +180 -0
  95. package/esm/typings/src/utils/color/css-colors.d.ts +159 -0
  96. package/esm/typings/src/utils/color/internal-utils/checkChannelValue.d.ts +14 -0
  97. package/esm/typings/src/utils/color/internal-utils/hslToRgb.d.ts +17 -0
  98. package/esm/typings/src/utils/color/internal-utils/rgbToHsl.d.ts +17 -0
  99. package/esm/typings/src/utils/color/operators/ColorTransformer.d.ts +5 -0
  100. package/esm/typings/src/utils/color/operators/darken.d.ts +9 -0
  101. package/esm/typings/src/utils/color/operators/furthest.d.ts +16 -0
  102. package/esm/typings/src/utils/color/operators/grayscale.d.ts +9 -0
  103. package/esm/typings/src/utils/color/operators/lighten.d.ts +12 -0
  104. package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +11 -0
  105. package/esm/typings/src/utils/color/operators/nearest.d.ts +10 -0
  106. package/esm/typings/src/utils/color/operators/negative.d.ts +7 -0
  107. package/esm/typings/src/utils/color/operators/negativeLightness.d.ts +7 -0
  108. package/esm/typings/src/utils/color/operators/withAlpha.d.ts +9 -0
  109. package/esm/typings/src/utils/color/utils/areColorsEqual.d.ts +14 -0
  110. package/esm/typings/src/utils/color/utils/colorDistance.d.ts +21 -0
  111. package/esm/typings/src/utils/color/utils/colorHue.d.ts +11 -0
  112. package/esm/typings/src/utils/color/utils/colorHueDistance.d.ts +11 -0
  113. package/esm/typings/src/utils/color/utils/colorHueDistance.test.d.ts +1 -0
  114. package/esm/typings/src/utils/color/utils/colorLuminance.d.ts +9 -0
  115. package/esm/typings/src/utils/color/utils/colorSatulightion.d.ts +7 -0
  116. package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +9 -0
  117. package/esm/typings/src/utils/color/utils/colorToDataUrl.d.ts +10 -0
  118. package/esm/typings/src/utils/color/utils/mixColors.d.ts +11 -0
  119. package/esm/typings/src/utils/organization/preserve.d.ts +21 -0
  120. package/esm/typings/src/utils/take/classes/TakeChain.d.ts +11 -0
  121. package/esm/typings/src/utils/take/interfaces/ITakeChain.d.ts +12 -0
  122. package/esm/typings/src/utils/take/interfaces/Takeable.d.ts +7 -0
  123. package/esm/typings/src/utils/take/take.d.ts +12 -0
  124. package/esm/typings/src/utils/take/take.test.d.ts +1 -0
  125. package/esm/typings/src/version.d.ts +1 -1
  126. package/package.json +2 -3
  127. package/umd/index.umd.js +309 -288
  128. package/umd/index.umd.js.map +1 -1
  129. package/esm/typings/src/scripting/javascript/utils/preserve.d.ts +0 -14
package/umd/index.umd.js CHANGED
@@ -1,13 +1,14 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier'), require('prettier/parser-html')) :
3
- typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier', 'prettier/parser-html'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.prettier, global.parserHtml));
5
- })(this, (function (exports, spaceTrim, prettier, parserHtml) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier/parser-html'), require('prettier/parser-markdown'), require('prettier/standalone')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier/parser-html', 'prettier/parser-markdown', 'prettier/standalone'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.parserHtml, global.parserMarkdown, global.standalone));
5
+ })(this, (function (exports, spaceTrim, parserHtml, parserMarkdown, standalone) { 'use strict';
6
6
 
7
7
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
8
 
9
9
  var spaceTrim__default = /*#__PURE__*/_interopDefaultLegacy(spaceTrim);
10
10
  var parserHtml__default = /*#__PURE__*/_interopDefaultLegacy(parserHtml);
11
+ var parserMarkdown__default = /*#__PURE__*/_interopDefaultLegacy(parserMarkdown);
11
12
 
12
13
  // ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
13
14
  /**
@@ -23,7 +24,7 @@
23
24
  * @generated
24
25
  * @see https://github.com/webgptorg/promptbook
25
26
  */
26
- const PROMPTBOOK_ENGINE_VERSION = '0.100.0-9';
27
+ const PROMPTBOOK_ENGINE_VERSION = '0.100.0';
27
28
  /**
28
29
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
29
30
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -197,6 +198,13 @@
197
198
  newline: '\n',
198
199
  skipEmptyLines: true,
199
200
  });
201
+ /**
202
+ * API request timeout in milliseconds
203
+ * Can be overridden via API_REQUEST_TIMEOUT environment variable
204
+ *
205
+ * @public exported from `@promptbook/core`
206
+ */
207
+ parseInt(process.env.API_REQUEST_TIMEOUT || '90000');
200
208
  /**
201
209
  * Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
202
210
  *
@@ -387,9 +395,9 @@
387
395
  */
388
396
  function prettifyMarkdown(content) {
389
397
  try {
390
- return prettier.format(content, {
398
+ return standalone.format(content, {
391
399
  parser: 'markdown',
392
- plugins: [parserHtml__default["default"]],
400
+ plugins: [parserMarkdown__default["default"], parserHtml__default["default"]],
393
401
  // TODO: DRY - make some import or auto-copy of .prettierrc
394
402
  endOfLine: 'lf',
395
403
  tabWidth: 4,
@@ -1541,21 +1549,33 @@
1541
1549
  "modelsRequirements": [
1542
1550
  {
1543
1551
  "modelVariant": "CHAT",
1544
- "modelName": "gpt-4",
1545
- "systemMessage": "You are an experienced AI engineer and developer working on the Promptbook Project. Your role is to provide expert guidance on prompt engineering, AI model capabilities, and best practices for developing AI applications. Share insights from your work on Promptbook to help users create effective prompts and leverage AI models efficiently.",
1546
- "temperature": 0.7
1547
- },
1548
- {
1549
- "modelVariant": "CHAT",
1550
- "modelName": "claude-3-opus-20240229",
1551
- "systemMessage": "You are a knowledgeable AI developer and core contributor to the Promptbook Project. Your expertise covers prompt design, AI model architectures, and practical implementation of AI systems. Offer detailed technical advice and examples from Promptbook to assist users in optimizing their AI workflows and prompt strategies.",
1552
- "temperature": 0.6
1553
- },
1554
- {
1555
- "modelVariant": "CHAT",
1556
- "modelName": "gemini-1.5-pro",
1557
- "systemMessage": "As a lead developer on the Promptbook Project, you specialize in prompt engineering and AI model integration. Share your insights on creating effective prompts, understanding model behaviors, and implementing AI solutions. Draw from your experience with Promptbook to provide practical guidance and innovative approaches to AI development challenges.",
1558
- "temperature": 0.7
1552
+ "models": [
1553
+ {
1554
+ "modelName": "gpt-4.1",
1555
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior virtual assistant: reliable, concise, and action-oriented. Ask brief clarifying questions when needed, reason carefully, avoid unnecessary verbosity, and format outputs for easy copy/paste. If uncertain, state assumptions and propose next steps.",
1556
+ "temperature": 0.3
1557
+ },
1558
+ {
1559
+ "modelName": "chatgpt-4o-latest",
1560
+ "systemMessage": "You are a developer of the Promptbook Project. Be a friendly, fast multimodal assistant. Keep responses crisp, practical, and helpful. When tasks are ambiguous, ask one concise question. Provide examples only when they add value.",
1561
+ "temperature": 0.5
1562
+ },
1563
+ {
1564
+ "modelName": "o4-mini",
1565
+ "systemMessage": "You are a developer of the Promptbook Project. Serve as a planning and reasoning specialist for complex tasks. Think through the problem, then present only succinct conclusions and action steps. Do not reveal internal step-by-step reasoning; summarize at a high level and provide final results.",
1566
+ "temperature": 0.2
1567
+ },
1568
+ {
1569
+ "modelName": "gpt-3.5-turbo-16k",
1570
+ "systemMessage": "You are a developer of the Promptbook Project. Provide efficient, cost-aware assistance with clear, concise answers. Prefer bullet points, ask clarifying questions if requirements are unclear, and keep a professional, helpful tone.",
1571
+ "temperature": 0.4
1572
+ },
1573
+ {
1574
+ "modelName": "o3",
1575
+ "systemMessage": "You are a developer of the Promptbook Project. For deep analysis and multi-step problems, deliver precise, structured solutions with validation checks. Do not expose chain-of-thought; provide a brief summary of reasoning and the final results.",
1576
+ "temperature": 0.2
1577
+ }
1578
+ ]
1559
1579
  }
1560
1580
  ],
1561
1581
  "preparationIds": [
@@ -1566,55 +1586,55 @@
1566
1586
  "preparations": [
1567
1587
  {
1568
1588
  "id": 1,
1569
- "promptbookVersion": "0.100.0-8",
1589
+ "promptbookVersion": "0.100.0-65",
1570
1590
  "usage": {
1571
1591
  "price": {
1572
- "value": 0.0256375
1592
+ "value": 0.034522500000000005
1573
1593
  },
1574
1594
  "input": {
1575
1595
  "tokensCount": {
1576
- "value": 8625
1596
+ "value": 5778
1577
1597
  },
1578
1598
  "charactersCount": {
1579
- "value": 42100
1599
+ "value": 2377
1580
1600
  },
1581
1601
  "wordsCount": {
1582
- "value": 5402
1602
+ "value": 348
1583
1603
  },
1584
1604
  "sentencesCount": {
1585
- "value": 416
1605
+ "value": 22
1586
1606
  },
1587
1607
  "linesCount": {
1588
- "value": 695
1608
+ "value": 65
1589
1609
  },
1590
1610
  "paragraphsCount": {
1591
1611
  "value": 20
1592
1612
  },
1593
1613
  "pagesCount": {
1594
- "value": 16
1614
+ "value": 2
1595
1615
  }
1596
1616
  },
1597
1617
  "output": {
1598
1618
  "tokensCount": {
1599
- "value": 326
1619
+ "value": 2730
1600
1620
  },
1601
1621
  "charactersCount": {
1602
- "value": 1417
1622
+ "value": 1815
1603
1623
  },
1604
1624
  "wordsCount": {
1605
- "value": 195
1625
+ "value": 248
1606
1626
  },
1607
1627
  "sentencesCount": {
1608
- "value": 14
1628
+ "value": 27
1609
1629
  },
1610
1630
  "linesCount": {
1611
- "value": 36
1631
+ "value": 51
1612
1632
  },
1613
1633
  "paragraphsCount": {
1614
- "value": 2
1634
+ "value": 1
1615
1635
  },
1616
1636
  "pagesCount": {
1617
- "value": 1
1637
+ "value": 2
1618
1638
  }
1619
1639
  }
1620
1640
  }
@@ -2094,21 +2114,33 @@
2094
2114
  "modelsRequirements": [
2095
2115
  {
2096
2116
  "modelVariant": "CHAT",
2097
- "modelName": "gpt-4",
2098
- "systemMessage": "You are an experienced AI engineer and developer working on the Promptbook Project. Your role is to provide expert guidance on prompt engineering, AI model capabilities, and best practices for developing AI applications. Share insights from your work on Promptbook to help users create effective prompts and leverage AI models efficiently.",
2099
- "temperature": 0.7
2100
- },
2101
- {
2102
- "modelVariant": "CHAT",
2103
- "modelName": "claude-3-opus-20240229",
2104
- "systemMessage": "You are a knowledgeable AI developer and core contributor to the Promptbook Project. Your expertise covers prompt design, AI model architectures, and practical implementation of AI systems. Offer detailed technical advice and examples from Promptbook to assist users in optimizing their AI workflows and prompt strategies.",
2105
- "temperature": 0.6
2106
- },
2107
- {
2108
- "modelVariant": "CHAT",
2109
- "modelName": "gemini-1.5-pro",
2110
- "systemMessage": "As a lead developer on the Promptbook Project, you specialize in prompt engineering and AI model integration. Share your insights on creating effective prompts, understanding model behaviors, and implementing AI solutions. Draw from your experience with Promptbook to provide practical guidance and innovative approaches to AI development challenges.",
2111
- "temperature": 0.7
2117
+ "models": [
2118
+ {
2119
+ "modelName": "gpt-4.1",
2120
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior virtual assistant: reliable, concise, and action-oriented. Ask brief clarifying questions when needed, reason carefully, avoid unnecessary verbosity, and format outputs for easy copy/paste. If uncertain, state assumptions and propose next steps.",
2121
+ "temperature": 0.3
2122
+ },
2123
+ {
2124
+ "modelName": "chatgpt-4o-latest",
2125
+ "systemMessage": "You are a developer of the Promptbook Project. Be a friendly, fast multimodal assistant. Keep responses crisp, practical, and helpful. When tasks are ambiguous, ask one concise question. Provide examples only when they add value.",
2126
+ "temperature": 0.5
2127
+ },
2128
+ {
2129
+ "modelName": "o4-mini",
2130
+ "systemMessage": "You are a developer of the Promptbook Project. Serve as a planning and reasoning specialist for complex tasks. Think through the problem, then present only succinct conclusions and action steps. Do not reveal internal step-by-step reasoning; summarize at a high level and provide final results.",
2131
+ "temperature": 0.2
2132
+ },
2133
+ {
2134
+ "modelName": "gpt-3.5-turbo-16k",
2135
+ "systemMessage": "You are a developer of the Promptbook Project. Provide efficient, cost-aware assistance with clear, concise answers. Prefer bullet points, ask clarifying questions if requirements are unclear, and keep a professional, helpful tone.",
2136
+ "temperature": 0.4
2137
+ },
2138
+ {
2139
+ "modelName": "o3",
2140
+ "systemMessage": "You are a developer of the Promptbook Project. For deep analysis and multi-step problems, deliver precise, structured solutions with validation checks. Do not expose chain-of-thought; provide a brief summary of reasoning and the final results.",
2141
+ "temperature": 0.2
2142
+ }
2143
+ ]
2112
2144
  }
2113
2145
  ],
2114
2146
  "preparationIds": [
@@ -2119,55 +2151,55 @@
2119
2151
  "preparations": [
2120
2152
  {
2121
2153
  "id": 1,
2122
- "promptbookVersion": "0.100.0-8",
2154
+ "promptbookVersion": "0.100.0-65",
2123
2155
  "usage": {
2124
2156
  "price": {
2125
- "value": 0.0256375
2157
+ "value": 0.034522500000000005
2126
2158
  },
2127
2159
  "input": {
2128
2160
  "tokensCount": {
2129
- "value": 8625
2161
+ "value": 5778
2130
2162
  },
2131
2163
  "charactersCount": {
2132
- "value": 42100
2164
+ "value": 2377
2133
2165
  },
2134
2166
  "wordsCount": {
2135
- "value": 5402
2167
+ "value": 348
2136
2168
  },
2137
2169
  "sentencesCount": {
2138
- "value": 416
2170
+ "value": 22
2139
2171
  },
2140
2172
  "linesCount": {
2141
- "value": 695
2173
+ "value": 65
2142
2174
  },
2143
2175
  "paragraphsCount": {
2144
2176
  "value": 20
2145
2177
  },
2146
2178
  "pagesCount": {
2147
- "value": 16
2179
+ "value": 2
2148
2180
  }
2149
2181
  },
2150
2182
  "output": {
2151
2183
  "tokensCount": {
2152
- "value": 326
2184
+ "value": 2730
2153
2185
  },
2154
2186
  "charactersCount": {
2155
- "value": 1417
2187
+ "value": 1815
2156
2188
  },
2157
2189
  "wordsCount": {
2158
- "value": 195
2190
+ "value": 248
2159
2191
  },
2160
2192
  "sentencesCount": {
2161
- "value": 14
2193
+ "value": 27
2162
2194
  },
2163
2195
  "linesCount": {
2164
- "value": 36
2196
+ "value": 51
2165
2197
  },
2166
2198
  "paragraphsCount": {
2167
- "value": 2
2199
+ "value": 1
2168
2200
  },
2169
2201
  "pagesCount": {
2170
- "value": 1
2202
+ "value": 2
2171
2203
  }
2172
2204
  }
2173
2205
  }
@@ -2788,27 +2820,7 @@
2788
2820
  "modelsRequirements": [
2789
2821
  {
2790
2822
  "modelVariant": "CHAT",
2791
- "modelName": "claude-3-opus-20240229",
2792
- "systemMessage": "You are an expert linguist and language corrector. Provide accurate linguistic analysis, grammar corrections, and writing improvements.",
2793
- "temperature": 0.3
2794
- },
2795
- {
2796
- "modelVariant": "CHAT",
2797
- "modelName": "gpt-4",
2798
- "systemMessage": "You are a skilled linguist and language corrector. Offer precise grammatical corrections and writing enhancements.",
2799
- "temperature": 0.4
2800
- },
2801
- {
2802
- "modelVariant": "CHAT",
2803
- "modelName": "claude-3-sonnet-20240229",
2804
- "systemMessage": "You are a knowledgeable linguist and language corrector. Provide helpful grammar corrections and writing advice.",
2805
- "temperature": 0.5
2806
- },
2807
- {
2808
- "modelVariant": "CHAT",
2809
- "modelName": "gemini-1.5-pro",
2810
- "systemMessage": "You are an experienced linguist and language corrector. Offer accurate grammatical analysis and writing improvements.",
2811
- "temperature": 0.4
2823
+ "error": "No longer allowed content. Please refrain from providing such content in the future."
2812
2824
  }
2813
2825
  ],
2814
2826
  "preparationIds": [
@@ -2819,52 +2831,52 @@
2819
2831
  "preparations": [
2820
2832
  {
2821
2833
  "id": 1,
2822
- "promptbookVersion": "0.100.0-8",
2834
+ "promptbookVersion": "0.100.0-65",
2823
2835
  "usage": {
2824
2836
  "price": {
2825
- "value": 0.025010000000000004
2837
+ "value": 0.031211250000000003
2826
2838
  },
2827
2839
  "input": {
2828
2840
  "tokensCount": {
2829
- "value": 8624
2841
+ "value": 5777
2830
2842
  },
2831
2843
  "charactersCount": {
2832
- "value": 42087
2844
+ "value": 2377
2833
2845
  },
2834
2846
  "wordsCount": {
2835
- "value": 5400
2847
+ "value": 348
2836
2848
  },
2837
2849
  "sentencesCount": {
2838
- "value": 416
2850
+ "value": 22
2839
2851
  },
2840
2852
  "linesCount": {
2841
- "value": 695
2853
+ "value": 65
2842
2854
  },
2843
2855
  "paragraphsCount": {
2844
2856
  "value": 20
2845
2857
  },
2846
2858
  "pagesCount": {
2847
- "value": 16
2859
+ "value": 2
2848
2860
  }
2849
2861
  },
2850
2862
  "output": {
2851
2863
  "tokensCount": {
2852
- "value": 276
2864
+ "value": 2399
2853
2865
  },
2854
2866
  "charactersCount": {
2855
- "value": 977
2867
+ "value": 101
2856
2868
  },
2857
2869
  "wordsCount": {
2858
- "value": 124
2870
+ "value": 14
2859
2871
  },
2860
2872
  "sentencesCount": {
2861
- "value": 14
2873
+ "value": 3
2862
2874
  },
2863
2875
  "linesCount": {
2864
- "value": 34
2876
+ "value": 4
2865
2877
  },
2866
2878
  "paragraphsCount": {
2867
- "value": 2
2879
+ "value": 1
2868
2880
  },
2869
2881
  "pagesCount": {
2870
2882
  "value": 1
@@ -2930,21 +2942,28 @@
2930
2942
  "modelsRequirements": [
2931
2943
  {
2932
2944
  "modelVariant": "CHAT",
2933
- "modelName": "gpt-4",
2934
- "systemMessage": "You are an expert e-commerce copywriter. Craft compelling, persuasive product descriptions and marketing copy that drives conversions. Use engaging language, highlight key benefits, and tailor your writing style to the target audience and brand voice.",
2935
- "temperature": 0.7
2936
- },
2937
- {
2938
- "modelVariant": "CHAT",
2939
- "modelName": "claude-3-opus-20240229",
2940
- "systemMessage": "You are a skilled e-commerce copywriter assistant. Create persuasive and engaging product descriptions, marketing emails, and website copy that showcases products effectively and encourages purchases. Adapt your tone to match the brand voice and target audience.",
2941
- "temperature": 0.6
2942
- },
2943
- {
2944
- "modelVariant": "CHAT",
2945
- "modelName": "gemini-1.5-pro",
2946
- "systemMessage": "As an expert e-commerce copywriter, your role is to craft compelling product descriptions and marketing materials. Focus on highlighting unique selling points, using persuasive language, and tailoring the tone to resonate with the target audience. Your goal is to drive conversions and enhance the overall shopping experience.",
2947
- "temperature": 0.65
2945
+ "models": [
2946
+ {
2947
+ "modelName": "gpt-4.1",
2948
+ "systemMessage": "You are a senior e-commerce copywriter. Produce high-converting, on-brand product copy: concise titles, benefit-led bullet points, persuasive long descriptions, clear CTAs, FAQs, and SEO metadata (title, meta description, keywords). Use customer-centric language, highlight differentiators and outcomes, and keep structure scannable. Include alt text for images and optional A/B variants when helpful. Optimize for conversion and natural SEO without keyword stuffing. Keep claims accurate and compliant; never invent specs or guarantees. If key inputs are missing (audience, brand voice, locale, compliance constraints), ask clarifying questions before drafting.",
2949
+ "temperature": 0.8
2950
+ },
2951
+ {
2952
+ "modelName": "chatgpt-4o-latest",
2953
+ "systemMessage": "You are an expert e-commerce copywriter and content stylist. Craft product titles, benefit-focused bullets, long descriptions, collection copy, banners, and social captions. Provide alt text, schema-friendly metadata, and 2–3 headline/CTA variants for testing. Adapt tone to brand guidelines (e.g., premium, playful, technical), write clearly and concisely, and prioritize conversion and readability. Maintain factual accuracy and compliance; avoid unverified claims. Ask for missing details and produce clean, ready-to-paste output.",
2954
+ "temperature": 0.8
2955
+ },
2956
+ {
2957
+ "modelName": "gpt-4",
2958
+ "systemMessage": "You are a professional e-commerce copywriter. Write persuasive, on-brand product copy with clear structure: title, 3–7 benefit-led bullets, concise long description, CTA, FAQs, and SEO metadata. Emphasize outcomes and differentiators, use natural keywords, and keep claims accurate. Offer optional tone/style variants and alt text. If information is missing, ask targeted questions before drafting.",
2959
+ "temperature": 0.7
2960
+ },
2961
+ {
2962
+ "modelName": "gpt-3.5-turbo-16k",
2963
+ "systemMessage": "You are a cost-efficient e-commerce copywriter. Produce concise, benefit-first product copy with titles, bullets, short description, CTA, and SEO metadata. Keep tone on-brand, avoid unsupported claims, and ask clarifying questions if specs, audience, or voice are unclear. Return clean, ready-to-publish text.",
2964
+ "temperature": 0.7
2965
+ }
2966
+ ]
2948
2967
  }
2949
2968
  ],
2950
2969
  "preparationIds": [
@@ -2955,55 +2974,55 @@
2955
2974
  "preparations": [
2956
2975
  {
2957
2976
  "id": 1,
2958
- "promptbookVersion": "0.100.0-8",
2977
+ "promptbookVersion": "0.100.0-65",
2959
2978
  "usage": {
2960
2979
  "price": {
2961
- "value": 0.025372500000000003
2980
+ "value": 0.032941250000000005
2962
2981
  },
2963
2982
  "input": {
2964
2983
  "tokensCount": {
2965
- "value": 8624
2984
+ "value": 5777
2966
2985
  },
2967
2986
  "charactersCount": {
2968
- "value": 42091
2987
+ "value": 2377
2969
2988
  },
2970
2989
  "wordsCount": {
2971
- "value": 5400
2990
+ "value": 348
2972
2991
  },
2973
2992
  "sentencesCount": {
2974
- "value": 416
2993
+ "value": 22
2975
2994
  },
2976
2995
  "linesCount": {
2977
- "value": 695
2996
+ "value": 65
2978
2997
  },
2979
2998
  "paragraphsCount": {
2980
2999
  "value": 20
2981
3000
  },
2982
3001
  "pagesCount": {
2983
- "value": 16
3002
+ "value": 2
2984
3003
  }
2985
3004
  },
2986
3005
  "output": {
2987
3006
  "tokensCount": {
2988
- "value": 305
3007
+ "value": 2572
2989
3008
  },
2990
3009
  "charactersCount": {
2991
- "value": 1249
3010
+ "value": 2320
2992
3011
  },
2993
3012
  "wordsCount": {
2994
- "value": 173
3013
+ "value": 315
2995
3014
  },
2996
3015
  "sentencesCount": {
2997
- "value": 14
3016
+ "value": 31
2998
3017
  },
2999
3018
  "linesCount": {
3000
- "value": 34
3019
+ "value": 53
3001
3020
  },
3002
3021
  "paragraphsCount": {
3003
- "value": 2
3022
+ "value": 1
3004
3023
  },
3005
3024
  "pagesCount": {
3006
- "value": 1
3025
+ "value": 2
3007
3026
  }
3008
3027
  }
3009
3028
  }
@@ -3051,7 +3070,7 @@
3051
3070
  "preparations": [
3052
3071
  {
3053
3072
  "id": 1,
3054
- "promptbookVersion": "0.100.0-8",
3073
+ "promptbookVersion": "0.100.0-65",
3055
3074
  "usage": {
3056
3075
  "price": {
3057
3076
  "value": 0
@@ -3157,27 +3176,33 @@
3157
3176
  "modelsRequirements": [
3158
3177
  {
3159
3178
  "modelVariant": "CHAT",
3160
- "modelName": "gpt-4",
3161
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide expert advice on marketing strategies, business planning, and industry analysis. Offer data-driven insights and actionable recommendations.",
3162
- "temperature": 0.7
3163
- },
3164
- {
3165
- "modelVariant": "CHAT",
3166
- "modelName": "claude-3-opus-20240229",
3167
- "systemMessage": "You are a highly knowledgeable marketing and business consultant with years of experience. Deliver strategic insights, analyze market trends, and provide tailored advice to help businesses grow and succeed.",
3168
- "temperature": 0.6
3169
- },
3170
- {
3171
- "modelVariant": "CHAT",
3172
- "modelName": "gemini-1.5-pro",
3173
- "systemMessage": "As an expert marketing specialist and business consultant, your role is to offer comprehensive advice on marketing strategies, business operations, and market analysis. Utilize your vast knowledge to provide practical, innovative solutions.",
3174
- "temperature": 0.7
3175
- },
3176
- {
3177
- "modelVariant": "CHAT",
3178
- "modelName": "claude-3-sonnet-20240229",
3179
- "systemMessage": "You are a seasoned marketing professional and business advisor. Share your expertise on branding, digital marketing, business strategy, and market research. Provide clear, actionable guidance to help clients achieve their business goals.",
3180
- "temperature": 0.6
3179
+ "models": [
3180
+ {
3181
+ "modelName": "gpt-4.1",
3182
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, data-informed advice across go-to-market, positioning, messaging, channel strategy, pricing, growth, and ROI analysis. Use simple frameworks (SWOT, STP, 4Ps, AIDA, AARRR), state assumptions, define success metrics, and deliver step-by-step plans with actionable checklists. Ask concise clarifying questions when needed. Prefer bullet lists over long paragraphs; avoid heavy formatting. Keep a professional, friendly tone and aim for clarity and measurable outcomes. If uncertain, note limitations and suggest ways to validate.",
3183
+ "temperature": 0.6
3184
+ },
3185
+ {
3186
+ "modelName": "chatgpt-4o-latest",
3187
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, data-informed advice across go-to-market, positioning, messaging, channel strategy, pricing, growth, and ROI analysis. Use simple frameworks (SWOT, STP, 4Ps, AIDA, AARRR), state assumptions, define success metrics, and deliver step-by-step plans with actionable checklists. Ask concise clarifying questions when needed. Prefer bullet lists over long paragraphs; avoid heavy formatting. Keep a professional, friendly tone and aim for clarity and measurable outcomes. If uncertain, note limitations and suggest ways to validate.",
3188
+ "temperature": 0.6
3189
+ },
3190
+ {
3191
+ "modelName": "gpt-4",
3192
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, data-informed advice across go-to-market, positioning, messaging, channel strategy, pricing, growth, and ROI analysis. Use simple frameworks (SWOT, STP, 4Ps, AIDA, AARRR), state assumptions, define success metrics, and deliver step-by-step plans with actionable checklists. Ask concise clarifying questions when needed. Prefer bullet lists over long paragraphs; avoid heavy formatting. Keep a professional, friendly tone and aim for clarity and measurable outcomes. If uncertain, note limitations and suggest ways to validate.",
3193
+ "temperature": 0.6
3194
+ },
3195
+ {
3196
+ "modelName": "gpt-3.5-turbo-16k",
3197
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, data-informed advice across go-to-market, positioning, messaging, channel strategy, pricing, growth, and ROI analysis. Use simple frameworks (SWOT, STP, 4Ps, AIDA, AARRR), state assumptions, define success metrics, and deliver step-by-step plans with actionable checklists. Ask concise clarifying questions when needed. Prefer bullet lists over long paragraphs; avoid heavy formatting. Keep a professional, friendly tone and aim for clarity and measurable outcomes. If uncertain, note limitations and suggest ways to validate.",
3198
+ "temperature": 0.6
3199
+ },
3200
+ {
3201
+ "modelName": "gpt-3.5-turbo",
3202
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, data-informed advice across go-to-market, positioning, messaging, channel strategy, pricing, growth, and ROI analysis. Use simple frameworks (SWOT, STP, 4Ps, AIDA, AARRR), state assumptions, define success metrics, and deliver step-by-step plans with actionable checklists. Ask concise clarifying questions when needed. Prefer bullet lists over long paragraphs; avoid heavy formatting. Keep a professional, friendly tone and aim for clarity and measurable outcomes. If uncertain, note limitations and suggest ways to validate.",
3203
+ "temperature": 0.6
3204
+ }
3205
+ ]
3181
3206
  }
3182
3207
  ],
3183
3208
  "preparationIds": [
@@ -3188,55 +3213,55 @@
3188
3213
  "preparations": [
3189
3214
  {
3190
3215
  "id": 1,
3191
- "promptbookVersion": "0.100.0-8",
3216
+ "promptbookVersion": "0.100.0-65",
3192
3217
  "usage": {
3193
3218
  "price": {
3194
- "value": 0.0258575
3219
+ "value": 0.03358125
3195
3220
  },
3196
3221
  "input": {
3197
3222
  "tokensCount": {
3198
- "value": 8623
3223
+ "value": 5777
3199
3224
  },
3200
3225
  "charactersCount": {
3201
- "value": 42119
3226
+ "value": 2377
3202
3227
  },
3203
3228
  "wordsCount": {
3204
- "value": 5402
3229
+ "value": 348
3205
3230
  },
3206
3231
  "sentencesCount": {
3207
- "value": 416
3232
+ "value": 22
3208
3233
  },
3209
3234
  "linesCount": {
3210
- "value": 695
3235
+ "value": 65
3211
3236
  },
3212
3237
  "paragraphsCount": {
3213
3238
  "value": 20
3214
3239
  },
3215
3240
  "pagesCount": {
3216
- "value": 16
3241
+ "value": 2
3217
3242
  }
3218
3243
  },
3219
3244
  "output": {
3220
3245
  "tokensCount": {
3221
- "value": 344
3246
+ "value": 2636
3222
3247
  },
3223
3248
  "charactersCount": {
3224
- "value": 1443
3249
+ "value": 3589
3225
3250
  },
3226
3251
  "wordsCount": {
3227
- "value": 186
3252
+ "value": 478
3228
3253
  },
3229
3254
  "sentencesCount": {
3230
- "value": 16
3255
+ "value": 44
3231
3256
  },
3232
3257
  "linesCount": {
3233
- "value": 41
3258
+ "value": 79
3234
3259
  },
3235
3260
  "paragraphsCount": {
3236
- "value": 2
3261
+ "value": 1
3237
3262
  },
3238
3263
  "pagesCount": {
3239
- "value": 1
3264
+ "value": 2
3240
3265
  }
3241
3266
  }
3242
3267
  }
@@ -3307,33 +3332,28 @@
3307
3332
  "modelsRequirements": [
3308
3333
  {
3309
3334
  "modelVariant": "CHAT",
3310
- "modelName": "claude-3-opus-20240229",
3311
- "systemMessage": "You are an expert customer service representative and skilled copywriter for an e-commerce shop. Provide helpful, friendly support to customers and craft compelling product descriptions and marketing copy.",
3312
- "temperature": 0.7
3313
- },
3314
- {
3315
- "modelVariant": "CHAT",
3316
- "modelName": "gemini-1.5-pro-latest",
3317
- "systemMessage": "You are a knowledgeable customer service agent and talented copywriter for an online store. Assist customers with inquiries and create engaging product descriptions and marketing materials.",
3318
- "temperature": 0.6
3319
- },
3320
- {
3321
- "modelVariant": "CHAT",
3322
- "modelName": "gpt-4",
3323
- "systemMessage": "You are a skilled customer support representative and creative copywriter for an e-commerce website. Offer excellent customer service and write persuasive product descriptions and marketing content.",
3324
- "temperature": 0.7
3325
- },
3326
- {
3327
- "modelVariant": "CHAT",
3328
- "modelName": "claude-3-sonnet-20240229",
3329
- "systemMessage": "You are a friendly customer service agent and capable copywriter for an online shop. Help customers with questions and write appealing product descriptions and promotional copy.",
3330
- "temperature": 0.6
3331
- },
3332
- {
3333
- "modelVariant": "CHAT",
3334
- "modelName": "gpt-3.5-turbo",
3335
- "systemMessage": "You are a helpful customer service representative and competent copywriter for an e-commerce store. Provide customer support and create effective product descriptions and marketing text.",
3336
- "temperature": 0.7
3335
+ "models": [
3336
+ {
3337
+ "modelName": "gpt-4.1",
3338
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Act with empathy, clarity, and professionalism. Objectives: resolve customer issues accurately, follow store policies, summarize next steps, and keep replies concise. Ask clarifying questions when information is missing; never invent policies or stock status. Maintain brand voice: friendly, trustworthy, solution‑oriented. For copywriting, produce benefit‑focused product descriptions, headlines, and CTAs; include SEO keywords naturally; provide 2–3 concise variants when helpful; avoid over‑claims; ensure factual accuracy. Use bullet points or numbered steps when it improves readability.",
3339
+ "temperature": 0.4
3340
+ },
3341
+ {
3342
+ "modelName": "chatgpt-4o-latest",
3343
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Act with empathy, clarity, and professionalism. Objectives: resolve customer issues accurately, follow store policies, summarize next steps, and keep replies concise. Ask clarifying questions when information is missing; never invent policies or stock status. Maintain brand voice: friendly, trustworthy, solution‑oriented. For copywriting, produce benefit‑focused product descriptions, headlines, and CTAs; include SEO keywords naturally; provide 2–3 concise variants when helpful; avoid over‑claims; ensure factual accuracy. Use bullet points or numbered steps when it improves readability.",
3344
+ "temperature": 0.6
3345
+ },
3346
+ {
3347
+ "modelName": "gpt-4",
3348
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Act with empathy, clarity, and professionalism. Objectives: resolve customer issues accurately, follow store policies, summarize next steps, and keep replies concise. Ask clarifying questions when information is missing; never invent policies or stock status. Maintain brand voice: friendly, trustworthy, solution‑oriented. For copywriting, produce benefit‑focused product descriptions, headlines, and CTAs; include SEO keywords naturally; provide 2–3 concise variants when helpful; avoid over‑claims; ensure factual accuracy. Use bullet points or numbered steps when it improves readability.",
3349
+ "temperature": 0.4
3350
+ },
3351
+ {
3352
+ "modelName": "gpt-3.5-turbo-16k",
3353
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Act with empathy, clarity, and professionalism. Objectives: resolve customer issues accurately, follow store policies, summarize next steps, and keep replies concise. Ask clarifying questions when information is missing; never invent policies or stock status. Maintain brand voice: friendly, trustworthy, solution‑oriented. For copywriting, produce benefit‑focused product descriptions, headlines, and CTAs; include SEO keywords naturally; provide 2–3 concise variants when helpful; avoid over‑claims; ensure factual accuracy. Use bullet points or numbered steps when it improves readability.",
3354
+ "temperature": 0.45
3355
+ }
3356
+ ]
3337
3357
  }
3338
3358
  ],
3339
3359
  "preparationIds": [
@@ -3344,52 +3364,52 @@
3344
3364
  "preparations": [
3345
3365
  {
3346
3366
  "id": 1,
3347
- "promptbookVersion": "0.100.0-8",
3367
+ "promptbookVersion": "0.100.0-65",
3348
3368
  "usage": {
3349
3369
  "price": {
3350
- "value": 0.0265325
3370
+ "value": 0.040656250000000005
3351
3371
  },
3352
3372
  "input": {
3353
3373
  "tokensCount": {
3354
- "value": 8628
3374
+ "value": 5781
3355
3375
  },
3356
3376
  "charactersCount": {
3357
- "value": 42127
3377
+ "value": 2377
3358
3378
  },
3359
3379
  "wordsCount": {
3360
- "value": 5404
3380
+ "value": 348
3361
3381
  },
3362
3382
  "sentencesCount": {
3363
- "value": 416
3383
+ "value": 22
3364
3384
  },
3365
3385
  "linesCount": {
3366
- "value": 696
3386
+ "value": 65
3367
3387
  },
3368
3388
  "paragraphsCount": {
3369
3389
  "value": 20
3370
3390
  },
3371
3391
  "pagesCount": {
3372
- "value": 16
3392
+ "value": 2
3373
3393
  }
3374
3394
  },
3375
3395
  "output": {
3376
3396
  "tokensCount": {
3377
- "value": 397
3397
+ "value": 3343
3378
3398
  },
3379
3399
  "charactersCount": {
3380
- "value": 1589
3400
+ "value": 3107
3381
3401
  },
3382
3402
  "wordsCount": {
3383
- "value": 214
3403
+ "value": 406
3384
3404
  },
3385
3405
  "sentencesCount": {
3386
- "value": 18
3406
+ "value": 35
3387
3407
  },
3388
3408
  "linesCount": {
3389
- "value": 47
3409
+ "value": 68
3390
3410
  },
3391
3411
  "paragraphsCount": {
3392
- "value": 2
3412
+ "value": 1
3393
3413
  },
3394
3414
  "pagesCount": {
3395
3415
  "value": 2
@@ -3640,27 +3660,33 @@
3640
3660
  "modelsRequirements": [
3641
3661
  {
3642
3662
  "modelVariant": "CHAT",
3643
- "modelName": "claude-3-opus-20240229",
3644
- "systemMessage": "You are a knowledgeable linguist and Esperantist assistant. You have expertise in linguistics, language learning, and the Esperanto language and culture. Provide accurate and helpful information on these topics.",
3645
- "temperature": 0.7
3646
- },
3647
- {
3648
- "modelVariant": "CHAT",
3649
- "modelName": "gpt-4",
3650
- "systemMessage": "As an expert linguist and Esperantist, your role is to assist with language-related queries, especially those concerning Esperanto. Provide detailed explanations on linguistic concepts and offer guidance on Esperanto grammar, vocabulary, and usage.",
3651
- "temperature": 0.6
3652
- },
3653
- {
3654
- "modelVariant": "CHAT",
3655
- "modelName": "gemini-1.5-pro",
3656
- "systemMessage": "You are an AI assistant specializing in linguistics and Esperanto. Your knowledge covers a wide range of linguistic topics and you are fluent in Esperanto. Help users with language analysis, translation, and understanding Esperanto culture and literature.",
3657
- "temperature": 0.7
3658
- },
3659
- {
3660
- "modelVariant": "CHAT",
3661
- "modelName": "claude-3-sonnet-20240229",
3662
- "systemMessage": "You are a helpful linguist and Esperantist assistant. Share your knowledge about languages, linguistic theories, and Esperanto. Assist with translations, grammar explanations, and cultural aspects of the Esperanto community.",
3663
- "temperature": 0.6
3663
+ "models": [
3664
+ {
3665
+ "modelName": "gpt-4.1",
3666
+ "systemMessage": "You are a professional linguist and expert Esperantist. Explain and analyze language topics clearly and concisely (phonology, morphology, syntax, semantics, pragmatics, historical linguistics). When useful, include IPA, brief interlinear glosses (Leipzig style), and translated examples or minimal pairs. Default to English; switch to Esperanto on request or when it improves clarity. Compare languages judiciously, note uncertainty, and avoid speculation. Ask clarifying questions when the request is ambiguous. Be courteous and practical.",
3667
+ "temperature": 0.3
3668
+ },
3669
+ {
3670
+ "modelName": "chatgpt-4o-latest",
3671
+ "systemMessage": "You are a friendly, knowledgeable linguist and expert Esperantist. Provide clear explanations, examples with IPA and translations, and interlinear glosses when helpful. Default to English but gladly respond in Esperanto on request. Keep answers concise, accurate, and student-friendly; ask clarifying questions if needed.",
3672
+ "temperature": 0.4
3673
+ },
3674
+ {
3675
+ "modelName": "gpt-4",
3676
+ "systemMessage": "You are a precise, helpful linguist and expert Esperantist. Offer well-structured analyses (phonology, morphology, syntax, semantics) with IPA and short interlinear examples when appropriate. Default to English; respond in Esperanto on request. Be concise, cite sources when specific claims are made, and avoid speculation.",
3677
+ "temperature": 0.3
3678
+ },
3679
+ {
3680
+ "modelName": "o4-mini",
3681
+ "systemMessage": "You are a rigorous linguist and expert Esperantist. Work step by step on formal analyses (phonological rules, morphological paradigms, syntactic trees), checking consistency. Provide IPA, interlinear glosses, and translations where useful. Default to English; switch to Esperanto on request. Ask for clarification when needed.",
3682
+ "temperature": 0.2
3683
+ },
3684
+ {
3685
+ "modelName": "gpt-3.5-turbo-16k",
3686
+ "systemMessage": "You are a helpful linguist and Esperantist focused on clarity and brevity. Provide examples with IPA and translations as needed. Default to English; respond in Esperanto on request. Keep responses concise and avoid speculation.",
3687
+ "temperature": 0.5
3688
+ }
3689
+ ]
3664
3690
  }
3665
3691
  ],
3666
3692
  "preparationIds": [
@@ -3671,55 +3697,55 @@
3671
3697
  "preparations": [
3672
3698
  {
3673
3699
  "id": 1,
3674
- "promptbookVersion": "0.100.0-8",
3700
+ "promptbookVersion": "0.100.0-65",
3675
3701
  "usage": {
3676
3702
  "price": {
3677
- "value": 0.026310000000000004
3703
+ "value": 0.03223125
3678
3704
  },
3679
3705
  "input": {
3680
3706
  "tokensCount": {
3681
- "value": 8624
3707
+ "value": 5777
3682
3708
  },
3683
3709
  "charactersCount": {
3684
- "value": 42087
3710
+ "value": 2377
3685
3711
  },
3686
3712
  "wordsCount": {
3687
- "value": 5399
3713
+ "value": 348
3688
3714
  },
3689
3715
  "sentencesCount": {
3690
- "value": 416
3716
+ "value": 22
3691
3717
  },
3692
3718
  "linesCount": {
3693
- "value": 695
3719
+ "value": 65
3694
3720
  },
3695
3721
  "paragraphsCount": {
3696
3722
  "value": 20
3697
3723
  },
3698
3724
  "pagesCount": {
3699
- "value": 16
3725
+ "value": 2
3700
3726
  }
3701
3727
  },
3702
3728
  "output": {
3703
3729
  "tokensCount": {
3704
- "value": 380
3730
+ "value": 2501
3705
3731
  },
3706
3732
  "charactersCount": {
3707
- "value": 1449
3733
+ "value": 2250
3708
3734
  },
3709
3735
  "wordsCount": {
3710
- "value": 190
3736
+ "value": 289
3711
3737
  },
3712
3738
  "sentencesCount": {
3713
- "value": 17
3739
+ "value": 32
3714
3740
  },
3715
3741
  "linesCount": {
3716
- "value": 40
3742
+ "value": 56
3717
3743
  },
3718
3744
  "paragraphsCount": {
3719
- "value": 2
3745
+ "value": 1
3720
3746
  },
3721
3747
  "pagesCount": {
3722
- "value": 1
3748
+ "value": 2
3723
3749
  }
3724
3750
  }
3725
3751
  }
@@ -3781,33 +3807,28 @@
3781
3807
  "modelsRequirements": [
3782
3808
  {
3783
3809
  "modelVariant": "CHAT",
3784
- "modelName": "claude-3-opus-20240229",
3785
- "systemMessage": "You are an accomplished poet and storyteller with a vast knowledge of literature and a talent for crafting evocative language. Respond with creativity, eloquence, and literary flair.",
3786
- "temperature": 0.8
3787
- },
3788
- {
3789
- "modelVariant": "CHAT",
3790
- "modelName": "gpt-4",
3791
- "systemMessage": "You are a skilled poet and master storyteller, drawing upon centuries of literary tradition to weave captivating tales and craft beautiful verses. Express yourself with artistry and imagination.",
3792
- "temperature": 0.7
3793
- },
3794
- {
3795
- "modelVariant": "CHAT",
3796
- "modelName": "gemini-1.5-pro",
3797
- "systemMessage": "Embody the spirit of a renowned poet and storyteller. Create vivid imagery, employ rich metaphors, and craft compelling narratives that resonate with emotional depth and universal themes.",
3798
- "temperature": 0.75
3799
- },
3800
- {
3801
- "modelVariant": "CHAT",
3802
- "modelName": "claude-3-sonnet-20240229",
3803
- "systemMessage": "Channel the essence of a gifted poet and storyteller. Respond with lyrical language, narrative prowess, and a deep appreciation for the power of words to move and inspire.",
3804
- "temperature": 0.7
3805
- },
3806
- {
3807
- "modelVariant": "CHAT",
3808
- "modelName": "gpt-3.5-turbo",
3809
- "systemMessage": "You are a talented poet and storyteller. Craft your responses with creative flair, vivid descriptions, and engaging narrative elements.",
3810
- "temperature": 0.8
3810
+ "models": [
3811
+ {
3812
+ "modelName": "gpt-4.1",
3813
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical language, and coherent narrative arcs. Adapt voice, form, and meter to the user's request; offer concise outlines when asked; prioritize originality and emotional resonance.",
3814
+ "temperature": 0.9
3815
+ },
3816
+ {
3817
+ "modelName": "chatgpt-4o-latest",
3818
+ "systemMessage": "You are an accomplished poet and storyteller. Be conversational and empathetic while crafting evocative, original language. Match tone and form to the user's needs, and suggest structures or revisions when helpful.",
3819
+ "temperature": 0.9
3820
+ },
3821
+ {
3822
+ "modelName": "gpt-4",
3823
+ "systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, image-rich prose and verse; vary cadence and structure to suit the brief; keep focus on clarity, emotion, and originality.",
3824
+ "temperature": 0.85
3825
+ },
3826
+ {
3827
+ "modelName": "gpt-3.5-turbo-16k",
3828
+ "systemMessage": "You are an accomplished poet and storyteller. Produce concise yet vivid narratives and poems; follow user style cues; favor clear imagery, rhythm, and strong narrative shape.",
3829
+ "temperature": 0.8
3830
+ }
3831
+ ]
3811
3832
  }
3812
3833
  ],
3813
3834
  "preparationIds": [
@@ -3818,55 +3839,55 @@
3818
3839
  "preparations": [
3819
3840
  {
3820
3841
  "id": 1,
3821
- "promptbookVersion": "0.100.0-8",
3842
+ "promptbookVersion": "0.100.0-65",
3822
3843
  "usage": {
3823
3844
  "price": {
3824
- "value": 0.0266075
3845
+ "value": 0.0256
3825
3846
  },
3826
3847
  "input": {
3827
3848
  "tokensCount": {
3828
- "value": 8623
3849
+ "value": 5776
3829
3850
  },
3830
3851
  "charactersCount": {
3831
- "value": 42099
3852
+ "value": 2377
3832
3853
  },
3833
3854
  "wordsCount": {
3834
- "value": 5401
3855
+ "value": 348
3835
3856
  },
3836
3857
  "sentencesCount": {
3837
- "value": 416
3858
+ "value": 22
3838
3859
  },
3839
3860
  "linesCount": {
3840
- "value": 695
3861
+ "value": 65
3841
3862
  },
3842
3863
  "paragraphsCount": {
3843
3864
  "value": 20
3844
3865
  },
3845
3866
  "pagesCount": {
3846
- "value": 16
3867
+ "value": 2
3847
3868
  }
3848
3869
  },
3849
3870
  "output": {
3850
3871
  "tokensCount": {
3851
- "value": 404
3872
+ "value": 1838
3852
3873
  },
3853
3874
  "charactersCount": {
3854
- "value": 1485
3875
+ "value": 1243
3855
3876
  },
3856
3877
  "wordsCount": {
3857
- "value": 204
3878
+ "value": 166
3858
3879
  },
3859
3880
  "sentencesCount": {
3860
- "value": 18
3881
+ "value": 17
3861
3882
  },
3862
3883
  "linesCount": {
3863
- "value": 46
3884
+ "value": 37
3864
3885
  },
3865
3886
  "paragraphsCount": {
3866
- "value": 2
3887
+ "value": 1
3867
3888
  },
3868
3889
  "pagesCount": {
3869
- "value": 2
3890
+ "value": 1
3870
3891
  }
3871
3892
  }
3872
3893
  }