@promptbook/templates 0.100.0-28 → 0.100.0-31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +278 -188
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/types.index.d.ts +2 -2
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +2 -2
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +0 -2
- package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
- 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/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +278 -188
- 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-31';
|
|
20
20
|
/**
|
|
21
21
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
22
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1534,20 +1534,38 @@ function getTemplatesPipelineCollection() {
|
|
|
1534
1534
|
"modelsRequirements": [
|
|
1535
1535
|
{
|
|
1536
1536
|
"modelVariant": "CHAT",
|
|
1537
|
-
"modelName": "gpt-4",
|
|
1538
|
-
"systemMessage": "You are
|
|
1539
|
-
"temperature": 0.
|
|
1537
|
+
"modelName": "gpt-4.1",
|
|
1538
|
+
"systemMessage": "You are a skilled developer working on the Promptbook Project, experienced in AI prompt engineering, model integration, and conversational AI development. You provide helpful guidance on prompt design patterns, model selection, and best practices for building robust AI applications.",
|
|
1539
|
+
"temperature": 0.3
|
|
1540
1540
|
},
|
|
1541
1541
|
{
|
|
1542
1542
|
"modelVariant": "CHAT",
|
|
1543
|
-
"modelName": "claude-
|
|
1544
|
-
"systemMessage": "You are an
|
|
1543
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
1544
|
+
"systemMessage": "You are an expert developer specializing in the Promptbook Project. You have deep knowledge of prompt engineering, AI model orchestration, and building scalable conversational AI systems. You help users create effective prompts and integrate AI models efficiently.",
|
|
1545
|
+
"temperature": 0.4
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"modelVariant": "CHAT",
|
|
1549
|
+
"modelName": "gemini-2.5-pro",
|
|
1550
|
+
"systemMessage": "You are a developer working on the Promptbook Project with expertise in AI prompt engineering and model integration. You assist users in designing effective prompts, selecting appropriate AI models, and implementing best practices for conversational AI development.",
|
|
1551
|
+
"temperature": 0.5
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"modelVariant": "CHAT",
|
|
1555
|
+
"modelName": "deepseek-chat",
|
|
1556
|
+
"systemMessage": "You are a knowledgeable developer of the Promptbook Project, specializing in prompt engineering and AI model integration. You provide practical advice on building conversational AI applications, optimizing prompt templates, and working with various language models.",
|
|
1557
|
+
"temperature": 0.4
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"modelVariant": "CHAT",
|
|
1561
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
1562
|
+
"systemMessage": "You are a developer working on the Promptbook Project with focus on efficient AI implementations. You help users with quick prompt engineering solutions, model selection guidance, and practical development advice for conversational AI systems.",
|
|
1545
1563
|
"temperature": 0.6
|
|
1546
1564
|
},
|
|
1547
1565
|
{
|
|
1548
1566
|
"modelVariant": "CHAT",
|
|
1549
|
-
"modelName": "gemini-
|
|
1550
|
-
"systemMessage": "
|
|
1567
|
+
"modelName": "gemini-2.5-flash",
|
|
1568
|
+
"systemMessage": "You are an experienced Promptbook Project developer who helps users create effective AI prompts and integrate language models. You provide clear, actionable advice on prompt design patterns and model optimization for various use cases.",
|
|
1551
1569
|
"temperature": 0.5
|
|
1552
1570
|
}
|
|
1553
1571
|
],
|
|
@@ -1559,55 +1577,55 @@ function getTemplatesPipelineCollection() {
|
|
|
1559
1577
|
"preparations": [
|
|
1560
1578
|
{
|
|
1561
1579
|
"id": 1,
|
|
1562
|
-
"promptbookVersion": "0.100.0-
|
|
1580
|
+
"promptbookVersion": "0.100.0-30",
|
|
1563
1581
|
"usage": {
|
|
1564
1582
|
"price": {
|
|
1565
|
-
"value": 0.
|
|
1583
|
+
"value": 0.038721
|
|
1566
1584
|
},
|
|
1567
1585
|
"input": {
|
|
1568
1586
|
"tokensCount": {
|
|
1569
|
-
"value":
|
|
1587
|
+
"value": 10337
|
|
1570
1588
|
},
|
|
1571
1589
|
"charactersCount": {
|
|
1572
|
-
"value":
|
|
1590
|
+
"value": 51055
|
|
1573
1591
|
},
|
|
1574
1592
|
"wordsCount": {
|
|
1575
|
-
"value":
|
|
1593
|
+
"value": 6575
|
|
1576
1594
|
},
|
|
1577
1595
|
"sentencesCount": {
|
|
1578
|
-
"value":
|
|
1596
|
+
"value": 505
|
|
1579
1597
|
},
|
|
1580
1598
|
"linesCount": {
|
|
1581
|
-
"value":
|
|
1599
|
+
"value": 837
|
|
1582
1600
|
},
|
|
1583
1601
|
"paragraphsCount": {
|
|
1584
1602
|
"value": 20
|
|
1585
1603
|
},
|
|
1586
1604
|
"pagesCount": {
|
|
1587
|
-
"value":
|
|
1605
|
+
"value": 20
|
|
1588
1606
|
}
|
|
1589
1607
|
},
|
|
1590
1608
|
"output": {
|
|
1591
1609
|
"tokensCount": {
|
|
1592
|
-
"value":
|
|
1610
|
+
"value": 514
|
|
1593
1611
|
},
|
|
1594
1612
|
"charactersCount": {
|
|
1595
|
-
"value":
|
|
1613
|
+
"value": 2136
|
|
1596
1614
|
},
|
|
1597
1615
|
"wordsCount": {
|
|
1598
|
-
"value":
|
|
1616
|
+
"value": 282
|
|
1599
1617
|
},
|
|
1600
1618
|
"sentencesCount": {
|
|
1601
|
-
"value":
|
|
1619
|
+
"value": 23
|
|
1602
1620
|
},
|
|
1603
1621
|
"linesCount": {
|
|
1604
|
-
"value":
|
|
1622
|
+
"value": 58
|
|
1605
1623
|
},
|
|
1606
1624
|
"paragraphsCount": {
|
|
1607
|
-
"value":
|
|
1625
|
+
"value": 1
|
|
1608
1626
|
},
|
|
1609
1627
|
"pagesCount": {
|
|
1610
|
-
"value":
|
|
1628
|
+
"value": 2
|
|
1611
1629
|
}
|
|
1612
1630
|
}
|
|
1613
1631
|
}
|
|
@@ -2087,20 +2105,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2087
2105
|
"modelsRequirements": [
|
|
2088
2106
|
{
|
|
2089
2107
|
"modelVariant": "CHAT",
|
|
2090
|
-
"modelName": "gpt-4",
|
|
2091
|
-
"systemMessage": "You are
|
|
2092
|
-
"temperature": 0.
|
|
2108
|
+
"modelName": "gpt-4.1",
|
|
2109
|
+
"systemMessage": "You are a skilled developer working on the Promptbook Project, experienced in AI prompt engineering, model integration, and conversational AI development. You provide helpful guidance on prompt design patterns, model selection, and best practices for building robust AI applications.",
|
|
2110
|
+
"temperature": 0.3
|
|
2093
2111
|
},
|
|
2094
2112
|
{
|
|
2095
2113
|
"modelVariant": "CHAT",
|
|
2096
|
-
"modelName": "claude-
|
|
2097
|
-
"systemMessage": "You are an
|
|
2114
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2115
|
+
"systemMessage": "You are an expert developer specializing in the Promptbook Project. You have deep knowledge of prompt engineering, AI model orchestration, and building scalable conversational AI systems. You help users create effective prompts and integrate AI models efficiently.",
|
|
2116
|
+
"temperature": 0.4
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"modelVariant": "CHAT",
|
|
2120
|
+
"modelName": "gemini-2.5-pro",
|
|
2121
|
+
"systemMessage": "You are a developer working on the Promptbook Project with expertise in AI prompt engineering and model integration. You assist users in designing effective prompts, selecting appropriate AI models, and implementing best practices for conversational AI development.",
|
|
2122
|
+
"temperature": 0.5
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"modelVariant": "CHAT",
|
|
2126
|
+
"modelName": "deepseek-chat",
|
|
2127
|
+
"systemMessage": "You are a knowledgeable developer of the Promptbook Project, specializing in prompt engineering and AI model integration. You provide practical advice on building conversational AI applications, optimizing prompt templates, and working with various language models.",
|
|
2128
|
+
"temperature": 0.4
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"modelVariant": "CHAT",
|
|
2132
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
2133
|
+
"systemMessage": "You are a developer working on the Promptbook Project with focus on efficient AI implementations. You help users with quick prompt engineering solutions, model selection guidance, and practical development advice for conversational AI systems.",
|
|
2098
2134
|
"temperature": 0.6
|
|
2099
2135
|
},
|
|
2100
2136
|
{
|
|
2101
2137
|
"modelVariant": "CHAT",
|
|
2102
|
-
"modelName": "gemini-
|
|
2103
|
-
"systemMessage": "
|
|
2138
|
+
"modelName": "gemini-2.5-flash",
|
|
2139
|
+
"systemMessage": "You are an experienced Promptbook Project developer who helps users create effective AI prompts and integrate language models. You provide clear, actionable advice on prompt design patterns and model optimization for various use cases.",
|
|
2104
2140
|
"temperature": 0.5
|
|
2105
2141
|
}
|
|
2106
2142
|
],
|
|
@@ -2112,55 +2148,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2112
2148
|
"preparations": [
|
|
2113
2149
|
{
|
|
2114
2150
|
"id": 1,
|
|
2115
|
-
"promptbookVersion": "0.100.0-
|
|
2151
|
+
"promptbookVersion": "0.100.0-30",
|
|
2116
2152
|
"usage": {
|
|
2117
2153
|
"price": {
|
|
2118
|
-
"value": 0.
|
|
2154
|
+
"value": 0.038721
|
|
2119
2155
|
},
|
|
2120
2156
|
"input": {
|
|
2121
2157
|
"tokensCount": {
|
|
2122
|
-
"value":
|
|
2158
|
+
"value": 10337
|
|
2123
2159
|
},
|
|
2124
2160
|
"charactersCount": {
|
|
2125
|
-
"value":
|
|
2161
|
+
"value": 51055
|
|
2126
2162
|
},
|
|
2127
2163
|
"wordsCount": {
|
|
2128
|
-
"value":
|
|
2164
|
+
"value": 6575
|
|
2129
2165
|
},
|
|
2130
2166
|
"sentencesCount": {
|
|
2131
|
-
"value":
|
|
2167
|
+
"value": 505
|
|
2132
2168
|
},
|
|
2133
2169
|
"linesCount": {
|
|
2134
|
-
"value":
|
|
2170
|
+
"value": 837
|
|
2135
2171
|
},
|
|
2136
2172
|
"paragraphsCount": {
|
|
2137
2173
|
"value": 20
|
|
2138
2174
|
},
|
|
2139
2175
|
"pagesCount": {
|
|
2140
|
-
"value":
|
|
2176
|
+
"value": 20
|
|
2141
2177
|
}
|
|
2142
2178
|
},
|
|
2143
2179
|
"output": {
|
|
2144
2180
|
"tokensCount": {
|
|
2145
|
-
"value":
|
|
2181
|
+
"value": 514
|
|
2146
2182
|
},
|
|
2147
2183
|
"charactersCount": {
|
|
2148
|
-
"value":
|
|
2184
|
+
"value": 2136
|
|
2149
2185
|
},
|
|
2150
2186
|
"wordsCount": {
|
|
2151
|
-
"value":
|
|
2187
|
+
"value": 282
|
|
2152
2188
|
},
|
|
2153
2189
|
"sentencesCount": {
|
|
2154
|
-
"value":
|
|
2190
|
+
"value": 23
|
|
2155
2191
|
},
|
|
2156
2192
|
"linesCount": {
|
|
2157
|
-
"value":
|
|
2193
|
+
"value": 58
|
|
2158
2194
|
},
|
|
2159
2195
|
"paragraphsCount": {
|
|
2160
|
-
"value":
|
|
2196
|
+
"value": 1
|
|
2161
2197
|
},
|
|
2162
2198
|
"pagesCount": {
|
|
2163
|
-
"value":
|
|
2199
|
+
"value": 2
|
|
2164
2200
|
}
|
|
2165
2201
|
}
|
|
2166
2202
|
}
|
|
@@ -2781,21 +2817,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2781
2817
|
"modelsRequirements": [
|
|
2782
2818
|
{
|
|
2783
2819
|
"modelVariant": "CHAT",
|
|
2784
|
-
"modelName": "
|
|
2785
|
-
"systemMessage": "You are
|
|
2820
|
+
"modelName": "gpt-5",
|
|
2821
|
+
"systemMessage": "You are a professional linguist and text corrector with expertise in grammar, syntax, style, and language mechanics. Your role is to help users improve their writing by identifying and correcting errors, suggesting stylistic improvements, and providing explanations for your corrections. Be thorough, precise, and educational in your feedback.",
|
|
2822
|
+
"temperature": 0.2
|
|
2823
|
+
},
|
|
2824
|
+
{
|
|
2825
|
+
"modelVariant": "CHAT",
|
|
2826
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2827
|
+
"systemMessage": "You are an expert linguist and professional text corrector specializing in grammar, syntax, punctuation, and style refinement. Provide detailed corrections with clear explanations of language rules and offer suggestions for improving clarity and flow. Your corrections should be accurate, educational, and respectful.",
|
|
2786
2828
|
"temperature": 0.3
|
|
2787
2829
|
},
|
|
2788
2830
|
{
|
|
2789
2831
|
"modelVariant": "CHAT",
|
|
2790
|
-
"modelName": "gpt-4",
|
|
2791
|
-
"systemMessage": "
|
|
2792
|
-
"temperature": 0.
|
|
2832
|
+
"modelName": "gpt-4.1",
|
|
2833
|
+
"systemMessage": "You are a skilled linguist and meticulous text corrector with deep knowledge of language structure, grammar rules, and writing conventions. Help users by identifying errors, explaining corrections, and suggesting improvements to enhance clarity and effectiveness of their writing.",
|
|
2834
|
+
"temperature": 0.2
|
|
2793
2835
|
},
|
|
2794
2836
|
{
|
|
2795
2837
|
"modelVariant": "CHAT",
|
|
2796
|
-
"modelName": "
|
|
2797
|
-
"systemMessage": "You are a
|
|
2838
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2839
|
+
"systemMessage": "You are a professional linguist and text corrector with expertise in grammar, style, and language mechanics. Provide comprehensive corrections and constructive feedback to help users improve their writing skills while maintaining their intended voice and meaning.",
|
|
2798
2840
|
"temperature": 0.3
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"modelVariant": "CHAT",
|
|
2844
|
+
"modelName": "gemini-2.5-pro",
|
|
2845
|
+
"systemMessage": "You are an experienced linguist and professional corrector specializing in language accuracy, grammar, and stylistic improvement. Analyze text carefully and provide detailed corrections with educational explanations to help users understand and learn from their mistakes.",
|
|
2846
|
+
"temperature": 0.25
|
|
2799
2847
|
}
|
|
2800
2848
|
],
|
|
2801
2849
|
"preparationIds": [
|
|
@@ -2806,55 +2854,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2806
2854
|
"preparations": [
|
|
2807
2855
|
{
|
|
2808
2856
|
"id": 1,
|
|
2809
|
-
"promptbookVersion": "0.100.0-
|
|
2857
|
+
"promptbookVersion": "0.100.0-30",
|
|
2810
2858
|
"usage": {
|
|
2811
2859
|
"price": {
|
|
2812
|
-
"value": 0.
|
|
2860
|
+
"value": 0.037893
|
|
2813
2861
|
},
|
|
2814
2862
|
"input": {
|
|
2815
2863
|
"tokensCount": {
|
|
2816
|
-
"value":
|
|
2864
|
+
"value": 10336
|
|
2817
2865
|
},
|
|
2818
2866
|
"charactersCount": {
|
|
2819
|
-
"value":
|
|
2867
|
+
"value": 51042
|
|
2820
2868
|
},
|
|
2821
2869
|
"wordsCount": {
|
|
2822
|
-
"value":
|
|
2870
|
+
"value": 6573
|
|
2823
2871
|
},
|
|
2824
2872
|
"sentencesCount": {
|
|
2825
|
-
"value":
|
|
2873
|
+
"value": 505
|
|
2826
2874
|
},
|
|
2827
2875
|
"linesCount": {
|
|
2828
|
-
"value":
|
|
2876
|
+
"value": 837
|
|
2829
2877
|
},
|
|
2830
2878
|
"paragraphsCount": {
|
|
2831
2879
|
"value": 20
|
|
2832
2880
|
},
|
|
2833
2881
|
"pagesCount": {
|
|
2834
|
-
"value":
|
|
2882
|
+
"value": 20
|
|
2835
2883
|
}
|
|
2836
2884
|
},
|
|
2837
2885
|
"output": {
|
|
2838
2886
|
"tokensCount": {
|
|
2839
|
-
"value":
|
|
2887
|
+
"value": 459
|
|
2840
2888
|
},
|
|
2841
2889
|
"charactersCount": {
|
|
2842
|
-
"value":
|
|
2890
|
+
"value": 1953
|
|
2843
2891
|
},
|
|
2844
2892
|
"wordsCount": {
|
|
2845
|
-
"value":
|
|
2893
|
+
"value": 253
|
|
2846
2894
|
},
|
|
2847
2895
|
"sentencesCount": {
|
|
2848
|
-
"value":
|
|
2896
|
+
"value": 20
|
|
2849
2897
|
},
|
|
2850
2898
|
"linesCount": {
|
|
2851
|
-
"value":
|
|
2899
|
+
"value": 51
|
|
2852
2900
|
},
|
|
2853
2901
|
"paragraphsCount": {
|
|
2854
|
-
"value":
|
|
2902
|
+
"value": 1
|
|
2855
2903
|
},
|
|
2856
2904
|
"pagesCount": {
|
|
2857
|
-
"value":
|
|
2905
|
+
"value": 2
|
|
2858
2906
|
}
|
|
2859
2907
|
}
|
|
2860
2908
|
}
|
|
@@ -2917,27 +2965,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2917
2965
|
"modelsRequirements": [
|
|
2918
2966
|
{
|
|
2919
2967
|
"modelVariant": "CHAT",
|
|
2920
|
-
"modelName": "gpt-4",
|
|
2921
|
-
"systemMessage": "You are
|
|
2968
|
+
"modelName": "gpt-4.1",
|
|
2969
|
+
"systemMessage": "You are a skilled copywriter specializing in e-commerce. Help create compelling product descriptions, marketing copy, email campaigns, and conversion-focused content that drives sales and engages customers.",
|
|
2922
2970
|
"temperature": 0.7
|
|
2923
2971
|
},
|
|
2924
2972
|
{
|
|
2925
2973
|
"modelVariant": "CHAT",
|
|
2926
|
-
"modelName": "claude-
|
|
2927
|
-
"systemMessage": "You are
|
|
2974
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
2975
|
+
"systemMessage": "You are an expert e-commerce copywriter with deep understanding of consumer psychology and persuasive writing. Create engaging product descriptions, marketing materials, and sales copy that converts visitors into customers.",
|
|
2928
2976
|
"temperature": 0.6
|
|
2929
2977
|
},
|
|
2930
2978
|
{
|
|
2931
2979
|
"modelVariant": "CHAT",
|
|
2932
|
-
"modelName": "gemini-
|
|
2933
|
-
"systemMessage": "
|
|
2934
|
-
"temperature": 0.
|
|
2980
|
+
"modelName": "gemini-2.5-pro",
|
|
2981
|
+
"systemMessage": "You are a professional copywriter focused on e-commerce success. Craft persuasive product descriptions, compelling marketing campaigns, and customer-focused content that drives engagement and sales for online stores.",
|
|
2982
|
+
"temperature": 0.8
|
|
2935
2983
|
},
|
|
2936
2984
|
{
|
|
2937
2985
|
"modelVariant": "CHAT",
|
|
2938
|
-
"modelName": "
|
|
2939
|
-
"systemMessage": "You are a
|
|
2940
|
-
"temperature": 0.
|
|
2986
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
2987
|
+
"systemMessage": "You are a skilled e-commerce copywriter who understands online shopping behavior. Help create product descriptions, marketing copy, and promotional content that resonates with customers and increases conversions.",
|
|
2988
|
+
"temperature": 0.6
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
"modelVariant": "CHAT",
|
|
2992
|
+
"modelName": "deepseek-chat",
|
|
2993
|
+
"systemMessage": "You are an experienced copywriter specializing in e-commerce marketing. Create compelling product descriptions, persuasive sales copy, and engaging content that helps online businesses increase their conversion rates and sales.",
|
|
2994
|
+
"temperature": 0.7
|
|
2941
2995
|
}
|
|
2942
2996
|
],
|
|
2943
2997
|
"preparationIds": [
|
|
@@ -2948,52 +3002,52 @@ function getTemplatesPipelineCollection() {
|
|
|
2948
3002
|
"preparations": [
|
|
2949
3003
|
{
|
|
2950
3004
|
"id": 1,
|
|
2951
|
-
"promptbookVersion": "0.100.0-
|
|
3005
|
+
"promptbookVersion": "0.100.0-30",
|
|
2952
3006
|
"usage": {
|
|
2953
3007
|
"price": {
|
|
2954
|
-
"value": 0.
|
|
3008
|
+
"value": 0.036888000000000004
|
|
2955
3009
|
},
|
|
2956
3010
|
"input": {
|
|
2957
3011
|
"tokensCount": {
|
|
2958
|
-
"value":
|
|
3012
|
+
"value": 10336
|
|
2959
3013
|
},
|
|
2960
3014
|
"charactersCount": {
|
|
2961
|
-
"value":
|
|
3015
|
+
"value": 51046
|
|
2962
3016
|
},
|
|
2963
3017
|
"wordsCount": {
|
|
2964
|
-
"value":
|
|
3018
|
+
"value": 6573
|
|
2965
3019
|
},
|
|
2966
3020
|
"sentencesCount": {
|
|
2967
|
-
"value":
|
|
3021
|
+
"value": 505
|
|
2968
3022
|
},
|
|
2969
3023
|
"linesCount": {
|
|
2970
|
-
"value":
|
|
3024
|
+
"value": 837
|
|
2971
3025
|
},
|
|
2972
3026
|
"paragraphsCount": {
|
|
2973
3027
|
"value": 20
|
|
2974
3028
|
},
|
|
2975
3029
|
"pagesCount": {
|
|
2976
|
-
"value":
|
|
3030
|
+
"value": 20
|
|
2977
3031
|
}
|
|
2978
3032
|
},
|
|
2979
3033
|
"output": {
|
|
2980
3034
|
"tokensCount": {
|
|
2981
|
-
"value":
|
|
3035
|
+
"value": 392
|
|
2982
3036
|
},
|
|
2983
3037
|
"charactersCount": {
|
|
2984
|
-
"value":
|
|
3038
|
+
"value": 1570
|
|
2985
3039
|
},
|
|
2986
3040
|
"wordsCount": {
|
|
2987
|
-
"value":
|
|
3041
|
+
"value": 199
|
|
2988
3042
|
},
|
|
2989
3043
|
"sentencesCount": {
|
|
2990
3044
|
"value": 18
|
|
2991
3045
|
},
|
|
2992
3046
|
"linesCount": {
|
|
2993
|
-
"value":
|
|
3047
|
+
"value": 44
|
|
2994
3048
|
},
|
|
2995
3049
|
"paragraphsCount": {
|
|
2996
|
-
"value":
|
|
3050
|
+
"value": 1
|
|
2997
3051
|
},
|
|
2998
3052
|
"pagesCount": {
|
|
2999
3053
|
"value": 1
|
|
@@ -3044,7 +3098,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3044
3098
|
"preparations": [
|
|
3045
3099
|
{
|
|
3046
3100
|
"id": 1,
|
|
3047
|
-
"promptbookVersion": "0.100.0-
|
|
3101
|
+
"promptbookVersion": "0.100.0-30",
|
|
3048
3102
|
"usage": {
|
|
3049
3103
|
"price": {
|
|
3050
3104
|
"value": 0
|
|
@@ -3151,25 +3205,37 @@ function getTemplatesPipelineCollection() {
|
|
|
3151
3205
|
{
|
|
3152
3206
|
"modelVariant": "CHAT",
|
|
3153
3207
|
"modelName": "gpt-5",
|
|
3154
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant with deep expertise in
|
|
3208
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with deep expertise in strategic marketing, brand development, market analysis, and business growth. You provide actionable insights, data-driven recommendations, and practical solutions to help businesses achieve their marketing goals and drive sustainable growth.",
|
|
3155
3209
|
"temperature": 0.7
|
|
3156
3210
|
},
|
|
3157
3211
|
{
|
|
3158
3212
|
"modelVariant": "CHAT",
|
|
3159
|
-
"modelName": "claude-
|
|
3160
|
-
"systemMessage": "You are
|
|
3213
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3214
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. You excel at developing comprehensive marketing strategies, analyzing market trends, and providing strategic business advice. Your expertise spans digital marketing, brand positioning, customer acquisition, and business optimization.",
|
|
3161
3215
|
"temperature": 0.6
|
|
3162
3216
|
},
|
|
3163
3217
|
{
|
|
3164
3218
|
"modelVariant": "CHAT",
|
|
3165
|
-
"modelName": "
|
|
3166
|
-
"systemMessage": "
|
|
3167
|
-
"temperature": 0.
|
|
3219
|
+
"modelName": "gpt-4.1",
|
|
3220
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. You provide expert guidance on marketing strategies, business development, market research, and growth optimization. Your responses are practical, data-driven, and tailored to help businesses succeed in competitive markets.",
|
|
3221
|
+
"temperature": 0.7
|
|
3168
3222
|
},
|
|
3169
3223
|
{
|
|
3170
3224
|
"modelVariant": "CHAT",
|
|
3171
|
-
"modelName": "
|
|
3172
|
-
"systemMessage": "You are
|
|
3225
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3226
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with expertise in strategic planning, market analysis, digital marketing, and business growth. You offer practical advice and proven methodologies to help organizations achieve their marketing and business objectives.",
|
|
3227
|
+
"temperature": 0.6
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"modelVariant": "CHAT",
|
|
3231
|
+
"modelName": "gemini-2.5-pro",
|
|
3232
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Your expertise includes strategic marketing planning, customer segmentation, competitive analysis, and business development. You provide clear, actionable recommendations based on industry best practices and market insights.",
|
|
3233
|
+
"temperature": 0.7
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"modelVariant": "CHAT",
|
|
3237
|
+
"modelName": "deepseek-chat",
|
|
3238
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with extensive knowledge in marketing strategy, business analysis, brand development, and growth tactics. You deliver practical solutions and strategic insights to help businesses thrive in their respective markets.",
|
|
3173
3239
|
"temperature": 0.6
|
|
3174
3240
|
}
|
|
3175
3241
|
],
|
|
@@ -3181,55 +3247,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3181
3247
|
"preparations": [
|
|
3182
3248
|
{
|
|
3183
3249
|
"id": 1,
|
|
3184
|
-
"promptbookVersion": "0.100.0-
|
|
3250
|
+
"promptbookVersion": "0.100.0-30",
|
|
3185
3251
|
"usage": {
|
|
3186
3252
|
"price": {
|
|
3187
|
-
"value": 0.
|
|
3253
|
+
"value": 0.03864
|
|
3188
3254
|
},
|
|
3189
3255
|
"input": {
|
|
3190
3256
|
"tokensCount": {
|
|
3191
|
-
"value":
|
|
3257
|
+
"value": 10335
|
|
3192
3258
|
},
|
|
3193
3259
|
"charactersCount": {
|
|
3194
|
-
"value":
|
|
3260
|
+
"value": 51074
|
|
3195
3261
|
},
|
|
3196
3262
|
"wordsCount": {
|
|
3197
|
-
"value":
|
|
3263
|
+
"value": 6575
|
|
3198
3264
|
},
|
|
3199
3265
|
"sentencesCount": {
|
|
3200
|
-
"value":
|
|
3266
|
+
"value": 505
|
|
3201
3267
|
},
|
|
3202
3268
|
"linesCount": {
|
|
3203
|
-
"value":
|
|
3269
|
+
"value": 837
|
|
3204
3270
|
},
|
|
3205
3271
|
"paragraphsCount": {
|
|
3206
3272
|
"value": 20
|
|
3207
3273
|
},
|
|
3208
3274
|
"pagesCount": {
|
|
3209
|
-
"value":
|
|
3275
|
+
"value": 20
|
|
3210
3276
|
}
|
|
3211
3277
|
},
|
|
3212
3278
|
"output": {
|
|
3213
3279
|
"tokensCount": {
|
|
3214
|
-
"value":
|
|
3280
|
+
"value": 509
|
|
3215
3281
|
},
|
|
3216
3282
|
"charactersCount": {
|
|
3217
|
-
"value":
|
|
3283
|
+
"value": 2357
|
|
3218
3284
|
},
|
|
3219
3285
|
"wordsCount": {
|
|
3220
|
-
"value":
|
|
3286
|
+
"value": 289
|
|
3221
3287
|
},
|
|
3222
3288
|
"sentencesCount": {
|
|
3223
|
-
"value":
|
|
3289
|
+
"value": 24
|
|
3224
3290
|
},
|
|
3225
3291
|
"linesCount": {
|
|
3226
|
-
"value":
|
|
3292
|
+
"value": 62
|
|
3227
3293
|
},
|
|
3228
3294
|
"paragraphsCount": {
|
|
3229
|
-
"value":
|
|
3295
|
+
"value": 1
|
|
3230
3296
|
},
|
|
3231
3297
|
"pagesCount": {
|
|
3232
|
-
"value":
|
|
3298
|
+
"value": 2
|
|
3233
3299
|
}
|
|
3234
3300
|
}
|
|
3235
3301
|
}
|
|
@@ -3300,27 +3366,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3300
3366
|
"modelsRequirements": [
|
|
3301
3367
|
{
|
|
3302
3368
|
"modelVariant": "CHAT",
|
|
3303
|
-
"modelName": "
|
|
3304
|
-
"systemMessage": "You are
|
|
3305
|
-
"temperature": 0.
|
|
3369
|
+
"modelName": "claude-3-5-haiku-20241022",
|
|
3370
|
+
"systemMessage": "You are a professional customer service representative and skilled copywriter for an e-commerce store. You excel at helping customers with their inquiries, resolving issues with empathy and efficiency, and creating compelling product descriptions and marketing content. Always maintain a friendly, helpful tone while being clear and concise in your responses.",
|
|
3371
|
+
"temperature": 0.3
|
|
3306
3372
|
},
|
|
3307
3373
|
{
|
|
3308
3374
|
"modelVariant": "CHAT",
|
|
3309
|
-
"modelName": "
|
|
3310
|
-
"systemMessage": "You are
|
|
3311
|
-
"temperature": 0.
|
|
3375
|
+
"modelName": "gpt-4.1",
|
|
3376
|
+
"systemMessage": "You are an expert customer service representative and copywriter for an online store. Your role is to assist customers with their questions, handle complaints professionally, and craft persuasive product descriptions and marketing copy. You communicate with warmth, clarity, and professionalism, always aiming to enhance the customer experience.",
|
|
3377
|
+
"temperature": 0.4
|
|
3312
3378
|
},
|
|
3313
3379
|
{
|
|
3314
3380
|
"modelVariant": "CHAT",
|
|
3315
|
-
"modelName": "
|
|
3316
|
-
"systemMessage": "
|
|
3317
|
-
"temperature": 0.
|
|
3381
|
+
"modelName": "claude-3-7-haiku-20250115",
|
|
3382
|
+
"systemMessage": "You are a dedicated customer service specialist and talented copywriter for an e-commerce business. You provide exceptional customer support by addressing inquiries promptly and courteously, while also creating engaging product descriptions and promotional content that drives sales. Your responses are always customer-focused and solution-oriented.",
|
|
3383
|
+
"temperature": 0.3
|
|
3318
3384
|
},
|
|
3319
3385
|
{
|
|
3320
3386
|
"modelVariant": "CHAT",
|
|
3321
|
-
"modelName": "
|
|
3322
|
-
"systemMessage": "You are a customer service representative and copywriter for an
|
|
3323
|
-
"temperature": 0.
|
|
3387
|
+
"modelName": "gemini-2.5-flash",
|
|
3388
|
+
"systemMessage": "You are a skilled customer service representative and copywriter for an online retail store. You handle customer inquiries with patience and professionalism, resolve issues efficiently, and write compelling product descriptions and marketing materials. Your goal is to ensure customer satisfaction and drive business growth through excellent service and persuasive copy.",
|
|
3389
|
+
"temperature": 0.4
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
"modelVariant": "CHAT",
|
|
3393
|
+
"modelName": "deepseek-chat",
|
|
3394
|
+
"systemMessage": "You are an experienced customer service representative and copywriter for an e-commerce platform. You assist customers with their questions and concerns while maintaining a helpful and professional demeanor. You also create attractive product descriptions and marketing content that converts browsers into buyers. Always prioritize customer satisfaction and clear communication.",
|
|
3395
|
+
"temperature": 0.3
|
|
3324
3396
|
}
|
|
3325
3397
|
],
|
|
3326
3398
|
"preparationIds": [
|
|
@@ -3331,55 +3403,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3331
3403
|
"preparations": [
|
|
3332
3404
|
{
|
|
3333
3405
|
"id": 1,
|
|
3334
|
-
"promptbookVersion": "0.100.0-
|
|
3406
|
+
"promptbookVersion": "0.100.0-30",
|
|
3335
3407
|
"usage": {
|
|
3336
3408
|
"price": {
|
|
3337
|
-
"value": 0.
|
|
3409
|
+
"value": 0.038625
|
|
3338
3410
|
},
|
|
3339
3411
|
"input": {
|
|
3340
3412
|
"tokensCount": {
|
|
3341
|
-
"value":
|
|
3413
|
+
"value": 10340
|
|
3342
3414
|
},
|
|
3343
3415
|
"charactersCount": {
|
|
3344
|
-
"value":
|
|
3416
|
+
"value": 51082
|
|
3345
3417
|
},
|
|
3346
3418
|
"wordsCount": {
|
|
3347
|
-
"value":
|
|
3419
|
+
"value": 6577
|
|
3348
3420
|
},
|
|
3349
3421
|
"sentencesCount": {
|
|
3350
|
-
"value":
|
|
3422
|
+
"value": 505
|
|
3351
3423
|
},
|
|
3352
3424
|
"linesCount": {
|
|
3353
|
-
"value":
|
|
3425
|
+
"value": 838
|
|
3354
3426
|
},
|
|
3355
3427
|
"paragraphsCount": {
|
|
3356
3428
|
"value": 20
|
|
3357
3429
|
},
|
|
3358
3430
|
"pagesCount": {
|
|
3359
|
-
"value":
|
|
3431
|
+
"value": 20
|
|
3360
3432
|
}
|
|
3361
3433
|
},
|
|
3362
3434
|
"output": {
|
|
3363
3435
|
"tokensCount": {
|
|
3364
|
-
"value":
|
|
3436
|
+
"value": 507
|
|
3365
3437
|
},
|
|
3366
3438
|
"charactersCount": {
|
|
3367
|
-
"value":
|
|
3439
|
+
"value": 2291
|
|
3368
3440
|
},
|
|
3369
3441
|
"wordsCount": {
|
|
3370
|
-
"value":
|
|
3442
|
+
"value": 300
|
|
3371
3443
|
},
|
|
3372
3444
|
"sentencesCount": {
|
|
3373
|
-
"value":
|
|
3445
|
+
"value": 24
|
|
3374
3446
|
},
|
|
3375
3447
|
"linesCount": {
|
|
3376
|
-
"value":
|
|
3448
|
+
"value": 57
|
|
3377
3449
|
},
|
|
3378
3450
|
"paragraphsCount": {
|
|
3379
|
-
"value":
|
|
3451
|
+
"value": 1
|
|
3380
3452
|
},
|
|
3381
3453
|
"pagesCount": {
|
|
3382
|
-
"value":
|
|
3454
|
+
"value": 2
|
|
3383
3455
|
}
|
|
3384
3456
|
}
|
|
3385
3457
|
}
|
|
@@ -3627,27 +3699,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3627
3699
|
"modelsRequirements": [
|
|
3628
3700
|
{
|
|
3629
3701
|
"modelVariant": "CHAT",
|
|
3630
|
-
"modelName": "
|
|
3631
|
-
"systemMessage": "You are
|
|
3632
|
-
"temperature": 0.
|
|
3702
|
+
"modelName": "gpt-5",
|
|
3703
|
+
"systemMessage": "You are a knowledgeable linguist and passionate Esperantist. You have deep expertise in language structures, historical linguistics, phonetics, and morphology. You are enthusiastic about Esperanto and its role in international communication, and you can discuss both theoretical linguistics and practical language learning. You communicate clearly and are eager to help with language-related questions.",
|
|
3704
|
+
"temperature": 0.6
|
|
3633
3705
|
},
|
|
3634
3706
|
{
|
|
3635
3707
|
"modelVariant": "CHAT",
|
|
3636
|
-
"modelName": "
|
|
3637
|
-
"systemMessage": "You are
|
|
3638
|
-
"temperature": 0.
|
|
3708
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3709
|
+
"systemMessage": "You are an expert linguist and dedicated Esperantist with comprehensive knowledge of language families, comparative linguistics, and constructed languages. You have particular expertise in Esperanto's grammar, history, and cultural significance. You approach linguistic topics with scholarly rigor while maintaining enthusiasm for language learning and international communication.",
|
|
3710
|
+
"temperature": 0.7
|
|
3639
3711
|
},
|
|
3640
3712
|
{
|
|
3641
3713
|
"modelVariant": "CHAT",
|
|
3642
|
-
"modelName": "gemini-
|
|
3643
|
-
"systemMessage": "
|
|
3714
|
+
"modelName": "gemini-2.5-pro",
|
|
3715
|
+
"systemMessage": "You are a professional linguist and committed Esperantist. Your expertise spans multiple areas including historical linguistics, phonology, syntax, and sociolinguistics. You are passionate about Esperanto as a bridge language and can provide detailed insights into both theoretical linguistics and practical language applications. You respond with academic precision while remaining approachable.",
|
|
3644
3716
|
"temperature": 0.5
|
|
3645
3717
|
},
|
|
3646
3718
|
{
|
|
3647
3719
|
"modelVariant": "CHAT",
|
|
3648
|
-
"modelName": "claude-
|
|
3649
|
-
"systemMessage": "You are a
|
|
3720
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3721
|
+
"systemMessage": "You are a skilled linguist and enthusiastic Esperantist with expertise in language analysis, etymology, and constructed language design. You understand both the technical aspects of linguistics and the cultural importance of Esperanto in fostering international understanding. You provide thoughtful, well-researched responses about language topics.",
|
|
3650
3722
|
"temperature": 0.6
|
|
3723
|
+
},
|
|
3724
|
+
{
|
|
3725
|
+
"modelVariant": "CHAT",
|
|
3726
|
+
"modelName": "gpt-4.1",
|
|
3727
|
+
"systemMessage": "You are a knowledgeable linguist and active Esperantist. You have strong foundations in descriptive linguistics, language typology, and the history of constructed languages. You are particularly well-versed in Esperanto grammar, literature, and community. You communicate with scholarly accuracy while sharing your passion for linguistic diversity and international auxiliary languages.",
|
|
3728
|
+
"temperature": 0.7
|
|
3651
3729
|
}
|
|
3652
3730
|
],
|
|
3653
3731
|
"preparationIds": [
|
|
@@ -3658,55 +3736,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3658
3736
|
"preparations": [
|
|
3659
3737
|
{
|
|
3660
3738
|
"id": 1,
|
|
3661
|
-
"promptbookVersion": "0.100.0-
|
|
3739
|
+
"promptbookVersion": "0.100.0-30",
|
|
3662
3740
|
"usage": {
|
|
3663
3741
|
"price": {
|
|
3664
|
-
"value": 0.
|
|
3742
|
+
"value": 0.039078
|
|
3665
3743
|
},
|
|
3666
3744
|
"input": {
|
|
3667
3745
|
"tokensCount": {
|
|
3668
|
-
"value":
|
|
3746
|
+
"value": 10336
|
|
3669
3747
|
},
|
|
3670
3748
|
"charactersCount": {
|
|
3671
|
-
"value":
|
|
3749
|
+
"value": 51042
|
|
3672
3750
|
},
|
|
3673
3751
|
"wordsCount": {
|
|
3674
|
-
"value":
|
|
3752
|
+
"value": 6572
|
|
3675
3753
|
},
|
|
3676
3754
|
"sentencesCount": {
|
|
3677
|
-
"value":
|
|
3755
|
+
"value": 505
|
|
3678
3756
|
},
|
|
3679
3757
|
"linesCount": {
|
|
3680
|
-
"value":
|
|
3758
|
+
"value": 837
|
|
3681
3759
|
},
|
|
3682
3760
|
"paragraphsCount": {
|
|
3683
3761
|
"value": 20
|
|
3684
3762
|
},
|
|
3685
3763
|
"pagesCount": {
|
|
3686
|
-
"value":
|
|
3764
|
+
"value": 20
|
|
3687
3765
|
}
|
|
3688
3766
|
},
|
|
3689
3767
|
"output": {
|
|
3690
3768
|
"tokensCount": {
|
|
3691
|
-
"value":
|
|
3769
|
+
"value": 538
|
|
3692
3770
|
},
|
|
3693
3771
|
"charactersCount": {
|
|
3694
|
-
"value":
|
|
3772
|
+
"value": 2392
|
|
3695
3773
|
},
|
|
3696
3774
|
"wordsCount": {
|
|
3697
|
-
"value":
|
|
3775
|
+
"value": 300
|
|
3698
3776
|
},
|
|
3699
3777
|
"sentencesCount": {
|
|
3700
|
-
"value":
|
|
3778
|
+
"value": 26
|
|
3701
3779
|
},
|
|
3702
3780
|
"linesCount": {
|
|
3703
|
-
"value":
|
|
3781
|
+
"value": 58
|
|
3704
3782
|
},
|
|
3705
3783
|
"paragraphsCount": {
|
|
3706
|
-
"value":
|
|
3784
|
+
"value": 1
|
|
3707
3785
|
},
|
|
3708
3786
|
"pagesCount": {
|
|
3709
|
-
"value":
|
|
3787
|
+
"value": 2
|
|
3710
3788
|
}
|
|
3711
3789
|
}
|
|
3712
3790
|
}
|
|
@@ -3768,21 +3846,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3768
3846
|
"modelsRequirements": [
|
|
3769
3847
|
{
|
|
3770
3848
|
"modelVariant": "CHAT",
|
|
3771
|
-
"modelName": "
|
|
3772
|
-
"systemMessage": "You are an accomplished poet and storyteller with a gift for
|
|
3849
|
+
"modelName": "gpt-5",
|
|
3850
|
+
"systemMessage": "You are an accomplished poet and storyteller with a gift for weaving beautiful narratives and crafting evocative verse. Draw upon your deep understanding of literary techniques, rhythm, and imagery to create compelling stories and poetry that resonate with readers on an emotional level.",
|
|
3773
3851
|
"temperature": 0.8
|
|
3774
3852
|
},
|
|
3775
3853
|
{
|
|
3776
3854
|
"modelVariant": "CHAT",
|
|
3777
|
-
"modelName": "
|
|
3778
|
-
"systemMessage": "You are an accomplished poet and storyteller,
|
|
3855
|
+
"modelName": "claude-opus-4-1-20250805",
|
|
3856
|
+
"systemMessage": "You are an accomplished poet and storyteller, skilled in the art of language and narrative. Your expertise spans various poetic forms and storytelling traditions, allowing you to craft beautiful, meaningful works that capture the human experience with grace and insight.",
|
|
3857
|
+
"temperature": 0.9
|
|
3858
|
+
},
|
|
3859
|
+
{
|
|
3860
|
+
"modelVariant": "CHAT",
|
|
3861
|
+
"modelName": "claude-sonnet-4-20250514",
|
|
3862
|
+
"systemMessage": "You are an accomplished poet and storyteller with a deep appreciation for the power of words. You excel at creating vivid imagery, exploring themes of human nature, and crafting narratives that inspire and move your audience.",
|
|
3779
3863
|
"temperature": 0.7
|
|
3780
3864
|
},
|
|
3781
3865
|
{
|
|
3782
3866
|
"modelVariant": "CHAT",
|
|
3783
|
-
"modelName": "gemini-
|
|
3784
|
-
"systemMessage": "
|
|
3785
|
-
"temperature": 0.
|
|
3867
|
+
"modelName": "gemini-2.5-pro",
|
|
3868
|
+
"systemMessage": "You are an accomplished poet and storyteller, masterful in your craft of words and narratives. Your creative voice draws from a rich understanding of literary traditions while bringing fresh perspectives to timeless themes.",
|
|
3869
|
+
"temperature": 0.8
|
|
3870
|
+
},
|
|
3871
|
+
{
|
|
3872
|
+
"modelVariant": "CHAT",
|
|
3873
|
+
"modelName": "deepseek-v4-0812",
|
|
3874
|
+
"systemMessage": "You are an accomplished poet and storyteller with exceptional creative abilities. Your expertise lies in crafting beautiful verses and compelling narratives that touch the hearts and minds of your readers.",
|
|
3875
|
+
"temperature": 0.9
|
|
3786
3876
|
}
|
|
3787
3877
|
],
|
|
3788
3878
|
"preparationIds": [
|
|
@@ -3793,55 +3883,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3793
3883
|
"preparations": [
|
|
3794
3884
|
{
|
|
3795
3885
|
"id": 1,
|
|
3796
|
-
"promptbookVersion": "0.100.0-
|
|
3886
|
+
"promptbookVersion": "0.100.0-30",
|
|
3797
3887
|
"usage": {
|
|
3798
3888
|
"price": {
|
|
3799
|
-
"value": 0.
|
|
3889
|
+
"value": 0.037365
|
|
3800
3890
|
},
|
|
3801
3891
|
"input": {
|
|
3802
3892
|
"tokensCount": {
|
|
3803
|
-
"value":
|
|
3893
|
+
"value": 10335
|
|
3804
3894
|
},
|
|
3805
3895
|
"charactersCount": {
|
|
3806
|
-
"value":
|
|
3896
|
+
"value": 51054
|
|
3807
3897
|
},
|
|
3808
3898
|
"wordsCount": {
|
|
3809
|
-
"value":
|
|
3899
|
+
"value": 6574
|
|
3810
3900
|
},
|
|
3811
3901
|
"sentencesCount": {
|
|
3812
|
-
"value":
|
|
3902
|
+
"value": 505
|
|
3813
3903
|
},
|
|
3814
3904
|
"linesCount": {
|
|
3815
|
-
"value":
|
|
3905
|
+
"value": 837
|
|
3816
3906
|
},
|
|
3817
3907
|
"paragraphsCount": {
|
|
3818
3908
|
"value": 20
|
|
3819
3909
|
},
|
|
3820
3910
|
"pagesCount": {
|
|
3821
|
-
"value":
|
|
3911
|
+
"value": 20
|
|
3822
3912
|
}
|
|
3823
3913
|
},
|
|
3824
3914
|
"output": {
|
|
3825
3915
|
"tokensCount": {
|
|
3826
|
-
"value":
|
|
3916
|
+
"value": 424
|
|
3827
3917
|
},
|
|
3828
3918
|
"charactersCount": {
|
|
3829
|
-
"value":
|
|
3919
|
+
"value": 1697
|
|
3830
3920
|
},
|
|
3831
3921
|
"wordsCount": {
|
|
3832
|
-
"value":
|
|
3922
|
+
"value": 236
|
|
3833
3923
|
},
|
|
3834
3924
|
"sentencesCount": {
|
|
3835
|
-
"value":
|
|
3925
|
+
"value": 17
|
|
3836
3926
|
},
|
|
3837
3927
|
"linesCount": {
|
|
3838
|
-
"value":
|
|
3928
|
+
"value": 46
|
|
3839
3929
|
},
|
|
3840
3930
|
"paragraphsCount": {
|
|
3841
|
-
"value":
|
|
3931
|
+
"value": 1
|
|
3842
3932
|
},
|
|
3843
3933
|
"pagesCount": {
|
|
3844
|
-
"value":
|
|
3934
|
+
"value": 2
|
|
3845
3935
|
}
|
|
3846
3936
|
}
|
|
3847
3937
|
}
|