@promptbook/templates 0.100.0-5 → 0.100.0-61

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 +2 -8
  2. package/esm/index.es.js +344 -294
  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 +348 -298
  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-5';
27
+ const PROMPTBOOK_ENGINE_VERSION = '0.100.0-61';
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,33 +1549,38 @@
1541
1549
  "modelsRequirements": [
1542
1550
  {
1543
1551
  "modelVariant": "CHAT",
1544
- "modelName": "gpt-4",
1545
- "systemMessage": "You are an AI assistant for a developer of the Promptbook Project. You have expertise in AI, software development, and project management. Provide accurate, helpful information and assist with coding, documentation, and problem-solving tasks.",
1546
- "temperature": 0.7
1547
- },
1548
- {
1549
- "modelVariant": "CHAT",
1550
- "modelName": "claude-3-opus-20240229",
1551
- "systemMessage": "As an AI assistant for a Promptbook Project developer, you possess deep knowledge of AI technologies, software development practices, and project management. Offer insightful assistance for coding, documentation, and complex problem-solving related to the project.",
1552
- "temperature": 0.6
1553
- },
1554
- {
1555
- "modelVariant": "CHAT",
1556
- "modelName": "gemini-1.5-pro",
1557
- "systemMessage": "You are an AI assistant designed to support a developer working on the Promptbook Project. Your knowledge spans AI, software engineering, and project management. Provide clear, concise help with coding tasks, documentation, and technical problem-solving.",
1558
- "temperature": 0.5
1559
- },
1560
- {
1561
- "modelVariant": "CHAT",
1562
- "modelName": "deepseek-coder",
1563
- "systemMessage": "As an AI coding assistant for the Promptbook Project, you specialize in software development and AI technologies. Offer expert guidance on coding practices, debugging, and implementing AI-related features for the project.",
1564
- "temperature": 0.4
1565
- },
1566
- {
1567
- "modelVariant": "CHAT",
1568
- "modelName": "gpt-3.5-turbo-16k",
1569
- "systemMessage": "You are a helpful AI assistant for a developer working on the Promptbook Project. Provide support with coding, documentation, and general software development tasks. Offer clear explanations and suggestions to aid in project development.",
1570
- "temperature": 0.6
1552
+ "models": [
1553
+ {
1554
+ "modelName": "gpt-4.1",
1555
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant designer: precise, structured, and tool-aware. Provide clear, reproducible steps and production-ready answers.",
1556
+ "temperature": 0.3
1557
+ },
1558
+ {
1559
+ "modelName": "chatgpt-4o-latest",
1560
+ "systemMessage": "You are a developer of the Promptbook Project. Be fast, helpful, and reliable. Prioritize clarity, concise answers, and practical guidance for building virtual assistants.",
1561
+ "temperature": 0.4
1562
+ },
1563
+ {
1564
+ "modelName": "gpt-4",
1565
+ "systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
1566
+ "temperature": 0.3
1567
+ },
1568
+ {
1569
+ "modelName": "gpt-3.5-turbo-16k",
1570
+ "systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
1571
+ "temperature": 0.4
1572
+ },
1573
+ {
1574
+ "modelName": "o4-mini",
1575
+ "systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
1576
+ "temperature": 0.2
1577
+ },
1578
+ {
1579
+ "modelName": "o1-mini",
1580
+ "systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
1581
+ "temperature": 0.2
1582
+ }
1583
+ ]
1571
1584
  }
1572
1585
  ],
