@promptbook/templates 0.100.0-8 → 0.100.0

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