@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/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-
|
|
19
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-41';
|
|
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,51 @@ function getTemplatesPipelineCollection() {
|
|
|
1534
1534
|
"modelsRequirements": [
|
|
1535
1535
|
{
|
|
1536
1536
|
"modelVariant": "CHAT",
|
|
1537
|
-
"modelName": "gpt-
|
|
1538
|
-
"systemMessage": "You are an
|
|
1539
|
-
"temperature": 0.
|
|
1537
|
+
"modelName": "gpt-5",
|
|
1538
|
+
"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.",
|
|
1539
|
+
"temperature": 0.3
|
|
1540
1540
|
},
|
|
1541
1541
|
{
|
|
1542
1542
|
"modelVariant": "CHAT",
|
|
1543
|
-
"modelName": "claude-
|
|
1544
|
-
"systemMessage": "
|
|
1545
|
-
"temperature": 0.
|
|
1543
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
1544
|
+
"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.",
|
|
1545
|
+
"temperature": 0.4
|
|
1546
1546
|
},
|
|
1547
1547
|
{
|
|
1548
1548
|
"modelVariant": "CHAT",
|
|
1549
|
-
"modelName": "
|
|
1550
|
-
"systemMessage": "You are
|
|
1551
|
-
"temperature": 0.
|
|
1549
|
+
"modelName": "gpt-4.1",
|
|
1550
|
+
"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.",
|
|
1551
|
+
"temperature": 0.3
|
|
1552
1552
|
},
|
|
1553
1553
|
{
|
|
1554
1554
|
"modelVariant": "CHAT",
|
|
1555
|
-
"modelName": "
|
|
1556
|
-
"systemMessage": "
|
|
1555
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
1556
|
+
"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.",
|
|
1557
1557
|
"temperature": 0.4
|
|
1558
1558
|
},
|
|
1559
1559
|
{
|
|
1560
1560
|
"modelVariant": "CHAT",
|
|
1561
|
-
"modelName": "
|
|
1562
|
-
"systemMessage": "You are a
|
|
1563
|
-
"temperature": 0.
|
|
1561
|
+
"modelName": "gemini-2.5-pro",
|
|
1562
|
+
"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.",
|
|
1563
|
+
"temperature": 0.3
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"modelVariant": "CHAT",
|
|
1567
|
+
"modelName": "deepseek-chat",
|
|
1568
|
+
"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.",
|
|
1569
|
+
"temperature": 0.4
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"modelVariant": "CHAT",
|
|
1573
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
1574
|
+
"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.",
|
|
1575
|
+
"temperature": 0.5
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
"modelVariant": "CHAT",
|
|
1579
|
+
"modelName": "gemini-2.5-flash",
|
|
1580
|
+
"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.",
|
|
1581
|
+
"temperature": 0.4
|
|
1564
1582
|
}
|
|
1565
1583
|
],
|
|
1566
1584
|
"preparationIds": [
|
|
@@ -1571,52 +1589,52 @@ function getTemplatesPipelineCollection() {
|
|
|
1571
1589
|
"preparations": [
|
|
1572
1590
|
{
|
|
1573
1591
|
"id": 1,
|
|
1574
|
-
"promptbookVersion": "0.100.0-
|
|
1592
|
+
"promptbookVersion": "0.100.0-40",
|
|
1575
1593
|
"usage": {
|
|
1576
1594
|
"price": {
|
|
1577
|
-
"value": 0.
|
|
1595
|
+
"value": 0.040614
|
|
1578
1596
|
},
|
|
1579
1597
|
"input": {
|
|
1580
1598
|
"tokensCount": {
|
|
1581
|
-
"value":
|
|
1599
|
+
"value": 10413
|
|
1582
1600
|
},
|
|
1583
1601
|
"charactersCount": {
|
|
1584
|
-
"value":
|
|
1602
|
+
"value": 51283
|
|
1585
1603
|
},
|
|
1586
1604
|
"wordsCount": {
|
|
1587
|
-
"value":
|
|
1605
|
+
"value": 6605
|
|
1588
1606
|
},
|
|
1589
1607
|
"sentencesCount": {
|
|
1590
|
-
"value":
|
|
1608
|
+
"value": 505
|
|
1591
1609
|
},
|
|
1592
1610
|
"linesCount": {
|
|
1593
|
-
"value":
|
|
1611
|
+
"value": 841
|
|
1594
1612
|
},
|
|
1595
1613
|
"paragraphsCount": {
|
|
1596
1614
|
"value": 20
|
|
1597
1615
|
},
|
|
1598
1616
|
"pagesCount": {
|
|
1599
|
-
"value":
|
|
1617
|
+
"value": 20
|
|
1600
1618
|
}
|
|
1601
1619
|
},
|
|
1602
1620
|
"output": {
|
|
1603
1621
|
"tokensCount": {
|
|
1604
|
-
"value":
|
|
1622
|
+
"value": 625
|
|
1605
1623
|
},
|
|
1606
1624
|
"charactersCount": {
|
|
1607
|
-
"value":
|
|
1625
|
+
"value": 2550
|
|
1608
1626
|
},
|
|
1609
1627
|
"wordsCount": {
|
|
1610
|
-
"value":
|
|
1628
|
+
"value": 325
|
|
1611
1629
|
},
|
|
1612
1630
|
"sentencesCount": {
|
|
1613
|
-
"value":
|
|
1631
|
+
"value": 29
|
|
1614
1632
|
},
|
|
1615
1633
|
"linesCount": {
|
|
1616
|
-
"value":
|
|
1634
|
+
"value": 70
|
|
1617
1635
|
},
|
|
1618
1636
|
"paragraphsCount": {
|
|
1619
|
-
"value":
|
|
1637
|
+
"value": 1
|
|
1620
1638
|
},
|
|
1621
1639
|
"pagesCount": {
|
|
1622
1640
|
"value": 2
|
|
@@ -2099,33 +2117,51 @@ function getTemplatesPipelineCollection() {
|
|
|
2099
2117
|
"modelsRequirements": [
|
|
2100
2118
|
{
|
|
2101
2119
|
"modelVariant": "CHAT",
|
|
2102
|
-
"modelName": "gpt-
|
|
2103
|
-
"systemMessage": "You are an
|
|
2104
|
-
"temperature": 0.
|
|
2120
|
+
"modelName": "gpt-5",
|
|
2121
|
+
"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.",
|
|
2122
|
+
"temperature": 0.3
|
|
2105
2123
|
},
|
|
2106
2124
|
{
|
|
2107
2125
|
"modelVariant": "CHAT",
|
|
2108
|
-
"modelName": "claude-
|
|
2109
|
-
"systemMessage": "
|
|
2110
|
-
"temperature": 0.
|
|
2126
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2127
|
+
"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.",
|
|
2128
|
+
"temperature": 0.4
|
|
2111
2129
|
},
|
|
2112
2130
|
{
|
|
2113
2131
|
"modelVariant": "CHAT",
|
|
2114
|
-
"modelName": "
|
|
2115
|
-
"systemMessage": "You are
|
|
2116
|
-
"temperature": 0.
|
|
2132
|
+
"modelName": "gpt-4.1",
|
|
2133
|
+
"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.",
|
|
2134
|
+
"temperature": 0.3
|
|
2117
2135
|
},
|
|
2118
2136
|
{
|
|
2119
2137
|
"modelVariant": "CHAT",
|
|
2120
|
-
"modelName": "
|
|
2121
|
-
"systemMessage": "
|
|
2138
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2139
|
+
"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.",
|
|
2122
2140
|
"temperature": 0.4
|
|
2123
2141
|
},
|
|
2124
2142
|
{
|
|
2125
2143
|
"modelVariant": "CHAT",
|
|
2126
|
-
"modelName": "
|
|
2127
|
-
"systemMessage": "You are a
|
|
2128
|
-
"temperature": 0.
|
|
2144
|
+
"modelName": "gemini-2.5-pro",
|
|
2145
|
+
"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.",
|
|
2146
|
+
"temperature": 0.3
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"modelVariant": "CHAT",
|
|
2150
|
+
"modelName": "deepseek-chat",
|
|
2151
|
+
"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.",
|
|
2152
|
+
"temperature": 0.4
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"modelVariant": "CHAT",
|
|
2156
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
2157
|
+
"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.",
|
|
2158
|
+
"temperature": 0.5
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"modelVariant": "CHAT",
|
|
2162
|
+
"modelName": "gemini-2.5-flash",
|
|
2163
|
+
"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.",
|
|
2164
|
+
"temperature": 0.4
|
|
2129
2165
|
}
|
|
2130
2166
|
],
|
|
2131
2167
|
"preparationIds": [
|
|
@@ -2136,52 +2172,52 @@ function getTemplatesPipelineCollection() {
|
|
|
2136
2172
|
"preparations": [
|
|
2137
2173
|
{
|
|
2138
2174
|
"id": 1,
|
|
2139
|
-
"promptbookVersion": "0.100.0-
|
|
2175
|
+
"promptbookVersion": "0.100.0-40",
|
|
2140
2176
|
"usage": {
|
|
2141
2177
|
"price": {
|
|
2142
|
-
"value": 0.
|
|
2178
|
+
"value": 0.040614
|
|
2143
2179
|
},
|
|
2144
2180
|
"input": {
|
|
2145
2181
|
"tokensCount": {
|
|
2146
|
-
"value":
|
|
2182
|
+
"value": 10413
|
|
2147
2183
|
},
|
|
2148
2184
|
"charactersCount": {
|
|
2149
|
-
"value":
|
|
2185
|
+
"value": 51283
|
|
2150
2186
|
},
|
|
2151
2187
|
"wordsCount": {
|
|
2152
|
-
"value":
|
|
2188
|
+
"value": 6605
|
|
2153
2189
|
},
|
|
2154
2190
|
"sentencesCount": {
|
|
2155
|
-
"value":
|
|
2191
|
+
"value": 505
|
|
2156
2192
|
},
|
|
2157
2193
|
"linesCount": {
|
|
2158
|
-
"value":
|
|
2194
|
+
"value": 841
|
|
2159
2195
|
},
|
|
2160
2196
|
"paragraphsCount": {
|
|
2161
2197
|
"value": 20
|
|
2162
2198
|
},
|
|
2163
2199
|
"pagesCount": {
|
|
2164
|
-
"value":
|
|
2200
|
+
"value": 20
|
|
2165
2201
|
}
|
|
2166
2202
|
},
|
|
2167
2203
|
"output": {
|
|
2168
2204
|
"tokensCount": {
|
|
2169
|
-
"value":
|
|
2205
|
+
"value": 625
|
|
2170
2206
|
},
|
|
2171
2207
|
"charactersCount": {
|
|
2172
|
-
"value":
|
|
2208
|
+
"value": 2550
|
|
2173
2209
|
},
|
|
2174
2210
|
"wordsCount": {
|
|
2175
|
-
"value":
|
|
2211
|
+
"value": 325
|
|
2176
2212
|
},
|
|
2177
2213
|
"sentencesCount": {
|
|
2178
|
-
"value":
|
|
2214
|
+
"value": 29
|
|
2179
2215
|
},
|
|
2180
2216
|
"linesCount": {
|
|
2181
|
-
"value":
|
|
2217
|
+
"value": 70
|
|
2182
2218
|
},
|
|
2183
2219
|
"paragraphsCount": {
|
|
2184
|
-
"value":
|
|
2220
|
+
"value": 1
|
|
2185
2221
|
},
|
|
2186
2222
|
"pagesCount": {
|
|
2187
2223
|
"value": 2
|
|
@@ -2805,21 +2841,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2805
2841
|
"modelsRequirements": [
|
|
2806
2842
|
{
|
|
2807
2843
|
"modelVariant": "CHAT",
|
|
2808
|
-
"modelName": "
|
|
2809
|
-
"systemMessage": "You are
|
|
2844
|
+
"modelName": "gpt-4.1",
|
|
2845
|
+
"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.",
|
|
2846
|
+
"temperature": 0.2
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
"modelVariant": "CHAT",
|
|
2850
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2851
|
+
"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.",
|
|
2810
2852
|
"temperature": 0.3
|
|
2811
2853
|
},
|
|
2812
2854
|
{
|
|
2813
2855
|
"modelVariant": "CHAT",
|
|
2814
|
-
"modelName": "
|
|
2815
|
-
"systemMessage": "
|
|
2856
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2857
|
+
"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.",
|
|
2816
2858
|
"temperature": 0.2
|
|
2817
2859
|
},
|
|
2818
2860
|
{
|
|
2819
2861
|
"modelVariant": "CHAT",
|
|
2820
|
-
"modelName": "
|
|
2821
|
-
"systemMessage": "You are a
|
|
2822
|
-
"temperature": 0.
|
|
2862
|
+
"modelName": "gemini-2.5-pro",
|
|
2863
|
+
"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.",
|
|
2864
|
+
"temperature": 0.3
|
|
2865
|
+
},
|
|
2866
|
+
{
|
|
2867
|
+
"modelVariant": "CHAT",
|
|
2868
|
+
"modelName": "deepseek-chat",
|
|
2869
|
+
"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.",
|
|
2870
|
+
"temperature": 0.2
|
|
2823
2871
|
}
|
|
2824
2872
|
],
|
|
2825
2873
|
"preparationIds": [
|
|
@@ -2830,55 +2878,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2830
2878
|
"preparations": [
|
|
2831
2879
|
{
|
|
2832
2880
|
"id": 1,
|
|
2833
|
-
"promptbookVersion": "0.100.0-
|
|
2881
|
+
"promptbookVersion": "0.100.0-40",
|
|
2834
2882
|
"usage": {
|
|
2835
2883
|
"price": {
|
|
2836
|
-
"value": 0.
|
|
2884
|
+
"value": 0.038256
|
|
2837
2885
|
},
|
|
2838
2886
|
"input": {
|
|
2839
2887
|
"tokensCount": {
|
|
2840
|
-
"value":
|
|
2888
|
+
"value": 10412
|
|
2841
2889
|
},
|
|
2842
2890
|
"charactersCount": {
|
|
2843
|
-
"value":
|
|
2891
|
+
"value": 51270
|
|
2844
2892
|
},
|
|
2845
2893
|
"wordsCount": {
|
|
2846
|
-
"value":
|
|
2894
|
+
"value": 6603
|
|
2847
2895
|
},
|
|
2848
2896
|
"sentencesCount": {
|
|
2849
|
-
"value":
|
|
2897
|
+
"value": 505
|
|
2850
2898
|
},
|
|
2851
2899
|
"linesCount": {
|
|
2852
|
-
"value":
|
|
2900
|
+
"value": 841
|
|
2853
2901
|
},
|
|
2854
2902
|
"paragraphsCount": {
|
|
2855
2903
|
"value": 20
|
|
2856
2904
|
},
|
|
2857
2905
|
"pagesCount": {
|
|
2858
|
-
"value":
|
|
2906
|
+
"value": 20
|
|
2859
2907
|
}
|
|
2860
2908
|
},
|
|
2861
2909
|
"output": {
|
|
2862
2910
|
"tokensCount": {
|
|
2863
|
-
"value":
|
|
2911
|
+
"value": 468
|
|
2864
2912
|
},
|
|
2865
2913
|
"charactersCount": {
|
|
2866
|
-
"value":
|
|
2914
|
+
"value": 2001
|
|
2867
2915
|
},
|
|
2868
2916
|
"wordsCount": {
|
|
2869
|
-
"value":
|
|
2917
|
+
"value": 257
|
|
2870
2918
|
},
|
|
2871
2919
|
"sentencesCount": {
|
|
2872
|
-
"value":
|
|
2920
|
+
"value": 22
|
|
2873
2921
|
},
|
|
2874
2922
|
"linesCount": {
|
|
2875
|
-
"value":
|
|
2923
|
+
"value": 52
|
|
2876
2924
|
},
|
|
2877
2925
|
"paragraphsCount": {
|
|
2878
|
-
"value":
|
|
2926
|
+
"value": 1
|
|
2879
2927
|
},
|
|
2880
2928
|
"pagesCount": {
|
|
2881
|
-
"value":
|
|
2929
|
+
"value": 2
|
|
2882
2930
|
}
|
|
2883
2931
|
}
|
|
2884
2932
|
}
|
|
@@ -2941,27 +2989,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2941
2989
|
"modelsRequirements": [
|
|
2942
2990
|
{
|
|
2943
2991
|
"modelVariant": "CHAT",
|
|
2944
|
-
"modelName": "gpt-4",
|
|
2945
|
-
"systemMessage": "You are
|
|
2992
|
+
"modelName": "gpt-4.1",
|
|
2993
|
+
"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.",
|
|
2946
2994
|
"temperature": 0.7
|
|
2947
2995
|
},
|
|
2948
2996
|
{
|
|
2949
2997
|
"modelVariant": "CHAT",
|
|
2950
|
-
"modelName": "claude-
|
|
2951
|
-
"systemMessage": "You are
|
|
2998
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2999
|
+
"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.",
|
|
2952
3000
|
"temperature": 0.6
|
|
2953
3001
|
},
|
|
2954
3002
|
{
|
|
2955
3003
|
"modelVariant": "CHAT",
|
|
2956
|
-
"modelName": "gemini-
|
|
2957
|
-
"systemMessage": "
|
|
2958
|
-
"temperature": 0.
|
|
3004
|
+
"modelName": "gemini-2.5-flash",
|
|
3005
|
+
"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.",
|
|
3006
|
+
"temperature": 0.7
|
|
2959
3007
|
},
|
|
2960
3008
|
{
|
|
2961
3009
|
"modelVariant": "CHAT",
|
|
2962
|
-
"modelName": "
|
|
2963
|
-
"systemMessage": "You are a
|
|
2964
|
-
"temperature": 0.
|
|
3010
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
3011
|
+
"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.",
|
|
3012
|
+
"temperature": 0.8
|
|
3013
|
+
},
|
|
3014
|
+
{
|
|
3015
|
+
"modelVariant": "CHAT",
|
|
3016
|
+
"modelName": "deepseek-chat",
|
|
3017
|
+
"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.",
|
|
3018
|
+
"temperature": 0.6
|
|
2965
3019
|
}
|
|
2966
3020
|
],
|
|
2967
3021
|
"preparationIds": [
|
|
@@ -2972,55 +3026,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2972
3026
|
"preparations": [
|
|
2973
3027
|
{
|
|
2974
3028
|
"id": 1,
|
|
2975
|
-
"promptbookVersion": "0.100.0-
|
|
3029
|
+
"promptbookVersion": "0.100.0-40",
|
|
2976
3030
|
"usage": {
|
|
2977
3031
|
"price": {
|
|
2978
|
-
"value": 0.
|
|
3032
|
+
"value": 0.038181
|
|
2979
3033
|
},
|
|
2980
3034
|
"input": {
|
|
2981
3035
|
"tokensCount": {
|
|
2982
|
-
"value":
|
|
3036
|
+
"value": 10412
|
|
2983
3037
|
},
|
|
2984
3038
|
"charactersCount": {
|
|
2985
|
-
"value":
|
|
3039
|
+
"value": 51274
|
|
2986
3040
|
},
|
|
2987
3041
|
"wordsCount": {
|
|
2988
|
-
"value":
|
|
3042
|
+
"value": 6603
|
|
2989
3043
|
},
|
|
2990
3044
|
"sentencesCount": {
|
|
2991
|
-
"value":
|
|
3045
|
+
"value": 505
|
|
2992
3046
|
},
|
|
2993
3047
|
"linesCount": {
|
|
2994
|
-
"value":
|
|
3048
|
+
"value": 841
|
|
2995
3049
|
},
|
|
2996
3050
|
"paragraphsCount": {
|
|
2997
3051
|
"value": 20
|
|
2998
3052
|
},
|
|
2999
3053
|
"pagesCount": {
|
|
3000
|
-
"value":
|
|
3054
|
+
"value": 20
|
|
3001
3055
|
}
|
|
3002
3056
|
},
|
|
3003
3057
|
"output": {
|
|
3004
3058
|
"tokensCount": {
|
|
3005
|
-
"value":
|
|
3059
|
+
"value": 463
|
|
3006
3060
|
},
|
|
3007
3061
|
"charactersCount": {
|
|
3008
|
-
"value":
|
|
3062
|
+
"value": 1916
|
|
3009
3063
|
},
|
|
3010
3064
|
"wordsCount": {
|
|
3011
|
-
"value":
|
|
3065
|
+
"value": 243
|
|
3012
3066
|
},
|
|
3013
3067
|
"sentencesCount": {
|
|
3014
|
-
"value":
|
|
3068
|
+
"value": 23
|
|
3015
3069
|
},
|
|
3016
3070
|
"linesCount": {
|
|
3017
|
-
"value":
|
|
3071
|
+
"value": 52
|
|
3018
3072
|
},
|
|
3019
3073
|
"paragraphsCount": {
|
|
3020
|
-
"value":
|
|
3074
|
+
"value": 1
|
|
3021
3075
|
},
|
|
3022
3076
|
"pagesCount": {
|
|
3023
|
-
"value":
|
|
3077
|
+
"value": 2
|
|
3024
3078
|
}
|
|
3025
3079
|
}
|
|
3026
3080
|
}
|
|
@@ -3068,7 +3122,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3068
3122
|
"preparations": [
|
|
3069
3123
|
{
|
|
3070
3124
|
"id": 1,
|
|
3071
|
-
"promptbookVersion": "0.100.0-
|
|
3125
|
+
"promptbookVersion": "0.100.0-40",
|
|
3072
3126
|
"usage": {
|
|
3073
3127
|
"price": {
|
|
3074
3128
|
"value": 0
|
|
@@ -3174,27 +3228,39 @@ function getTemplatesPipelineCollection() {
|
|
|
3174
3228
|
"modelsRequirements": [
|
|
3175
3229
|
{
|
|
3176
3230
|
"modelVariant": "CHAT",
|
|
3177
|
-
"modelName": "
|
|
3178
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3231
|
+
"modelName": "gpt-5",
|
|
3232
|
+
"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.",
|
|
3179
3233
|
"temperature": 0.7
|
|
3180
3234
|
},
|
|
3181
3235
|
{
|
|
3182
3236
|
"modelVariant": "CHAT",
|
|
3183
|
-
"modelName": "
|
|
3184
|
-
"systemMessage": "
|
|
3237
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3238
|
+
"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.",
|
|
3185
3239
|
"temperature": 0.6
|
|
3186
3240
|
},
|
|
3187
3241
|
{
|
|
3188
3242
|
"modelVariant": "CHAT",
|
|
3189
|
-
"modelName": "gemini-
|
|
3190
|
-
"systemMessage": "You are
|
|
3243
|
+
"modelName": "gemini-2.5-pro",
|
|
3244
|
+
"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.",
|
|
3191
3245
|
"temperature": 0.7
|
|
3192
3246
|
},
|
|
3193
3247
|
{
|
|
3194
3248
|
"modelVariant": "CHAT",
|
|
3195
|
-
"modelName": "
|
|
3196
|
-
"systemMessage": "
|
|
3249
|
+
"modelName": "gpt-4.1",
|
|
3250
|
+
"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.",
|
|
3251
|
+
"temperature": 0.6
|
|
3252
|
+
},
|
|
3253
|
+
{
|
|
3254
|
+
"modelVariant": "CHAT",
|
|
3255
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3256
|
+
"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.",
|
|
3197
3257
|
"temperature": 0.6
|
|
3258
|
+
},
|
|
3259
|
+
{
|
|
3260
|
+
"modelVariant": "CHAT",
|
|
3261
|
+
"modelName": "deepseek-chat",
|
|
3262
|
+
"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.",
|
|
3263
|
+
"temperature": 0.7
|
|
3198
3264
|
}
|
|
3199
3265
|
],
|
|
3200
3266
|
"preparationIds": [
|
|
@@ -3205,55 +3271,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3205
3271
|
"preparations": [
|
|
3206
3272
|
{
|
|
3207
3273
|
"id": 1,
|
|
3208
|
-
"promptbookVersion": "0.100.0-
|
|
3274
|
+
"promptbookVersion": "0.100.0-40",
|
|
3209
3275
|
"usage": {
|
|
3210
3276
|
"price": {
|
|
3211
|
-
"value": 0.
|
|
3277
|
+
"value": 0.038508
|
|
3212
3278
|
},
|
|
3213
3279
|
"input": {
|
|
3214
3280
|
"tokensCount": {
|
|
3215
|
-
"value":
|
|
3281
|
+
"value": 10411
|
|
3216
3282
|
},
|
|
3217
3283
|
"charactersCount": {
|
|
3218
|
-
"value":
|
|
3284
|
+
"value": 51302
|
|
3219
3285
|
},
|
|
3220
3286
|
"wordsCount": {
|
|
3221
|
-
"value":
|
|
3287
|
+
"value": 6605
|
|
3222
3288
|
},
|
|
3223
3289
|
"sentencesCount": {
|
|
3224
|
-
"value":
|
|
3290
|
+
"value": 505
|
|
3225
3291
|
},
|
|
3226
3292
|
"linesCount": {
|
|
3227
|
-
"value":
|
|
3293
|
+
"value": 841
|
|
3228
3294
|
},
|
|
3229
3295
|
"paragraphsCount": {
|
|
3230
3296
|
"value": 20
|
|
3231
3297
|
},
|
|
3232
3298
|
"pagesCount": {
|
|
3233
|
-
"value":
|
|
3299
|
+
"value": 20
|
|
3234
3300
|
}
|
|
3235
3301
|
},
|
|
3236
3302
|
"output": {
|
|
3237
3303
|
"tokensCount": {
|
|
3238
|
-
"value":
|
|
3304
|
+
"value": 485
|
|
3239
3305
|
},
|
|
3240
3306
|
"charactersCount": {
|
|
3241
|
-
"value":
|
|
3307
|
+
"value": 2232
|
|
3242
3308
|
},
|
|
3243
3309
|
"wordsCount": {
|
|
3244
|
-
"value":
|
|
3310
|
+
"value": 271
|
|
3245
3311
|
},
|
|
3246
3312
|
"sentencesCount": {
|
|
3247
|
-
"value":
|
|
3313
|
+
"value": 23
|
|
3248
3314
|
},
|
|
3249
3315
|
"linesCount": {
|
|
3250
|
-
"value":
|
|
3316
|
+
"value": 60
|
|
3251
3317
|
},
|
|
3252
3318
|
"paragraphsCount": {
|
|
3253
|
-
"value":
|
|
3319
|
+
"value": 1
|
|
3254
3320
|
},
|
|
3255
3321
|
"pagesCount": {
|
|
3256
|
-
"value":
|
|
3322
|
+
"value": 2
|
|
3257
3323
|
}
|
|
3258
3324
|
}
|
|
3259
3325
|
}
|
|
@@ -3324,27 +3390,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3324
3390
|
"modelsRequirements": [
|
|
3325
3391
|
{
|
|
3326
3392
|
"modelVariant": "CHAT",
|
|
3327
|
-
"modelName": "
|
|
3328
|
-
"systemMessage": "You are
|
|
3329
|
-
"temperature": 0.
|
|
3393
|
+
"modelName": "gpt-4.1",
|
|
3394
|
+
"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.",
|
|
3395
|
+
"temperature": 0.6
|
|
3330
3396
|
},
|
|
3331
3397
|
{
|
|
3332
3398
|
"modelVariant": "CHAT",
|
|
3333
|
-
"modelName": "
|
|
3334
|
-
"systemMessage": "
|
|
3335
|
-
"temperature": 0.
|
|
3399
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
3400
|
+
"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.",
|
|
3401
|
+
"temperature": 0.5
|
|
3336
3402
|
},
|
|
3337
3403
|
{
|
|
3338
3404
|
"modelVariant": "CHAT",
|
|
3339
|
-
"modelName": "
|
|
3340
|
-
"systemMessage": "You are
|
|
3405
|
+
"modelName": "gemini-2.5-flash",
|
|
3406
|
+
"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.",
|
|
3341
3407
|
"temperature": 0.7
|
|
3342
3408
|
},
|
|
3343
3409
|
{
|
|
3344
3410
|
"modelVariant": "CHAT",
|
|
3345
|
-
"modelName": "
|
|
3346
|
-
"systemMessage": "You
|
|
3347
|
-
"temperature": 0.
|
|
3411
|
+
"modelName": "gpt-3.5-turbo",
|
|
3412
|
+
"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.",
|
|
3413
|
+
"temperature": 0.5
|
|
3348
3414
|
}
|
|
3349
3415
|
],
|
|
3350
3416
|
"preparationIds": [
|
|
@@ -3355,52 +3421,52 @@ function getTemplatesPipelineCollection() {
|
|
|
3355
3421
|
"preparations": [
|
|
3356
3422
|
{
|
|
3357
3423
|
"id": 1,
|
|
3358
|
-
"promptbookVersion": "0.100.0-
|
|
3424
|
+
"promptbookVersion": "0.100.0-40",
|
|
3359
3425
|
"usage": {
|
|
3360
3426
|
"price": {
|
|
3361
|
-
"value": 0.
|
|
3427
|
+
"value": 0.036648
|
|
3362
3428
|
},
|
|
3363
3429
|
"input": {
|
|
3364
3430
|
"tokensCount": {
|
|
3365
|
-
"value":
|
|
3431
|
+
"value": 10416
|
|
3366
3432
|
},
|
|
3367
3433
|
"charactersCount": {
|
|
3368
|
-
"value":
|
|
3434
|
+
"value": 51310
|
|
3369
3435
|
},
|
|
3370
3436
|
"wordsCount": {
|
|
3371
|
-
"value":
|
|
3437
|
+
"value": 6607
|
|
3372
3438
|
},
|
|
3373
3439
|
"sentencesCount": {
|
|
3374
|
-
"value":
|
|
3440
|
+
"value": 505
|
|
3375
3441
|
},
|
|
3376
3442
|
"linesCount": {
|
|
3377
|
-
"value":
|
|
3443
|
+
"value": 842
|
|
3378
3444
|
},
|
|
3379
3445
|
"paragraphsCount": {
|
|
3380
3446
|
"value": 20
|
|
3381
3447
|
},
|
|
3382
3448
|
"pagesCount": {
|
|
3383
|
-
"value":
|
|
3449
|
+
"value": 20
|
|
3384
3450
|
}
|
|
3385
3451
|
},
|
|
3386
3452
|
"output": {
|
|
3387
3453
|
"tokensCount": {
|
|
3388
|
-
"value":
|
|
3454
|
+
"value": 360
|
|
3389
3455
|
},
|
|
3390
3456
|
"charactersCount": {
|
|
3391
|
-
"value":
|
|
3457
|
+
"value": 1565
|
|
3392
3458
|
},
|
|
3393
3459
|
"wordsCount": {
|
|
3394
|
-
"value":
|
|
3460
|
+
"value": 201
|
|
3395
3461
|
},
|
|
3396
3462
|
"sentencesCount": {
|
|
3397
|
-
"value":
|
|
3463
|
+
"value": 17
|
|
3398
3464
|
},
|
|
3399
3465
|
"linesCount": {
|
|
3400
|
-
"value":
|
|
3466
|
+
"value": 41
|
|
3401
3467
|
},
|
|
3402
3468
|
"paragraphsCount": {
|
|
3403
|
-
"value":
|
|
3469
|
+
"value": 1
|
|
3404
3470
|
},
|
|
3405
3471
|
"pagesCount": {
|
|
3406
3472
|
"value": 1
|
|
@@ -3651,21 +3717,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3651
3717
|
"modelsRequirements": [
|
|
3652
3718
|
{
|
|
3653
3719
|
"modelVariant": "CHAT",
|
|
3654
|
-
"modelName": "
|
|
3655
|
-
"systemMessage": "You are
|
|
3656
|
-
"temperature": 0.
|
|
3720
|
+
"modelName": "gpt-5",
|
|
3721
|
+
"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.",
|
|
3722
|
+
"temperature": 0.6
|
|
3657
3723
|
},
|
|
3658
3724
|
{
|
|
3659
3725
|
"modelVariant": "CHAT",
|
|
3660
|
-
"modelName": "
|
|
3661
|
-
"systemMessage": "You are
|
|
3662
|
-
"temperature": 0.
|
|
3726
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3727
|
+
"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.",
|
|
3728
|
+
"temperature": 0.5
|
|
3663
3729
|
},
|
|
3664
3730
|
{
|
|
3665
3731
|
"modelVariant": "CHAT",
|
|
3666
|
-
"modelName": "
|
|
3667
|
-
"systemMessage": "
|
|
3732
|
+
"modelName": "gemini-2.5-pro",
|
|
3733
|
+
"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.",
|
|
3734
|
+
"temperature": 0.7
|
|
3735
|
+
},
|
|
3736
|
+
{
|
|
3737
|
+
"modelVariant": "CHAT",
|
|
3738
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3739
|
+
"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.",
|
|
3668
3740
|
"temperature": 0.5
|
|
3741
|
+
},
|
|
3742
|
+
{
|
|
3743
|
+
"modelVariant": "CHAT",
|
|
3744
|
+
"modelName": "gpt-4.1",
|
|
3745
|
+
"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.",
|
|
3746
|
+
"temperature": 0.6
|
|
3669
3747
|
}
|
|
3670
3748
|
],
|
|
3671
3749
|
"preparationIds": [
|
|
@@ -3676,55 +3754,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3676
3754
|
"preparations": [
|
|
3677
3755
|
{
|
|
3678
3756
|
"id": 1,
|
|
3679
|
-
"promptbookVersion": "0.100.0-
|
|
3757
|
+
"promptbookVersion": "0.100.0-40",
|
|
3680
3758
|
"usage": {
|
|
3681
3759
|
"price": {
|
|
3682
|
-
"value": 0.
|
|
3760
|
+
"value": 0.039036
|
|
3683
3761
|
},
|
|
3684
3762
|
"input": {
|
|
3685
3763
|
"tokensCount": {
|
|
3686
|
-
"value":
|
|
3764
|
+
"value": 10412
|
|
3687
3765
|
},
|
|
3688
3766
|
"charactersCount": {
|
|
3689
|
-
"value":
|
|
3767
|
+
"value": 51270
|
|
3690
3768
|
},
|
|
3691
3769
|
"wordsCount": {
|
|
3692
|
-
"value":
|
|
3770
|
+
"value": 6602
|
|
3693
3771
|
},
|
|
3694
3772
|
"sentencesCount": {
|
|
3695
|
-
"value":
|
|
3773
|
+
"value": 505
|
|
3696
3774
|
},
|
|
3697
3775
|
"linesCount": {
|
|
3698
|
-
"value":
|
|
3776
|
+
"value": 841
|
|
3699
3777
|
},
|
|
3700
3778
|
"paragraphsCount": {
|
|
3701
3779
|
"value": 20
|
|
3702
3780
|
},
|
|
3703
3781
|
"pagesCount": {
|
|
3704
|
-
"value":
|
|
3782
|
+
"value": 20
|
|
3705
3783
|
}
|
|
3706
3784
|
},
|
|
3707
3785
|
"output": {
|
|
3708
3786
|
"tokensCount": {
|
|
3709
|
-
"value":
|
|
3787
|
+
"value": 520
|
|
3710
3788
|
},
|
|
3711
3789
|
"charactersCount": {
|
|
3712
|
-
"value":
|
|
3790
|
+
"value": 2196
|
|
3713
3791
|
},
|
|
3714
3792
|
"wordsCount": {
|
|
3715
|
-
"value":
|
|
3793
|
+
"value": 277
|
|
3716
3794
|
},
|
|
3717
3795
|
"sentencesCount": {
|
|
3718
|
-
"value":
|
|
3796
|
+
"value": 21
|
|
3719
3797
|
},
|
|
3720
3798
|
"linesCount": {
|
|
3721
|
-
"value":
|
|
3799
|
+
"value": 55
|
|
3722
3800
|
},
|
|
3723
3801
|
"paragraphsCount": {
|
|
3724
|
-
"value":
|
|
3802
|
+
"value": 1
|
|
3725
3803
|
},
|
|
3726
3804
|
"pagesCount": {
|
|
3727
|
-
"value":
|
|
3805
|
+
"value": 2
|
|
3728
3806
|
}
|
|
3729
3807
|
}
|
|
3730
3808
|
}
|
|
@@ -3786,33 +3864,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3786
3864
|
"modelsRequirements": [
|
|
3787
3865
|
{
|
|
3788
3866
|
"modelVariant": "CHAT",
|
|
3789
|
-
"modelName": "
|
|
3790
|
-
"systemMessage": "You are an accomplished poet and storyteller with a
|
|
3867
|
+
"modelName": "gpt-5",
|
|
3868
|
+
"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.",
|
|
3791
3869
|
"temperature": 0.8
|
|
3792
3870
|
},
|
|
3793
3871
|
{
|
|
3794
3872
|
"modelVariant": "CHAT",
|
|
3795
|
-
"modelName": "
|
|
3796
|
-
"systemMessage": "You are an accomplished poet and storyteller,
|
|
3873
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3874
|
+
"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.",
|
|
3797
3875
|
"temperature": 0.7
|
|
3798
3876
|
},
|
|
3799
3877
|
{
|
|
3800
3878
|
"modelVariant": "CHAT",
|
|
3801
|
-
"modelName": "gemini-
|
|
3802
|
-
"systemMessage": "
|
|
3803
|
-
"temperature": 0.
|
|
3879
|
+
"modelName": "gemini-2.5-pro",
|
|
3880
|
+
"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.",
|
|
3881
|
+
"temperature": 0.9
|
|
3804
3882
|
},
|
|
3805
3883
|
{
|
|
3806
3884
|
"modelVariant": "CHAT",
|
|
3807
|
-
"modelName": "claude-
|
|
3808
|
-
"systemMessage": "You are
|
|
3809
|
-
"temperature": 0.
|
|
3885
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3886
|
+
"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.",
|
|
3887
|
+
"temperature": 0.8
|
|
3810
3888
|
},
|
|
3811
3889
|
{
|
|
3812
3890
|
"modelVariant": "CHAT",
|
|
3813
|
-
"modelName": "
|
|
3814
|
-
"systemMessage": "You are an
|
|
3815
|
-
"temperature": 0.
|
|
3891
|
+
"modelName": "deepseek-chat",
|
|
3892
|
+
"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.",
|
|
3893
|
+
"temperature": 0.7
|
|
3816
3894
|
}
|
|
3817
3895
|
],
|
|
3818
3896
|
"preparationIds": [
|
|
@@ -3823,52 +3901,52 @@ function getTemplatesPipelineCollection() {
|
|
|
3823
3901
|
"preparations": [
|
|
3824
3902
|
{
|
|
3825
3903
|
"id": 1,
|
|
3826
|
-
"promptbookVersion": "0.100.0-
|
|
3904
|
+
"promptbookVersion": "0.100.0-40",
|
|
3827
3905
|
"usage": {
|
|
3828
3906
|
"price": {
|
|
3829
|
-
"value": 0.
|
|
3907
|
+
"value": 0.038313
|
|
3830
3908
|
},
|
|
3831
3909
|
"input": {
|
|
3832
3910
|
"tokensCount": {
|
|
3833
|
-
"value":
|
|
3911
|
+
"value": 10411
|
|
3834
3912
|
},
|
|
3835
3913
|
"charactersCount": {
|
|
3836
|
-
"value":
|
|
3914
|
+
"value": 51282
|
|
3837
3915
|
},
|
|
3838
3916
|
"wordsCount": {
|
|
3839
|
-
"value":
|
|
3917
|
+
"value": 6604
|
|
3840
3918
|
},
|
|
3841
3919
|
"sentencesCount": {
|
|
3842
|
-
"value":
|
|
3920
|
+
"value": 505
|
|
3843
3921
|
},
|
|
3844
3922
|
"linesCount": {
|
|
3845
|
-
"value":
|
|
3923
|
+
"value": 841
|
|
3846
3924
|
},
|
|
3847
3925
|
"paragraphsCount": {
|
|
3848
3926
|
"value": 20
|
|
3849
3927
|
},
|
|
3850
3928
|
"pagesCount": {
|
|
3851
|
-
"value":
|
|
3929
|
+
"value": 20
|
|
3852
3930
|
}
|
|
3853
3931
|
},
|
|
3854
3932
|
"output": {
|
|
3855
3933
|
"tokensCount": {
|
|
3856
|
-
"value":
|
|
3934
|
+
"value": 472
|
|
3857
3935
|
},
|
|
3858
3936
|
"charactersCount": {
|
|
3859
|
-
"value":
|
|
3937
|
+
"value": 1963
|
|
3860
3938
|
},
|
|
3861
3939
|
"wordsCount": {
|
|
3862
|
-
"value":
|
|
3940
|
+
"value": 276
|
|
3863
3941
|
},
|
|
3864
3942
|
"sentencesCount": {
|
|
3865
|
-
"value":
|
|
3943
|
+
"value": 21
|
|
3866
3944
|
},
|
|
3867
3945
|
"linesCount": {
|
|
3868
|
-
"value":
|
|
3946
|
+
"value": 51
|
|
3869
3947
|
},
|
|
3870
3948
|
"paragraphsCount": {
|
|
3871
|
-
"value":
|
|
3949
|
+
"value": 1
|
|
3872
3950
|
},
|
|
3873
3951
|
"pagesCount": {
|
|
3874
3952
|
"value": 2
|