@promptbook/templates 0.100.0-6 → 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 +345 -283
  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 +349 -287
  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-6';
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,21 +1542,38 @@ 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 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
+ ]
1552
1577
  }
1553
1578
  ],
1554
1579
  "preparationIds": [
@@ -1559,55 +1584,55 @@ function getTemplatesPipelineCollection() {
1559
1584
  "preparations": [
1560
1585
  {
1561
1586
  "id": 1,
1562
- "promptbookVersion": "0.100.0-5",
1587
+ "promptbookVersion": "0.100.0-55",
1563
1588
  "usage": {
1564
1589
  "price": {
1565
- "value": 0.0256375
1590
+ "value": 0.0308725
1566
1591
  },
1567
1592
  "input": {
1568
1593
  "tokensCount": {
1569
- "value": 8625
1594
+ "value": 5778
1570
1595
  },
1571
1596
  "charactersCount": {
1572
- "value": 42100
1597
+ "value": 2377
1573
1598
  },
1574
1599
  "wordsCount": {
1575
- "value": 5402
1600
+ "value": 348
1576
1601
  },
1577
1602
  "sentencesCount": {
1578
- "value": 416
1603
+ "value": 22
1579
1604
  },
1580
1605
  "linesCount": {
1581
- "value": 695
1606
+ "value": 65
1582
1607
  },
1583
1608
  "paragraphsCount": {
1584
1609
  "value": 20
1585
1610
  },
1586
1611
  "pagesCount": {
1587
- "value": 16
1612
+ "value": 2
1588
1613
  }
1589
1614
  },
1590
1615
  "output": {
1591
1616
  "tokensCount": {
1592
- "value": 326
1617
+ "value": 2365
1593
1618
  },
1594
1619
  "charactersCount": {
1595
- "value": 1417
1620
+ "value": 1560
1596
1621
  },
1597
1622
  "wordsCount": {
1598
1623
  "value": 195
1599
1624
  },
1600
1625
  "sentencesCount": {
1601
- "value": 14
1626
+ "value": 23
1602
1627
  },
1603
1628
  "linesCount": {
1604
- "value": 36
1629
+ "value": 48
1605
1630
  },
1606
1631
  "paragraphsCount": {
1607
- "value": 2
1632
+ "value": 1
1608
1633
  },
1609
1634
  "pagesCount": {
1610
- "value": 1
1635
+ "value": 2
1611
1636
  }
1612
1637
  }
1613
1638
  }
@@ -2087,21 +2112,38 @@ function getTemplatesPipelineCollection() {
2087
2112
  "modelsRequirements": [
2088
2113
  {
2089
2114
  "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
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
+ ]
2105
2147
  }
2106
2148
  ],
2107
2149
  "preparationIds": [
@@ -2112,55 +2154,55 @@ function getTemplatesPipelineCollection() {
2112
2154
  "preparations": [
2113
2155
  {
2114
2156
  "id": 1,
2115
- "promptbookVersion": "0.100.0-5",
2157
+ "promptbookVersion": "0.100.0-55",
2116
2158
  "usage": {
2117
2159
  "price": {
2118
- "value": 0.0256375
2160
+ "value": 0.0308725
2119
2161
  },
2120
2162
  "input": {
2121
2163
  "tokensCount": {
2122
- "value": 8625
2164
+ "value": 5778
2123
2165
  },
2124
2166
  "charactersCount": {
2125
- "value": 42100
2167
+ "value": 2377
2126
2168
  },
2127
2169
  "wordsCount": {
2128
- "value": 5402
2170
+ "value": 348
2129
2171
  },
2130
2172
  "sentencesCount": {
2131
- "value": 416
2173
+ "value": 22
2132
2174
  },
2133
2175
  "linesCount": {
2134
- "value": 695
2176
+ "value": 65
2135
2177
  },
2136
2178
  "paragraphsCount": {
2137
2179
  "value": 20
2138
2180
  },
2139
2181
  "pagesCount": {
2140
- "value": 16
2182
+ "value": 2
2141
2183
  }
2142
2184
  },
2143
2185
  "output": {
2144
2186
  "tokensCount": {
2145
- "value": 326
2187
+ "value": 2365
2146
2188
  },
2147
2189
  "charactersCount": {
2148
- "value": 1417
2190
+ "value": 1560
2149
2191
  },
2150
2192
  "wordsCount": {
2151
2193
  "value": 195
2152
2194
  },
2153
2195
  "sentencesCount": {
2154
- "value": 14
2196
+ "value": 23
2155
2197
  },
2156
2198
  "linesCount": {
2157
- "value": 36
2199
+ "value": 48
2158
2200
  },
2159
2201
  "paragraphsCount": {
2160
- "value": 2
2202
+ "value": 1
2161
2203
  },
2162
2204
  "pagesCount": {
2163
- "value": 1
2205
+ "value": 2
2164
2206
  }
2165
2207
  }
2166
2208
  }
@@ -2781,27 +2823,33 @@ function getTemplatesPipelineCollection() {
2781
2823
  "modelsRequirements": [
2782
2824
  {
2783
2825
  "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
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
+ ]
2805
2853
  }
2806
2854
  ],
2807
2855
  "preparationIds": [
@@ -2812,55 +2860,55 @@ function getTemplatesPipelineCollection() {
2812
2860
  "preparations": [
2813
2861
  {
2814
2862
  "id": 1,
2815
- "promptbookVersion": "0.100.0-5",
2863
+ "promptbookVersion": "0.100.0-55",
2816
2864
  "usage": {
2817
2865
  "price": {
2818
- "value": 0.025010000000000004
2866
+ "value": 0.02903125
2819
2867
  },
2820
2868
  "input": {
2821
2869
  "tokensCount": {
2822
- "value": 8624
2870
+ "value": 5777
2823
2871
  },
2824
2872
  "charactersCount": {
2825
- "value": 42087
2873
+ "value": 2377
2826
2874
  },
2827
2875
  "wordsCount": {
2828
- "value": 5400
2876
+ "value": 348
2829
2877
  },
2830
2878
  "sentencesCount": {
2831
- "value": 416
2879
+ "value": 22
2832
2880
  },
2833
2881
  "linesCount": {
2834
- "value": 695
2882
+ "value": 65
2835
2883
  },
2836
2884
  "paragraphsCount": {
2837
2885
  "value": 20
2838
2886
  },
2839
2887
  "pagesCount": {
2840
- "value": 16
2888
+ "value": 2
2841
2889
  }
2842
2890
  },
2843
2891
  "output": {
2844
2892
  "tokensCount": {
2845
- "value": 276
2893
+ "value": 2181
2846
2894
  },
2847
2895
  "charactersCount": {
2848
- "value": 977
2896
+ "value": 3096
2849
2897
  },
2850
2898
  "wordsCount": {
2851
- "value": 124
2899
+ "value": 408
2852
2900
  },
2853
2901
  "sentencesCount": {
2854
- "value": 14
2902
+ "value": 39
2855
2903
  },
2856
2904
  "linesCount": {
2857
- "value": 34
2905
+ "value": 69
2858
2906
  },
2859
2907
  "paragraphsCount": {
2860
- "value": 2
2908
+ "value": 1
2861
2909
  },
2862
2910
  "pagesCount": {
2863
- "value": 1
2911
+ "value": 2
2864
2912
  }
2865
2913
  }
2866
2914
  }
@@ -2923,21 +2971,38 @@ function getTemplatesPipelineCollection() {
2923
2971
  "modelsRequirements": [
2924
2972
  {
2925
2973
  "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
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
+ ]
2941
3006
  }
2942
3007
  ],
2943
3008
  "preparationIds": [
@@ -2948,55 +3013,55 @@ function getTemplatesPipelineCollection() {
2948
3013
  "preparations": [
2949
3014
  {
2950
3015
  "id": 1,
2951
- "promptbookVersion": "0.100.0-5",
3016
+ "promptbookVersion": "0.100.0-55",
2952
3017
  "usage": {
2953
3018
  "price": {
2954
- "value": 0.025372500000000003
3019
+ "value": 0.04264125
2955
3020
  },
2956
3021
  "input": {
2957
3022
  "tokensCount": {
2958
- "value": 8624
3023
+ "value": 5777
2959
3024
  },
2960
3025
  "charactersCount": {
2961
- "value": 42091
3026
+ "value": 2377
2962
3027
  },
2963
3028
  "wordsCount": {
2964
- "value": 5400
3029
+ "value": 348
2965
3030
  },
2966
3031
  "sentencesCount": {
2967
- "value": 416
3032
+ "value": 22
2968
3033
  },
2969
3034
  "linesCount": {
2970
- "value": 695
3035
+ "value": 65
2971
3036
  },
2972
3037
  "paragraphsCount": {
2973
3038
  "value": 20
2974
3039
  },
2975
3040
  "pagesCount": {
2976
- "value": 16
3041
+ "value": 2
2977
3042
  }
2978
3043
  },
2979
3044
  "output": {
2980
3045
  "tokensCount": {
2981
- "value": 305
3046
+ "value": 3542
2982
3047
  },
2983
3048
  "charactersCount": {
2984
- "value": 1249
3049
+ "value": 5673
2985
3050
  },
2986
3051
  "wordsCount": {
2987
- "value": 173
3052
+ "value": 821
2988
3053
  },
2989
3054
  "sentencesCount": {
2990
- "value": 14
3055
+ "value": 65
2991
3056
  },
2992
3057
  "linesCount": {
2993
- "value": 34
3058
+ "value": 112
2994
3059
  },
2995
3060
  "paragraphsCount": {
2996
- "value": 2
3061
+ "value": 1
2997
3062
  },
2998
3063
  "pagesCount": {
2999
- "value": 1
3064
+ "value": 3
3000
3065
  }
3001
3066
  }
3002
3067
  }
@@ -3044,7 +3109,7 @@ function getTemplatesPipelineCollection() {
3044
3109
  "preparations": [
3045
3110
  {
3046
3111
  "id": 1,
3047
- "promptbookVersion": "0.100.0-5",
3112
+ "promptbookVersion": "0.100.0-55",
3048
3113
  "usage": {
3049
3114
  "price": {
3050
3115
  "value": 0
@@ -3150,27 +3215,33 @@ function getTemplatesPipelineCollection() {
3150
3215
  "modelsRequirements": [
3151
3216
  {
3152
3217
  "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
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
+ ]
3174
3245
  }
3175
3246
  ],
3176
3247
  "preparationIds": [
@@ -3181,55 +3252,55 @@ function getTemplatesPipelineCollection() {
3181
3252
  "preparations": [
3182
3253
  {
3183
3254
  "id": 1,
3184
- "promptbookVersion": "0.100.0-5",
3255
+ "promptbookVersion": "0.100.0-55",
3185
3256
  "usage": {
3186
3257
  "price": {
3187
- "value": 0.0258575
3258
+ "value": 0.02966125
3188
3259
  },
3189
3260
  "input": {
3190
3261
  "tokensCount": {
3191
- "value": 8623
3262
+ "value": 5777
3192
3263
  },
3193
3264
  "charactersCount": {
3194
- "value": 42119
3265
+ "value": 2377
3195
3266
  },
3196
3267
  "wordsCount": {
3197
- "value": 5402
3268
+ "value": 348
3198
3269
  },
3199
3270
  "sentencesCount": {
3200
- "value": 416
3271
+ "value": 22
3201
3272
  },
3202
3273
  "linesCount": {
3203
- "value": 695
3274
+ "value": 65
3204
3275
  },
3205
3276
  "paragraphsCount": {
3206
3277
  "value": 20
3207
3278
  },
3208
3279
  "pagesCount": {
3209
- "value": 16
3280
+ "value": 2
3210
3281
  }
3211
3282
  },
3212
3283
  "output": {
3213
3284
  "tokensCount": {
3214
- "value": 344
3285
+ "value": 2244
3215
3286
  },
3216
3287
  "charactersCount": {
3217
- "value": 1443
3288
+ "value": 2055
3218
3289
  },
3219
3290
  "wordsCount": {
3220
- "value": 186
3291
+ "value": 256
3221
3292
  },
3222
3293
  "sentencesCount": {
3223
- "value": 16
3294
+ "value": 26
3224
3295
  },
3225
3296
  "linesCount": {
3226
- "value": 41
3297
+ "value": 52
3227
3298
  },
3228
3299
  "paragraphsCount": {
3229
- "value": 2
3300
+ "value": 1
3230
3301
  },
3231
3302
  "pagesCount": {
3232
- "value": 1
3303
+ "value": 2
3233
3304
  }
3234
3305
  }
3235
3306
  }
@@ -3300,33 +3371,28 @@ function getTemplatesPipelineCollection() {
3300
3371
  "modelsRequirements": [
3301
3372
  {
3302
3373
  "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
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
+ ]
3330
3396
  }
3331
3397
  ],
3332
3398
  "preparationIds": [
@@ -3337,52 +3403,52 @@ function getTemplatesPipelineCollection() {
3337
3403
  "preparations": [
3338
3404
  {
3339
3405
  "id": 1,
3340
- "promptbookVersion": "0.100.0-5",
3406
+ "promptbookVersion": "0.100.0-55",
3341
3407
  "usage": {
3342
3408
  "price": {
3343
- "value": 0.0265325
3409
+ "value": 0.045436250000000004
3344
3410
  },
3345
3411
  "input": {
3346
3412
  "tokensCount": {
3347
- "value": 8628
3413
+ "value": 5781
3348
3414
  },
3349
3415
  "charactersCount": {
3350
- "value": 42127
3416
+ "value": 2377
3351
3417
  },
3352
3418
  "wordsCount": {
3353
- "value": 5404
3419
+ "value": 348
3354
3420
  },
3355
3421
  "sentencesCount": {
3356
- "value": 416
3422
+ "value": 22
3357
3423
  },
3358
3424
  "linesCount": {
3359
- "value": 696
3425
+ "value": 65
3360
3426
  },
3361
3427
  "paragraphsCount": {
3362
3428
  "value": 20
3363
3429
  },
3364
3430
  "pagesCount": {
3365
- "value": 16
3431
+ "value": 2
3366
3432
  }
3367
3433
  },
3368
3434
  "output": {
3369
3435
  "tokensCount": {
3370
- "value": 397
3436
+ "value": 3821
3371
3437
  },
3372
3438
  "charactersCount": {
3373
- "value": 1589
3439
+ "value": 2473
3374
3440
  },
3375
3441
  "wordsCount": {
3376
- "value": 214
3442
+ "value": 341
3377
3443
  },
3378
3444
  "sentencesCount": {
3379
- "value": 18
3445
+ "value": 26
3380
3446
  },
3381
3447
  "linesCount": {
3382
- "value": 47
3448
+ "value": 56
3383
3449
  },
3384
3450
  "paragraphsCount": {
3385
- "value": 2
3451
+ "value": 1
3386
3452
  },
3387
3453
  "pagesCount": {
3388
3454
  "value": 2
@@ -3633,27 +3699,28 @@ function getTemplatesPipelineCollection() {
3633
3699
  "modelsRequirements": [
3634
3700
  {
3635
3701
  "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
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
+ ]
3657
3724
  }
3658
3725
  ],
3659
3726
  "preparationIds": [
@@ -3664,55 +3731,55 @@ function getTemplatesPipelineCollection() {
3664
3731
  "preparations": [
3665
3732
  {
3666
3733
  "id": 1,
3667
- "promptbookVersion": "0.100.0-5",
3734
+ "promptbookVersion": "0.100.0-55",
3668
3735
  "usage": {
3669
3736
  "price": {
3670
- "value": 0.026310000000000004
3737
+ "value": 0.030741250000000005
3671
3738
  },
3672
3739
  "input": {
3673
3740
  "tokensCount": {
3674
- "value": 8624
3741
+ "value": 5777
3675
3742
  },
3676
3743
  "charactersCount": {
3677
- "value": 42087
3744
+ "value": 2377
3678
3745
  },
3679
3746
  "wordsCount": {
3680
- "value": 5399
3747
+ "value": 348
3681
3748
  },
3682
3749
  "sentencesCount": {
3683
- "value": 416
3750
+ "value": 22
3684
3751
  },
3685
3752
  "linesCount": {
3686
- "value": 695
3753
+ "value": 65
3687
3754
  },
3688
3755
  "paragraphsCount": {
3689
3756
  "value": 20
3690
3757
  },
3691
3758
  "pagesCount": {
3692
- "value": 16
3759
+ "value": 2
3693
3760
  }
3694
3761
  },
3695
3762
  "output": {
3696
3763
  "tokensCount": {
3697
- "value": 380
3764
+ "value": 2352
3698
3765
  },
3699
3766
  "charactersCount": {
3700
- "value": 1449
3767
+ "value": 2152
3701
3768
  },
3702
3769
  "wordsCount": {
3703
- "value": 190
3770
+ "value": 283
3704
3771
  },
3705
3772
  "sentencesCount": {
3706
- "value": 17
3773
+ "value": 25
3707
3774
  },
3708
3775
  "linesCount": {
3709
- "value": 40
3776
+ "value": 51
3710
3777
  },
3711
3778
  "paragraphsCount": {
3712
- "value": 2
3779
+ "value": 1
3713
3780
  },
3714
3781
  "pagesCount": {
3715
- "value": 1
3782
+ "value": 2
3716
3783
  }
3717
3784
  }
3718
3785
  }
@@ -3774,33 +3841,28 @@ function getTemplatesPipelineCollection() {
3774
3841
  "modelsRequirements": [
3775
3842
  {
3776
3843
  "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
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
+ ]
3804
3866
  }
3805
3867
  ],
3806
3868
  "preparationIds": [
@@ -3811,55 +3873,55 @@ function getTemplatesPipelineCollection() {
3811
3873
  "preparations": [
3812
3874
  {
3813
3875
  "id": 1,
3814
- "promptbookVersion": "0.100.0-5",
3876
+ "promptbookVersion": "0.100.0-55",
3815
3877
  "usage": {
3816
3878
  "price": {
3817
- "value": 0.0266075
3879
+ "value": 0.03003
3818
3880
  },
3819
3881
  "input": {
3820
3882
  "tokensCount": {
3821
- "value": 8623
3883
+ "value": 5776
3822
3884
  },
3823
3885
  "charactersCount": {
3824
- "value": 42099
3886
+ "value": 2377
3825
3887
  },
3826
3888
  "wordsCount": {
3827
- "value": 5401
3889
+ "value": 348
3828
3890
  },
3829
3891
  "sentencesCount": {
3830
- "value": 416
3892
+ "value": 22
3831
3893
  },
3832
3894
  "linesCount": {
3833
- "value": 695
3895
+ "value": 65
3834
3896
  },
3835
3897
  "paragraphsCount": {
3836
3898
  "value": 20
3837
3899
  },
3838
3900
  "pagesCount": {
3839
- "value": 16
3901
+ "value": 2
3840
3902
  }
3841
3903
  },
3842
3904
  "output": {
3843
3905
  "tokensCount": {
3844
- "value": 404
3906
+ "value": 2281
3845
3907
  },
3846
3908
  "charactersCount": {
3847
- "value": 1485
3909
+ "value": 1572
3848
3910
  },
3849
3911
  "wordsCount": {
3850
- "value": 204
3912
+ "value": 209
3851
3913
  },
3852
3914
  "sentencesCount": {
3853
- "value": 18
3915
+ "value": 19
3854
3916
  },
3855
3917
  "linesCount": {
3856
- "value": 46
3918
+ "value": 42
3857
3919
  },
3858
3920
  "paragraphsCount": {
3859
- "value": 2
3921
+ "value": 1
3860
3922
  },
3861
3923
  "pagesCount": {
3862
- "value": 2
3924
+ "value": 1
3863
3925
  }
3864
3926
  }
3865
3927
  }