@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.
- package/README.md +1 -0
- package/esm/index.es.js +257 -197
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +4 -0
- package/esm/typings/src/_packages/core.index.d.ts +24 -0
- package/esm/typings/src/_packages/types.index.d.ts +30 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +30 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.test.d.ts +1 -0
- package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +26 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/FrontendRAGService.d.ts +48 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +51 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/RAGService.d.ts +54 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/BaseKnowledgeProcessor.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/PdfProcessor.d.ts +31 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/ProcessorFactory.d.ts +23 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/processors/TextProcessor.d.ts +18 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/types.d.ts +56 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/utils/ragHelper.d.ts +34 -0
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +56 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +49 -0
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +52 -0
- package/esm/typings/src/book-2.0/commitments/_base/BookCommitment.d.ts +5 -0
- package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +48 -0
- package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +22 -0
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +19 -0
- package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +37 -0
- package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +18 -0
- package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +22 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirements.d.ts +61 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirementsWithCommitments.d.ts +35 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createCommitmentRegex.d.ts +20 -0
- package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +24 -0
- package/esm/typings/src/book-2.0/commitments/_misc/removeCommentsFromSystemMessage.d.ts +11 -0
- package/esm/typings/src/book-2.0/commitments/index.d.ts +56 -0
- package/esm/typings/src/book-2.0/utils/profileImageUtils.d.ts +39 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +26 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +6 -1
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +0 -5
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/deepseek/deepseek-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/ollama/ollama-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
- package/esm/typings/src/pipeline/book-notation.d.ts +2 -1
- package/esm/typings/src/types/ModelRequirements.d.ts +0 -2
- package/esm/typings/src/types/typeAliases.d.ts +6 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +257 -197
- package/umd/index.umd.js.map +1 -1
package/umd/index.umd.js
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
|
26
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-31';
|
|
27
27
|
/**
|
|
28
28
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
29
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1541,33 +1541,39 @@
|
|
|
1541
1541
|
"modelsRequirements": [
|
|
1542
1542
|
{
|
|
1543
1543
|
"modelVariant": "CHAT",
|
|
1544
|
-
"modelName": "gpt-4",
|
|
1545
|
-
"systemMessage": "You are
|
|
1546
|
-
"temperature": 0.
|
|
1544
|
+
"modelName": "gpt-4.1",
|
|
1545
|
+
"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.",
|
|
1546
|
+
"temperature": 0.3
|
|
1547
1547
|
},
|
|
1548
1548
|
{
|
|
1549
1549
|
"modelVariant": "CHAT",
|
|
1550
|
-
"modelName": "claude-
|
|
1551
|
-
"systemMessage": "
|
|
1552
|
-
"temperature": 0.
|
|
1550
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
1551
|
+
"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.",
|
|
1552
|
+
"temperature": 0.4
|
|
1553
1553
|
},
|
|
1554
1554
|
{
|
|
1555
1555
|
"modelVariant": "CHAT",
|
|
1556
|
-
"modelName": "gemini-
|
|
1557
|
-
"systemMessage": "You are
|
|
1556
|
+
"modelName": "gemini-2.5-pro",
|
|
1557
|
+
"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.",
|
|
1558
1558
|
"temperature": 0.5
|
|
1559
1559
|
},
|
|
1560
1560
|
{
|
|
1561
1561
|
"modelVariant": "CHAT",
|
|
1562
|
-
"modelName": "deepseek-
|
|
1563
|
-
"systemMessage": "
|
|
1562
|
+
"modelName": "deepseek-chat",
|
|
1563
|
+
"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.",
|
|
1564
1564
|
"temperature": 0.4
|
|
1565
1565
|
},
|
|
1566
1566
|
{
|
|
1567
1567
|
"modelVariant": "CHAT",
|
|
1568
|
-
"modelName": "
|
|
1569
|
-
"systemMessage": "You are a
|
|
1568
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
1569
|
+
"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.",
|
|
1570
1570
|
"temperature": 0.6
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"modelVariant": "CHAT",
|
|
1574
|
+
"modelName": "gemini-2.5-flash",
|
|
1575
|
+
"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.",
|
|
1576
|
+
"temperature": 0.5
|
|
1571
1577
|
}
|
|
1572
1578
|
],
|
|
1573
1579
|
"preparationIds": [
|
|
@@ -1578,52 +1584,52 @@
|
|
|
1578
1584
|
"preparations": [
|
|
1579
1585
|
{
|
|
1580
1586
|
"id": 1,
|
|
1581
|
-
"promptbookVersion": "0.100.0-
|
|
1587
|
+
"promptbookVersion": "0.100.0-30",
|
|
1582
1588
|
"usage": {
|
|
1583
1589
|
"price": {
|
|
1584
|
-
"value": 0.
|
|
1590
|
+
"value": 0.038721
|
|
1585
1591
|
},
|
|
1586
1592
|
"input": {
|
|
1587
1593
|
"tokensCount": {
|
|
1588
|
-
"value":
|
|
1594
|
+
"value": 10337
|
|
1589
1595
|
},
|
|
1590
1596
|
"charactersCount": {
|
|
1591
|
-
"value":
|
|
1597
|
+
"value": 51055
|
|
1592
1598
|
},
|
|
1593
1599
|
"wordsCount": {
|
|
1594
|
-
"value":
|
|
1600
|
+
"value": 6575
|
|
1595
1601
|
},
|
|
1596
1602
|
"sentencesCount": {
|
|
1597
|
-
"value":
|
|
1603
|
+
"value": 505
|
|
1598
1604
|
},
|
|
1599
1605
|
"linesCount": {
|
|
1600
|
-
"value":
|
|
1606
|
+
"value": 837
|
|
1601
1607
|
},
|
|
1602
1608
|
"paragraphsCount": {
|
|
1603
1609
|
"value": 20
|
|
1604
1610
|
},
|
|
1605
1611
|
"pagesCount": {
|
|
1606
|
-
"value":
|
|
1612
|
+
"value": 20
|
|
1607
1613
|
}
|
|
1608
1614
|
},
|
|
1609
1615
|
"output": {
|
|
1610
1616
|
"tokensCount": {
|
|
1611
|
-
"value":
|
|
1617
|
+
"value": 514
|
|
1612
1618
|
},
|
|
1613
1619
|
"charactersCount": {
|
|
1614
|
-
"value":
|
|
1620
|
+
"value": 2136
|
|
1615
1621
|
},
|
|
1616
1622
|
"wordsCount": {
|
|
1617
|
-
"value":
|
|
1623
|
+
"value": 282
|
|
1618
1624
|
},
|
|
1619
1625
|
"sentencesCount": {
|
|
1620
1626
|
"value": 23
|
|
1621
1627
|
},
|
|
1622
1628
|
"linesCount": {
|
|
1623
|
-
"value":
|
|
1629
|
+
"value": 58
|
|
1624
1630
|
},
|
|
1625
1631
|
"paragraphsCount": {
|
|
1626
|
-
"value":
|
|
1632
|
+
"value": 1
|
|
1627
1633
|
},
|
|
1628
1634
|
"pagesCount": {
|
|
1629
1635
|
"value": 2
|
|
@@ -2106,33 +2112,39 @@
|
|
|
2106
2112
|
"modelsRequirements": [
|
|
2107
2113
|
{
|
|
2108
2114
|
"modelVariant": "CHAT",
|
|
2109
|
-
"modelName": "gpt-4",
|
|
2110
|
-
"systemMessage": "You are
|
|
2111
|
-
"temperature": 0.
|
|
2115
|
+
"modelName": "gpt-4.1",
|
|
2116
|
+
"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.",
|
|
2117
|
+
"temperature": 0.3
|
|
2112
2118
|
},
|
|
2113
2119
|
{
|
|
2114
2120
|
"modelVariant": "CHAT",
|
|
2115
|
-
"modelName": "claude-
|
|
2116
|
-
"systemMessage": "
|
|
2117
|
-
"temperature": 0.
|
|
2121
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2122
|
+
"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.",
|
|
2123
|
+
"temperature": 0.4
|
|
2118
2124
|
},
|
|
2119
2125
|
{
|
|
2120
2126
|
"modelVariant": "CHAT",
|
|
2121
|
-
"modelName": "gemini-
|
|
2122
|
-
"systemMessage": "You are
|
|
2127
|
+
"modelName": "gemini-2.5-pro",
|
|
2128
|
+
"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.",
|
|
2123
2129
|
"temperature": 0.5
|
|
2124
2130
|
},
|
|
2125
2131
|
{
|
|
2126
2132
|
"modelVariant": "CHAT",
|
|
2127
|
-
"modelName": "deepseek-
|
|
2128
|
-
"systemMessage": "
|
|
2133
|
+
"modelName": "deepseek-chat",
|
|
2134
|
+
"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.",
|
|
2129
2135
|
"temperature": 0.4
|
|
2130
2136
|
},
|
|
2131
2137
|
{
|
|
2132
2138
|
"modelVariant": "CHAT",
|
|
2133
|
-
"modelName": "
|
|
2134
|
-
"systemMessage": "You are a
|
|
2139
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
2140
|
+
"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.",
|
|
2135
2141
|
"temperature": 0.6
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"modelVariant": "CHAT",
|
|
2145
|
+
"modelName": "gemini-2.5-flash",
|
|
2146
|
+
"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.",
|
|
2147
|
+
"temperature": 0.5
|
|
2136
2148
|
}
|
|
2137
2149
|
],
|
|
2138
2150
|
"preparationIds": [
|
|
@@ -2143,52 +2155,52 @@
|
|
|
2143
2155
|
"preparations": [
|
|
2144
2156
|
{
|
|
2145
2157
|
"id": 1,
|
|
2146
|
-
"promptbookVersion": "0.100.0-
|
|
2158
|
+
"promptbookVersion": "0.100.0-30",
|
|
2147
2159
|
"usage": {
|
|
2148
2160
|
"price": {
|
|
2149
|
-
"value": 0.
|
|
2161
|
+
"value": 0.038721
|
|
2150
2162
|
},
|
|
2151
2163
|
"input": {
|
|
2152
2164
|
"tokensCount": {
|
|
2153
|
-
"value":
|
|
2165
|
+
"value": 10337
|
|
2154
2166
|
},
|
|
2155
2167
|
"charactersCount": {
|
|
2156
|
-
"value":
|
|
2168
|
+
"value": 51055
|
|
2157
2169
|
},
|
|
2158
2170
|
"wordsCount": {
|
|
2159
|
-
"value":
|
|
2171
|
+
"value": 6575
|
|
2160
2172
|
},
|
|
2161
2173
|
"sentencesCount": {
|
|
2162
|
-
"value":
|
|
2174
|
+
"value": 505
|
|
2163
2175
|
},
|
|
2164
2176
|
"linesCount": {
|
|
2165
|
-
"value":
|
|
2177
|
+
"value": 837
|
|
2166
2178
|
},
|
|
2167
2179
|
"paragraphsCount": {
|
|
2168
2180
|
"value": 20
|
|
2169
2181
|
},
|
|
2170
2182
|
"pagesCount": {
|
|
2171
|
-
"value":
|
|
2183
|
+
"value": 20
|
|
2172
2184
|
}
|
|
2173
2185
|
},
|
|
2174
2186
|
"output": {
|
|
2175
2187
|
"tokensCount": {
|
|
2176
|
-
"value":
|
|
2188
|
+
"value": 514
|
|
2177
2189
|
},
|
|
2178
2190
|
"charactersCount": {
|
|
2179
|
-
"value":
|
|
2191
|
+
"value": 2136
|
|
2180
2192
|
},
|
|
2181
2193
|
"wordsCount": {
|
|
2182
|
-
"value":
|
|
2194
|
+
"value": 282
|
|
2183
2195
|
},
|
|
2184
2196
|
"sentencesCount": {
|
|
2185
2197
|
"value": 23
|
|
2186
2198
|
},
|
|
2187
2199
|
"linesCount": {
|
|
2188
|
-
"value":
|
|
2200
|
+
"value": 58
|
|
2189
2201
|
},
|
|
2190
2202
|
"paragraphsCount": {
|
|
2191
|
-
"value":
|
|
2203
|
+
"value": 1
|
|
2192
2204
|
},
|
|
2193
2205
|
"pagesCount": {
|
|
2194
2206
|
"value": 2
|
|
@@ -2812,21 +2824,33 @@
|
|
|
2812
2824
|
"modelsRequirements": [
|
|
2813
2825
|
{
|
|
2814
2826
|
"modelVariant": "CHAT",
|
|
2815
|
-
"modelName": "
|
|
2816
|
-
"systemMessage": "You are
|
|
2827
|
+
"modelName": "gpt-5",
|
|
2828
|
+
"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.",
|
|
2829
|
+
"temperature": 0.2
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
2832
|
+
"modelVariant": "CHAT",
|
|
2833
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2834
|
+
"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.",
|
|
2817
2835
|
"temperature": 0.3
|
|
2818
2836
|
},
|
|
2819
2837
|
{
|
|
2820
2838
|
"modelVariant": "CHAT",
|
|
2821
|
-
"modelName": "gpt-4",
|
|
2822
|
-
"systemMessage": "
|
|
2839
|
+
"modelName": "gpt-4.1",
|
|
2840
|
+
"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.",
|
|
2823
2841
|
"temperature": 0.2
|
|
2824
2842
|
},
|
|
2825
2843
|
{
|
|
2826
2844
|
"modelVariant": "CHAT",
|
|
2827
|
-
"modelName": "claude-
|
|
2828
|
-
"systemMessage": "You are a
|
|
2829
|
-
"temperature": 0.
|
|
2845
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2846
|
+
"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.",
|
|
2847
|
+
"temperature": 0.3
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"modelVariant": "CHAT",
|
|
2851
|
+
"modelName": "gemini-2.5-pro",
|
|
2852
|
+
"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.",
|
|
2853
|
+
"temperature": 0.25
|
|
2830
2854
|
}
|
|
2831
2855
|
],
|
|
2832
2856
|
"preparationIds": [
|
|
@@ -2837,55 +2861,55 @@
|
|
|
2837
2861
|
"preparations": [
|
|
2838
2862
|
{
|
|
2839
2863
|
"id": 1,
|
|
2840
|
-
"promptbookVersion": "0.100.0-
|
|
2864
|
+
"promptbookVersion": "0.100.0-30",
|
|
2841
2865
|
"usage": {
|
|
2842
2866
|
"price": {
|
|
2843
|
-
"value": 0.
|
|
2867
|
+
"value": 0.037893
|
|
2844
2868
|
},
|
|
2845
2869
|
"input": {
|
|
2846
2870
|
"tokensCount": {
|
|
2847
|
-
"value":
|
|
2871
|
+
"value": 10336
|
|
2848
2872
|
},
|
|
2849
2873
|
"charactersCount": {
|
|
2850
|
-
"value":
|
|
2874
|
+
"value": 51042
|
|
2851
2875
|
},
|
|
2852
2876
|
"wordsCount": {
|
|
2853
|
-
"value":
|
|
2877
|
+
"value": 6573
|
|
2854
2878
|
},
|
|
2855
2879
|
"sentencesCount": {
|
|
2856
|
-
"value":
|
|
2880
|
+
"value": 505
|
|
2857
2881
|
},
|
|
2858
2882
|
"linesCount": {
|
|
2859
|
-
"value":
|
|
2883
|
+
"value": 837
|
|
2860
2884
|
},
|
|
2861
2885
|
"paragraphsCount": {
|
|
2862
2886
|
"value": 20
|
|
2863
2887
|
},
|
|
2864
2888
|
"pagesCount": {
|
|
2865
|
-
"value":
|
|
2889
|
+
"value": 20
|
|
2866
2890
|
}
|
|
2867
2891
|
},
|
|
2868
2892
|
"output": {
|
|
2869
2893
|
"tokensCount": {
|
|
2870
|
-
"value":
|
|
2894
|
+
"value": 459
|
|
2871
2895
|
},
|
|
2872
2896
|
"charactersCount": {
|
|
2873
|
-
"value":
|
|
2897
|
+
"value": 1953
|
|
2874
2898
|
},
|
|
2875
2899
|
"wordsCount": {
|
|
2876
|
-
"value":
|
|
2900
|
+
"value": 253
|
|
2877
2901
|
},
|
|
2878
2902
|
"sentencesCount": {
|
|
2879
|
-
"value":
|
|
2903
|
+
"value": 20
|
|
2880
2904
|
},
|
|
2881
2905
|
"linesCount": {
|
|
2882
|
-
"value":
|
|
2906
|
+
"value": 51
|
|
2883
2907
|
},
|
|
2884
2908
|
"paragraphsCount": {
|
|
2885
|
-
"value":
|
|
2909
|
+
"value": 1
|
|
2886
2910
|
},
|
|
2887
2911
|
"pagesCount": {
|
|
2888
|
-
"value":
|
|
2912
|
+
"value": 2
|
|
2889
2913
|
}
|
|
2890
2914
|
}
|
|
2891
2915
|
}
|
|
@@ -2948,27 +2972,33 @@
|
|
|
2948
2972
|
"modelsRequirements": [
|
|
2949
2973
|
{
|
|
2950
2974
|
"modelVariant": "CHAT",
|
|
2951
|
-
"modelName": "gpt-4",
|
|
2952
|
-
"systemMessage": "You are
|
|
2975
|
+
"modelName": "gpt-4.1",
|
|
2976
|
+
"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.",
|
|
2953
2977
|
"temperature": 0.7
|
|
2954
2978
|
},
|
|
2955
2979
|
{
|
|
2956
2980
|
"modelVariant": "CHAT",
|
|
2957
|
-
"modelName": "claude-
|
|
2958
|
-
"systemMessage": "You are
|
|
2981
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2982
|
+
"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.",
|
|
2959
2983
|
"temperature": 0.6
|
|
2960
2984
|
},
|
|
2961
2985
|
{
|
|
2962
2986
|
"modelVariant": "CHAT",
|
|
2963
|
-
"modelName": "gemini-
|
|
2964
|
-
"systemMessage": "
|
|
2965
|
-
"temperature": 0.
|
|
2987
|
+
"modelName": "gemini-2.5-pro",
|
|
2988
|
+
"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.",
|
|
2989
|
+
"temperature": 0.8
|
|
2966
2990
|
},
|
|
2967
2991
|
{
|
|
2968
2992
|
"modelVariant": "CHAT",
|
|
2969
|
-
"modelName": "
|
|
2970
|
-
"systemMessage": "You are a
|
|
2971
|
-
"temperature": 0.
|
|
2993
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2994
|
+
"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.",
|
|
2995
|
+
"temperature": 0.6
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"modelVariant": "CHAT",
|
|
2999
|
+
"modelName": "deepseek-chat",
|
|
3000
|
+
"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.",
|
|
3001
|
+
"temperature": 0.7
|
|
2972
3002
|
}
|
|
2973
3003
|
],
|
|
2974
3004
|
"preparationIds": [
|
|
@@ -2979,52 +3009,52 @@
|
|
|
2979
3009
|
"preparations": [
|
|
2980
3010
|
{
|
|
2981
3011
|
"id": 1,
|
|
2982
|
-
"promptbookVersion": "0.100.0-
|
|
3012
|
+
"promptbookVersion": "0.100.0-30",
|
|
2983
3013
|
"usage": {
|
|
2984
3014
|
"price": {
|
|
2985
|
-
"value": 0.
|
|
3015
|
+
"value": 0.036888000000000004
|
|
2986
3016
|
},
|
|
2987
3017
|
"input": {
|
|
2988
3018
|
"tokensCount": {
|
|
2989
|
-
"value":
|
|
3019
|
+
"value": 10336
|
|
2990
3020
|
},
|
|
2991
3021
|
"charactersCount": {
|
|
2992
|
-
"value":
|
|
3022
|
+
"value": 51046
|
|
2993
3023
|
},
|
|
2994
3024
|
"wordsCount": {
|
|
2995
|
-
"value":
|
|
3025
|
+
"value": 6573
|
|
2996
3026
|
},
|
|
2997
3027
|
"sentencesCount": {
|
|
2998
|
-
"value":
|
|
3028
|
+
"value": 505
|
|
2999
3029
|
},
|
|
3000
3030
|
"linesCount": {
|
|
3001
|
-
"value":
|
|
3031
|
+
"value": 837
|
|
3002
3032
|
},
|
|
3003
3033
|
"paragraphsCount": {
|
|
3004
3034
|
"value": 20
|
|
3005
3035
|
},
|
|
3006
3036
|
"pagesCount": {
|
|
3007
|
-
"value":
|
|
3037
|
+
"value": 20
|
|
3008
3038
|
}
|
|
3009
3039
|
},
|
|
3010
3040
|
"output": {
|
|
3011
3041
|
"tokensCount": {
|
|
3012
|
-
"value":
|
|
3042
|
+
"value": 392
|
|
3013
3043
|
},
|
|
3014
3044
|
"charactersCount": {
|
|
3015
|
-
"value":
|
|
3045
|
+
"value": 1570
|
|
3016
3046
|
},
|
|
3017
3047
|
"wordsCount": {
|
|
3018
|
-
"value":
|
|
3048
|
+
"value": 199
|
|
3019
3049
|
},
|
|
3020
3050
|
"sentencesCount": {
|
|
3021
|
-
"value":
|
|
3051
|
+
"value": 18
|
|
3022
3052
|
},
|
|
3023
3053
|
"linesCount": {
|
|
3024
|
-
"value":
|
|
3054
|
+
"value": 44
|
|
3025
3055
|
},
|
|
3026
3056
|
"paragraphsCount": {
|
|
3027
|
-
"value":
|
|
3057
|
+
"value": 1
|
|
3028
3058
|
},
|
|
3029
3059
|
"pagesCount": {
|
|
3030
3060
|
"value": 1
|
|
@@ -3075,7 +3105,7 @@
|
|
|
3075
3105
|
"preparations": [
|
|
3076
3106
|
{
|
|
3077
3107
|
"id": 1,
|
|
3078
|
-
"promptbookVersion": "0.100.0-
|
|
3108
|
+
"promptbookVersion": "0.100.0-30",
|
|
3079
3109
|
"usage": {
|
|
3080
3110
|
"price": {
|
|
3081
3111
|
"value": 0
|
|
@@ -3181,26 +3211,38 @@
|
|
|
3181
3211
|
"modelsRequirements": [
|
|
3182
3212
|
{
|
|
3183
3213
|
"modelVariant": "CHAT",
|
|
3184
|
-
"modelName": "
|
|
3185
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3214
|
+
"modelName": "gpt-5",
|
|
3215
|
+
"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.",
|
|
3216
|
+
"temperature": 0.7
|
|
3217
|
+
},
|
|
3218
|
+
{
|
|
3219
|
+
"modelVariant": "CHAT",
|
|
3220
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3221
|
+
"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.",
|
|
3222
|
+
"temperature": 0.6
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
"modelVariant": "CHAT",
|
|
3226
|
+
"modelName": "gpt-4.1",
|
|
3227
|
+
"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.",
|
|
3186
3228
|
"temperature": 0.7
|
|
3187
3229
|
},
|
|
3188
3230
|
{
|
|
3189
3231
|
"modelVariant": "CHAT",
|
|
3190
|
-
"modelName": "
|
|
3191
|
-
"systemMessage": "
|
|
3232
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3233
|
+
"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.",
|
|
3192
3234
|
"temperature": 0.6
|
|
3193
3235
|
},
|
|
3194
3236
|
{
|
|
3195
3237
|
"modelVariant": "CHAT",
|
|
3196
|
-
"modelName": "gemini-
|
|
3197
|
-
"systemMessage": "You are
|
|
3238
|
+
"modelName": "gemini-2.5-pro",
|
|
3239
|
+
"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.",
|
|
3198
3240
|
"temperature": 0.7
|
|
3199
3241
|
},
|
|
3200
3242
|
{
|
|
3201
3243
|
"modelVariant": "CHAT",
|
|
3202
|
-
"modelName": "
|
|
3203
|
-
"systemMessage": "
|
|
3244
|
+
"modelName": "deepseek-chat",
|
|
3245
|
+
"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.",
|
|
3204
3246
|
"temperature": 0.6
|
|
3205
3247
|
}
|
|
3206
3248
|
],
|
|
@@ -3212,55 +3254,55 @@
|
|
|
3212
3254
|
"preparations": [
|
|
3213
3255
|
{
|
|
3214
3256
|
"id": 1,
|
|
3215
|
-
"promptbookVersion": "0.100.0-
|
|
3257
|
+
"promptbookVersion": "0.100.0-30",
|
|
3216
3258
|
"usage": {
|
|
3217
3259
|
"price": {
|
|
3218
|
-
"value": 0.
|
|
3260
|
+
"value": 0.03864
|
|
3219
3261
|
},
|
|
3220
3262
|
"input": {
|
|
3221
3263
|
"tokensCount": {
|
|
3222
|
-
"value":
|
|
3264
|
+
"value": 10335
|
|
3223
3265
|
},
|
|
3224
3266
|
"charactersCount": {
|
|
3225
|
-
"value":
|
|
3267
|
+
"value": 51074
|
|
3226
3268
|
},
|
|
3227
3269
|
"wordsCount": {
|
|
3228
|
-
"value":
|
|
3270
|
+
"value": 6575
|
|
3229
3271
|
},
|
|
3230
3272
|
"sentencesCount": {
|
|
3231
|
-
"value":
|
|
3273
|
+
"value": 505
|
|
3232
3274
|
},
|
|
3233
3275
|
"linesCount": {
|
|
3234
|
-
"value":
|
|
3276
|
+
"value": 837
|
|
3235
3277
|
},
|
|
3236
3278
|
"paragraphsCount": {
|
|
3237
3279
|
"value": 20
|
|
3238
3280
|
},
|
|
3239
3281
|
"pagesCount": {
|
|
3240
|
-
"value":
|
|
3282
|
+
"value": 20
|
|
3241
3283
|
}
|
|
3242
3284
|
},
|
|
3243
3285
|
"output": {
|
|
3244
3286
|
"tokensCount": {
|
|
3245
|
-
"value":
|
|
3287
|
+
"value": 509
|
|
3246
3288
|
},
|
|
3247
3289
|
"charactersCount": {
|
|
3248
|
-
"value":
|
|
3290
|
+
"value": 2357
|
|
3249
3291
|
},
|
|
3250
3292
|
"wordsCount": {
|
|
3251
|
-
"value":
|
|
3293
|
+
"value": 289
|
|
3252
3294
|
},
|
|
3253
3295
|
"sentencesCount": {
|
|
3254
|
-
"value":
|
|
3296
|
+
"value": 24
|
|
3255
3297
|
},
|
|
3256
3298
|
"linesCount": {
|
|
3257
|
-
"value":
|
|
3299
|
+
"value": 62
|
|
3258
3300
|
},
|
|
3259
3301
|
"paragraphsCount": {
|
|
3260
|
-
"value":
|
|
3302
|
+
"value": 1
|
|
3261
3303
|
},
|
|
3262
3304
|
"pagesCount": {
|
|
3263
|
-
"value":
|
|
3305
|
+
"value": 2
|
|
3264
3306
|
}
|
|
3265
3307
|
}
|
|
3266
3308
|
}
|
|
@@ -3331,27 +3373,33 @@
|
|
|
3331
3373
|
"modelsRequirements": [
|
|
3332
3374
|
{
|
|
3333
3375
|
"modelVariant": "CHAT",
|
|
3334
|
-
"modelName": "claude-3-
|
|
3335
|
-
"systemMessage": "You are
|
|
3336
|
-
"temperature": 0.
|
|
3376
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
3377
|
+
"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.",
|
|
3378
|
+
"temperature": 0.3
|
|
3337
3379
|
},
|
|
3338
3380
|
{
|
|
3339
3381
|
"modelVariant": "CHAT",
|
|
3340
|
-
"modelName": "gpt-4",
|
|
3341
|
-
"systemMessage": "
|
|
3342
|
-
"temperature": 0.
|
|
3382
|
+
"modelName": "gpt-4.1",
|
|
3383
|
+
"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.",
|
|
3384
|
+
"temperature": 0.4
|
|
3343
3385
|
},
|
|
3344
3386
|
{
|
|
3345
3387
|
"modelVariant": "CHAT",
|
|
3346
|
-
"modelName": "claude-3-
|
|
3347
|
-
"systemMessage": "You are a
|
|
3348
|
-
"temperature": 0.
|
|
3388
|
+
"modelName": "claude-3-7-haiku-20250115",
|
|
3389
|
+
"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.",
|
|
3390
|
+
"temperature": 0.3
|
|
3349
3391
|
},
|
|
3350
3392
|
{
|
|
3351
3393
|
"modelVariant": "CHAT",
|
|
3352
|
-
"modelName": "gemini-
|
|
3353
|
-
"systemMessage": "You
|
|
3354
|
-
"temperature": 0.
|
|
3394
|
+
"modelName": "gemini-2.5-flash",
|
|
3395
|
+
"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.",
|
|
3396
|
+
"temperature": 0.4
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
"modelVariant": "CHAT",
|
|
3400
|
+
"modelName": "deepseek-chat",
|
|
3401
|
+
"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.",
|
|
3402
|
+
"temperature": 0.3
|
|
3355
3403
|
}
|
|
3356
3404
|
],
|
|
3357
3405
|
"preparationIds": [
|
|
@@ -3362,55 +3410,55 @@
|
|
|
3362
3410
|
"preparations": [
|
|
3363
3411
|
{
|
|
3364
3412
|
"id": 1,
|
|
3365
|
-
"promptbookVersion": "0.100.0-
|
|
3413
|
+
"promptbookVersion": "0.100.0-30",
|
|
3366
3414
|
"usage": {
|
|
3367
3415
|
"price": {
|
|
3368
|
-
"value": 0.
|
|
3416
|
+
"value": 0.038625
|
|
3369
3417
|
},
|
|
3370
3418
|
"input": {
|
|
3371
3419
|
"tokensCount": {
|
|
3372
|
-
"value":
|
|
3420
|
+
"value": 10340
|
|
3373
3421
|
},
|
|
3374
3422
|
"charactersCount": {
|
|
3375
|
-
"value":
|
|
3423
|
+
"value": 51082
|
|
3376
3424
|
},
|
|
3377
3425
|
"wordsCount": {
|
|
3378
|
-
"value":
|
|
3426
|
+
"value": 6577
|
|
3379
3427
|
},
|
|
3380
3428
|
"sentencesCount": {
|
|
3381
|
-
"value":
|
|
3429
|
+
"value": 505
|
|
3382
3430
|
},
|
|
3383
3431
|
"linesCount": {
|
|
3384
|
-
"value":
|
|
3432
|
+
"value": 838
|
|
3385
3433
|
},
|
|
3386
3434
|
"paragraphsCount": {
|
|
3387
3435
|
"value": 20
|
|
3388
3436
|
},
|
|
3389
3437
|
"pagesCount": {
|
|
3390
|
-
"value":
|
|
3438
|
+
"value": 20
|
|
3391
3439
|
}
|
|
3392
3440
|
},
|
|
3393
3441
|
"output": {
|
|
3394
3442
|
"tokensCount": {
|
|
3395
|
-
"value":
|
|
3443
|
+
"value": 507
|
|
3396
3444
|
},
|
|
3397
3445
|
"charactersCount": {
|
|
3398
|
-
"value":
|
|
3446
|
+
"value": 2291
|
|
3399
3447
|
},
|
|
3400
3448
|
"wordsCount": {
|
|
3401
|
-
"value":
|
|
3449
|
+
"value": 300
|
|
3402
3450
|
},
|
|
3403
3451
|
"sentencesCount": {
|
|
3404
|
-
"value":
|
|
3452
|
+
"value": 24
|
|
3405
3453
|
},
|
|
3406
3454
|
"linesCount": {
|
|
3407
|
-
"value":
|
|
3455
|
+
"value": 57
|
|
3408
3456
|
},
|
|
3409
3457
|
"paragraphsCount": {
|
|
3410
|
-
"value":
|
|
3458
|
+
"value": 1
|
|
3411
3459
|
},
|
|
3412
3460
|
"pagesCount": {
|
|
3413
|
-
"value":
|
|
3461
|
+
"value": 2
|
|
3414
3462
|
}
|
|
3415
3463
|
}
|
|
3416
3464
|
}
|
|
@@ -3658,21 +3706,33 @@
|
|
|
3658
3706
|
"modelsRequirements": [
|
|
3659
3707
|
{
|
|
3660
3708
|
"modelVariant": "CHAT",
|
|
3661
|
-
"modelName": "
|
|
3662
|
-
"systemMessage": "You are
|
|
3663
|
-
"temperature": 0.
|
|
3709
|
+
"modelName": "gpt-5",
|
|
3710
|
+
"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.",
|
|
3711
|
+
"temperature": 0.6
|
|
3664
3712
|
},
|
|
3665
3713
|
{
|
|
3666
3714
|
"modelVariant": "CHAT",
|
|
3667
|
-
"modelName": "
|
|
3668
|
-
"systemMessage": "You are
|
|
3669
|
-
"temperature": 0.
|
|
3715
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3716
|
+
"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.",
|
|
3717
|
+
"temperature": 0.7
|
|
3670
3718
|
},
|
|
3671
3719
|
{
|
|
3672
3720
|
"modelVariant": "CHAT",
|
|
3673
|
-
"modelName": "
|
|
3674
|
-
"systemMessage": "
|
|
3721
|
+
"modelName": "gemini-2.5-pro",
|
|
3722
|
+
"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.",
|
|
3675
3723
|
"temperature": 0.5
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
"modelVariant": "CHAT",
|
|
3727
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3728
|
+
"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.",
|
|
3729
|
+
"temperature": 0.6
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"modelVariant": "CHAT",
|
|
3733
|
+
"modelName": "gpt-4.1",
|
|
3734
|
+
"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.",
|
|
3735
|
+
"temperature": 0.7
|
|
3676
3736
|
}
|
|
3677
3737
|
],
|
|
3678
3738
|
"preparationIds": [
|
|
@@ -3683,55 +3743,55 @@
|
|
|
3683
3743
|
"preparations": [
|
|
3684
3744
|
{
|
|
3685
3745
|
"id": 1,
|
|
3686
|
-
"promptbookVersion": "0.100.0-
|
|
3746
|
+
"promptbookVersion": "0.100.0-30",
|
|
3687
3747
|
"usage": {
|
|
3688
3748
|
"price": {
|
|
3689
|
-
"value": 0.
|
|
3749
|
+
"value": 0.039078
|
|
3690
3750
|
},
|
|
3691
3751
|
"input": {
|
|
3692
3752
|
"tokensCount": {
|
|
3693
|
-
"value":
|
|
3753
|
+
"value": 10336
|
|
3694
3754
|
},
|
|
3695
3755
|
"charactersCount": {
|
|
3696
|
-
"value":
|
|
3756
|
+
"value": 51042
|
|
3697
3757
|
},
|
|
3698
3758
|
"wordsCount": {
|
|
3699
|
-
"value":
|
|
3759
|
+
"value": 6572
|
|
3700
3760
|
},
|
|
3701
3761
|
"sentencesCount": {
|
|
3702
|
-
"value":
|
|
3762
|
+
"value": 505
|
|
3703
3763
|
},
|
|
3704
3764
|
"linesCount": {
|
|
3705
|
-
"value":
|
|
3765
|
+
"value": 837
|
|
3706
3766
|
},
|
|
3707
3767
|
"paragraphsCount": {
|
|
3708
3768
|
"value": 20
|
|
3709
3769
|
},
|
|
3710
3770
|
"pagesCount": {
|
|
3711
|
-
"value":
|
|
3771
|
+
"value": 20
|
|
3712
3772
|
}
|
|
3713
3773
|
},
|
|
3714
3774
|
"output": {
|
|
3715
3775
|
"tokensCount": {
|
|
3716
|
-
"value":
|
|
3776
|
+
"value": 538
|
|
3717
3777
|
},
|
|
3718
3778
|
"charactersCount": {
|
|
3719
|
-
"value":
|
|
3779
|
+
"value": 2392
|
|
3720
3780
|
},
|
|
3721
3781
|
"wordsCount": {
|
|
3722
|
-
"value":
|
|
3782
|
+
"value": 300
|
|
3723
3783
|
},
|
|
3724
3784
|
"sentencesCount": {
|
|
3725
|
-
"value":
|
|
3785
|
+
"value": 26
|
|
3726
3786
|
},
|
|
3727
3787
|
"linesCount": {
|
|
3728
|
-
"value":
|
|
3788
|
+
"value": 58
|
|
3729
3789
|
},
|
|
3730
3790
|
"paragraphsCount": {
|
|
3731
|
-
"value":
|
|
3791
|
+
"value": 1
|
|
3732
3792
|
},
|
|
3733
3793
|
"pagesCount": {
|
|
3734
|
-
"value":
|
|
3794
|
+
"value": 2
|
|
3735
3795
|
}
|
|
3736
3796
|
}
|
|
3737
3797
|
}
|
|
@@ -3793,33 +3853,33 @@
|
|
|
3793
3853
|
"modelsRequirements": [
|
|
3794
3854
|
{
|
|
3795
3855
|
"modelVariant": "CHAT",
|
|
3796
|
-
"modelName": "
|
|
3797
|
-
"systemMessage": "You are an accomplished poet and storyteller with a
|
|
3856
|
+
"modelName": "gpt-5",
|
|
3857
|
+
"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.",
|
|
3798
3858
|
"temperature": 0.8
|
|
3799
3859
|
},
|
|
3800
3860
|
{
|
|
3801
3861
|
"modelVariant": "CHAT",
|
|
3802
|
-
"modelName": "
|
|
3803
|
-
"systemMessage": "You are an accomplished poet and storyteller, skilled in the art of language and narrative.
|
|
3804
|
-
"temperature": 0.
|
|
3862
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3863
|
+
"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.",
|
|
3864
|
+
"temperature": 0.9
|
|
3805
3865
|
},
|
|
3806
3866
|
{
|
|
3807
3867
|
"modelVariant": "CHAT",
|
|
3808
|
-
"modelName": "
|
|
3809
|
-
"systemMessage": "
|
|
3868
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3869
|
+
"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.",
|
|
3810
3870
|
"temperature": 0.7
|
|
3811
3871
|
},
|
|
3812
3872
|
{
|
|
3813
3873
|
"modelVariant": "CHAT",
|
|
3814
|
-
"modelName": "
|
|
3815
|
-
"systemMessage": "You are
|
|
3816
|
-
"temperature": 0.
|
|
3874
|
+
"modelName": "gemini-2.5-pro",
|
|
3875
|
+
"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.",
|
|
3876
|
+
"temperature": 0.8
|
|
3817
3877
|
},
|
|
3818
3878
|
{
|
|
3819
3879
|
"modelVariant": "CHAT",
|
|
3820
|
-
"modelName": "
|
|
3821
|
-
"systemMessage": "You are an
|
|
3822
|
-
"temperature": 0.
|
|
3880
|
+
"modelName": "deepseek-v4-0812",
|
|
3881
|
+
"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.",
|
|
3882
|
+
"temperature": 0.9
|
|
3823
3883
|
}
|
|
3824
3884
|
],
|
|
3825
3885
|
"preparationIds": [
|
|
@@ -3830,52 +3890,52 @@
|
|
|
3830
3890
|
"preparations": [
|
|
3831
3891
|
{
|
|
3832
3892
|
"id": 1,
|
|
3833
|
-
"promptbookVersion": "0.100.0-
|
|
3893
|
+
"promptbookVersion": "0.100.0-30",
|
|
3834
3894
|
"usage": {
|
|
3835
3895
|
"price": {
|
|
3836
|
-
"value": 0.
|
|
3896
|
+
"value": 0.037365
|
|
3837
3897
|
},
|
|
3838
3898
|
"input": {
|
|
3839
3899
|
"tokensCount": {
|
|
3840
|
-
"value":
|
|
3900
|
+
"value": 10335
|
|
3841
3901
|
},
|
|
3842
3902
|
"charactersCount": {
|
|
3843
|
-
"value":
|
|
3903
|
+
"value": 51054
|
|
3844
3904
|
},
|
|
3845
3905
|
"wordsCount": {
|
|
3846
|
-
"value":
|
|
3906
|
+
"value": 6574
|
|
3847
3907
|
},
|
|
3848
3908
|
"sentencesCount": {
|
|
3849
|
-
"value":
|
|
3909
|
+
"value": 505
|
|
3850
3910
|
},
|
|
3851
3911
|
"linesCount": {
|
|
3852
|
-
"value":
|
|
3912
|
+
"value": 837
|
|
3853
3913
|
},
|
|
3854
3914
|
"paragraphsCount": {
|
|
3855
3915
|
"value": 20
|
|
3856
3916
|
},
|
|
3857
3917
|
"pagesCount": {
|
|
3858
|
-
"value":
|
|
3918
|
+
"value": 20
|
|
3859
3919
|
}
|
|
3860
3920
|
},
|
|
3861
3921
|
"output": {
|
|
3862
3922
|
"tokensCount": {
|
|
3863
|
-
"value":
|
|
3923
|
+
"value": 424
|
|
3864
3924
|
},
|
|
3865
3925
|
"charactersCount": {
|
|
3866
|
-
"value":
|
|
3926
|
+
"value": 1697
|
|
3867
3927
|
},
|
|
3868
3928
|
"wordsCount": {
|
|
3869
|
-
"value":
|
|
3929
|
+
"value": 236
|
|
3870
3930
|
},
|
|
3871
3931
|
"sentencesCount": {
|
|
3872
3932
|
"value": 17
|
|
3873
3933
|
},
|
|
3874
3934
|
"linesCount": {
|
|
3875
|
-
"value":
|
|
3935
|
+
"value": 46
|
|
3876
3936
|
},
|
|
3877
3937
|
"paragraphsCount": {
|
|
3878
|
-
"value":
|
|
3938
|
+
"value": 1
|
|
3879
3939
|
},
|
|
3880
3940
|
"pagesCount": {
|
|
3881
3941
|
"value": 2
|