1573
1586
  "preparationIds": [
@@ -1578,52 +1591,52 @@
1578
1591
  "preparations": [
1579
1592
  {
1580
1593
  "id": 1,
1581
- "promptbookVersion": "0.100.0-4",
1594
+ "promptbookVersion": "0.100.0-55",
1582
1595
  "usage": {
1583
1596
  "price": {
1584
- "value": 0.028037500000000003
1597
+ "value": 0.0308725
1585
1598
  },
1586
1599
  "input": {
1587
1600
  "tokensCount": {
1588
- "value": 8785
1601
+ "value": 5778
1589
1602
  },
1590
1603
  "charactersCount": {
1591
- "value": 42948
1604
+ "value": 2377
1592
1605
  },
1593
1606
  "wordsCount": {
1594
- "value": 5506
1607
+ "value": 348
1595
1608
  },
1596
1609
  "sentencesCount": {
1597
- "value": 424
1610
+ "value": 22
1598
1611
  },
1599
1612
  "linesCount": {
1600
- "value": 708
1613
+ "value": 65
1601
1614
  },
1602
1615
  "paragraphsCount": {
1603
1616
  "value": 20
1604
1617
  },
1605
1618
  "pagesCount": {
1606
- "value": 17
1619
+ "value": 2
1607
1620
  }
1608
1621
  },
1609
1622
  "output": {
1610
1623
  "tokensCount": {
1611
- "value": 486
1624
+ "value": 2365
1612
1625
  },
1613
1626
  "charactersCount": {
1614
- "value": 1970
1627
+ "value": 1560
1615
1628
  },
1616
1629
  "wordsCount": {
1617
- "value": 272
1630
+ "value": 195
1618
1631
  },
1619
1632
  "sentencesCount": {
1620
1633
  "value": 23
1621
1634
  },
1622
1635
  "linesCount": {
1623
- "value": 53
1636
+ "value": 48
1624
1637
  },
1625
1638
  "paragraphsCount": {
1626
- "value": 2
1639
+ "value": 1
1627
1640
  },
1628
1641
  "pagesCount": {
1629
1642
  "value": 2
@@ -2106,33 +2119,38 @@
2106
2119
  "modelsRequirements": [
2107
2120
  {
2108
2121
  "modelVariant": "CHAT",
2109
- "modelName": "gpt-4",
2110
- "systemMessage": "You are an AI assistant for a developer of the Promptbook Project. You have expertise in AI, software development, and project management. Provide accurate, helpful information and assist with coding, documentation, and problem-solving tasks.",
2111
- "temperature": 0.7
2112
- },
2113
- {
2114
- "modelVariant": "CHAT",
2115
- "modelName": "claude-3-opus-20240229",
2116
- "systemMessage": "As an AI assistant for a Promptbook Project developer, you possess deep knowledge of AI technologies, software development practices, and project management. Offer insightful assistance for coding, documentation, and complex problem-solving related to the project.",
2117
- "temperature": 0.6
2118
- },
2119
- {
2120
- "modelVariant": "CHAT",
2121
- "modelName": "gemini-1.5-pro",
2122
- "systemMessage": "You are an AI assistant designed to support a developer working on the Promptbook Project. Your knowledge spans AI, software engineering, and project management. Provide clear, concise help with coding tasks, documentation, and technical problem-solving.",
2123
- "temperature": 0.5
2124
- },
2125
- {
2126
- "modelVariant": "CHAT",
2127
- "modelName": "deepseek-coder",
2128
- "systemMessage": "As an AI coding assistant for the Promptbook Project, you specialize in software development and AI technologies. Offer expert guidance on coding practices, debugging, and implementing AI-related features for the project.",
2129
- "temperature": 0.4
2130
- },
2131
- {
2132
- "modelVariant": "CHAT",
2133
- "modelName": "gpt-3.5-turbo-16k",
2134
- "systemMessage": "You are a helpful AI assistant for a developer working on the Promptbook Project. Provide support with coding, documentation, and general software development tasks. Offer clear explanations and suggestions to aid in project development.",
2135
- "temperature": 0.6
2122
+ "models": [
2123
+ {
2124
+ "modelName": "gpt-4.1",
2125
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant designer: precise, structured, and tool-aware. Provide clear, reproducible steps and production-ready answers.",
2126
+ "temperature": 0.3
2127
+ },
2128
+ {
2129
+ "modelName": "chatgpt-4o-latest",
2130
+ "systemMessage": "You are a developer of the Promptbook Project. Be fast, helpful, and reliable. Prioritize clarity, concise answers, and practical guidance for building virtual assistants.",
2131
+ "temperature": 0.4
2132
+ },
2133
+ {
2134
+ "modelName": "gpt-4",
2135
+ "systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
2136
+ "temperature": 0.3
2137
+ },
2138
+ {
2139
+ "modelName": "gpt-3.5-turbo-16k",
2140
+ "systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
2141
+ "temperature": 0.4
2142
+ },
2143
+ {
2144
+ "modelName": "o4-mini",
2145
+ "systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
2146
+ "temperature": 0.2
2147
+ },
2148
+ {
2149
+ "modelName": "o1-mini",
2150
+ "systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
2151
+ "temperature": 0.2
2152
+ }
2153
+ ]
2136
2154
  }
2137
2155
  ],
2138
2156
  "preparationIds": [
@@ -2143,52 +2161,52 @@
2143
2161
  "preparations": [
2144
2162
  {
2145
2163
  "id": 1,
2146
- "promptbookVersion": "0.100.0-4",
2164
+ "promptbookVersion": "0.100.0-55",
2147
2165
  "usage": {
2148
2166
  "price": {
2149
- "value": 0.028037500000000003
2167
+ "value": 0.0308725
2150
2168
  },
2151
2169
  "input": {
2152
2170
  "tokensCount": {
2153
- "value": 8785
2171
+ "value": 5778
2154
2172
  },
2155
2173
  "charactersCount": {
2156
- "value": 42948
2174
+ "value": 2377
2157
2175
  },
2158
2176
  "wordsCount": {
2159
- "value": 5506
2177
+ "value": 348
2160
2178
  },
2161
2179
  "sentencesCount": {
2162
- "value": 424
2180
+ "value": 22
2163
2181
  },
2164
2182
  "linesCount": {
2165
- "value": 708
2183
+ "value": 65
2166
2184
  },
2167
2185
  "paragraphsCount": {
2168
2186
  "value": 20
2169
2187
  },
2170
2188
  "pagesCount": {
2171
- "value": 17
2189
+ "value": 2
2172
2190
  }
2173
2191
  },
2174
2192
  "output": {
2175
2193
  "tokensCount": {
2176
- "value": 486
2194
+ "value": 2365
2177
2195
  },
2178
2196
  "charactersCount": {
2179
- "value": 1970
2197
+ "value": 1560
2180
2198
  },
2181
2199
  "wordsCount": {
2182
- "value": 272
2200
+ "value": 195
2183
2201
  },
2184
2202
  "sentencesCount": {
2185
2203
  "value": 23
2186
2204
  },
2187
2205
  "linesCount": {
2188
- "value": 53
2206
+ "value": 48
2189
2207
  },
2190
2208
  "paragraphsCount": {
2191
- "value": 2
2209
+ "value": 1
2192
2210
  },
2193
2211
  "pagesCount": {
2194
2212
  "value": 2
@@ -2812,21 +2830,33 @@
2812
2830
  "modelsRequirements": [
2813
2831
  {
2814
2832
  "modelVariant": "CHAT",
2815
- "modelName": "claude-3-opus-20240229",
2816
- "systemMessage": "You are an expert linguist and meticulous corrector. Analyze text for grammatical, spelling, and stylistic issues. Provide clear explanations and corrections to improve writing quality.",
2817
- "temperature": 0.3
2818
- },
2819
- {
2820
- "modelVariant": "CHAT",
2821
- "modelName": "gpt-4",
2822
- "systemMessage": "As a skilled linguist and precise corrector, your role is to identify and correct language errors while offering insightful linguistic analysis. Provide detailed explanations for corrections and linguistic observations.",
2823
- "temperature": 0.2
2824
- },
2825
- {
2826
- "modelVariant": "CHAT",
2827
- "modelName": "claude-3-sonnet-20240229",
2828
- "systemMessage": "You are a knowledgeable linguist and attentive corrector. Your task is to review text for language errors, suggest improvements, and offer linguistic insights to enhance writing clarity and accuracy.",
2829
- "temperature": 0.4
2833
+ "models": [
2834
+ {
2835
+ "modelName": "gpt-4.1",
2836
+ "systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
2837
+ "temperature": 0.2
2838
+ },
2839
+ {
2840
+ "modelName": "chatgpt-4o-latest",
2841
+ "systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
2842
+ "temperature": 0.25
2843
+ },
2844
+ {
2845
+ "modelName": "gpt-4",
2846
+ "systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
2847
+ "temperature": 0.2
2848
+ },
2849
+ {
2850
+ "modelName": "gpt-3.5-turbo-16k",
2851
+ "systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
2852
+ "temperature": 0.25
2853
+ },
2854
+ {
2855
+ "modelName": "gpt-3.5-turbo",
2856
+ "systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
2857
+ "temperature": 0.3
2858
+ }
2859
+ ]
2830
2860
  }
2831
2861
  ],
2832
2862
  "preparationIds": [
@@ -2837,55 +2867,55 @@
2837
2867
  "preparations": [
2838
2868
  {
2839
2869
  "id": 1,
2840
- "promptbookVersion": "0.100.0-4",
2870
+ "promptbookVersion": "0.100.0-55",
2841
2871
  "usage": {
2842
2872
  "price": {
2843
- "value": 0.025285000000000002
2873
+ "value": 0.02903125
2844
2874
  },
2845
2875
  "input": {
2846
2876
  "tokensCount": {
2847
- "value": 8784
2877
+ "value": 5777
2848
2878
  },
2849
2879
  "charactersCount": {
2850
- "value": 42935
2880
+ "value": 2377
2851
2881
  },
2852
2882
  "wordsCount": {
2853
- "value": 5504
2883
+ "value": 348
2854
2884
  },
2855
2885
  "sentencesCount": {
2856
- "value": 424
2886
+ "value": 22
2857
2887
  },
2858
2888
  "linesCount": {
2859
- "value": 708
2889
+ "value": 65
2860
2890
  },
2861
2891
  "paragraphsCount": {
2862
2892
  "value": 20
2863
2893
  },
2864
2894
  "pagesCount": {
2865
- "value": 17
2895
+ "value": 2
2866
2896
  }
2867
2897
  },
2868
2898
  "output": {
2869
2899
  "tokensCount": {
2870
- "value": 266
2900
+ "value": 2181
2871
2901
  },
2872
2902
  "charactersCount": {
2873
- "value": 1020
2903
+ "value": 3096
2874
2904
  },
2875
2905
  "wordsCount": {
2876
- "value": 135
2906
+ "value": 408
2877
2907
  },
2878
2908
  "sentencesCount": {
2879
- "value": 11
2909
+ "value": 39
2880
2910
  },
2881
2911
  "linesCount": {
2882
- "value": 30
2912
+ "value": 69
2883
2913
  },
2884
2914
  "paragraphsCount": {
2885
- "value": 2
2915
+ "value": 1
2886
2916
  },
2887
2917
  "pagesCount": {
2888
- "value": 1
2918
+ "value": 2
2889
2919
  }
2890
2920
  }
2891
2921
  }
@@ -2948,27 +2978,38 @@
2948
2978
  "modelsRequirements": [
2949
2979
  {
2950
2980
  "modelVariant": "CHAT",
2951
- "modelName": "gpt-4",
2952
- "systemMessage": "You are an experienced copywriter specializing in e-commerce product descriptions and marketing content. Create compelling, persuasive copy that highlights product benefits and drives conversions.",
2953
- "temperature": 0.7
2954
- },
2955
- {
2956
- "modelVariant": "CHAT",
2957
- "modelName": "claude-3-opus-20240229",
2958
- "systemMessage": "You are a skilled e-commerce copywriter. Craft engaging product descriptions and marketing copy that is informative, persuasive, and optimized for online sales. Focus on benefits, unique selling points, and calls-to-action.",
2959
- "temperature": 0.6
2960
- },
2961
- {
2962
- "modelVariant": "CHAT",
2963
- "modelName": "gemini-1.5-pro",
2964
- "systemMessage": "As an expert e-commerce copywriter, your task is to create captivating product descriptions and marketing content. Emphasize key features, benefits, and unique selling propositions to drive customer engagement and sales.",
2965
- "temperature": 0.65
2966
- },
2967
- {
2968
- "modelVariant": "CHAT",
2969
- "modelName": "gpt-3.5-turbo",
2970
- "systemMessage": "You are a professional copywriter for e-commerce websites. Write clear, concise, and persuasive product descriptions that highlight key features and benefits to potential customers.",
2971
- "temperature": 0.5
2981
+ "models": [
2982
+ {
2983
+ "modelName": "gpt-4.1",
2984
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
2985
+ "temperature": 0.7
2986
+ },
2987
+ {
2988
+ "modelName": "chatgpt-4o-latest",
2989
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
2990
+ "temperature": 0.75
2991
+ },
2992
+ {
2993
+ "modelName": "gpt-4",
2994
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
2995
+ "temperature": 0.7
2996
+ },
2997
+ {
2998
+ "modelName": "gpt-3.5-turbo-16k",
2999
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
3000
+ "temperature": 0.65
3001
+ },
3002
+ {
3003
+ "modelName": "gpt-3.5-turbo-1106",
3004
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
3005
+ "temperature": 0.6
3006
+ },
3007
+ {
3008
+ "modelName": "gpt-3.5-turbo",
3009
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
3010
+ "temperature": 0.6
3011
+ }
3012
+ ]
2972
3013
  }
2973
3014
  ],
2974
3015
  "preparationIds": [
@@ -2979,55 +3020,55 @@
2979
3020
  "preparations": [
2980
3021
  {
2981
3022
  "id": 1,
2982
- "promptbookVersion": "0.100.0-4",
3023
+ "promptbookVersion": "0.100.0-55",
2983
3024
  "usage": {
2984
3025
  "price": {
2985
- "value": 0.026235
3026
+ "value": 0.04264125
2986
3027
  },
2987
3028
  "input": {
2988
3029
  "tokensCount": {
2989
- "value": 8784
3030
+ "value": 5777
2990
3031
  },
2991
3032
  "charactersCount": {
2992
- "value": 42939
3033
+ "value": 2377
2993
3034
  },
2994
3035
  "wordsCount": {
2995
- "value": 5504
3036
+ "value": 348
2996
3037
  },
2997
3038
  "sentencesCount": {
2998
- "value": 424
3039
+ "value": 22
2999
3040
  },
3000
3041
  "linesCount": {
3001
- "value": 708
3042
+ "value": 65
3002
3043
  },
3003
3044
  "paragraphsCount": {
3004
3045
  "value": 20
3005
3046
  },
3006
3047
  "pagesCount": {
3007
- "value": 17
3048
+ "value": 2
3008
3049
  }
3009
3050
  },
3010
3051
  "output": {
3011
3052
  "tokensCount": {
3012
- "value": 342
3053
+ "value": 3542
3013
3054
  },
3014
3055
  "charactersCount": {
3015
- "value": 1291
3056
+ "value": 5673
3016
3057
  },
3017
3058
  "wordsCount": {
3018
- "value": 173
3059
+ "value": 821
3019
3060
  },
3020
3061
  "sentencesCount": {
3021
- "value": 16
3062
+ "value": 65
3022
3063
  },
3023
3064
  "linesCount": {
3024
- "value": 38
3065
+ "value": 112
3025
3066
  },
3026
3067
  "paragraphsCount": {
3027
- "value": 2
3068
+ "value": 1
3028
3069
  },
3029
3070
  "pagesCount": {
3030
- "value": 1
3071
+ "value": 3
3031
3072
  }
3032
3073
  }
3033
3074
  }
@@ -3075,7 +3116,7 @@
3075
3116
  "preparations": [
3076
3117
  {
3077
3118
  "id": 1,
3078
- "promptbookVersion": "0.100.0-4",
3119
+ "promptbookVersion": "0.100.0-55",
3079
3120
  "usage": {
3080
3121
  "price": {
3081
3122
  "value": 0
@@ -3181,27 +3222,33 @@
3181
3222
  "modelsRequirements": [
3182
3223
  {
3183
3224
  "modelVariant": "CHAT",
3184
- "modelName": "claude-3-opus-20240229",
3185
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide expert advice on marketing strategies, business development, and industry trends. Offer data-driven insights and actionable recommendations.",
3186
- "temperature": 0.7
3187
- },
3188
- {
3189
- "modelVariant": "CHAT",
3190
- "modelName": "gpt-4",
3191
- "systemMessage": "As an experienced marketing specialist and business consultant, your role is to give professional advice on marketing campaigns, business strategy, and market analysis. Provide thoughtful, analytical responses backed by industry knowledge.",
3192
- "temperature": 0.6
3193
- },
3194
- {
3195
- "modelVariant": "CHAT",
3196
- "modelName": "gemini-1.5-pro",
3197
- "systemMessage": "You are a seasoned marketing specialist and business consultant. Offer strategic guidance on branding, digital marketing, business operations, and growth strategies. Analyze market trends and provide data-backed recommendations.",
3198
- "temperature": 0.7
3199
- },
3200
- {
3201
- "modelVariant": "CHAT",
3202
- "modelName": "claude-3-sonnet-20240229",
3203
- "systemMessage": "As an expert in marketing and business consulting, provide valuable insights on marketing techniques, business planning, and industry best practices. Offer clear, actionable advice to help clients achieve their business goals.",
3204
- "temperature": 0.6
3225
+ "models": [
3226
+ {
3227
+ "modelName": "gpt-4.1",
3228
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance across brand strategy, go-to-market, performance marketing, pricing, positioning, and growth. Deliver concise, actionable recommendations with clear frameworks (e.g., STP, 4Ps, AARRR), measurable KPIs, and ROI assumptions. Ask clarifying questions when requirements are ambiguous and state assumptions.",
3229
+ "temperature": 0.3
3230
+ },
3231
+ {
3232
+ "modelName": "chatgpt-4o-latest",
3233
+ "systemMessage": "You are an experienced marketing specialist and business consultant with a friendly, persuasive tone. Ideate campaigns and produce on-brand copy (headlines, emails, ads, landing pages, social calendars). Provide multiple variations, A/B test ideas, and clear next steps while keeping messages audience-centric.",
3234
+ "temperature": 0.7
3235
+ },
3236
+ {
3237
+ "modelName": "gpt-4",
3238
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Be rigorous and practical: conduct market sizing, competitive analysis, unit economics, and funnel diagnostics. Present step-by-step plans, show key calculations succinctly, and recommend KPIs and measurement plans.",
3239
+ "temperature": 0.35
3240
+ },
3241
+ {
3242
+ "modelName": "o4-mini",
3243
+ "systemMessage": "You are an experienced marketing specialist and business consultant focused on quantitative analysis. Build forecasts, CAC/LTV models, cohort analyses, media mix/budget allocations, and scenario plans. Explain assumptions and include formulas or simple modeling steps when helpful.",
3244
+ "temperature": 0.2
3245
+ },
3246
+ {
3247
+ "modelName": "gpt-3.5-turbo-16k",
3248
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise recommendations, checklists, and templates for common tasks (ICP, messaging, channel plans, editorial calendars). Use clear bullet points and avoid unnecessary verbosity.",
3249
+ "temperature": 0.4
3250
+ }
3251
+ ]
3205
3252
  }
3206
3253
  ],
3207
3254
  "preparationIds": [
@@ -3212,55 +3259,55 @@
3212
3259
  "preparations": [
3213
3260
  {
3214
3261
  "id": 1,
3215
- "promptbookVersion": "0.100.0-4",
3262
+ "promptbookVersion": "0.100.0-55",
3216
3263
  "usage": {
3217
3264
  "price": {
3218
- "value": 0.026232500000000002
3265
+ "value": 0.02966125
3219
3266
  },
3220
3267
  "input": {
3221
3268
  "tokensCount": {
3222
- "value": 8783
3269
+ "value": 5777
3223
3270
  },
3224
3271
  "charactersCount": {
3225
- "value": 42967
3272
+ "value": 2377
3226
3273
  },
3227
3274
  "wordsCount": {
3228
- "value": 5506
3275
+ "value": 348
3229
3276
  },
3230
3277
  "sentencesCount": {
3231
- "value": 424
3278
+ "value": 22
3232
3279
  },
3233
3280
  "linesCount": {
3234
- "value": 708
3281
+ "value": 65
3235
3282
  },
3236
3283
  "paragraphsCount": {
3237
3284
  "value": 20
3238
3285
  },
3239
3286
  "pagesCount": {
3240
- "value": 17
3287
+ "value": 2
3241
3288
  }
3242
3289
  },
3243
3290
  "output": {
3244
3291
  "tokensCount": {
3245
- "value": 342
3292
+ "value": 2244
3246
3293
  },
3247
3294
  "charactersCount": {
3248
- "value": 1450
3295
+ "value": 2055
3249
3296
  },
3250
3297
  "wordsCount": {
3251
- "value": 185
3298
+ "value": 256
3252
3299
  },
3253
3300
  "sentencesCount": {
3254
- "value": 16
3301
+ "value": 26
3255
3302
  },
3256
3303
  "linesCount": {
3257
- "value": 40
3304
+ "value": 52
3258
3305
  },
3259
3306
  "paragraphsCount": {
3260
- "value": 2
3307
+ "value": 1
3261
3308
  },
3262
3309
  "pagesCount": {
3263
- "value": 1
3310
+ "value": 2
3264
3311
  }
3265
3312
  }
3266
3313
  }
@@ -3331,27 +3378,28 @@
3331
3378
  "modelsRequirements": [
3332
3379
  {
3333
3380
  "modelVariant": "CHAT",
3334
- "modelName": "claude-3-opus-20240229",
3335
- "systemMessage": "You are an expert customer service representative and skilled copywriter for an ecommerce shop. Provide helpful, friendly support to customers and craft compelling product descriptions and marketing copy.",
3336
- "temperature": 0.7
3337
- },
3338
- {
3339
- "modelVariant": "CHAT",
3340
- "modelName": "gpt-4",
3341
- "systemMessage": "As a customer service expert and talented copywriter for an online store, your role is to assist customers with inquiries and create engaging product descriptions and marketing materials.",
3342
- "temperature": 0.6
3343
- },
3344
- {
3345
- "modelVariant": "CHAT",
3346
- "modelName": "claude-3-sonnet-20240229",
3347
- "systemMessage": "You are a knowledgeable customer service agent and creative copywriter for an ecommerce website. Help customers with questions and write appealing product descriptions.",
3348
- "temperature": 0.7
3349
- },
3350
- {
3351
- "modelVariant": "CHAT",
3352
- "modelName": "gemini-1.5-pro",
3353
- "systemMessage": "You're an experienced customer support representative and copywriter for an online shop. Provide excellent customer service and craft persuasive product descriptions and marketing copy.",
3354
- "temperature": 0.6
3381
+ "models": [
3382
+ {
3383
+ "modelName": "gpt-4.1",
3384
+ "systemMessage": "You are a customer service representative and skilled ecommerce copywriter for our online shop. Priorities: accuracy, empathy, and clear next steps. For support: ask targeted clarifying questions (order ID, email, item, dates), never invent policies or stock info, protect PII (never request full card numbers), and propose practical resolutions (returns, exchanges, refunds, shipping updates, troubleshooting). For copywriting: produce persuasive, on-brand, benefit-led copy with clear CTAs; keep it scannable (short paragraphs, bullets), and include key specs and optional SEO suggestions when relevant. If information or policy is missing, ask for it or state limits. Keep tone warm, professional, and helpful.",
3385
+ "temperature": 0.5
3386
+ },
3387
+ {
3388
+ "modelName": "chatgpt-4o-latest",
3389
+ "systemMessage": "You are a friendly, fast, and reliable virtual assistant for an online shop—both customer support rep and ecommerce copywriter. Be empathetic and concise; ask clarifying questions before answering; never fabricate order, inventory, or policy details; protect customer data. Provide clear, step-by-step guidance for orders, returns, shipping, and product questions. When writing copy, keep it benefit-driven, on-brand, scannable, and include strong calls to action; offer optional SEO keywords and variants when helpful.",
3390
+ "temperature": 0.5
3391
+ },
3392
+ {
3393
+ "modelName": "gpt-4",
3394
+ "systemMessage": "Act as a customer service representative and ecommerce copywriter. For support, be accurate, empathetic, and solution-oriented; ask for missing details; don’t invent policies; protect PII; outline next steps clearly with bullets when useful. For copy, write persuasive, benefit-first text aligned with brand voice, include key specs and clear CTAs, and avoid unverifiable claims. If unsure, state limitations and request the needed info.",
3395
+ "temperature": 0.5
3396
+ },
3397
+ {
3398
+ "modelName": "gpt-3.5-turbo-16k",
3399
+ "systemMessage": "You are a helpful customer service rep and ecommerce copywriter for an online store. Keep responses concise, polite, and accurate. Ask clarifying questions before resolving issues; do not invent data or policies; protect customer privacy. For copywriting, deliver on-brand, benefit-led, scannable copy with clear CTAs and optional SEO suggestions. If information is missing, request it.",
3400
+ "temperature": 0.5
3401
+ }
3402
+ ]
3355
3403
  }
3356
3404
  ],
3357
3405
  "preparationIds": [
@@ -3362,55 +3410,55 @@
3362
3410
  "preparations": [
3363
3411
  {
3364
3412
  "id": 1,
3365
- "promptbookVersion": "0.100.0-4",
3413
+ "promptbookVersion": "0.100.0-55",
3366
3414
  "usage": {
3367
3415
  "price": {
3368
- "value": 0.025945000000000003
3416
+ "value": 0.045436250000000004
3369
3417
  },
3370
3418
  "input": {
3371
3419
  "tokensCount": {
3372
- "value": 8788
3420
+ "value": 5781
3373
3421
  },
3374
3422
  "charactersCount": {
3375
- "value": 42975
3423
+ "value": 2377
3376
3424
  },
3377
3425
  "wordsCount": {
3378
- "value": 5508
3426
+ "value": 348
3379
3427
  },
3380
3428
  "sentencesCount": {
3381
- "value": 424
3429
+ "value": 22
3382
3430
  },
3383
3431
  "linesCount": {
3384
- "value": 709
3432
+ "value": 65
3385
3433
  },
3386
3434
  "paragraphsCount": {
3387
3435
  "value": 20
3388
3436
  },
3389
3437
  "pagesCount": {
3390
- "value": 17
3438
+ "value": 2
3391
3439
  }
3392
3440
  },
3393
3441
  "output": {
3394
3442
  "tokensCount": {
3395
- "value": 318
3443
+ "value": 3821
3396
3444
  },
3397
3445
  "charactersCount": {
3398
- "value": 1264
3446
+ "value": 2473
3399
3447
  },
3400
3448
  "wordsCount": {
3401
- "value": 168
3449
+ "value": 341
3402
3450
  },
3403
3451
  "sentencesCount": {
3404
- "value": 13
3452
+ "value": 26
3405
3453
  },
3406
3454
  "linesCount": {
3407
- "value": 39
3455
+ "value": 56
3408
3456
  },
3409
3457
  "paragraphsCount": {
3410
- "value": 2
3458
+ "value": 1
3411
3459
  },
3412
3460
  "pagesCount": {
3413
- "value": 1
3461
+ "value": 2
3414
3462
  }
3415
3463
  }
3416
3464
  }
@@ -3658,21 +3706,28 @@
3658
3706
  "modelsRequirements": [
3659
3707
  {
3660
3708
  "modelVariant": "CHAT",
3661
- "modelName": "claude-3-opus-20240229",
3662
- "systemMessage": "You are an expert linguist and Esperantist assistant. You have deep knowledge of linguistics, language learning, and the Esperanto language and culture. Provide accurate and helpful information on linguistic topics, language analysis, and all aspects of Esperanto.",
3663
- "temperature": 0.3
3664
- },
3665
- {
3666
- "modelVariant": "CHAT",
3667
- "modelName": "gemini-2.5-pro-preview-03-25",
3668
- "systemMessage": "You are a knowledgeable linguist and Esperantist AI assistant. Your expertise covers linguistics, language learning techniques, and extensive knowledge of Esperanto. Offer precise and insightful information on linguistic concepts, language structures, and Esperanto language and community.",
3669
- "temperature": 0.4
3670
- },
3671
- {
3672
- "modelVariant": "CHAT",
3673
- "modelName": "gpt-4",
3674
- "systemMessage": "As a linguist and Esperantist AI assistant, you possess comprehensive knowledge of linguistic theories, language acquisition, and Esperanto. Provide accurate explanations on language-related topics and detailed information about Esperanto grammar, vocabulary, and culture.",
3675
- "temperature": 0.5
3709
+ "models": [
3710
+ {
3711
+ "modelName": "gpt-4.1",
3712
+ "systemMessage": "You are a linguist and Esperantist. Provide precise, well-sourced linguistic analysis (phonetics/IPA, phonology, morphology, syntax, semantics, pragmatics, sociolinguistics) and clear, concise explanations. Translate to and from Esperanto and other languages; default to the user's language (English if unclear), and respond fully in Esperanto when the task is Esperanto-focused. When useful, include: IPA transcription, morphological segmentation with Leipzig glossing, and brief usage/etymology notes. Be descriptive rather than prescriptive, but note prescriptive norms if relevant. Ask clarifying questions when a request is ambiguous.",
3713
+ "temperature": 0.35
3714
+ },
3715
+ {
3716
+ "modelName": "gpt-4",
3717
+ "systemMessage": "You are a linguist and Esperantist assistant. Offer accurate linguistic analysis and pedagogy: IPA, phonology, morphology, syntax, semantics, pragmatics, typology, and sociolinguistics. Translate to/from Esperanto; use the user's language by default and switch to Esperanto when appropriate. Provide interlinear glossed text (Leipzig rules) for examples when helpful. Be neutral and descriptive, cite norms when needed, and ask for clarification if requirements are unclear.",
3718
+ "temperature": 0.4
3719
+ },
3720
+ {
3721
+ "modelName": "chatgpt-4o-latest",
3722
+ "systemMessage": "You are a friendly, expert linguist and Esperantist. Explain language phenomena clearly, give IPA and interlinear glosses when useful, and translate accurately to/from Esperanto. Match the user's language; use Esperanto for Esperanto-specific tasks. Be concise, helpful, and ask clarifying questions if the goal is not explicit.",
3723
+ "temperature": 0.5
3724
+ },
3725
+ {
3726
+ "modelName": "gpt-3.5-turbo-16k",
3727
+ "systemMessage": "You are a cost-efficient linguist and Esperantist assistant. Provide clear explanations of grammar and phonology, basic IPA, interlinear glossing (Leipzig), and reliable translations to/from Esperanto. Keep answers concise, ask clarifying questions when needed, and match the user's language.",
3728
+ "temperature": 0.6
3729
+ }
3730
+ ]
3676
3731
  }
3677
3732
  ],
3678
3733
  "preparationIds": [
@@ -3683,55 +3738,55 @@
3683
3738
  "preparations": [
3684
3739
  {
3685
3740
  "id": 1,
3686
- "promptbookVersion": "0.100.0-4",
3741
+ "promptbookVersion": "0.100.0-55",
3687
3742
  "usage": {
3688
3743
  "price": {
3689
- "value": 0.0259225
3744
+ "value": 0.030741250000000005
3690
3745
  },
3691
3746
  "input": {
3692
3747
  "tokensCount": {
3693
- "value": 8784
3748
+ "value": 5777
3694
3749
  },
3695
3750
  "charactersCount": {
3696
- "value": 42935
3751
+ "value": 2377
3697
3752
  },
3698
3753
  "wordsCount": {
3699
- "value": 5503
3754
+ "value": 348
3700
3755
  },
3701
3756
  "sentencesCount": {
3702
- "value": 424
3757
+ "value": 22
3703
3758
  },
3704
3759
  "linesCount": {
3705
- "value": 708
3760
+ "value": 65
3706
3761
  },
3707
3762
  "paragraphsCount": {
3708
3763
  "value": 20
3709
3764
  },
3710
3765
  "pagesCount": {
3711
- "value": 17
3766
+ "value": 2
3712
3767
  }
3713
3768
  },
3714
3769
  "output": {
3715
3770
  "tokensCount": {
3716
- "value": 317
3771
+ "value": 2352
3717
3772
  },
3718
3773
  "charactersCount": {
3719
- "value": 1244
3774
+ "value": 2152
3720
3775
  },
3721
3776
  "wordsCount": {
3722
- "value": 162
3777
+ "value": 283
3723
3778
  },
3724
3779
  "sentencesCount": {
3725
- "value": 13
3780
+ "value": 25
3726
3781
  },
3727
3782
  "linesCount": {
3728
- "value": 33
3783
+ "value": 51
3729
3784
  },
3730
3785
  "paragraphsCount": {
3731
- "value": 2
3786
+ "value": 1
3732
3787
  },
3733
3788
  "pagesCount": {
3734
- "value": 1
3789
+ "value": 2
3735
3790
  }
3736
3791
  }
3737
3792
  }
@@ -3793,33 +3848,28 @@
3793
3848
  "modelsRequirements": [
3794
3849
  {
3795
3850
  "modelVariant": "CHAT",
3796
- "modelName": "claude-3-opus-20240229",
3797
- "systemMessage": "You are an accomplished poet and storyteller with a vast knowledge of literature and a talent for crafting evocative language. Assist users with creative writing, poetry analysis, and storytelling techniques.",
3798
- "temperature": 0.8
3799
- },
3800
- {
3801
- "modelVariant": "CHAT",
3802
- "modelName": "gpt-4",
3803
- "systemMessage": "You are an accomplished poet and storyteller, skilled in the art of language and narrative. Help users explore the world of literature, poetry, and creative writing.",
3804
- "temperature": 0.7
3805
- },
3806
- {
3807
- "modelVariant": "CHAT",
3808
- "modelName": "gemini-1.5-pro",
3809
- "systemMessage": "As an accomplished poet and storyteller, you possess deep knowledge of literary techniques and styles. Guide users in their creative writing endeavors and offer insights into poetry and storytelling.",
3810
- "temperature": 0.7
3811
- },
3812
- {
3813
- "modelVariant": "CHAT",
3814
- "modelName": "claude-3-sonnet-20240229",
3815
- "systemMessage": "You are a talented poet and storyteller, adept at crafting vivid imagery and compelling narratives. Assist users with their creative writing projects and literary analyses.",
3816
- "temperature": 0.6
3817
- },
3818
- {
3819
- "modelVariant": "CHAT",
3820
- "modelName": "gpt-3.5-turbo",
3821
- "systemMessage": "You are an experienced poet and storyteller, ready to help users with creative writing, literary discussion, and narrative techniques.",
3822
- "temperature": 0.6
3851
+ "models": [
3852
+ {
3853
+ "modelName": "gpt-4.1",
3854
+ "systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original verse and narrative with strong imagery, rhythm, and voice. Adapt to requested forms (meter, rhyme, syllable counts, POV), honor constraints and tone, and avoid clichés. Use precise, sensory language. Ask one brief clarifying question if constraints are ambiguous; otherwise proceed.",
3855
+ "temperature": 0.95
3856
+ },
3857
+ {
3858
+ "modelName": "chatgpt-4o-latest",
3859
+ "systemMessage": "You are an accomplished poet and storyteller with a warm, collaborative tone. Craft lyrical, sensory-rich writing across forms and genres; mirror the user's style and constraints; maintain coherence and an emotional arc; and offer succinct revision options only when asked.",
3860
+ "temperature": 0.9
3861
+ },
3862
+ {
3863
+ "modelName": "gpt-4",
3864
+ "systemMessage": "You are an accomplished poet and storyteller. Produce polished, evocative poems and stories; respect strict formal constraints; favor concrete imagery and fresh metaphors; revise for rhythm and musicality; keep explanations minimal unless requested.",
3865
+ "temperature": 0.85
3866
+ },
3867
+ {
3868
+ "modelName": "gpt-3.5-turbo-16k",
3869
+ "systemMessage": "You are an accomplished poet and storyteller focused on clarity under constraints. Briefly restate key requirements, then deliver vivid, original text that avoids clichés and follows the specified form. If meter or rhyme is required, scan and self-correct before final output.",
3870
+ "temperature": 0.75
3871
+ }
3872
+ ]
3823
3873
  }
3824
3874
  ],
3825
3875
  "preparationIds": [
@@ -3830,55 +3880,55 @@
3830
3880
  "preparations": [
3831
3881
  {
3832
3882
  "id": 1,
3833
- "promptbookVersion": "0.100.0-4",
3883
+ "promptbookVersion": "0.100.0-55",
3834
3884
  "usage": {
3835
3885
  "price": {
3836
- "value": 0.02687
3886
+ "value": 0.03003
3837
3887
  },
3838
3888
  "input": {
3839
3889
  "tokensCount": {
3840
- "value": 8783
3890
+ "value": 5776
3841
3891
  },
3842
3892
  "charactersCount": {
3843
- "value": 42947
3893
+ "value": 2377
3844
3894
  },
3845
3895
  "wordsCount": {
3846
- "value": 5505
3896
+ "value": 348
3847
3897
  },
3848
3898
  "sentencesCount": {
3849
- "value": 424
3899
+ "value": 22
3850
3900
  },
3851
3901
  "linesCount": {
3852
- "value": 708
3902
+ "value": 65
3853
3903
  },
3854
3904
  "paragraphsCount": {
3855
3905
  "value": 20
3856
3906
  },
3857
3907
  "pagesCount": {
3858
- "value": 17
3908
+ "value": 2
3859
3909
  }
3860
3910
  },
3861
3911
  "output": {
3862
3912
  "tokensCount": {
3863
- "value": 393
3913
+ "value": 2281
3864
3914
  },
3865
3915
  "charactersCount": {
3866
- "value": 1497
3916
+ "value": 1572
3867
3917
  },
3868
3918
  "wordsCount": {
3869
- "value": 204
3919
+ "value": 209
3870
3920
  },
3871
3921
  "sentencesCount": {
3872
- "value": 17
3922
+ "value": 19
3873
3923
  },
3874
3924
  "linesCount": {
3875
- "value": 45
3925
+ "value": 42
3876
3926
  },
3877
3927
  "paragraphsCount": {
3878
- "value": 2
3928
+ "value": 1
3879
3929
  },
3880
3930
  "pagesCount": {
3881
- "value": 2
3931
+ "value": 1
3882
3932
  }
3883
3933
  }
3884
3934
  }