@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/esm/index.es.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import spaceTrim, { spaceTrim as spaceTrim$1 } from 'spacetrim';
2
- import { format } from 'prettier';
3
2
  import parserHtml from 'prettier/parser-html';
3
+ import parserMarkdown from 'prettier/parser-markdown';
4
+ import { format } from 'prettier/standalone';
4
5
 
5
6
  // ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
6
7
  /**
@@ -16,7 +17,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
16
17
  * @generated
17
18
  * @see https://github.com/webgptorg/promptbook
18
19
  */
19
- const PROMPTBOOK_ENGINE_VERSION = '0.100.0-5';
20
+ const PROMPTBOOK_ENGINE_VERSION = '0.100.0-61';
20
21
  /**
21
22
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
22
23
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -190,6 +191,13 @@ Object.freeze({
190
191
  newline: '\n',
191
192
  skipEmptyLines: true,
192
193
  });
194
+ /**
195
+ * API request timeout in milliseconds
196
+ * Can be overridden via API_REQUEST_TIMEOUT environment variable
197
+ *
198
+ * @public exported from `@promptbook/core`
199
+ */
200
+ parseInt(process.env.API_REQUEST_TIMEOUT || '90000');
193
201
  /**
194
202
  * Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
195
203
  *
@@ -382,7 +390,7 @@ function prettifyMarkdown(content) {
382
390
  try {
383
391
  return format(content, {
384
392
  parser: 'markdown',
385
- plugins: [parserHtml],
393
+ plugins: [parserMarkdown, parserHtml],
386
394
  // TODO: DRY - make some import or auto-copy of .prettierrc
387
395
  endOfLine: 'lf',
388
396
  tabWidth: 4,
@@ -1534,33 +1542,38 @@ function getTemplatesPipelineCollection() {
1534
1542
  "modelsRequirements": [
1535
1543
  {
1536
1544
  "modelVariant": "CHAT",
1537
- "modelName": "gpt-4",
1538
- "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.",
1539
- "temperature": 0.7
1540
- },
1541
- {
1542
- "modelVariant": "CHAT",
1543
- "modelName": "claude-3-opus-20240229",
1544
- "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.",
1545
- "temperature": 0.6
1546
- },
1547
- {
1548
- "modelVariant": "CHAT",
1549
- "modelName": "gemini-1.5-pro",
1550
- "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.",
1551
- "temperature": 0.5
1552
- },
1553
- {
1554
- "modelVariant": "CHAT",
1555
- "modelName": "deepseek-coder",
1556
- "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.",
1557
- "temperature": 0.4
1558
- },
1559
- {
1560
- "modelVariant": "CHAT",
1561
- "modelName": "gpt-3.5-turbo-16k",
1562
- "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.",
1563
- "temperature": 0.6
1545
+ "models": [
1546
+ {
1547
+ "modelName": "gpt-4.1",
1548
+ "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.",
1549
+ "temperature": 0.3
1550
+ },
1551
+ {
1552
+ "modelName": "chatgpt-4o-latest",
1553
+ "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.",
1554
+ "temperature": 0.4
1555
+ },
1556
+ {
1557
+ "modelName": "gpt-4",
1558
+ "systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
1559
+ "temperature": 0.3
1560
+ },
1561
+ {
1562
+ "modelName": "gpt-3.5-turbo-16k",
1563
+ "systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
1564
+ "temperature": 0.4
1565
+ },
1566
+ {
1567
+ "modelName": "o4-mini",
1568
+ "systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
1569
+ "temperature": 0.2
1570
+ },
1571
+ {
1572
+ "modelName": "o1-mini",
1573
+ "systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
1574
+ "temperature": 0.2
1575
+ }
1576
+ ]
1564
1577
  }
1565
1578
  ],
1566
1579
  "preparationIds": [
@@ -1571,52 +1584,52 @@ function getTemplatesPipelineCollection() {
1571
1584
  "preparations": [
1572
1585
  {
1573
1586
  "id": 1,
1574
- "promptbookVersion": "0.100.0-4",
1587
+ "promptbookVersion": "0.100.0-55",
1575
1588
  "usage": {
1576
1589
  "price": {
1577
- "value": 0.028037500000000003
1590
+ "value": 0.0308725
1578
1591
  },
1579
1592
  "input": {
1580
1593
  "tokensCount": {
1581
- "value": 8785
1594
+ "value": 5778
1582
1595
  },
1583
1596
  "charactersCount": {
1584
- "value": 42948
1597
+ "value": 2377
1585
1598
  },
1586
1599
  "wordsCount": {
1587
- "value": 5506
1600
+ "value": 348
1588
1601
  },
1589
1602
  "sentencesCount": {
1590
- "value": 424
1603
+ "value": 22
1591
1604
  },
1592
1605
  "linesCount": {
1593
- "value": 708
1606
+ "value": 65
1594
1607
  },
1595
1608
  "paragraphsCount": {
1596
1609
  "value": 20
1597
1610
  },
1598
1611
  "pagesCount": {
1599
- "value": 17
1612
+ "value": 2
1600
1613
  }
1601
1614
  },
1602
1615
  "output": {
1603
1616
  "tokensCount": {
1604
- "value": 486
1617
+ "value": 2365
1605
1618
  },
1606
1619
  "charactersCount": {
1607
- "value": 1970
1620
+ "value": 1560
1608
1621
  },
1609
1622
  "wordsCount": {
1610
- "value": 272
1623
+ "value": 195
1611
1624
  },
1612
1625
  "sentencesCount": {
1613
1626
  "value": 23
1614
1627
  },
1615
1628
  "linesCount": {
1616
- "value": 53
1629
+ "value": 48
1617
1630
  },
1618
1631
  "paragraphsCount": {
1619
- "value": 2
1632
+ "value": 1
1620
1633
  },
1621
1634
  "pagesCount": {
1622
1635
  "value": 2
@@ -2099,33 +2112,38 @@ function getTemplatesPipelineCollection() {
2099
2112
  "modelsRequirements": [
2100
2113
  {
2101
2114
  "modelVariant": "CHAT",
2102
- "modelName": "gpt-4",
2103
- "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.",
2104
- "temperature": 0.7
2105
- },
2106
- {
2107
- "modelVariant": "CHAT",
2108
- "modelName": "claude-3-opus-20240229",
2109
- "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.",
2110
- "temperature": 0.6
2111
- },
2112
- {
2113
- "modelVariant": "CHAT",
2114
- "modelName": "gemini-1.5-pro",
2115
- "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.",
2116
- "temperature": 0.5
2117
- },
2118
- {
2119
- "modelVariant": "CHAT",
2120
- "modelName": "deepseek-coder",
2121
- "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.",
2122
- "temperature": 0.4
2123
- },
2124
- {
2125
- "modelVariant": "CHAT",
2126
- "modelName": "gpt-3.5-turbo-16k",
2127
- "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.",
2128
- "temperature": 0.6
2115
+ "models": [
2116
+ {
2117
+ "modelName": "gpt-4.1",
2118
+ "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.",
2119
+ "temperature": 0.3
2120
+ },
2121
+ {
2122
+ "modelName": "chatgpt-4o-latest",
2123
+ "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.",
2124
+ "temperature": 0.4
2125
+ },
2126
+ {
2127
+ "modelName": "gpt-4",
2128
+ "systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
2129
+ "temperature": 0.3
2130
+ },
2131
+ {
2132
+ "modelName": "gpt-3.5-turbo-16k",
2133
+ "systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
2134
+ "temperature": 0.4
2135
+ },
2136
+ {
2137
+ "modelName": "o4-mini",
2138
+ "systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
2139
+ "temperature": 0.2
2140
+ },
2141
+ {
2142
+ "modelName": "o1-mini",
2143
+ "systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
2144
+ "temperature": 0.2
2145
+ }
2146
+ ]
2129
2147
  }
2130
2148
  ],
2131
2149
  "preparationIds": [
@@ -2136,52 +2154,52 @@ function getTemplatesPipelineCollection() {
2136
2154
  "preparations": [
2137
2155
  {
2138
2156
  "id": 1,
2139
- "promptbookVersion": "0.100.0-4",
2157
+ "promptbookVersion": "0.100.0-55",
2140
2158
  "usage": {
2141
2159
  "price": {
2142
- "value": 0.028037500000000003
2160
+ "value": 0.0308725
2143
2161
  },
2144
2162
  "input": {
2145
2163
  "tokensCount": {
2146
- "value": 8785
2164
+ "value": 5778
2147
2165
  },
2148
2166
  "charactersCount": {
2149
- "value": 42948
2167
+ "value": 2377
2150
2168
  },
2151
2169
  "wordsCount": {
2152
- "value": 5506
2170
+ "value": 348
2153
2171
  },
2154
2172
  "sentencesCount": {
2155
- "value": 424
2173
+ "value": 22
2156
2174
  },
2157
2175
  "linesCount": {
2158
- "value": 708
2176
+ "value": 65
2159
2177
  },
2160
2178
  "paragraphsCount": {
2161
2179
  "value": 20
2162
2180
  },
2163
2181
  "pagesCount": {
2164
- "value": 17
2182
+ "value": 2
2165
2183
  }
2166
2184
  },
2167
2185
  "output": {
2168
2186
  "tokensCount": {
2169
- "value": 486
2187
+ "value": 2365
2170
2188
  },
2171
2189
  "charactersCount": {
2172
- "value": 1970
2190
+ "value": 1560
2173
2191
  },
2174
2192
  "wordsCount": {
2175
- "value": 272
2193
+ "value": 195
2176
2194
  },
2177
2195
  "sentencesCount": {
2178
2196
  "value": 23
2179
2197
  },
2180
2198
  "linesCount": {
2181
- "value": 53
2199
+ "value": 48
2182
2200
  },
2183
2201
  "paragraphsCount": {
2184
- "value": 2
2202
+ "value": 1
2185
2203
  },
2186
2204
  "pagesCount": {
2187
2205
  "value": 2
@@ -2805,21 +2823,33 @@ function getTemplatesPipelineCollection() {
2805
2823
  "modelsRequirements": [
2806
2824
  {
2807
2825
  "modelVariant": "CHAT",
2808
- "modelName": "claude-3-opus-20240229",
2809
- "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.",
2810
- "temperature": 0.3
2811
- },
2812
- {
2813
- "modelVariant": "CHAT",
2814
- "modelName": "gpt-4",
2815
- "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.",
2816
- "temperature": 0.2
2817
- },
2818
- {
2819
- "modelVariant": "CHAT",
2820
- "modelName": "claude-3-sonnet-20240229",
2821
- "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.",
2822
- "temperature": 0.4
2826
+ "models": [
2827
+ {
2828
+ "modelName": "gpt-4.1",
2829
+ "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.",
2830
+ "temperature": 0.2
2831
+ },
2832
+ {
2833
+ "modelName": "chatgpt-4o-latest",
2834
+ "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.",
2835
+ "temperature": 0.25
2836
+ },
2837
+ {
2838
+ "modelName": "gpt-4",
2839
+ "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.",
2840
+ "temperature": 0.2
2841
+ },
2842
+ {
2843
+ "modelName": "gpt-3.5-turbo-16k",
2844
+ "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.",
2845
+ "temperature": 0.25
2846
+ },
2847
+ {
2848
+ "modelName": "gpt-3.5-turbo",
2849
+ "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.",
2850
+ "temperature": 0.3
2851
+ }
2852
+ ]
2823
2853
  }
2824
2854
  ],
2825
2855
  "preparationIds": [
@@ -2830,55 +2860,55 @@ function getTemplatesPipelineCollection() {
2830
2860
  "preparations": [
2831
2861
  {
2832
2862
  "id": 1,
2833
- "promptbookVersion": "0.100.0-4",
2863
+ "promptbookVersion": "0.100.0-55",
2834
2864
  "usage": {
2835
2865
  "price": {
2836
- "value": 0.025285000000000002
2866
+ "value": 0.02903125
2837
2867
  },
2838
2868
  "input": {
2839
2869
  "tokensCount": {
2840
- "value": 8784
2870
+ "value": 5777
2841
2871
  },
2842
2872
  "charactersCount": {
2843
- "value": 42935
2873
+ "value": 2377
2844
2874
  },
2845
2875
  "wordsCount": {
2846
- "value": 5504
2876
+ "value": 348
2847
2877
  },
2848
2878
  "sentencesCount": {
2849
- "value": 424
2879
+ "value": 22
2850
2880
  },
2851
2881
  "linesCount": {
2852
- "value": 708
2882
+ "value": 65
2853
2883
  },
2854
2884
  "paragraphsCount": {
2855
2885
  "value": 20
2856
2886
  },
2857
2887
  "pagesCount": {
2858
- "value": 17
2888
+ "value": 2
2859
2889
  }
2860
2890
  },
2861
2891
  "output": {
2862
2892
  "tokensCount": {
2863
- "value": 266
2893
+ "value": 2181
2864
2894
  },
2865
2895
  "charactersCount": {
2866
- "value": 1020
2896
+ "value": 3096
2867
2897
  },
2868
2898
  "wordsCount": {
2869
- "value": 135
2899
+ "value": 408
2870
2900
  },
2871
2901
  "sentencesCount": {
2872
- "value": 11
2902
+ "value": 39
2873
2903
  },
2874
2904
  "linesCount": {
2875
- "value": 30
2905
+ "value": 69
2876
2906
  },
2877
2907
  "paragraphsCount": {
2878
- "value": 2
2908
+ "value": 1
2879
2909
  },
2880
2910
  "pagesCount": {
2881
- "value": 1
2911
+ "value": 2
2882
2912
  }
2883
2913
  }
2884
2914
  }
@@ -2941,27 +2971,38 @@ function getTemplatesPipelineCollection() {
2941
2971
  "modelsRequirements": [
2942
2972
  {
2943
2973
  "modelVariant": "CHAT",
2944
- "modelName": "gpt-4",
2945
- "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.",
2946
- "temperature": 0.7
2947
- },
2948
- {
2949
- "modelVariant": "CHAT",
2950
- "modelName": "claude-3-opus-20240229",
2951
- "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.",
2952
- "temperature": 0.6
2953
- },
2954
- {
2955
- "modelVariant": "CHAT",
2956
- "modelName": "gemini-1.5-pro",
2957
- "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.",
2958
- "temperature": 0.65
2959
- },
2960
- {
2961
- "modelVariant": "CHAT",
2962
- "modelName": "gpt-3.5-turbo",
2963
- "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.",
2964
- "temperature": 0.5
2974
+ "models": [
2975
+ {
2976
+ "modelName": "gpt-4.1",
2977
+ "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.",
2978
+ "temperature": 0.7
2979
+ },
2980
+ {
2981
+ "modelName": "chatgpt-4o-latest",
2982
+ "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.",
2983
+ "temperature": 0.75
2984
+ },
2985
+ {
2986
+ "modelName": "gpt-4",
2987
+ "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.",
2988
+ "temperature": 0.7
2989
+ },
2990
+ {
2991
+ "modelName": "gpt-3.5-turbo-16k",
2992
+ "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.",
2993
+ "temperature": 0.65
2994
+ },
2995
+ {
2996
+ "modelName": "gpt-3.5-turbo-1106",
2997
+ "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.",
2998
+ "temperature": 0.6
2999
+ },
3000
+ {
3001
+ "modelName": "gpt-3.5-turbo",
3002
+ "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.",
3003
+ "temperature": 0.6
3004
+ }
3005
+ ]
2965
3006
  }
2966
3007
  ],
2967
3008
  "preparationIds": [
@@ -2972,55 +3013,55 @@ function getTemplatesPipelineCollection() {
2972
3013
  "preparations": [
2973
3014
  {
2974
3015
  "id": 1,
2975
- "promptbookVersion": "0.100.0-4",
3016
+ "promptbookVersion": "0.100.0-55",
2976
3017
  "usage": {
2977
3018
  "price": {
2978
- "value": 0.026235
3019
+ "value": 0.04264125
2979
3020
  },
2980
3021
  "input": {
2981
3022
  "tokensCount": {
2982
- "value": 8784
3023
+ "value": 5777
2983
3024
  },
2984
3025
  "charactersCount": {
2985
- "value": 42939
3026
+ "value": 2377
2986
3027
  },
2987
3028
  "wordsCount": {
2988
- "value": 5504
3029
+ "value": 348
2989
3030
  },
2990
3031
  "sentencesCount": {
2991
- "value": 424
3032
+ "value": 22
2992
3033
  },
2993
3034
  "linesCount": {
2994
- "value": 708
3035
+ "value": 65
2995
3036
  },
2996
3037
  "paragraphsCount": {
2997
3038
  "value": 20
2998
3039
  },
2999
3040
  "pagesCount": {
3000
- "value": 17
3041
+ "value": 2
3001
3042
  }
3002
3043
  },
3003
3044
  "output": {
3004
3045
  "tokensCount": {
3005
- "value": 342
3046
+ "value": 3542
3006
3047
  },
3007
3048
  "charactersCount": {
3008
- "value": 1291
3049
+ "value": 5673
3009
3050
  },
3010
3051
  "wordsCount": {
3011
- "value": 173
3052
+ "value": 821
3012
3053
  },
3013
3054
  "sentencesCount": {
3014
- "value": 16
3055
+ "value": 65
3015
3056
  },
3016
3057
  "linesCount": {
3017
- "value": 38
3058
+ "value": 112
3018
3059
  },
3019
3060
  "paragraphsCount": {
3020
- "value": 2
3061
+ "value": 1
3021
3062
  },
3022
3063
  "pagesCount": {
3023
- "value": 1
3064
+ "value": 3
3024
3065
  }
3025
3066
  }
3026
3067
  }
@@ -3068,7 +3109,7 @@ function getTemplatesPipelineCollection() {
3068
3109
  "preparations": [
3069
3110
  {
3070
3111
  "id": 1,
3071
- "promptbookVersion": "0.100.0-4",
3112
+ "promptbookVersion": "0.100.0-55",
3072
3113
  "usage": {
3073
3114
  "price": {
3074
3115
  "value": 0
@@ -3174,27 +3215,33 @@ function getTemplatesPipelineCollection() {
3174
3215
  "modelsRequirements": [
3175
3216
  {
3176
3217
  "modelVariant": "CHAT",
3177
- "modelName": "claude-3-opus-20240229",
3178
- "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.",
3179
- "temperature": 0.7
3180
- },
3181
- {
3182
- "modelVariant": "CHAT",
3183
- "modelName": "gpt-4",
3184
- "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.",
3185
- "temperature": 0.6
3186
- },
3187
- {
3188
- "modelVariant": "CHAT",
3189
- "modelName": "gemini-1.5-pro",
3190
- "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.",
3191
- "temperature": 0.7
3192
- },
3193
- {
3194
- "modelVariant": "CHAT",
3195
- "modelName": "claude-3-sonnet-20240229",
3196
- "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.",
3197
- "temperature": 0.6
3218
+ "models": [
3219
+ {
3220
+ "modelName": "gpt-4.1",
3221
+ "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.",
3222
+ "temperature": 0.3
3223
+ },
3224
+ {
3225
+ "modelName": "chatgpt-4o-latest",
3226
+ "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.",
3227
+ "temperature": 0.7
3228
+ },
3229
+ {
3230
+ "modelName": "gpt-4",
3231
+ "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.",
3232
+ "temperature": 0.35
3233
+ },
3234
+ {
3235
+ "modelName": "o4-mini",
3236
+ "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.",
3237
+ "temperature": 0.2
3238
+ },
3239
+ {
3240
+ "modelName": "gpt-3.5-turbo-16k",
3241
+ "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.",
3242
+ "temperature": 0.4
3243
+ }
3244
+ ]
3198
3245
  }
3199
3246
  ],
3200
3247
  "preparationIds": [
@@ -3205,55 +3252,55 @@ function getTemplatesPipelineCollection() {
3205
3252
  "preparations": [
3206
3253
  {
3207
3254
  "id": 1,
3208
- "promptbookVersion": "0.100.0-4",
3255
+ "promptbookVersion": "0.100.0-55",
3209
3256
  "usage": {
3210
3257
  "price": {
3211
- "value": 0.026232500000000002
3258
+ "value": 0.02966125
3212
3259
  },
3213
3260
  "input": {
3214
3261
  "tokensCount": {
3215
- "value": 8783
3262
+ "value": 5777
3216
3263
  },
3217
3264
  "charactersCount": {
3218
- "value": 42967
3265
+ "value": 2377
3219
3266
  },
3220
3267
  "wordsCount": {
3221
- "value": 5506
3268
+ "value": 348
3222
3269
  },
3223
3270
  "sentencesCount": {
3224
- "value": 424
3271
+ "value": 22
3225
3272
  },
3226
3273
  "linesCount": {
3227
- "value": 708
3274
+ "value": 65
3228
3275
  },
3229
3276
  "paragraphsCount": {
3230
3277
  "value": 20
3231
3278
  },
3232
3279
  "pagesCount": {
3233
- "value": 17
3280
+ "value": 2
3234
3281
  }
3235
3282
  },
3236
3283
  "output": {
3237
3284
  "tokensCount": {
3238
- "value": 342
3285
+ "value": 2244
3239
3286
  },
3240
3287
  "charactersCount": {
3241
- "value": 1450
3288
+ "value": 2055
3242
3289
  },
3243
3290
  "wordsCount": {
3244
- "value": 185
3291
+ "value": 256
3245
3292
  },
3246
3293
  "sentencesCount": {
3247
- "value": 16
3294
+ "value": 26
3248
3295
  },
3249
3296
  "linesCount": {
3250
- "value": 40
3297
+ "value": 52
3251
3298
  },
3252
3299
  "paragraphsCount": {
3253
- "value": 2
3300
+ "value": 1
3254
3301
  },
3255
3302
  "pagesCount": {
3256
- "value": 1
3303
+ "value": 2
3257
3304
  }
3258
3305
  }
3259
3306
  }
@@ -3324,27 +3371,28 @@ function getTemplatesPipelineCollection() {
3324
3371
  "modelsRequirements": [
3325
3372
  {
3326
3373
  "modelVariant": "CHAT",
3327
- "modelName": "claude-3-opus-20240229",
3328
- "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.",
3329
- "temperature": 0.7
3330
- },
3331
- {
3332
- "modelVariant": "CHAT",
3333
- "modelName": "gpt-4",
3334
- "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.",
3335
- "temperature": 0.6
3336
- },
3337
- {
3338
- "modelVariant": "CHAT",
3339
- "modelName": "claude-3-sonnet-20240229",
3340
- "systemMessage": "You are a knowledgeable customer service agent and creative copywriter for an ecommerce website. Help customers with questions and write appealing product descriptions.",
3341
- "temperature": 0.7
3342
- },
3343
- {
3344
- "modelVariant": "CHAT",
3345
- "modelName": "gemini-1.5-pro",
3346
- "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.",
3347
- "temperature": 0.6
3374
+ "models": [
3375
+ {
3376
+ "modelName": "gpt-4.1",
3377
+ "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.",
3378
+ "temperature": 0.5
3379
+ },
3380
+ {
3381
+ "modelName": "chatgpt-4o-latest",
3382
+ "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.",
3383
+ "temperature": 0.5
3384
+ },
3385
+ {
3386
+ "modelName": "gpt-4",
3387
+ "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.",
3388
+ "temperature": 0.5
3389
+ },
3390
+ {
3391
+ "modelName": "gpt-3.5-turbo-16k",
3392
+ "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.",
3393
+ "temperature": 0.5
3394
+ }
3395
+ ]
3348
3396
  }
3349
3397
  ],
3350
3398
  "preparationIds": [
@@ -3355,55 +3403,55 @@ function getTemplatesPipelineCollection() {
3355
3403
  "preparations": [
3356
3404
  {
3357
3405
  "id": 1,
3358
- "promptbookVersion": "0.100.0-4",
3406
+ "promptbookVersion": "0.100.0-55",
3359
3407
  "usage": {
3360
3408
  "price": {
3361
- "value": 0.025945000000000003
3409
+ "value": 0.045436250000000004
3362
3410
  },
3363
3411
  "input": {
3364
3412
  "tokensCount": {
3365
- "value": 8788
3413
+ "value": 5781
3366
3414
  },
3367
3415
  "charactersCount": {
3368
- "value": 42975
3416
+ "value": 2377
3369
3417
  },
3370
3418
  "wordsCount": {
3371
- "value": 5508
3419
+ "value": 348
3372
3420
  },
3373
3421
  "sentencesCount": {
3374
- "value": 424
3422
+ "value": 22
3375
3423
  },
3376
3424
  "linesCount": {
3377
- "value": 709
3425
+ "value": 65
3378
3426
  },
3379
3427
  "paragraphsCount": {
3380
3428
  "value": 20
3381
3429
  },
3382
3430
  "pagesCount": {
3383
- "value": 17
3431
+ "value": 2
3384
3432
  }
3385
3433
  },
3386
3434
  "output": {
3387
3435
  "tokensCount": {
3388
- "value": 318
3436
+ "value": 3821
3389
3437
  },
3390
3438
  "charactersCount": {
3391
- "value": 1264
3439
+ "value": 2473
3392
3440
  },
3393
3441
  "wordsCount": {
3394
- "value": 168
3442
+ "value": 341
3395
3443
  },
3396
3444
  "sentencesCount": {
3397
- "value": 13
3445
+ "value": 26
3398
3446
  },
3399
3447
  "linesCount": {
3400
- "value": 39
3448
+ "value": 56
3401
3449
  },
3402
3450
  "paragraphsCount": {
3403
- "value": 2
3451
+ "value": 1
3404
3452
  },
3405
3453
  "pagesCount": {
3406
- "value": 1
3454
+ "value": 2
3407
3455
  }
3408
3456
  }
3409
3457
  }
@@ -3651,21 +3699,28 @@ function getTemplatesPipelineCollection() {
3651
3699
  "modelsRequirements": [
3652
3700
  {
3653
3701
  "modelVariant": "CHAT",
3654
- "modelName": "claude-3-opus-20240229",
3655
- "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.",
3656
- "temperature": 0.3
3657
- },
3658
- {
3659
- "modelVariant": "CHAT",
3660
- "modelName": "gemini-2.5-pro-preview-03-25",
3661
- "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.",
3662
- "temperature": 0.4
3663
- },
3664
- {
3665
- "modelVariant": "CHAT",
3666
- "modelName": "gpt-4",
3667
- "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.",
3668
- "temperature": 0.5
3702
+ "models": [
3703
+ {
3704
+ "modelName": "gpt-4.1",
3705
+ "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.",
3706
+ "temperature": 0.35
3707
+ },
3708
+ {
3709
+ "modelName": "gpt-4",
3710
+ "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.",
3711
+ "temperature": 0.4
3712
+ },
3713
+ {
3714
+ "modelName": "chatgpt-4o-latest",
3715
+ "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.",
3716
+ "temperature": 0.5
3717
+ },
3718
+ {
3719
+ "modelName": "gpt-3.5-turbo-16k",
3720
+ "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.",
3721
+ "temperature": 0.6
3722
+ }
3723
+ ]
3669
3724
  }
3670
3725
  ],
3671
3726
  "preparationIds": [
@@ -3676,55 +3731,55 @@ function getTemplatesPipelineCollection() {
3676
3731
  "preparations": [
3677
3732
  {
3678
3733
  "id": 1,
3679
- "promptbookVersion": "0.100.0-4",
3734
+ "promptbookVersion": "0.100.0-55",
3680
3735
  "usage": {
3681
3736
  "price": {
3682
- "value": 0.0259225
3737
+ "value": 0.030741250000000005
3683
3738
  },
3684
3739
  "input": {
3685
3740
  "tokensCount": {
3686
- "value": 8784
3741
+ "value": 5777
3687
3742
  },
3688
3743
  "charactersCount": {
3689
- "value": 42935
3744
+ "value": 2377
3690
3745
  },
3691
3746
  "wordsCount": {
3692
- "value": 5503
3747
+ "value": 348
3693
3748
  },
3694
3749
  "sentencesCount": {
3695
- "value": 424
3750
+ "value": 22
3696
3751
  },
3697
3752
  "linesCount": {
3698
- "value": 708
3753
+ "value": 65
3699
3754
  },
3700
3755
  "paragraphsCount": {
3701
3756
  "value": 20
3702
3757
  },
3703
3758
  "pagesCount": {
3704
- "value": 17
3759
+ "value": 2
3705
3760
  }
3706
3761
  },
3707
3762
  "output": {
3708
3763
  "tokensCount": {
3709
- "value": 317
3764
+ "value": 2352
3710
3765
  },
3711
3766
  "charactersCount": {
3712
- "value": 1244
3767
+ "value": 2152
3713
3768
  },
3714
3769
  "wordsCount": {
3715
- "value": 162
3770
+ "value": 283
3716
3771
  },
3717
3772
  "sentencesCount": {
3718
- "value": 13
3773
+ "value": 25
3719
3774
  },
3720
3775
  "linesCount": {
3721
- "value": 33
3776
+ "value": 51
3722
3777
  },
3723
3778
  "paragraphsCount": {
3724
- "value": 2
3779
+ "value": 1
3725
3780
  },
3726
3781
  "pagesCount": {
3727
- "value": 1
3782
+ "value": 2
3728
3783
  }
3729
3784
  }
3730
3785
  }
@@ -3786,33 +3841,28 @@ function getTemplatesPipelineCollection() {
3786
3841
  "modelsRequirements": [
3787
3842
  {
3788
3843
  "modelVariant": "CHAT",
3789
- "modelName": "claude-3-opus-20240229",
3790
- "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.",
3791
- "temperature": 0.8
3792
- },
3793
- {
3794
- "modelVariant": "CHAT",
3795
- "modelName": "gpt-4",
3796
- "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.",
3797
- "temperature": 0.7
3798
- },
3799
- {
3800
- "modelVariant": "CHAT",
3801
- "modelName": "gemini-1.5-pro",
3802
- "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.",
3803
- "temperature": 0.7
3804
- },
3805
- {
3806
- "modelVariant": "CHAT",
3807
- "modelName": "claude-3-sonnet-20240229",
3808
- "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.",
3809
- "temperature": 0.6
3810
- },
3811
- {
3812
- "modelVariant": "CHAT",
3813
- "modelName": "gpt-3.5-turbo",
3814
- "systemMessage": "You are an experienced poet and storyteller, ready to help users with creative writing, literary discussion, and narrative techniques.",
3815
- "temperature": 0.6
3844
+ "models": [
3845
+ {
3846
+ "modelName": "gpt-4.1",
3847
+ "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.",
3848
+ "temperature": 0.95
3849
+ },
3850
+ {
3851
+ "modelName": "chatgpt-4o-latest",
3852
+ "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.",
3853
+ "temperature": 0.9
3854
+ },
3855
+ {
3856
+ "modelName": "gpt-4",
3857
+ "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.",
3858
+ "temperature": 0.85
3859
+ },
3860
+ {
3861
+ "modelName": "gpt-3.5-turbo-16k",
3862
+ "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.",
3863
+ "temperature": 0.75
3864
+ }
3865
+ ]
3816
3866
  }
3817
3867
  ],
3818
3868
  "preparationIds": [
@@ -3823,55 +3873,55 @@ function getTemplatesPipelineCollection() {
3823
3873
  "preparations": [
3824
3874
  {
3825
3875
  "id": 1,
3826
- "promptbookVersion": "0.100.0-4",
3876
+ "promptbookVersion": "0.100.0-55",
3827
3877
  "usage": {
3828
3878
  "price": {
3829
- "value": 0.02687
3879
+ "value": 0.03003
3830
3880
  },
3831
3881
  "input": {
3832
3882
  "tokensCount": {
3833
- "value": 8783
3883
+ "value": 5776
3834
3884
  },
3835
3885
  "charactersCount": {
3836
- "value": 42947
3886
+ "value": 2377
3837
3887
  },
3838
3888
  "wordsCount": {
3839
- "value": 5505
3889
+ "value": 348
3840
3890
  },
3841
3891
  "sentencesCount": {
3842
- "value": 424
3892
+ "value": 22
3843
3893
  },
3844
3894
  "linesCount": {
3845
- "value": 708
3895
+ "value": 65
3846
3896
  },
3847
3897
  "paragraphsCount": {
3848
3898
  "value": 20
3849
3899
  },
3850
3900
  "pagesCount": {
3851
- "value": 17
3901
+ "value": 2
3852
3902
  }
3853
3903
  },
3854
3904
  "output": {
3855
3905
  "tokensCount": {
3856
- "value": 393
3906
+ "value": 2281
3857
3907
  },
3858
3908
  "charactersCount": {
3859
- "value": 1497
3909
+ "value": 1572
3860
3910
  },
3861
3911
  "wordsCount": {
3862
- "value": 204
3912
+ "value": 209
3863
3913
  },
3864
3914
  "sentencesCount": {
3865
- "value": 17
3915
+ "value": 19
3866
3916
  },
3867
3917
  "linesCount": {
3868
- "value": 45
3918
+ "value": 42
3869
3919
  },
3870
3920
  "paragraphsCount": {
3871
- "value": 2
3921
+ "value": 1
3872
3922
  },
3873
3923
  "pagesCount": {
3874
- "value": 2
3924
+ "value": 1
3875
3925
  }
3876
3926
  }
3877
3927
  }