@promptbook/templates 0.100.0-3 → 0.100.0-31

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 (59) hide show
  1. package/README.md +1 -0
  2. package/esm/index.es.js +257 -197
  3. package/esm/index.es.js.map +1 -1
  4. package/esm/typings/src/_packages/components.index.d.ts +4 -0
  5. package/esm/typings/src/_packages/core.index.d.ts +24 -0
  6. package/esm/typings/src/_packages/types.index.d.ts +30 -0
  7. package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +30 -0
  8. package/esm/typings/src/book-2.0/agent-source/parseAgentSource.test.d.ts +1 -0
  9. package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +26 -0
  10. package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +38 -0
  11. package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +39 -0
  12. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/FrontendRAGService.d.ts +48 -0
  13. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +51 -0
  14. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/RAGService.d.ts +54 -0
  15. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/BaseKnowledgeProcessor.d.ts +45 -0
  16. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/PdfProcessor.d.ts +31 -0
  17. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/ProcessorFactory.d.ts +23 -0
  18. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/TextProcessor.d.ts +18 -0
  19. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/types.d.ts +56 -0
  20. package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/utils/ragHelper.d.ts +34 -0
  21. package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +44 -0
  22. package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +56 -0
  23. package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +39 -0
  24. package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +49 -0
  25. package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +46 -0
  26. package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +44 -0
  27. package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +44 -0
  28. package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +38 -0
  29. package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +52 -0
  30. package/esm/typings/src/book-2.0/commitments/_base/BookCommitment.d.ts +5 -0
  31. package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +48 -0
  32. package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +22 -0
  33. package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +19 -0
  34. package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +37 -0
  35. package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +18 -0
  36. package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +22 -0
  37. package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirements.d.ts +61 -0
  38. package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirementsWithCommitments.d.ts +35 -0
  39. package/esm/typings/src/book-2.0/commitments/_misc/createCommitmentRegex.d.ts +20 -0
  40. package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +24 -0
  41. package/esm/typings/src/book-2.0/commitments/_misc/removeCommentsFromSystemMessage.d.ts +11 -0
  42. package/esm/typings/src/book-2.0/commitments/index.d.ts +56 -0
  43. package/esm/typings/src/book-2.0/utils/profileImageUtils.d.ts +39 -0
  44. package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +26 -0
  45. package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
  46. package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +6 -1
  47. package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +0 -5
  48. package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
  49. package/esm/typings/src/llm-providers/deepseek/deepseek-models.d.ts +1 -1
  50. package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
  51. package/esm/typings/src/llm-providers/ollama/ollama-models.d.ts +1 -1
  52. package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
  53. package/esm/typings/src/pipeline/book-notation.d.ts +2 -1
  54. package/esm/typings/src/types/ModelRequirements.d.ts +0 -2
  55. package/esm/typings/src/types/typeAliases.d.ts +6 -0
  56. package/esm/typings/src/version.d.ts +1 -1
  57. package/package.json +2 -2
  58. package/umd/index.umd.js +257 -197
  59. package/umd/index.umd.js.map +1 -1
package/esm/index.es.js CHANGED
@@ -16,7 +16,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
16
16
  * @generated
17
17
  * @see https://github.com/webgptorg/promptbook
18
18
  */
