@promptbook/templates 0.100.0-4 → 0.100.0-41
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 +281 -203
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +14 -0
- package/esm/typings/src/_packages/core.index.d.ts +26 -0
- package/esm/typings/src/_packages/types.index.d.ts +34 -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/AvatarProfile/AvatarChip/AvatarChip.d.ts +35 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChipFromSource.d.ts +21 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/index.d.ts +2 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +35 -0
- package/esm/typings/src/book-components/BookEditor/config.d.ts +10 -0
- package/esm/typings/src/book-components/BookEditor/injectCssModuleIntoShadowRoot.d.ts +11 -0
- package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +7 -0
- package/esm/typings/src/book-components/_common/react-utils/collectCssTextsForClass.d.ts +7 -0
- package/esm/typings/src/book-components/_common/react-utils/escapeHtml.d.ts +6 -0
- package/esm/typings/src/book-components/_common/react-utils/escapeRegex.d.ts +6 -0
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +27 -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 +281 -203
- 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-41';
|
|
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,51 @@
|
|
|
1541
1541
|
"modelsRequirements": [
|
|
1542
1542
|
{
|
|
1543
1543
|
"modelVariant": "CHAT",
|
|
1544
|
-
"modelName": "gpt-
|
|
1545
|
-
"systemMessage": "You are an
|
|
1546
|
-
"temperature": 0.
|
|
1544
|
+
"modelName": "gpt-5",
|
|
1545
|
+
"systemMessage": "You are an experienced developer and helpful assistant specializing in the Promptbook Project. You have deep knowledge of prompt engineering, AI model integration, and development best practices. You provide clear, practical guidance and support for all aspects of the Promptbook Project.",
|
|
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 a skilled developer and technical advisor for the Promptbook Project. You excel at explaining complex concepts clearly, troubleshooting issues, and providing practical solutions for prompt engineering and AI development workflows.",
|
|
1552
|
+
"temperature": 0.4
|
|
1553
1553
|
},
|
|
1554
1554
|
{
|
|
1555
1555
|
"modelVariant": "CHAT",
|
|
1556
|
-
"modelName": "
|
|
1557
|
-
"systemMessage": "You are
|
|
1558
|
-
"temperature": 0.
|
|
1556
|
+
"modelName": "gpt-4.1",
|
|
1557
|
+
"systemMessage": "You are a knowledgeable developer working on the Promptbook Project. You help users understand prompt engineering concepts, debug issues, and implement best practices for AI-powered applications.",
|
|
1558
|
+
"temperature": 0.3
|
|
1559
1559
|
},
|
|
1560
1560
|
{
|
|
1561
1561
|
"modelVariant": "CHAT",
|
|
1562
|
-
"modelName": "
|
|
1563
|
-
"systemMessage": "
|
|
1562
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
1563
|
+
"systemMessage": "You are an expert developer and contributor to the Promptbook Project. You provide comprehensive support for prompt engineering, model integration, and development workflows with clear explanations and practical examples.",
|
|
1564
1564
|
"temperature": 0.4
|
|
1565
1565
|
},
|
|
1566
1566
|
{
|
|
1567
1567
|
"modelVariant": "CHAT",
|
|
1568
|
-
"modelName": "
|
|
1569
|
-
"systemMessage": "You are a
|
|
1570
|
-
"temperature": 0.
|
|
1568
|
+
"modelName": "gemini-2.5-pro",
|
|
1569
|
+
"systemMessage": "You are a professional developer specializing in the Promptbook Project. You assist with prompt engineering, AI model implementation, and development best practices, offering detailed technical guidance and solutions.",
|
|
1570
|
+
"temperature": 0.3
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"modelVariant": "CHAT",
|
|
1574
|
+
"modelName": "deepseek-chat",
|
|
1575
|
+
"systemMessage": "You are a dedicated developer of the Promptbook Project. You help users with prompt engineering techniques, troubleshooting, and implementing effective AI workflows with practical, actionable advice.",
|
|
1576
|
+
"temperature": 0.4
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"modelVariant": "CHAT",
|
|
1580
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
1581
|
+
"systemMessage": "You are a responsive developer and supporter of the Promptbook Project. You provide quick, helpful guidance on prompt engineering, development practices, and project implementation with efficient, clear responses.",
|
|
1582
|
+
"temperature": 0.5
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"modelVariant": "CHAT",
|
|
1586
|
+
"modelName": "gemini-2.5-flash",
|
|
1587
|
+
"systemMessage": "You are an efficient developer working on the Promptbook Project. You deliver fast, practical assistance with prompt engineering, AI integration, and development workflows while maintaining high quality responses.",
|
|
1588
|
+
"temperature": 0.4
|
|
1571
1589
|
}
|
|
1572
1590
|
],
|
|
1573
1591
|
"preparationIds": [
|
|
@@ -1578,52 +1596,52 @@
|
|
|
1578
1596
|
"preparations": [
|
|
1579
1597
|
{
|
|
1580
1598
|
"id": 1,
|
|
1581
|
-
"promptbookVersion": "0.100.0-
|
|
1599
|
+
"promptbookVersion": "0.100.0-40",
|
|
1582
1600
|
"usage": {
|
|
1583
1601
|
"price": {
|
|
1584
|
-
"value": 0.
|
|
1602
|
+
"value": 0.040614
|
|
1585
1603
|
},
|
|
1586
1604
|
"input": {
|
|
1587
1605
|
"tokensCount": {
|
|
1588
|
-
"value":
|
|
1606
|
+
"value": 10413
|
|
1589
1607
|
},
|
|
1590
1608
|
"charactersCount": {
|
|
1591
|
-
"value":
|
|
1609
|
+
"value": 51283
|
|
1592
1610
|
},
|
|
1593
1611
|
"wordsCount": {
|
|
1594
|
-
"value":
|
|
1612
|
+
"value": 6605
|
|
1595
1613
|
},
|
|
1596
1614
|
"sentencesCount": {
|
|
1597
|
-
"value":
|
|
1615
|
+
"value": 505
|
|
1598
1616
|
},
|
|
1599
1617
|
"linesCount": {
|
|
1600
|
-
"value":
|
|
1618
|
+
"value": 841
|
|
1601
1619
|
},
|
|
1602
1620
|
"paragraphsCount": {
|
|
1603
1621
|
"value": 20
|
|
1604
1622
|
},
|
|
1605
1623
|
"pagesCount": {
|
|
1606
|
-
"value":
|
|
1624
|
+
"value": 20
|
|
1607
1625
|
}
|
|
1608
1626
|
},
|
|
1609
1627
|
"output": {
|
|
1610
1628
|
"tokensCount": {
|
|
1611
|
-
"value":
|
|
1629
|
+
"value": 625
|
|
1612
1630
|
},
|
|
1613
1631
|
"charactersCount": {
|
|
1614
|
-
"value":
|
|
1632
|
+
"value": 2550
|
|
1615
1633
|
},
|
|
1616
1634
|
"wordsCount": {
|
|
1617
|
-
"value":
|
|
1635
|
+
"value": 325
|
|
1618
1636
|
},
|
|
1619
1637
|
"sentencesCount": {
|
|
1620
|
-
"value":
|
|
1638
|
+
"value": 29
|
|
1621
1639
|
},
|
|
1622
1640
|
"linesCount": {
|
|
1623
|
-
"value":
|
|
1641
|
+
"value": 70
|
|
1624
1642
|
},
|
|
1625
1643
|
"paragraphsCount": {
|
|
1626
|
-
"value":
|
|
1644
|
+
"value": 1
|
|
1627
1645
|
},
|
|
1628
1646
|
"pagesCount": {
|
|
1629
1647
|
"value": 2
|
|
@@ -2106,33 +2124,51 @@
|
|
|
2106
2124
|
"modelsRequirements": [
|
|
2107
2125
|
{
|
|
2108
2126
|
"modelVariant": "CHAT",
|
|
2109
|
-
"modelName": "gpt-
|
|
2110
|
-
"systemMessage": "You are an
|
|
2111
|
-
"temperature": 0.
|
|
2127
|
+
"modelName": "gpt-5",
|
|
2128
|
+
"systemMessage": "You are an experienced developer and helpful assistant specializing in the Promptbook Project. You have deep knowledge of prompt engineering, AI model integration, and development best practices. You provide clear, practical guidance and support for all aspects of the Promptbook Project.",
|
|
2129
|
+
"temperature": 0.3
|
|
2112
2130
|
},
|
|
2113
2131
|
{
|
|
2114
2132
|
"modelVariant": "CHAT",
|
|
2115
|
-
"modelName": "claude-
|
|
2116
|
-
"systemMessage": "
|
|
2117
|
-
"temperature": 0.
|
|
2133
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2134
|
+
"systemMessage": "You are a skilled developer and technical advisor for the Promptbook Project. You excel at explaining complex concepts clearly, troubleshooting issues, and providing practical solutions for prompt engineering and AI development workflows.",
|
|
2135
|
+
"temperature": 0.4
|
|
2118
2136
|
},
|
|
2119
2137
|
{
|
|
2120
2138
|
"modelVariant": "CHAT",
|
|
2121
|
-
"modelName": "
|
|
2122
|
-
"systemMessage": "You are
|
|
2123
|
-
"temperature": 0.
|
|
2139
|
+
"modelName": "gpt-4.1",
|
|
2140
|
+
"systemMessage": "You are a knowledgeable developer working on the Promptbook Project. You help users understand prompt engineering concepts, debug issues, and implement best practices for AI-powered applications.",
|
|
2141
|
+
"temperature": 0.3
|
|
2124
2142
|
},
|
|
2125
2143
|
{
|
|
2126
2144
|
"modelVariant": "CHAT",
|
|
2127
|
-
"modelName": "
|
|
2128
|
-
"systemMessage": "
|
|
2145
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2146
|
+
"systemMessage": "You are an expert developer and contributor to the Promptbook Project. You provide comprehensive support for prompt engineering, model integration, and development workflows with clear explanations and practical examples.",
|
|
2129
2147
|
"temperature": 0.4
|
|
2130
2148
|
},
|
|
2131
2149
|
{
|
|
2132
2150
|
"modelVariant": "CHAT",
|
|
2133
|
-
"modelName": "
|
|
2134
|
-
"systemMessage": "You are a
|
|
2135
|
-
"temperature": 0.
|
|
2151
|
+
"modelName": "gemini-2.5-pro",
|
|
2152
|
+
"systemMessage": "You are a professional developer specializing in the Promptbook Project. You assist with prompt engineering, AI model implementation, and development best practices, offering detailed technical guidance and solutions.",
|
|
2153
|
+
"temperature": 0.3
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"modelVariant": "CHAT",
|
|
2157
|
+
"modelName": "deepseek-chat",
|
|
2158
|
+
"systemMessage": "You are a dedicated developer of the Promptbook Project. You help users with prompt engineering techniques, troubleshooting, and implementing effective AI workflows with practical, actionable advice.",
|
|
2159
|
+
"temperature": 0.4
|
|
2160
|
+
},
|
|
2161
|
+
{
|
|
2162
|
+
"modelVariant": "CHAT",
|
|
2163
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
2164
|
+
"systemMessage": "You are a responsive developer and supporter of the Promptbook Project. You provide quick, helpful guidance on prompt engineering, development practices, and project implementation with efficient, clear responses.",
|
|
2165
|
+
"temperature": 0.5
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
"modelVariant": "CHAT",
|
|
2169
|
+
"modelName": "gemini-2.5-flash",
|
|
2170
|
+
"systemMessage": "You are an efficient developer working on the Promptbook Project. You deliver fast, practical assistance with prompt engineering, AI integration, and development workflows while maintaining high quality responses.",
|
|
2171
|
+
"temperature": 0.4
|
|
2136
2172
|
}
|
|
2137
2173
|
],
|
|
2138
2174
|
"preparationIds": [
|
|
@@ -2143,52 +2179,52 @@
|
|
|
2143
2179
|
"preparations": [
|
|
2144
2180
|
{
|
|
2145
2181
|
"id": 1,
|
|
2146
|
-
"promptbookVersion": "0.100.0-
|
|
2182
|
+
"promptbookVersion": "0.100.0-40",
|
|
2147
2183
|
"usage": {
|
|
2148
2184
|
"price": {
|
|
2149
|
-
"value": 0.
|
|
2185
|
+
"value": 0.040614
|
|
2150
2186
|
},
|
|
2151
2187
|
"input": {
|
|
2152
2188
|
"tokensCount": {
|
|
2153
|
-
"value":
|
|
2189
|
+
"value": 10413
|
|
2154
2190
|
},
|
|
2155
2191
|
"charactersCount": {
|
|
2156
|
-
"value":
|
|
2192
|
+
"value": 51283
|
|
2157
2193
|
},
|
|
2158
2194
|
"wordsCount": {
|
|
2159
|
-
"value":
|
|
2195
|
+
"value": 6605
|
|
2160
2196
|
},
|
|
2161
2197
|
"sentencesCount": {
|
|
2162
|
-
"value":
|
|
2198
|
+
"value": 505
|
|
2163
2199
|
},
|
|
2164
2200
|
"linesCount": {
|
|
2165
|
-
"value":
|
|
2201
|
+
"value": 841
|
|
2166
2202
|
},
|
|
2167
2203
|
"paragraphsCount": {
|
|
2168
2204
|
"value": 20
|
|
2169
2205
|
},
|
|
2170
2206
|
"pagesCount": {
|
|
2171
|
-
"value":
|
|
2207
|
+
"value": 20
|
|
2172
2208
|
}
|
|
2173
2209
|
},
|
|
2174
2210
|
"output": {
|
|
2175
2211
|
"tokensCount": {
|
|
2176
|
-
"value":
|
|
2212
|
+
"value": 625
|
|
2177
2213
|
},
|
|
2178
2214
|
"charactersCount": {
|
|
2179
|
-
"value":
|
|
2215
|
+
"value": 2550
|
|
2180
2216
|
},
|
|
2181
2217
|
"wordsCount": {
|
|
2182
|
-
"value":
|
|
2218
|
+
"value": 325
|
|
2183
2219
|
},
|
|
2184
2220
|
"sentencesCount": {
|
|
2185
|
-
"value":
|
|
2221
|
+
"value": 29
|
|
2186
2222
|
},
|
|
2187
2223
|
"linesCount": {
|
|
2188
|
-
"value":
|
|
2224
|
+
"value": 70
|
|
2189
2225
|
},
|
|
2190
2226
|
"paragraphsCount": {
|
|
2191
|
-
"value":
|
|
2227
|
+
"value": 1
|
|
2192
2228
|
},
|
|
2193
2229
|
"pagesCount": {
|
|
2194
2230
|
"value": 2
|
|
@@ -2812,21 +2848,33 @@
|
|
|
2812
2848
|
"modelsRequirements": [
|
|
2813
2849
|
{
|
|
2814
2850
|
"modelVariant": "CHAT",
|
|
2815
|
-
"modelName": "
|
|
2816
|
-
"systemMessage": "You are
|
|
2851
|
+
"modelName": "gpt-4.1",
|
|
2852
|
+
"systemMessage": "You are a professional linguist and language corrector with expertise in grammar, syntax, semantics, and style. Help users improve their writing by identifying errors, suggesting corrections, and explaining linguistic principles. Provide detailed feedback on grammar, punctuation, word choice, and overall clarity while being constructive and educational.",
|
|
2853
|
+
"temperature": 0.2
|
|
2854
|
+
},
|
|
2855
|
+
{
|
|
2856
|
+
"modelVariant": "CHAT",
|
|
2857
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2858
|
+
"systemMessage": "You are an expert linguist and text corrector specializing in language analysis and improvement. Your role is to identify grammatical errors, suggest stylistic improvements, and provide clear explanations for your corrections. Focus on accuracy, clarity, and helping users understand the underlying linguistic principles.",
|
|
2817
2859
|
"temperature": 0.3
|
|
2818
2860
|
},
|
|
2819
2861
|
{
|
|
2820
2862
|
"modelVariant": "CHAT",
|
|
2821
|
-
"modelName": "
|
|
2822
|
-
"systemMessage": "
|
|
2863
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2864
|
+
"systemMessage": "You are a skilled linguist and language corrector with deep knowledge of grammar, syntax, and writing conventions. Analyze text for errors, provide corrections with explanations, and offer suggestions to enhance clarity and style. Be thorough yet approachable in your feedback.",
|
|
2823
2865
|
"temperature": 0.2
|
|
2824
2866
|
},
|
|
2825
2867
|
{
|
|
2826
2868
|
"modelVariant": "CHAT",
|
|
2827
|
-
"modelName": "
|
|
2828
|
-
"systemMessage": "You are a
|
|
2829
|
-
"temperature": 0.
|
|
2869
|
+
"modelName": "gemini-2.5-pro",
|
|
2870
|
+
"systemMessage": "You are a professional linguist and corrector with extensive knowledge of language structure, grammar rules, and writing best practices. Help users refine their text by identifying errors, explaining corrections, and providing guidance on improving overall communication effectiveness.",
|
|
2871
|
+
"temperature": 0.3
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
"modelVariant": "CHAT",
|
|
2875
|
+
"modelName": "deepseek-chat",
|
|
2876
|
+
"systemMessage": "You are an experienced linguist and language corrector dedicated to helping users improve their writing. Identify grammatical errors, suggest corrections, and explain the reasoning behind your recommendations. Focus on clarity, accuracy, and educational value in your feedback.",
|
|
2877
|
+
"temperature": 0.2
|
|
2830
2878
|
}
|
|
2831
2879
|
],
|
|
2832
2880
|
"preparationIds": [
|
|
@@ -2837,55 +2885,55 @@
|
|
|
2837
2885
|
"preparations": [
|
|
2838
2886
|
{
|
|
2839
2887
|
"id": 1,
|
|
2840
|
-
"promptbookVersion": "0.100.0-
|
|
2888
|
+
"promptbookVersion": "0.100.0-40",
|
|
2841
2889
|
"usage": {
|
|
2842
2890
|
"price": {
|
|
2843
|
-
"value": 0.
|
|
2891
|
+
"value": 0.038256
|
|
2844
2892
|
},
|
|
2845
2893
|
"input": {
|
|
2846
2894
|
"tokensCount": {
|
|
2847
|
-
"value":
|
|
2895
|
+
"value": 10412
|
|
2848
2896
|
},
|
|
2849
2897
|
"charactersCount": {
|
|
2850
|
-
"value":
|
|
2898
|
+
"value": 51270
|
|
2851
2899
|
},
|
|
2852
2900
|
"wordsCount": {
|
|
2853
|
-
"value":
|
|
2901
|
+
"value": 6603
|
|
2854
2902
|
},
|
|
2855
2903
|
"sentencesCount": {
|
|
2856
|
-
"value":
|
|
2904
|
+
"value": 505
|
|
2857
2905
|
},
|
|
2858
2906
|
"linesCount": {
|
|
2859
|
-
"value":
|
|
2907
|
+
"value": 841
|
|
2860
2908
|
},
|
|
2861
2909
|
"paragraphsCount": {
|
|
2862
2910
|
"value": 20
|
|
2863
2911
|
},
|
|
2864
2912
|
"pagesCount": {
|
|
2865
|
-
"value":
|
|
2913
|
+
"value": 20
|
|
2866
2914
|
}
|
|
2867
2915
|
},
|
|
2868
2916
|
"output": {
|
|
2869
2917
|
"tokensCount": {
|
|
2870
|
-
"value":
|
|
2918
|
+
"value": 468
|
|
2871
2919
|
},
|
|
2872
2920
|
"charactersCount": {
|
|
2873
|
-
"value":
|
|
2921
|
+
"value": 2001
|
|
2874
2922
|
},
|
|
2875
2923
|
"wordsCount": {
|
|
2876
|
-
"value":
|
|
2924
|
+
"value": 257
|
|
2877
2925
|
},
|
|
2878
2926
|
"sentencesCount": {
|
|
2879
|
-
"value":
|
|
2927
|
+
"value": 22
|
|
2880
2928
|
},
|
|
2881
2929
|
"linesCount": {
|
|
2882
|
-
"value":
|
|
2930
|
+
"value": 52
|
|
2883
2931
|
},
|
|
2884
2932
|
"paragraphsCount": {
|
|
2885
|
-
"value":
|
|
2933
|
+
"value": 1
|
|
2886
2934
|
},
|
|
2887
2935
|
"pagesCount": {
|
|
2888
|
-
"value":
|
|
2936
|
+
"value": 2
|
|
2889
2937
|
}
|
|
2890
2938
|
}
|
|
2891
2939
|
}
|
|
@@ -2948,27 +2996,33 @@
|
|
|
2948
2996
|
"modelsRequirements": [
|
|
2949
2997
|
{
|
|
2950
2998
|
"modelVariant": "CHAT",
|
|
2951
|
-
"modelName": "gpt-4",
|
|
2952
|
-
"systemMessage": "You are
|
|
2999
|
+
"modelName": "gpt-4.1",
|
|
3000
|
+
"systemMessage": "You are a skilled copywriter specializing in e-commerce. Help create compelling product descriptions, persuasive marketing copy, and engaging content that drives sales. Focus on highlighting benefits, addressing customer pain points, and using persuasive language that converts browsers into buyers.",
|
|
2953
3001
|
"temperature": 0.7
|
|
2954
3002
|
},
|
|
2955
3003
|
{
|
|
2956
3004
|
"modelVariant": "CHAT",
|
|
2957
|
-
"modelName": "claude-
|
|
2958
|
-
"systemMessage": "You are
|
|
3005
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3006
|
+
"systemMessage": "You are an expert e-commerce copywriter with deep understanding of online sales psychology. Create compelling product descriptions, marketing copy, and content that resonates with customers and drives conversions. Emphasize benefits over features and craft persuasive, customer-focused messaging.",
|
|
2959
3007
|
"temperature": 0.6
|
|
2960
3008
|
},
|
|
2961
3009
|
{
|
|
2962
3010
|
"modelVariant": "CHAT",
|
|
2963
|
-
"modelName": "gemini-
|
|
2964
|
-
"systemMessage": "
|
|
2965
|
-
"temperature": 0.
|
|
3011
|
+
"modelName": "gemini-2.5-flash",
|
|
3012
|
+
"systemMessage": "You are a professional copywriter specializing in e-commerce content. Your expertise lies in creating persuasive product descriptions, compelling marketing copy, and engaging content that converts visitors into customers. Focus on customer benefits, emotional triggers, and clear calls-to-action.",
|
|
3013
|
+
"temperature": 0.7
|
|
2966
3014
|
},
|
|
2967
3015
|
{
|
|
2968
3016
|
"modelVariant": "CHAT",
|
|
2969
|
-
"modelName": "
|
|
2970
|
-
"systemMessage": "You are a
|
|
2971
|
-
"temperature": 0.
|
|
3017
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
3018
|
+
"systemMessage": "You are a skilled e-commerce copywriter focused on creating high-converting product descriptions and marketing content. Write persuasive copy that highlights customer benefits, addresses objections, and motivates purchases. Keep content engaging, scannable, and action-oriented.",
|
|
3019
|
+
"temperature": 0.8
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
"modelVariant": "CHAT",
|
|
3023
|
+
"modelName": "deepseek-chat",
|
|
3024
|
+
"systemMessage": "You are an experienced copywriter specializing in e-commerce marketing. Create compelling product descriptions, persuasive sales copy, and engaging content that drives online sales. Focus on customer benefits, emotional appeals, and clear value propositions.",
|
|
3025
|
+
"temperature": 0.6
|
|
2972
3026
|
}
|
|
2973
3027
|
],
|
|
2974
3028
|
"preparationIds": [
|
|
@@ -2979,55 +3033,55 @@
|
|
|
2979
3033
|
"preparations": [
|
|
2980
3034
|
{
|
|
2981
3035
|
"id": 1,
|
|
2982
|
-
"promptbookVersion": "0.100.0-
|
|
3036
|
+
"promptbookVersion": "0.100.0-40",
|
|
2983
3037
|
"usage": {
|
|
2984
3038
|
"price": {
|
|
2985
|
-
"value": 0.
|
|
3039
|
+
"value": 0.038181
|
|
2986
3040
|
},
|
|
2987
3041
|
"input": {
|
|
2988
3042
|
"tokensCount": {
|
|
2989
|
-
"value":
|
|
3043
|
+
"value": 10412
|
|
2990
3044
|
},
|
|
2991
3045
|
"charactersCount": {
|
|
2992
|
-
"value":
|
|
3046
|
+
"value": 51274
|
|
2993
3047
|
},
|
|
2994
3048
|
"wordsCount": {
|
|
2995
|
-
"value":
|
|
3049
|
+
"value": 6603
|
|
2996
3050
|
},
|
|
2997
3051
|
"sentencesCount": {
|
|
2998
|
-
"value":
|
|
3052
|
+
"value": 505
|
|
2999
3053
|
},
|
|
3000
3054
|
"linesCount": {
|
|
3001
|
-
"value":
|
|
3055
|
+
"value": 841
|
|
3002
3056
|
},
|
|
3003
3057
|
"paragraphsCount": {
|
|
3004
3058
|
"value": 20
|
|
3005
3059
|
},
|
|
3006
3060
|
"pagesCount": {
|
|
3007
|
-
"value":
|
|
3061
|
+
"value": 20
|
|
3008
3062
|
}
|
|
3009
3063
|
},
|
|
3010
3064
|
"output": {
|
|
3011
3065
|
"tokensCount": {
|
|
3012
|
-
"value":
|
|
3066
|
+
"value": 463
|
|
3013
3067
|
},
|
|
3014
3068
|
"charactersCount": {
|
|
3015
|
-
"value":
|
|
3069
|
+
"value": 1916
|
|
3016
3070
|
},
|
|
3017
3071
|
"wordsCount": {
|
|
3018
|
-
"value":
|
|
3072
|
+
"value": 243
|
|
3019
3073
|
},
|
|
3020
3074
|
"sentencesCount": {
|
|
3021
|
-
"value":
|
|
3075
|
+
"value": 23
|
|
3022
3076
|
},
|
|
3023
3077
|
"linesCount": {
|
|
3024
|
-
"value":
|
|
3078
|
+
"value": 52
|
|
3025
3079
|
},
|
|
3026
3080
|
"paragraphsCount": {
|
|
3027
|
-
"value":
|
|
3081
|
+
"value": 1
|
|
3028
3082
|
},
|
|
3029
3083
|
"pagesCount": {
|
|
3030
|
-
"value":
|
|
3084
|
+
"value": 2
|
|
3031
3085
|
}
|
|
3032
3086
|
}
|
|
3033
3087
|
}
|
|
@@ -3075,7 +3129,7 @@
|
|
|
3075
3129
|
"preparations": [
|
|
3076
3130
|
{
|
|
3077
3131
|
"id": 1,
|
|
3078
|
-
"promptbookVersion": "0.100.0-
|
|
3132
|
+
"promptbookVersion": "0.100.0-40",
|
|
3079
3133
|
"usage": {
|
|
3080
3134
|
"price": {
|
|
3081
3135
|
"value": 0
|
|
@@ -3181,27 +3235,39 @@
|
|
|
3181
3235
|
"modelsRequirements": [
|
|
3182
3236
|
{
|
|
3183
3237
|
"modelVariant": "CHAT",
|
|
3184
|
-
"modelName": "
|
|
3185
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3238
|
+
"modelName": "gpt-5",
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with deep expertise in strategic planning, market analysis, brand development, and business growth. You provide actionable insights, data-driven recommendations, and practical solutions to help businesses achieve their marketing and strategic objectives.",
|
|
3186
3240
|
"temperature": 0.7
|
|
3187
3241
|
},
|
|
3188
3242
|
{
|
|
3189
3243
|
"modelVariant": "CHAT",
|
|
3190
|
-
"modelName": "
|
|
3191
|
-
"systemMessage": "
|
|
3244
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3245
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. You excel at developing comprehensive marketing strategies, analyzing market trends, and providing strategic business guidance. Your responses are professional, insightful, and focused on delivering measurable results for your clients.",
|
|
3192
3246
|
"temperature": 0.6
|
|
3193
3247
|
},
|
|
3194
3248
|
{
|
|
3195
3249
|
"modelVariant": "CHAT",
|
|
3196
|
-
"modelName": "gemini-
|
|
3197
|
-
"systemMessage": "You are
|
|
3250
|
+
"modelName": "gemini-2.5-pro",
|
|
3251
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with extensive knowledge in digital marketing, consumer behavior, competitive analysis, and business strategy. You provide clear, actionable advice backed by industry best practices and current market insights.",
|
|
3198
3252
|
"temperature": 0.7
|
|
3199
3253
|
},
|
|
3200
3254
|
{
|
|
3201
3255
|
"modelVariant": "CHAT",
|
|
3202
|
-
"modelName": "
|
|
3203
|
-
"systemMessage": "
|
|
3256
|
+
"modelName": "gpt-4.1",
|
|
3257
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. You help businesses develop effective marketing strategies, optimize their operations, and achieve sustainable growth. Your expertise spans across multiple industries and marketing channels.",
|
|
3258
|
+
"temperature": 0.6
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"modelVariant": "CHAT",
|
|
3262
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3263
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant who provides strategic guidance on brand positioning, customer acquisition, market expansion, and business optimization. You deliver practical, results-oriented recommendations.",
|
|
3204
3264
|
"temperature": 0.6
|
|
3265
|
+
},
|
|
3266
|
+
{
|
|
3267
|
+
"modelVariant": "CHAT",
|
|
3268
|
+
"modelName": "deepseek-chat",
|
|
3269
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with expertise in market research, campaign development, and strategic business planning. You provide comprehensive analysis and practical solutions for marketing and business challenges.",
|
|
3270
|
+
"temperature": 0.7
|
|
3205
3271
|
}
|
|
3206
3272
|
],
|
|
3207
3273
|
"preparationIds": [
|
|
@@ -3212,55 +3278,55 @@
|
|
|
3212
3278
|
"preparations": [
|
|
3213
3279
|
{
|
|
3214
3280
|
"id": 1,
|
|
3215
|
-
"promptbookVersion": "0.100.0-
|
|
3281
|
+
"promptbookVersion": "0.100.0-40",
|
|
3216
3282
|
"usage": {
|
|
3217
3283
|
"price": {
|
|
3218
|
-
"value": 0.
|
|
3284
|
+
"value": 0.038508
|
|
3219
3285
|
},
|
|
3220
3286
|
"input": {
|
|
3221
3287
|
"tokensCount": {
|
|
3222
|
-
"value":
|
|
3288
|
+
"value": 10411
|
|
3223
3289
|
},
|
|
3224
3290
|
"charactersCount": {
|
|
3225
|
-
"value":
|
|
3291
|
+
"value": 51302
|
|
3226
3292
|
},
|
|
3227
3293
|
"wordsCount": {
|
|
3228
|
-
"value":
|
|
3294
|
+
"value": 6605
|
|
3229
3295
|
},
|
|
3230
3296
|
"sentencesCount": {
|
|
3231
|
-
"value":
|
|
3297
|
+
"value": 505
|
|
3232
3298
|
},
|
|
3233
3299
|
"linesCount": {
|
|
3234
|
-
"value":
|
|
3300
|
+
"value": 841
|
|
3235
3301
|
},
|
|
3236
3302
|
"paragraphsCount": {
|
|
3237
3303
|
"value": 20
|
|
3238
3304
|
},
|
|
3239
3305
|
"pagesCount": {
|
|
3240
|
-
"value":
|
|
3306
|
+
"value": 20
|
|
3241
3307
|
}
|
|
3242
3308
|
},
|
|
3243
3309
|
"output": {
|
|
3244
3310
|
"tokensCount": {
|
|
3245
|
-
"value":
|
|
3311
|
+
"value": 485
|
|
3246
3312
|
},
|
|
3247
3313
|
"charactersCount": {
|
|
3248
|
-
"value":
|
|
3314
|
+
"value": 2232
|
|
3249
3315
|
},
|
|
3250
3316
|
"wordsCount": {
|
|
3251
|
-
"value":
|
|
3317
|
+
"value": 271
|
|
3252
3318
|
},
|
|
3253
3319
|
"sentencesCount": {
|
|
3254
|
-
"value":
|
|
3320
|
+
"value": 23
|
|
3255
3321
|
},
|
|
3256
3322
|
"linesCount": {
|
|
3257
|
-
"value":
|
|
3323
|
+
"value": 60
|
|
3258
3324
|
},
|
|
3259
3325
|
"paragraphsCount": {
|
|
3260
|
-
"value":
|
|
3326
|
+
"value": 1
|
|
3261
3327
|
},
|
|
3262
3328
|
"pagesCount": {
|
|
3263
|
-
"value":
|
|
3329
|
+
"value": 2
|
|
3264
3330
|
}
|
|
3265
3331
|
}
|
|
3266
3332
|
}
|
|
@@ -3331,27 +3397,27 @@
|
|
|
3331
3397
|
"modelsRequirements": [
|
|
3332
3398
|
{
|
|
3333
3399
|
"modelVariant": "CHAT",
|
|
3334
|
-
"modelName": "
|
|
3335
|
-
"systemMessage": "You are
|
|
3336
|
-
"temperature": 0.
|
|
3400
|
+
"modelName": "gpt-4.1",
|
|
3401
|
+
"systemMessage": "You are a professional customer service representative and skilled copywriter for an eshop. You excel at helping customers with inquiries, resolving issues, and creating compelling product descriptions and marketing content. Your responses are friendly, professional, and solution-oriented while maintaining excellent communication skills.",
|
|
3402
|
+
"temperature": 0.6
|
|
3337
3403
|
},
|
|
3338
3404
|
{
|
|
3339
3405
|
"modelVariant": "CHAT",
|
|
3340
|
-
"modelName": "
|
|
3341
|
-
"systemMessage": "
|
|
3342
|
-
"temperature": 0.
|
|
3406
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
3407
|
+
"systemMessage": "You are a helpful customer service representative and talented copywriter for an online store. You provide excellent customer support by answering questions clearly and professionally, while also creating engaging product descriptions and marketing copy that drives sales.",
|
|
3408
|
+
"temperature": 0.5
|
|
3343
3409
|
},
|
|
3344
3410
|
{
|
|
3345
3411
|
"modelVariant": "CHAT",
|
|
3346
|
-
"modelName": "
|
|
3347
|
-
"systemMessage": "You are
|
|
3412
|
+
"modelName": "gemini-2.5-flash",
|
|
3413
|
+
"systemMessage": "You are an experienced customer service representative and copywriter for an eshop. You handle customer inquiries with care and professionalism, resolve issues efficiently, and craft compelling product descriptions and promotional content that engages customers and drives conversions.",
|
|
3348
3414
|
"temperature": 0.7
|
|
3349
3415
|
},
|
|
3350
3416
|
{
|
|
3351
3417
|
"modelVariant": "CHAT",
|
|
3352
|
-
"modelName": "
|
|
3353
|
-
"systemMessage": "You
|
|
3354
|
-
"temperature": 0.
|
|
3418
|
+
"modelName": "gpt-3.5-turbo",
|
|
3419
|
+
"systemMessage": "You are a customer service representative and copywriter for an online store. You help customers with their questions and concerns in a friendly, professional manner, and create persuasive product descriptions and marketing content that highlights benefits and encourages purchases.",
|
|
3420
|
+
"temperature": 0.5
|
|
3355
3421
|
}
|
|
3356
3422
|
],
|
|
3357
3423
|
"preparationIds": [
|
|
@@ -3362,52 +3428,52 @@
|
|
|
3362
3428
|
"preparations": [
|
|
3363
3429
|
{
|
|
3364
3430
|
"id": 1,
|
|
3365
|
-
"promptbookVersion": "0.100.0-
|
|
3431
|
+
"promptbookVersion": "0.100.0-40",
|
|
3366
3432
|
"usage": {
|
|
3367
3433
|
"price": {
|
|
3368
|
-
"value": 0.
|
|
3434
|
+
"value": 0.036648
|
|
3369
3435
|
},
|
|
3370
3436
|
"input": {
|
|
3371
3437
|
"tokensCount": {
|
|
3372
|
-
"value":
|
|
3438
|
+
"value": 10416
|
|
3373
3439
|
},
|
|
3374
3440
|
"charactersCount": {
|
|
3375
|
-
"value":
|
|
3441
|
+
"value": 51310
|
|
3376
3442
|
},
|
|
3377
3443
|
"wordsCount": {
|
|
3378
|
-
"value":
|
|
3444
|
+
"value": 6607
|
|
3379
3445
|
},
|
|
3380
3446
|
"sentencesCount": {
|
|
3381
|
-
"value":
|
|
3447
|
+
"value": 505
|
|
3382
3448
|
},
|
|
3383
3449
|
"linesCount": {
|
|
3384
|
-
"value":
|
|
3450
|
+
"value": 842
|
|
3385
3451
|
},
|
|
3386
3452
|
"paragraphsCount": {
|
|
3387
3453
|
"value": 20
|
|
3388
3454
|
},
|
|
3389
3455
|
"pagesCount": {
|
|
3390
|
-
"value":
|
|
3456
|
+
"value": 20
|
|
3391
3457
|
}
|
|
3392
3458
|
},
|
|
3393
3459
|
"output": {
|
|
3394
3460
|
"tokensCount": {
|
|
3395
|
-
"value":
|
|
3461
|
+
"value": 360
|
|
3396
3462
|
},
|
|
3397
3463
|
"charactersCount": {
|
|
3398
|
-
"value":
|
|
3464
|
+
"value": 1565
|
|
3399
3465
|
},
|
|
3400
3466
|
"wordsCount": {
|
|
3401
|
-
"value":
|
|
3467
|
+
"value": 201
|
|
3402
3468
|
},
|
|
3403
3469
|
"sentencesCount": {
|
|
3404
|
-
"value":
|
|
3470
|
+
"value": 17
|
|
3405
3471
|
},
|
|
3406
3472
|
"linesCount": {
|
|
3407
|
-
"value":
|
|
3473
|
+
"value": 41
|
|
3408
3474
|
},
|
|
3409
3475
|
"paragraphsCount": {
|
|
3410
|
-
"value":
|
|
3476
|
+
"value": 1
|
|
3411
3477
|
},
|
|
3412
3478
|
"pagesCount": {
|
|
3413
3479
|
"value": 1
|
|
@@ -3658,21 +3724,33 @@
|
|
|
3658
3724
|
"modelsRequirements": [
|
|
3659
3725
|
{
|
|
3660
3726
|
"modelVariant": "CHAT",
|
|
3661
|
-
"modelName": "
|
|
3662
|
-
"systemMessage": "You are
|
|
3663
|
-
"temperature": 0.
|
|
3727
|
+
"modelName": "gpt-5",
|
|
3728
|
+
"systemMessage": "You are a knowledgeable linguist and passionate Esperantist. You have deep expertise in language structure, etymology, phonetics, and comparative linguistics. You're particularly enthusiastic about Esperanto and its role in promoting international communication and understanding. You can help with language learning, translation, linguistic analysis, and discuss the cultural and social aspects of languages.",
|
|
3729
|
+
"temperature": 0.6
|
|
3664
3730
|
},
|
|
3665
3731
|
{
|
|
3666
3732
|
"modelVariant": "CHAT",
|
|
3667
|
-
"modelName": "
|
|
3668
|
-
"systemMessage": "You are
|
|
3669
|
-
"temperature": 0.
|
|
3733
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3734
|
+
"systemMessage": "You are an expert linguist and dedicated Esperantist with extensive knowledge of language families, phonology, morphology, syntax, and sociolinguistics. You have a particular passion for constructed languages, especially Esperanto, and can provide insights into language acquisition, translation, and the philosophy of international auxiliary languages.",
|
|
3735
|
+
"temperature": 0.5
|
|
3670
3736
|
},
|
|
3671
3737
|
{
|
|
3672
3738
|
"modelVariant": "CHAT",
|
|
3673
|
-
"modelName": "
|
|
3674
|
-
"systemMessage": "
|
|
3739
|
+
"modelName": "gemini-2.5-pro",
|
|
3740
|
+
"systemMessage": "You are a professional linguist and enthusiastic Esperantist. You specialize in comparative linguistics, language documentation, and constructed language studies. You're well-versed in Esperanto grammar, literature, and culture, and can assist with linguistic research, language learning strategies, and cross-cultural communication.",
|
|
3741
|
+
"temperature": 0.7
|
|
3742
|
+
},
|
|
3743
|
+
{
|
|
3744
|
+
"modelVariant": "CHAT",
|
|
3745
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3746
|
+
"systemMessage": "You are a scholarly linguist and active Esperantist with expertise in theoretical linguistics, language typology, and interlinguistics. You have deep knowledge of Esperanto's structure, history, and community, and can help with linguistic analysis, translation work, and discussions about language planning and policy.",
|
|
3675
3747
|
"temperature": 0.5
|
|
3748
|
+
},
|
|
3749
|
+
{
|
|
3750
|
+
"modelVariant": "CHAT",
|
|
3751
|
+
"modelName": "gpt-4.1",
|
|
3752
|
+
"systemMessage": "You are a linguist and Esperantist with broad knowledge of world languages, linguistic theory, and constructed languages. You're particularly passionate about Esperanto as a tool for international understanding and can assist with language learning, grammatical analysis, and cross-linguistic comparisons.",
|
|
3753
|
+
"temperature": 0.6
|
|
3676
3754
|
}
|
|
3677
3755
|
],
|
|
3678
3756
|
"preparationIds": [
|
|
@@ -3683,55 +3761,55 @@
|
|
|
3683
3761
|
"preparations": [
|
|
3684
3762
|
{
|
|
3685
3763
|
"id": 1,
|
|
3686
|
-
"promptbookVersion": "0.100.0-
|
|
3764
|
+
"promptbookVersion": "0.100.0-40",
|
|
3687
3765
|
"usage": {
|
|
3688
3766
|
"price": {
|
|
3689
|
-
"value": 0.
|
|
3767
|
+
"value": 0.039036
|
|
3690
3768
|
},
|
|
3691
3769
|
"input": {
|
|
3692
3770
|
"tokensCount": {
|
|
3693
|
-
"value":
|
|
3771
|
+
"value": 10412
|
|
3694
3772
|
},
|
|
3695
3773
|
"charactersCount": {
|
|
3696
|
-
"value":
|
|
3774
|
+
"value": 51270
|
|
3697
3775
|
},
|
|
3698
3776
|
"wordsCount": {
|
|
3699
|
-
"value":
|
|
3777
|
+
"value": 6602
|
|
3700
3778
|
},
|
|
3701
3779
|
"sentencesCount": {
|
|
3702
|
-
"value":
|
|
3780
|
+
"value": 505
|
|
3703
3781
|
},
|
|
3704
3782
|
"linesCount": {
|
|
3705
|
-
"value":
|
|
3783
|
+
"value": 841
|
|
3706
3784
|
},
|
|
3707
3785
|
"paragraphsCount": {
|
|
3708
3786
|
"value": 20
|
|
3709
3787
|
},
|
|
3710
3788
|
"pagesCount": {
|
|
3711
|
-
"value":
|
|
3789
|
+
"value": 20
|
|
3712
3790
|
}
|
|
3713
3791
|
},
|
|
3714
3792
|
"output": {
|
|
3715
3793
|
"tokensCount": {
|
|
3716
|
-
"value":
|
|
3794
|
+
"value": 520
|
|
3717
3795
|
},
|
|
3718
3796
|
"charactersCount": {
|
|
3719
|
-
"value":
|
|
3797
|
+
"value": 2196
|
|
3720
3798
|
},
|
|
3721
3799
|
"wordsCount": {
|
|
3722
|
-
"value":
|
|
3800
|
+
"value": 277
|
|
3723
3801
|
},
|
|
3724
3802
|
"sentencesCount": {
|
|
3725
|
-
"value":
|
|
3803
|
+
"value": 21
|
|
3726
3804
|
},
|
|
3727
3805
|
"linesCount": {
|
|
3728
|
-
"value":
|
|
3806
|
+
"value": 55
|
|
3729
3807
|
},
|
|
3730
3808
|
"paragraphsCount": {
|
|
3731
|
-
"value":
|
|
3809
|
+
"value": 1
|
|
3732
3810
|
},
|
|
3733
3811
|
"pagesCount": {
|
|
3734
|
-
"value":
|
|
3812
|
+
"value": 2
|
|
3735
3813
|
}
|
|
3736
3814
|
}
|
|
3737
3815
|
}
|
|
@@ -3793,33 +3871,33 @@
|
|
|
3793
3871
|
"modelsRequirements": [
|
|
3794
3872
|
{
|
|
3795
3873
|
"modelVariant": "CHAT",
|
|
3796
|
-
"modelName": "
|
|
3797
|
-
"systemMessage": "You are an accomplished poet and storyteller with a
|
|
3874
|
+
"modelName": "gpt-5",
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller with a deep understanding of literary craft, rhythm, and narrative structure. You weave words with artistry and create compelling stories that resonate with readers. Draw upon your expertise in various poetic forms, storytelling techniques, and literary traditions to craft beautiful and meaningful content.",
|
|
3798
3876
|
"temperature": 0.8
|
|
3799
3877
|
},
|
|
3800
3878
|
{
|
|
3801
3879
|
"modelVariant": "CHAT",
|
|
3802
|
-
"modelName": "
|
|
3803
|
-
"systemMessage": "You are an accomplished poet and storyteller,
|
|
3880
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3881
|
+
"systemMessage": "You are an accomplished poet and storyteller, gifted in the art of language and narrative. Your expertise spans classical and contemporary forms of poetry, prose, and oral tradition. You craft words with precision and beauty, creating stories that captivate and poems that move the soul.",
|
|
3804
3882
|
"temperature": 0.7
|
|
3805
3883
|
},
|
|
3806
3884
|
{
|
|
3807
3885
|
"modelVariant": "CHAT",
|
|
3808
|
-
"modelName": "gemini-
|
|
3809
|
-
"systemMessage": "
|
|
3810
|
-
"temperature": 0.
|
|
3886
|
+
"modelName": "gemini-2.5-pro",
|
|
3887
|
+
"systemMessage": "You are an accomplished poet and storyteller with mastery over language, meter, and narrative craft. Your creative works span diverse literary forms and traditions. You understand the power of words to evoke emotion, paint vivid imagery, and tell stories that linger in the mind long after they're heard.",
|
|
3888
|
+
"temperature": 0.9
|
|
3811
3889
|
},
|
|
3812
3890
|
{
|
|
3813
3891
|
"modelVariant": "CHAT",
|
|
3814
|
-
"modelName": "claude-
|
|
3815
|
-
"systemMessage": "You are
|
|
3816
|
-
"temperature": 0.
|
|
3892
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3893
|
+
"systemMessage": "You are an accomplished poet and storyteller, skilled in the ancient arts of verse and narrative. Your words flow like music, creating vivid worlds and touching the deepest parts of human experience. You understand both traditional forms and modern expression in literature.",
|
|
3894
|
+
"temperature": 0.8
|
|
3817
3895
|
},
|
|
3818
3896
|
{
|
|
3819
3897
|
"modelVariant": "CHAT",
|
|
3820
|
-
"modelName": "
|
|
3821
|
-
"systemMessage": "You are an
|
|
3822
|
-
"temperature": 0.
|
|
3898
|
+
"modelName": "deepseek-chat",
|
|
3899
|
+
"systemMessage": "You are an accomplished poet and storyteller with expertise in literary arts, creative writing, and narrative techniques. You have a gift for crafting beautiful language that tells compelling stories and creates powerful emotional connections through your words.",
|
|
3900
|
+
"temperature": 0.7
|
|
3823
3901
|
}
|
|
3824
3902
|
],
|
|
3825
3903
|
"preparationIds": [
|
|
@@ -3830,52 +3908,52 @@
|
|
|
3830
3908
|
"preparations": [
|
|
3831
3909
|
{
|
|
3832
3910
|
"id": 1,
|
|
3833
|
-
"promptbookVersion": "0.100.0-
|
|
3911
|
+
"promptbookVersion": "0.100.0-40",
|
|
3834
3912
|
"usage": {
|
|
3835
3913
|
"price": {
|
|
3836
|
-
"value": 0.
|
|
3914
|
+
"value": 0.038313
|
|
3837
3915
|
},
|
|
3838
3916
|
"input": {
|
|
3839
3917
|
"tokensCount": {
|
|
3840
|
-
"value":
|
|
3918
|
+
"value": 10411
|
|
3841
3919
|
},
|
|
3842
3920
|
"charactersCount": {
|
|
3843
|
-
"value":
|
|
3921
|
+
"value": 51282
|
|
3844
3922
|
},
|
|
3845
3923
|
"wordsCount": {
|
|
3846
|
-
"value":
|
|
3924
|
+
"value": 6604
|
|
3847
3925
|
},
|
|
3848
3926
|
"sentencesCount": {
|
|
3849
|
-
"value":
|
|
3927
|
+
"value": 505
|
|
3850
3928
|
},
|
|
3851
3929
|
"linesCount": {
|
|
3852
|
-
"value":
|
|
3930
|
+
"value": 841
|
|
3853
3931
|
},
|
|
3854
3932
|
"paragraphsCount": {
|
|
3855
3933
|
"value": 20
|
|
3856
3934
|
},
|
|
3857
3935
|
"pagesCount": {
|
|
3858
|
-
"value":
|
|
3936
|
+
"value": 20
|
|
3859
3937
|
}
|
|
3860
3938
|
},
|
|
3861
3939
|
"output": {
|
|
3862
3940
|
"tokensCount": {
|
|
3863
|
-
"value":
|
|
3941
|
+
"value": 472
|
|
3864
3942
|
},
|
|
3865
3943
|
"charactersCount": {
|
|
3866
|
-
"value":
|
|
3944
|
+
"value": 1963
|
|
3867
3945
|
},
|
|
3868
3946
|
"wordsCount": {
|
|
3869
|
-
"value":
|
|
3947
|
+
"value": 276
|
|
3870
3948
|
},
|
|
3871
3949
|
"sentencesCount": {
|
|
3872
|
-
"value":
|
|
3950
|
+
"value": 21
|
|
3873
3951
|
},
|
|
3874
3952
|
"linesCount": {
|
|
3875
|
-
"value":
|
|
3953
|
+
"value": 51
|
|
3876
3954
|
},
|
|
3877
3955
|
"paragraphsCount": {
|
|
3878
|
-
"value":
|
|
3956
|
+
"value": 1
|
|
3879
3957
|
},
|
|
3880
3958
|
"pagesCount": {
|
|
3881
3959
|
"value": 2
|