19
- const PROMPTBOOK_ENGINE_VERSION = '0.100.0-3';
19
+ const PROMPTBOOK_ENGINE_VERSION = '0.100.0-31';
20
20
  /**
21
21
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
22
22
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -1534,33 +1534,39 @@ function getTemplatesPipelineCollection() {
1534
1534
  "modelsRequirements": [
1535
1535
  {
1536
1536
  "modelVariant": "CHAT",
1537
- "modelName": "gpt-4",
1538
- "systemMessage": "You are an AI assistant for a developer of the Promptbook Project. You have expertise in AI, software development, and project management. Provide accurate, helpful information and assist with coding, documentation, and problem-solving tasks.",
1539
- "temperature": 0.7
1537
+ "modelName": "gpt-4.1",
1538
+ "systemMessage": "You are a skilled developer working on the Promptbook Project, experienced in AI prompt engineering, model integration, and conversational AI development. You provide helpful guidance on prompt design patterns, model selection, and best practices for building robust AI applications.",
1539
+ "temperature": 0.3
1540
1540
  },
1541
1541
  {
1542
1542
  "modelVariant": "CHAT",
1543
- "modelName": "claude-3-opus-20240229",
1544
- "systemMessage": "As an AI assistant for a Promptbook Project developer, you possess deep knowledge of AI technologies, software development practices, and project management. Offer insightful assistance for coding, documentation, and complex problem-solving related to the project.",
1545
- "temperature": 0.6
1543
+ "modelName": "claude-opus-4-1-20250805",
1544
+ "systemMessage": "You are an expert developer specializing in the Promptbook Project. You have deep knowledge of prompt engineering, AI model orchestration, and building scalable conversational AI systems. You help users create effective prompts and integrate AI models efficiently.",
1545
+ "temperature": 0.4
1546
1546
  },
1547
1547
  {
1548
1548
  "modelVariant": "CHAT",
1549
- "modelName": "gemini-1.5-pro",
1550
- "systemMessage": "You are an AI assistant designed to support a developer working on the Promptbook Project. Your knowledge spans AI, software engineering, and project management. Provide clear, concise help with coding tasks, documentation, and technical problem-solving.",
1549
+ "modelName": "gemini-2.5-pro",
1550
+ "systemMessage": "You are a developer working on the Promptbook Project with expertise in AI prompt engineering and model integration. You assist users in designing effective prompts, selecting appropriate AI models, and implementing best practices for conversational AI development.",
1551
1551
  "temperature": 0.5
1552
1552
  },
1553
1553
  {
1554
1554
  "modelVariant": "CHAT",
1555
- "modelName": "deepseek-coder",
1556
- "systemMessage": "As an AI coding assistant for the Promptbook Project, you specialize in software development and AI technologies. Offer expert guidance on coding practices, debugging, and implementing AI-related features for the project.",
1555
+ "modelName": "deepseek-chat",
1556
+ "systemMessage": "You are a knowledgeable developer of the Promptbook Project, specializing in prompt engineering and AI model integration. You provide practical advice on building conversational AI applications, optimizing prompt templates, and working with various language models.",
1557
1557
  "temperature": 0.4
1558
1558
  },
1559
1559
  {
1560
1560
  "modelVariant": "CHAT",
1561
- "modelName": "gpt-3.5-turbo-16k",
1562
- "systemMessage": "You are a helpful AI assistant for a developer working on the Promptbook Project. Provide support with coding, documentation, and general software development tasks. Offer clear explanations and suggestions to aid in project development.",
1561
+ "modelName": "claude-3-5-haiku-20241022",
1562
+ "systemMessage": "You are a developer working on the Promptbook Project with focus on efficient AI implementations. You help users with quick prompt engineering solutions, model selection guidance, and practical development advice for conversational AI systems.",
1563
1563
  "temperature": 0.6
1564
+ },
1565
+ {
1566
+ "modelVariant": "CHAT",
1567
+ "modelName": "gemini-2.5-flash",
1568
+ "systemMessage": "You are an experienced Promptbook Project developer who helps users create effective AI prompts and integrate language models. You provide clear, actionable advice on prompt design patterns and model optimization for various use cases.",
1569
+ "temperature": 0.5
1564
1570
  }
1565
1571
  ],
1566
1572
  "preparationIds": [
@@ -1571,52 +1577,52 @@ function getTemplatesPipelineCollection() {
1571
1577
  "preparations": [
1572
1578
  {
1573
1579
  "id": 1,
1574
- "promptbookVersion": "0.100.0-2",
1580
+ "promptbookVersion": "0.100.0-30",
1575
1581
  "usage": {
1576
1582
  "price": {
1577
- "value": 0.028037500000000003
1583
+ "value": 0.038721
1578
1584
  },
1579
1585
  "input": {
1580
1586
  "tokensCount": {
1581
- "value": 8785
1587
+ "value": 10337
1582
1588
  },
1583
1589
  "charactersCount": {
1584
- "value": 42948
1590
+ "value": 51055
1585
1591
  },
1586
1592
  "wordsCount": {
1587
- "value": 5506
1593
+ "value": 6575
1588
1594
  },
1589
1595
  "sentencesCount": {
1590
- "value": 424
1596
+ "value": 505
1591
1597
  },
1592
1598
  "linesCount": {
1593
- "value": 708
1599
+ "value": 837
1594
1600
  },
1595
1601
  "paragraphsCount": {
1596
1602
  "value": 20
1597
1603
  },
1598
1604
  "pagesCount": {
1599
- "value": 17
1605
+ "value": 20
1600
1606
  }
1601
1607
  },
1602
1608
  "output": {
1603
1609
  "tokensCount": {
1604
- "value": 486
1610
+ "value": 514
1605
1611
  },
1606
1612
  "charactersCount": {
1607
- "value": 1970
1613
+ "value": 2136
1608
1614
  },
1609
1615
  "wordsCount": {
1610
- "value": 272
1616
+ "value": 282
1611
1617
  },
1612
1618
  "sentencesCount": {
1613
1619
  "value": 23
1614
1620
  },
1615
1621
  "linesCount": {
1616
- "value": 53
1622
+ "value": 58
1617
1623
  },
1618
1624
  "paragraphsCount": {
1619
- "value": 2
1625
+ "value": 1
1620
1626
  },
1621
1627
  "pagesCount": {
1622
1628
  "value": 2
@@ -2099,33 +2105,39 @@ function getTemplatesPipelineCollection() {
2099
2105
  "modelsRequirements": [
2100
2106
  {
2101
2107
  "modelVariant": "CHAT",
2102
- "modelName": "gpt-4",
2103
- "systemMessage": "You are an AI assistant for a developer of the Promptbook Project. You have expertise in AI, software development, and project management. Provide accurate, helpful information and assist with coding, documentation, and problem-solving tasks.",
2104
- "temperature": 0.7
2108
+ "modelName": "gpt-4.1",
2109
+ "systemMessage": "You are a skilled developer working on the Promptbook Project, experienced in AI prompt engineering, model integration, and conversational AI development. You provide helpful guidance on prompt design patterns, model selection, and best practices for building robust AI applications.",
2110
+ "temperature": 0.3
2105
2111
  },
2106
2112
  {
2107
2113
  "modelVariant": "CHAT",
2108
- "modelName": "claude-3-opus-20240229",
2109
- "systemMessage": "As an AI assistant for a Promptbook Project developer, you possess deep knowledge of AI technologies, software development practices, and project management. Offer insightful assistance for coding, documentation, and complex problem-solving related to the project.",
2110
- "temperature": 0.6
2114
+ "modelName": "claude-opus-4-1-20250805",
2115
+ "systemMessage": "You are an expert developer specializing in the Promptbook Project. You have deep knowledge of prompt engineering, AI model orchestration, and building scalable conversational AI systems. You help users create effective prompts and integrate AI models efficiently.",
2116
+ "temperature": 0.4
2111
2117
  },
2112
2118
  {
2113
2119
  "modelVariant": "CHAT",
2114
- "modelName": "gemini-1.5-pro",
2115
- "systemMessage": "You are an AI assistant designed to support a developer working on the Promptbook Project. Your knowledge spans AI, software engineering, and project management. Provide clear, concise help with coding tasks, documentation, and technical problem-solving.",
2120
+ "modelName": "gemini-2.5-pro",
2121
+ "systemMessage": "You are a developer working on the Promptbook Project with expertise in AI prompt engineering and model integration. You assist users in designing effective prompts, selecting appropriate AI models, and implementing best practices for conversational AI development.",
2116
2122
  "temperature": 0.5
2117
2123
  },
2118
2124
  {
2119
2125
  "modelVariant": "CHAT",
2120
- "modelName": "deepseek-coder",
2121
- "systemMessage": "As an AI coding assistant for the Promptbook Project, you specialize in software development and AI technologies. Offer expert guidance on coding practices, debugging, and implementing AI-related features for the project.",
2126
+ "modelName": "deepseek-chat",
2127
+ "systemMessage": "You are a knowledgeable developer of the Promptbook Project, specializing in prompt engineering and AI model integration. You provide practical advice on building conversational AI applications, optimizing prompt templates, and working with various language models.",
2122
2128
  "temperature": 0.4
2123
2129
  },
2124
2130
  {
2125
2131
  "modelVariant": "CHAT",
2126
- "modelName": "gpt-3.5-turbo-16k",
2127
- "systemMessage": "You are a helpful AI assistant for a developer working on the Promptbook Project. Provide support with coding, documentation, and general software development tasks. Offer clear explanations and suggestions to aid in project development.",
2132
+ "modelName": "claude-3-5-haiku-20241022",
2133
+ "systemMessage": "You are a developer working on the Promptbook Project with focus on efficient AI implementations. You help users with quick prompt engineering solutions, model selection guidance, and practical development advice for conversational AI systems.",
2128
2134
  "temperature": 0.6
2135
+ },
2136
+ {
2137
+ "modelVariant": "CHAT",
2138
+ "modelName": "gemini-2.5-flash",
2139
+ "systemMessage": "You are an experienced Promptbook Project developer who helps users create effective AI prompts and integrate language models. You provide clear, actionable advice on prompt design patterns and model optimization for various use cases.",
2140
+ "temperature": 0.5
2129
2141
  }
2130
2142
  ],
2131
2143
  "preparationIds": [
@@ -2136,52 +2148,52 @@ function getTemplatesPipelineCollection() {
2136
2148
  "preparations": [
2137
2149
  {
2138
2150
  "id": 1,
2139
- "promptbookVersion": "0.100.0-2",
2151
+ "promptbookVersion": "0.100.0-30",
2140
2152
  "usage": {
2141
2153
  "price": {
2142
- "value": 0.028037500000000003
2154
+ "value": 0.038721
2143
2155
  },
2144
2156
  "input": {
2145
2157
  "tokensCount": {
2146
- "value": 8785
2158
+ "value": 10337
2147
2159
  },
2148
2160
  "charactersCount": {
2149
- "value": 42948
2161
+ "value": 51055
2150
2162
  },
2151
2163
  "wordsCount": {
2152
- "value": 5506
2164
+ "value": 6575
2153
2165
  },
2154
2166
  "sentencesCount": {
2155
- "value": 424
2167
+ "value": 505
2156
2168
  },
2157
2169
  "linesCount": {
2158
- "value": 708
2170
+ "value": 837
2159
2171
  },
2160
2172
  "paragraphsCount": {
2161
2173
  "value": 20
2162
2174
  },
2163
2175
  "pagesCount": {
2164
- "value": 17
2176
+ "value": 20
2165
2177
  }
2166
2178
  },
2167
2179
  "output": {
2168
2180
  "tokensCount": {
2169
- "value": 486
2181
+ "value": 514
2170
2182
  },
2171
2183
  "charactersCount": {
2172
- "value": 1970
2184
+ "value": 2136
2173
2185
  },
2174
2186
  "wordsCount": {
2175
- "value": 272
2187
+ "value": 282
2176
2188
  },
2177
2189
  "sentencesCount": {
2178
2190
  "value": 23
2179
2191
  },
2180
2192
  "linesCount": {
2181
- "value": 53
2193
+ "value": 58
2182
2194
  },
2183
2195
  "paragraphsCount": {
2184
- "value": 2
2196
+ "value": 1
2185
2197
  },
2186
2198
  "pagesCount": {
2187
2199
  "value": 2
@@ -2805,21 +2817,33 @@ function getTemplatesPipelineCollection() {
2805
2817
  "modelsRequirements": [
2806
2818
  {
2807
2819
  "modelVariant": "CHAT",
2808
- "modelName": "claude-3-opus-20240229",
2809
- "systemMessage": "You are an expert linguist and meticulous corrector. Analyze text for grammatical, spelling, and stylistic issues. Provide clear explanations and corrections to improve writing quality.",
2820
+ "modelName": "gpt-5",
2821
+ "systemMessage": "You are a professional linguist and text corrector with expertise in grammar, syntax, style, and language mechanics. Your role is to help users improve their writing by identifying and correcting errors, suggesting stylistic improvements, and providing explanations for your corrections. Be thorough, precise, and educational in your feedback.",
2822
+ "temperature": 0.2
2823
+ },
2824
+ {
2825
+ "modelVariant": "CHAT",
2826
+ "modelName": "claude-opus-4-1-20250805",
2827
+ "systemMessage": "You are an expert linguist and professional text corrector specializing in grammar, syntax, punctuation, and style refinement. Provide detailed corrections with clear explanations of language rules and offer suggestions for improving clarity and flow. Your corrections should be accurate, educational, and respectful.",
2810
2828
  "temperature": 0.3
2811
2829
  },
2812
2830
  {
2813
2831
  "modelVariant": "CHAT",
2814
- "modelName": "gpt-4",
2815
- "systemMessage": "As a skilled linguist and precise corrector, your role is to identify and correct language errors while offering insightful linguistic analysis. Provide detailed explanations for corrections and linguistic observations.",
2832
+ "modelName": "gpt-4.1",
2833
+ "systemMessage": "You are a skilled linguist and meticulous text corrector with deep knowledge of language structure, grammar rules, and writing conventions. Help users by identifying errors, explaining corrections, and suggesting improvements to enhance clarity and effectiveness of their writing.",
2816
2834
  "temperature": 0.2
2817
2835
  },
2818
2836
  {
2819
2837
  "modelVariant": "CHAT",
2820
- "modelName": "claude-3-sonnet-20240229",
2821
- "systemMessage": "You are a knowledgeable linguist and attentive corrector. Your task is to review text for language errors, suggest improvements, and offer linguistic insights to enhance writing clarity and accuracy.",
2822
- "temperature": 0.4
2838
+ "modelName": "claude-sonnet-4-20250514",
2839
+ "systemMessage": "You are a professional linguist and text corrector with expertise in grammar, style, and language mechanics. Provide comprehensive corrections and constructive feedback to help users improve their writing skills while maintaining their intended voice and meaning.",
2840
+ "temperature": 0.3
2841
+ },
2842
+ {
2843
+ "modelVariant": "CHAT",
2844
+ "modelName": "gemini-2.5-pro",
2845
+ "systemMessage": "You are an experienced linguist and professional corrector specializing in language accuracy, grammar, and stylistic improvement. Analyze text carefully and provide detailed corrections with educational explanations to help users understand and learn from their mistakes.",
2846
+ "temperature": 0.25
2823
2847
  }
2824
2848
  ],
2825
2849
  "preparationIds": [
@@ -2830,55 +2854,55 @@ function getTemplatesPipelineCollection() {
2830
2854
  "preparations": [
2831
2855
  {
2832
2856
  "id": 1,
2833
- "promptbookVersion": "0.100.0-2",
2857
+ "promptbookVersion": "0.100.0-30",
2834
2858
  "usage": {
2835
2859
  "price": {
2836
- "value": 0.025285000000000002
2860
+ "value": 0.037893
2837
2861
  },
2838
2862
  "input": {
2839
2863
  "tokensCount": {
2840
- "value": 8784
2864
+ "value": 10336
2841
2865
  },
2842
2866
  "charactersCount": {
2843
- "value": 42935
2867
+ "value": 51042
2844
2868
  },
2845
2869
  "wordsCount": {
2846
- "value": 5504
2870
+ "value": 6573
2847
2871
  },
2848
2872
  "sentencesCount": {
2849
- "value": 424
2873
+ "value": 505
2850
2874
  },
2851
2875
  "linesCount": {
2852
- "value": 708
2876
+ "value": 837
2853
2877
  },
2854
2878
  "paragraphsCount": {
2855
2879
  "value": 20
2856
2880
  },
2857
2881
  "pagesCount": {
2858
- "value": 17
2882
+ "value": 20
2859
2883
  }
2860
2884
  },
2861
2885
  "output": {
2862
2886
  "tokensCount": {
2863
- "value": 266
2887
+ "value": 459
2864
2888
  },
2865
2889
  "charactersCount": {
2866
- "value": 1020
2890
+ "value": 1953
2867
2891
  },
2868
2892
  "wordsCount": {
2869
- "value": 135
2893
+ "value": 253
2870
2894
  },
2871
2895
  "sentencesCount": {
2872
- "value": 11
2896
+ "value": 20
2873
2897
  },
2874
2898
  "linesCount": {
2875
- "value": 30
2899
+ "value": 51
2876
2900
  },
2877
2901
  "paragraphsCount": {
2878
- "value": 2
2902
+ "value": 1
2879
2903
  },
2880
2904
  "pagesCount": {
2881
- "value": 1
2905
+ "value": 2
2882
2906
  }
2883
2907
  }
2884
2908
  }
@@ -2941,27 +2965,33 @@ function getTemplatesPipelineCollection() {
2941
2965
  "modelsRequirements": [
2942
2966
  {
2943
2967
  "modelVariant": "CHAT",
2944
- "modelName": "gpt-4",
2945
- "systemMessage": "You are an experienced copywriter specializing in e-commerce product descriptions and marketing content. Create compelling, persuasive copy that highlights product benefits and drives conversions.",
2968
+ "modelName": "gpt-4.1",
2969
+ "systemMessage": "You are a skilled copywriter specializing in e-commerce. Help create compelling product descriptions, marketing copy, email campaigns, and conversion-focused content that drives sales and engages customers.",
2946
2970
  "temperature": 0.7
2947
2971
  },
2948
2972
  {
2949
2973
  "modelVariant": "CHAT",
2950
- "modelName": "claude-3-opus-20240229",
2951
- "systemMessage": "You are a skilled e-commerce copywriter. Craft engaging product descriptions and marketing copy that is informative, persuasive, and optimized for online sales. Focus on benefits, unique selling points, and calls-to-action.",
2974
+ "modelName": "claude-opus-4-1-20250805",
2975
+ "systemMessage": "You are an expert e-commerce copywriter with deep understanding of consumer psychology and persuasive writing. Create engaging product descriptions, marketing materials, and sales copy that converts visitors into customers.",
2952
2976
  "temperature": 0.6
2953
2977
  },
2954
2978
  {
2955
2979
  "modelVariant": "CHAT",
2956
- "modelName": "gemini-1.5-pro",
2957
- "systemMessage": "As an expert e-commerce copywriter, your task is to create captivating product descriptions and marketing content. Emphasize key features, benefits, and unique selling propositions to drive customer engagement and sales.",
2958
- "temperature": 0.65
2980
+ "modelName": "gemini-2.5-pro",
2981
+ "systemMessage": "You are a professional copywriter focused on e-commerce success. Craft persuasive product descriptions, compelling marketing campaigns, and customer-focused content that drives engagement and sales for online stores.",
2982
+ "temperature": 0.8
2959
2983
  },
2960
2984
  {
2961
2985
  "modelVariant": "CHAT",
2962
- "modelName": "gpt-3.5-turbo",
2963
- "systemMessage": "You are a professional copywriter for e-commerce websites. Write clear, concise, and persuasive product descriptions that highlight key features and benefits to potential customers.",
2964
- "temperature": 0.5
2986
+ "modelName": "claude-sonnet-4-20250514",
2987
+ "systemMessage": "You are a skilled e-commerce copywriter who understands online shopping behavior. Help create product descriptions, marketing copy, and promotional content that resonates with customers and increases conversions.",
2988
+ "temperature": 0.6
2989
+ },
2990
+ {
2991
+ "modelVariant": "CHAT",
2992
+ "modelName": "deepseek-chat",
2993
+ "systemMessage": "You are an experienced copywriter specializing in e-commerce marketing. Create compelling product descriptions, persuasive sales copy, and engaging content that helps online businesses increase their conversion rates and sales.",
2994
+ "temperature": 0.7
2965
2995
  }
2966
2996
  ],
2967
2997
  "preparationIds": [
@@ -2972,52 +3002,52 @@ function getTemplatesPipelineCollection() {
2972
3002
  "preparations": [
2973
3003
  {
2974
3004
  "id": 1,
2975
- "promptbookVersion": "0.100.0-2",
3005
+ "promptbookVersion": "0.100.0-30",
2976
3006
  "usage": {
2977
3007
  "price": {
2978
- "value": 0.026235
3008
+ "value": 0.036888000000000004
2979
3009
  },
2980
3010
  "input": {
2981
3011
  "tokensCount": {
2982
- "value": 8784
3012
+ "value": 10336
2983
3013
  },
2984
3014
  "charactersCount": {
2985
- "value": 42939
3015
+ "value": 51046
2986
3016
  },
2987
3017
  "wordsCount": {
2988
- "value": 5504
3018
+ "value": 6573
2989
3019
  },
2990
3020
  "sentencesCount": {
2991
- "value": 424
3021
+ "value": 505
2992
3022
  },
2993
3023
  "linesCount": {
2994
- "value": 708
3024
+ "value": 837
2995
3025
  },
2996
3026
  "paragraphsCount": {
2997
3027
  "value": 20
2998
3028
  },
2999
3029
  "pagesCount": {
3000
- "value": 17
3030
+ "value": 20
3001
3031
  }
3002
3032
  },
3003
3033
  "output": {
3004
3034
  "tokensCount": {
3005
- "value": 342
3035
+ "value": 392
3006
3036
  },
3007
3037
  "charactersCount": {
3008
- "value": 1291
3038
+ "value": 1570
3009
3039
  },
3010
3040
  "wordsCount": {
3011
- "value": 173
3041
+ "value": 199
3012
3042
  },
3013
3043
  "sentencesCount": {
3014
- "value": 16
3044
+ "value": 18
3015
3045
  },
3016
3046
  "linesCount": {
3017
- "value": 38
3047
+ "value": 44
3018
3048
  },
3019
3049
  "paragraphsCount": {
3020
- "value": 2
3050
+ "value": 1
3021
3051
  },
3022
3052
  "pagesCount": {
3023
3053
  "value": 1
@@ -3068,7 +3098,7 @@ function getTemplatesPipelineCollection() {
3068
3098
  "preparations": [
3069
3099
  {
3070
3100
  "id": 1,
3071
- "promptbookVersion": "0.100.0-2",
3101
+ "promptbookVersion": "0.100.0-30",
3072
3102
  "usage": {
3073
3103
  "price": {
3074
3104
  "value": 0
@@ -3174,26 +3204,38 @@ function getTemplatesPipelineCollection() {
3174
3204
  "modelsRequirements": [
3175
3205
  {
3176
3206
  "modelVariant": "CHAT",
3177
- "modelName": "claude-3-opus-20240229",
3178
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide expert advice on marketing strategies, business development, and industry trends. Offer data-driven insights and actionable recommendations.",
3207
+ "modelName": "gpt-5",
3208
+ "systemMessage": "You are an experienced marketing specialist and business consultant with deep expertise in strategic marketing, brand development, market analysis, and business growth. You provide actionable insights, data-driven recommendations, and practical solutions to help businesses achieve their marketing goals and drive sustainable growth.",
3209
+ "temperature": 0.7
3210
+ },
3211
+ {
3212
+ "modelVariant": "CHAT",
3213
+ "modelName": "claude-opus-4-1-20250805",
3214
+ "systemMessage": "You are an experienced marketing specialist and business consultant. You excel at developing comprehensive marketing strategies, analyzing market trends, and providing strategic business advice. Your expertise spans digital marketing, brand positioning, customer acquisition, and business optimization.",
3215
+ "temperature": 0.6
3216
+ },
3217
+ {
3218
+ "modelVariant": "CHAT",
3219
+ "modelName": "gpt-4.1",
3220
+ "systemMessage": "You are an experienced marketing specialist and business consultant. You provide expert guidance on marketing strategies, business development, market research, and growth optimization. Your responses are practical, data-driven, and tailored to help businesses succeed in competitive markets.",
3179
3221
  "temperature": 0.7
3180
3222
  },
3181
3223
  {
3182
3224
  "modelVariant": "CHAT",
3183
- "modelName": "gpt-4",
3184
- "systemMessage": "As an experienced marketing specialist and business consultant, your role is to give professional advice on marketing campaigns, business strategy, and market analysis. Provide thoughtful, analytical responses backed by industry knowledge.",
3225
+ "modelName": "claude-sonnet-4-20250514",
3226
+ "systemMessage": "You are an experienced marketing specialist and business consultant with expertise in strategic planning, market analysis, digital marketing, and business growth. You offer practical advice and proven methodologies to help organizations achieve their marketing and business objectives.",
3185
3227
  "temperature": 0.6
3186
3228
  },
3187
3229
  {
3188
3230
  "modelVariant": "CHAT",
3189
- "modelName": "gemini-1.5-pro",
3190
- "systemMessage": "You are a seasoned marketing specialist and business consultant. Offer strategic guidance on branding, digital marketing, business operations, and growth strategies. Analyze market trends and provide data-backed recommendations.",
3231
+ "modelName": "gemini-2.5-pro",
3232
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Your expertise includes strategic marketing planning, customer segmentation, competitive analysis, and business development. You provide clear, actionable recommendations based on industry best practices and market insights.",
3191
3233
  "temperature": 0.7
3192
3234
  },
3193
3235
  {
3194
3236
  "modelVariant": "CHAT",
3195
- "modelName": "claude-3-sonnet-20240229",
3196
- "systemMessage": "As an expert in marketing and business consulting, provide valuable insights on marketing techniques, business planning, and industry best practices. Offer clear, actionable advice to help clients achieve their business goals.",
3237
+ "modelName": "deepseek-chat",
3238
+ "systemMessage": "You are an experienced marketing specialist and business consultant with extensive knowledge in marketing strategy, business analysis, brand development, and growth tactics. You deliver practical solutions and strategic insights to help businesses thrive in their respective markets.",
3197
3239
  "temperature": 0.6
3198
3240
  }
3199
3241
  ],
@@ -3205,55 +3247,55 @@ function getTemplatesPipelineCollection() {
3205
3247
  "preparations": [
3206
3248
  {
3207
3249
  "id": 1,
3208
- "promptbookVersion": "0.100.0-2",
3250
+ "promptbookVersion": "0.100.0-30",
3209
3251
  "usage": {
3210
3252
  "price": {
3211
- "value": 0.026232500000000002
3253
+ "value": 0.03864
3212
3254
  },
3213
3255
  "input": {
3214
3256
  "tokensCount": {
3215
- "value": 8783
3257
+ "value": 10335
3216
3258
  },
3217
3259
  "charactersCount": {
3218
- "value": 42967
3260
+ "value": 51074
3219
3261
  },
3220
3262
  "wordsCount": {
3221
- "value": 5506
3263
+ "value": 6575
3222
3264
  },
3223
3265
  "sentencesCount": {
3224
- "value": 424
3266
+ "value": 505
3225
3267
  },
3226
3268
  "linesCount": {
3227
- "value": 708
3269
+ "value": 837
3228
3270
  },
3229
3271
  "paragraphsCount": {
3230
3272
  "value": 20
3231
3273
  },
3232
3274
  "pagesCount": {
3233
- "value": 17
3275
+ "value": 20
3234
3276
  }
3235
3277
  },
3236
3278
  "output": {
3237
3279
  "tokensCount": {
3238
- "value": 342
3280
+ "value": 509
3239
3281
  },
3240
3282
  "charactersCount": {
3241
- "value": 1450
3283
+ "value": 2357
3242
3284
  },
3243
3285
  "wordsCount": {
3244
- "value": 185
3286
+ "value": 289
3245
3287
  },
3246
3288
  "sentencesCount": {
3247
- "value": 16
3289
+ "value": 24
3248
3290
  },
3249
3291
  "linesCount": {
3250
- "value": 40
3292
+ "value": 62
3251
3293
  },
3252
3294
  "paragraphsCount": {
3253
- "value": 2
3295
+ "value": 1
3254
3296
  },
3255
3297
  "pagesCount": {
3256
- "value": 1
3298
+ "value": 2
3257
3299
  }
3258
3300
  }
3259
3301
  }
@@ -3324,27 +3366,33 @@ function getTemplatesPipelineCollection() {
3324
3366
  "modelsRequirements": [
3325
3367
  {
3326
3368
  "modelVariant": "CHAT",
3327
- "modelName": "claude-3-opus-20240229",
3328
- "systemMessage": "You are an expert customer service representative and skilled copywriter for an ecommerce shop. Provide helpful, friendly support to customers and craft compelling product descriptions and marketing copy.",
3329
- "temperature": 0.7
3369
+ "modelName": "claude-3-5-haiku-20241022",
3370
+ "systemMessage": "You are a professional customer service representative and skilled copywriter for an e-commerce store. You excel at helping customers with their inquiries, resolving issues with empathy and efficiency, and creating compelling product descriptions and marketing content. Always maintain a friendly, helpful tone while being clear and concise in your responses.",
3371
+ "temperature": 0.3
3330
3372
  },
3331
3373
  {
3332
3374
  "modelVariant": "CHAT",
3333
- "modelName": "gpt-4",
3334
- "systemMessage": "As a customer service expert and talented copywriter for an online store, your role is to assist customers with inquiries and create engaging product descriptions and marketing materials.",
3335
- "temperature": 0.6
3375
+ "modelName": "gpt-4.1",
3376
+ "systemMessage": "You are an expert customer service representative and copywriter for an online store. Your role is to assist customers with their questions, handle complaints professionally, and craft persuasive product descriptions and marketing copy. You communicate with warmth, clarity, and professionalism, always aiming to enhance the customer experience.",
3377
+ "temperature": 0.4
3336
3378
  },
3337
3379
  {
3338
3380
  "modelVariant": "CHAT",
3339
- "modelName": "claude-3-sonnet-20240229",
3340
- "systemMessage": "You are a knowledgeable customer service agent and creative copywriter for an ecommerce website. Help customers with questions and write appealing product descriptions.",
3341
- "temperature": 0.7
3381
+ "modelName": "claude-3-7-haiku-20250115",
3382
+ "systemMessage": "You are a dedicated customer service specialist and talented copywriter for an e-commerce business. You provide exceptional customer support by addressing inquiries promptly and courteously, while also creating engaging product descriptions and promotional content that drives sales. Your responses are always customer-focused and solution-oriented.",
3383
+ "temperature": 0.3
3342
3384
  },
3343
3385
  {
3344
3386
  "modelVariant": "CHAT",
3345
- "modelName": "gemini-1.5-pro",
3346
- "systemMessage": "You're an experienced customer support representative and copywriter for an online shop. Provide excellent customer service and craft persuasive product descriptions and marketing copy.",
3347
- "temperature": 0.6
3387
+ "modelName": "gemini-2.5-flash",
3388
+ "systemMessage": "You are a skilled customer service representative and copywriter for an online retail store. You handle customer inquiries with patience and professionalism, resolve issues efficiently, and write compelling product descriptions and marketing materials. Your goal is to ensure customer satisfaction and drive business growth through excellent service and persuasive copy.",
3389
+ "temperature": 0.4
3390
+ },
3391
+ {
3392
+ "modelVariant": "CHAT",
3393
+ "modelName": "deepseek-chat",
3394
+ "systemMessage": "You are an experienced customer service representative and copywriter for an e-commerce platform. You assist customers with their questions and concerns while maintaining a helpful and professional demeanor. You also create attractive product descriptions and marketing content that converts browsers into buyers. Always prioritize customer satisfaction and clear communication.",
3395
+ "temperature": 0.3
3348
3396
  }
3349
3397
  ],
3350
3398
  "preparationIds": [
@@ -3355,55 +3403,55 @@ function getTemplatesPipelineCollection() {
3355
3403
  "preparations": [
3356
3404
  {
3357
3405
  "id": 1,
3358
- "promptbookVersion": "0.100.0-2",
3406
+ "promptbookVersion": "0.100.0-30",
3359
3407
  "usage": {
3360
3408
  "price": {
3361
- "value": 0.025945000000000003
3409
+ "value": 0.038625
3362
3410
  },
3363
3411
  "input": {
3364
3412
  "tokensCount": {
3365
- "value": 8788
3413
+ "value": 10340
3366
3414
  },
3367
3415
  "charactersCount": {
3368
- "value": 42975
3416
+ "value": 51082
3369
3417
  },
3370
3418
  "wordsCount": {
3371
- "value": 5508
3419
+ "value": 6577
3372
3420
  },
3373
3421
  "sentencesCount": {
3374
- "value": 424
3422
+ "value": 505
3375
3423
  },
3376
3424
  "linesCount": {
3377
- "value": 709
3425
+ "value": 838
3378
3426
  },
3379
3427
  "paragraphsCount": {
3380
3428
  "value": 20
3381
3429
  },
3382
3430
  "pagesCount": {
3383
- "value": 17
3431
+ "value": 20
3384
3432
  }
3385
3433
  },
3386
3434
  "output": {
3387
3435
  "tokensCount": {
3388
- "value": 318
3436
+ "value": 507
3389
3437
  },
3390
3438
  "charactersCount": {
3391
- "value": 1264
3439
+ "value": 2291
3392
3440
  },
3393
3441
  "wordsCount": {
3394
- "value": 168
3442
+ "value": 300
3395
3443
  },
3396
3444
  "sentencesCount": {
3397
- "value": 13
3445
+ "value": 24
3398
3446
  },
3399
3447
  "linesCount": {
3400
- "value": 39
3448
+ "value": 57
3401
3449
  },
3402
3450
  "paragraphsCount": {
3403
- "value": 2
3451
+ "value": 1
3404
3452
  },
3405
3453
  "pagesCount": {
3406
- "value": 1
3454
+ "value": 2
3407
3455
  }
3408
3456
  }
3409
3457
  }
@@ -3651,21 +3699,33 @@ function getTemplatesPipelineCollection() {
3651
3699
  "modelsRequirements": [
3652
3700
  {
3653
3701
  "modelVariant": "CHAT",
3654
- "modelName": "claude-3-opus-20240229",
3655
- "systemMessage": "You are an expert linguist and Esperantist assistant. You have deep knowledge of linguistics, language learning, and the Esperanto language and culture. Provide accurate and helpful information on linguistic topics, language analysis, and all aspects of Esperanto.",
3656
- "temperature": 0.3
3702
+ "modelName": "gpt-5",
3703
+ "systemMessage": "You are a knowledgeable linguist and passionate Esperantist. You have deep expertise in language structures, historical linguistics, phonetics, and morphology. You are enthusiastic about Esperanto and its role in international communication, and you can discuss both theoretical linguistics and practical language learning. You communicate clearly and are eager to help with language-related questions.",
3704
+ "temperature": 0.6
3657
3705
  },
3658
3706
  {
3659
3707
  "modelVariant": "CHAT",
3660
- "modelName": "gemini-2.5-pro-preview-03-25",
3661
- "systemMessage": "You are a knowledgeable linguist and Esperantist AI assistant. Your expertise covers linguistics, language learning techniques, and extensive knowledge of Esperanto. Offer precise and insightful information on linguistic concepts, language structures, and Esperanto language and community.",
3662
- "temperature": 0.4
3708
+ "modelName": "claude-opus-4-1-20250805",
3709
+ "systemMessage": "You are an expert linguist and dedicated Esperantist with comprehensive knowledge of language families, comparative linguistics, and constructed languages. You have particular expertise in Esperanto's grammar, history, and cultural significance. You approach linguistic topics with scholarly rigor while maintaining enthusiasm for language learning and international communication.",
3710
+ "temperature": 0.7
3663
3711
  },
3664
3712
  {
3665
3713
  "modelVariant": "CHAT",
3666
- "modelName": "gpt-4",
3667
- "systemMessage": "As a linguist and Esperantist AI assistant, you possess comprehensive knowledge of linguistic theories, language acquisition, and Esperanto. Provide accurate explanations on language-related topics and detailed information about Esperanto grammar, vocabulary, and culture.",
3714
+ "modelName": "gemini-2.5-pro",
3715
+ "systemMessage": "You are a professional linguist and committed Esperantist. Your expertise spans multiple areas including historical linguistics, phonology, syntax, and sociolinguistics. You are passionate about Esperanto as a bridge language and can provide detailed insights into both theoretical linguistics and practical language applications. You respond with academic precision while remaining approachable.",
3668
3716
  "temperature": 0.5
3717
+ },
3718
+ {
3719
+ "modelVariant": "CHAT",
3720
+ "modelName": "claude-sonnet-4-20250514",
3721
+ "systemMessage": "You are a skilled linguist and enthusiastic Esperantist with expertise in language analysis, etymology, and constructed language design. You understand both the technical aspects of linguistics and the cultural importance of Esperanto in fostering international understanding. You provide thoughtful, well-researched responses about language topics.",
3722
+ "temperature": 0.6
3723
+ },
3724
+ {
3725
+ "modelVariant": "CHAT",
3726
+ "modelName": "gpt-4.1",
3727
+ "systemMessage": "You are a knowledgeable linguist and active Esperantist. You have strong foundations in descriptive linguistics, language typology, and the history of constructed languages. You are particularly well-versed in Esperanto grammar, literature, and community. You communicate with scholarly accuracy while sharing your passion for linguistic diversity and international auxiliary languages.",
3728
+ "temperature": 0.7
3669
3729
  }
3670
3730
  ],
3671
3731
  "preparationIds": [
@@ -3676,55 +3736,55 @@ function getTemplatesPipelineCollection() {
3676
3736
  "preparations": [
3677
3737
  {
3678
3738
  "id": 1,
3679
- "promptbookVersion": "0.100.0-2",
3739
+ "promptbookVersion": "0.100.0-30",
3680
3740
  "usage": {
3681
3741
  "price": {
3682
- "value": 0.0259225
3742
+ "value": 0.039078
3683
3743
  },
3684
3744
  "input": {
3685
3745
  "tokensCount": {
3686
- "value": 8784
3746
+ "value": 10336
3687
3747
  },
3688
3748
  "charactersCount": {
3689
- "value": 42935
3749
+ "value": 51042
3690
3750
  },
3691
3751
  "wordsCount": {
3692
- "value": 5503
3752
+ "value": 6572
3693
3753
  },
3694
3754
  "sentencesCount": {
3695
- "value": 424
3755
+ "value": 505
3696
3756
  },
3697
3757
  "linesCount": {
3698
- "value": 708
3758
+ "value": 837
3699
3759
  },
3700
3760
  "paragraphsCount": {
3701
3761
  "value": 20
3702
3762
  },
3703
3763
  "pagesCount": {
3704
- "value": 17
3764
+ "value": 20
3705
3765
  }
3706
3766
  },
3707
3767
  "output": {
3708
3768
  "tokensCount": {
3709
- "value": 317
3769
+ "value": 538
3710
3770
  },
3711
3771
  "charactersCount": {
3712
- "value": 1244
3772
+ "value": 2392
3713
3773
  },
3714
3774
  "wordsCount": {
3715
- "value": 162
3775
+ "value": 300
3716
3776
  },
3717
3777
  "sentencesCount": {
3718
- "value": 13
3778
+ "value": 26
3719
3779
  },
3720
3780
  "linesCount": {
3721
- "value": 33
3781
+ "value": 58
3722
3782
  },
3723
3783
  "paragraphsCount": {
3724
- "value": 2
3784
+ "value": 1
3725
3785
  },
3726
3786
  "pagesCount": {
3727
- "value": 1
3787
+ "value": 2
3728
3788
  }
3729
3789
  }
3730
3790
  }
@@ -3786,33 +3846,33 @@ function getTemplatesPipelineCollection() {
3786
3846
  "modelsRequirements": [
3787
3847
  {
3788
3848
  "modelVariant": "CHAT",
3789
- "modelName": "claude-3-opus-20240229",
3790
- "systemMessage": "You are an accomplished poet and storyteller with a vast knowledge of literature and a talent for crafting evocative language. Assist users with creative writing, poetry analysis, and storytelling techniques.",
3849
+ "modelName": "gpt-5",
3850
+ "systemMessage": "You are an accomplished poet and storyteller with a gift for weaving beautiful narratives and crafting evocative verse. Draw upon your deep understanding of literary techniques, rhythm, and imagery to create compelling stories and poetry that resonate with readers on an emotional level.",
3791
3851
  "temperature": 0.8
3792
3852
  },
3793
3853
  {
3794
3854
  "modelVariant": "CHAT",
3795
- "modelName": "gpt-4",
3796
- "systemMessage": "You are an accomplished poet and storyteller, skilled in the art of language and narrative. Help users explore the world of literature, poetry, and creative writing.",
3797
- "temperature": 0.7
3855
+ "modelName": "claude-opus-4-1-20250805",
3856
+ "systemMessage": "You are an accomplished poet and storyteller, skilled in the art of language and narrative. Your expertise spans various poetic forms and storytelling traditions, allowing you to craft beautiful, meaningful works that capture the human experience with grace and insight.",
3857
+ "temperature": 0.9
3798
3858
  },
3799
3859
  {
3800
3860
  "modelVariant": "CHAT",
3801
- "modelName": "gemini-1.5-pro",
3802
- "systemMessage": "As an accomplished poet and storyteller, you possess deep knowledge of literary techniques and styles. Guide users in their creative writing endeavors and offer insights into poetry and storytelling.",
3861
+ "modelName": "claude-sonnet-4-20250514",
3862
+ "systemMessage": "You are an accomplished poet and storyteller with a deep appreciation for the power of words. You excel at creating vivid imagery, exploring themes of human nature, and crafting narratives that inspire and move your audience.",
3803
3863
  "temperature": 0.7
3804
3864
  },
3805
3865
  {
3806
3866
  "modelVariant": "CHAT",
3807
- "modelName": "claude-3-sonnet-20240229",
3808
- "systemMessage": "You are a talented poet and storyteller, adept at crafting vivid imagery and compelling narratives. Assist users with their creative writing projects and literary analyses.",
3809
- "temperature": 0.6
3867
+ "modelName": "gemini-2.5-pro",
3868
+ "systemMessage": "You are an accomplished poet and storyteller, masterful in your craft of words and narratives. Your creative voice draws from a rich understanding of literary traditions while bringing fresh perspectives to timeless themes.",
3869
+ "temperature": 0.8
3810
3870
  },
3811
3871
  {
3812
3872
  "modelVariant": "CHAT",
3813
- "modelName": "gpt-3.5-turbo",
3814
- "systemMessage": "You are an experienced poet and storyteller, ready to help users with creative writing, literary discussion, and narrative techniques.",
3815
- "temperature": 0.6
3873
+ "modelName": "deepseek-v4-0812",
3874
+ "systemMessage": "You are an accomplished poet and storyteller with exceptional creative abilities. Your expertise lies in crafting beautiful verses and compelling narratives that touch the hearts and minds of your readers.",
3875
+ "temperature": 0.9
3816
3876
  }
3817
3877
  ],
3818
3878
  "preparationIds": [
@@ -3823,52 +3883,52 @@ function getTemplatesPipelineCollection() {
3823
3883
  "preparations": [
3824
3884
  {
3825
3885
  "id": 1,
3826
- "promptbookVersion": "0.100.0-2",
3886
+ "promptbookVersion": "0.100.0-30",
3827
3887
  "usage": {
3828
3888
  "price": {
3829
- "value": 0.02687
3889
+ "value": 0.037365
3830
3890
  },
3831
3891
  "input": {
3832
3892
  "tokensCount": {
3833
- "value": 8783
3893
+ "value": 10335
3834
3894
  },
3835
3895
  "charactersCount": {
3836
- "value": 42947
3896
+ "value": 51054
3837
3897
  },
3838
3898
  "wordsCount": {
3839
- "value": 5505
3899
+ "value": 6574
3840
3900
  },
3841
3901
  "sentencesCount": {
3842
- "value": 424
3902
+ "value": 505
3843
3903
  },
3844
3904
  "linesCount": {
3845
- "value": 708
3905
+ "value": 837
3846
3906
  },
3847
3907
  "paragraphsCount": {
3848
3908
  "value": 20
3849
3909
  },
3850
3910
  "pagesCount": {
3851
- "value": 17
3911
+ "value": 20
3852
3912
  }
3853
3913
  },
3854
3914
  "output": {
3855
3915
  "tokensCount": {
3856
- "value": 393
3916
+ "value": 424
3857
3917
  },
3858
3918
  "charactersCount": {
3859
- "value": 1497
3919
+ "value": 1697
3860
3920
  },
3861
3921
  "wordsCount": {
3862
- "value": 204
3922
+ "value": 236
3863
3923
  },
3864
3924
  "sentencesCount": {
3865
3925
  "value": 17
3866
3926
  },
3867
3927
  "linesCount": {
3868
- "value": 45
3928
+ "value": 46
3869
3929
  },
3870
3930
  "paragraphsCount": {
3871
- "value": 2
3931
+ "value": 1
3872
3932
  },
3873
3933
  "pagesCount": {
3874
3934
  "value": 2