@promptbook/templates 0.100.0-2 → 0.100.0-21
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 +151 -181
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +24 -0
- package/esm/typings/src/_packages/types.index.d.ts +28 -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 +30 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +31 -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 +43 -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 +36 -0
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +48 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +31 -0
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +41 -0
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +36 -0
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +36 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +30 -0
- package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +42 -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 +37 -0
- package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +14 -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/pipeline/book-notation.d.ts +2 -1
- package/esm/typings/src/types/typeAliases.d.ts +6 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/esm/typings/src/wizard/wizard.d.ts +14 -4
- package/package.json +2 -2
- package/umd/index.umd.js +151 -181
- 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-21';
|
|
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
|
|
@@ -1542,32 +1542,20 @@
|
|
|
1542
1542
|
{
|
|
1543
1543
|
"modelVariant": "CHAT",
|
|
1544
1544
|
"modelName": "gpt-4",
|
|
1545
|
-
"systemMessage": "You are an AI assistant for a developer
|
|
1545
|
+
"systemMessage": "You are an AI assistant for a developer working on the Promptbook Project. You have extensive knowledge of prompt engineering, language models, and software development best practices. Provide helpful, accurate, and concise responses to aid in the development process.",
|
|
1546
1546
|
"temperature": 0.7
|
|
1547
1547
|
},
|
|
1548
1548
|
{
|
|
1549
1549
|
"modelVariant": "CHAT",
|
|
1550
1550
|
"modelName": "claude-3-opus-20240229",
|
|
1551
|
-
"systemMessage": "
|
|
1551
|
+
"systemMessage": "You are an AI assistant supporting a developer of the Promptbook Project. Your expertise covers prompt engineering techniques, language model capabilities, and software development workflows. Offer insightful and practical advice to enhance the project's development.",
|
|
1552
1552
|
"temperature": 0.6
|
|
1553
1553
|
},
|
|
1554
1554
|
{
|
|
1555
1555
|
"modelVariant": "CHAT",
|
|
1556
1556
|
"modelName": "gemini-1.5-pro",
|
|
1557
|
-
"systemMessage": "
|
|
1557
|
+
"systemMessage": "As an AI assistant for the Promptbook Project developer, you specialize in prompt engineering, language model applications, and software development. Provide clear, actionable insights to facilitate efficient project development and innovation.",
|
|
1558
1558
|
"temperature": 0.5
|
|
1559
|
-
},
|
|
1560
|
-
{
|
|
1561
|
-
"modelVariant": "CHAT",
|
|
1562
|
-
"modelName": "deepseek-coder",
|
|
1563
|
-
"systemMessage": "As an AI coding assistant for the Promptbook Project, you specialize in software development and AI technologies. Offer expert guidance on coding practices, debugging, and implementing AI-related features for the project.",
|
|
1564
|
-
"temperature": 0.4
|
|
1565
|
-
},
|
|
1566
|
-
{
|
|
1567
|
-
"modelVariant": "CHAT",
|
|
1568
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
1569
|
-
"systemMessage": "You are a helpful AI assistant for a developer working on the Promptbook Project. Provide support with coding, documentation, and general software development tasks. Offer clear explanations and suggestions to aid in project development.",
|
|
1570
|
-
"temperature": 0.6
|
|
1571
1559
|
}
|
|
1572
1560
|
],
|
|
1573
1561
|
"preparationIds": [
|
|
@@ -1578,26 +1566,26 @@
|
|
|
1578
1566
|
"preparations": [
|
|
1579
1567
|
{
|
|
1580
1568
|
"id": 1,
|
|
1581
|
-
"promptbookVersion": "0.100.0-
|
|
1569
|
+
"promptbookVersion": "0.100.0-20",
|
|
1582
1570
|
"usage": {
|
|
1583
1571
|
"price": {
|
|
1584
|
-
"value": 0.
|
|
1572
|
+
"value": 0.026725000000000002
|
|
1585
1573
|
},
|
|
1586
1574
|
"input": {
|
|
1587
1575
|
"tokensCount": {
|
|
1588
|
-
"value":
|
|
1576
|
+
"value": 9245
|
|
1589
1577
|
},
|
|
1590
1578
|
"charactersCount": {
|
|
1591
|
-
"value":
|
|
1579
|
+
"value": 45289
|
|
1592
1580
|
},
|
|
1593
1581
|
"wordsCount": {
|
|
1594
|
-
"value":
|
|
1582
|
+
"value": 5815
|
|
1595
1583
|
},
|
|
1596
1584
|
"sentencesCount": {
|
|
1597
|
-
"value":
|
|
1585
|
+
"value": 440
|
|
1598
1586
|
},
|
|
1599
1587
|
"linesCount": {
|
|
1600
|
-
"value":
|
|
1588
|
+
"value": 746
|
|
1601
1589
|
},
|
|
1602
1590
|
"paragraphsCount": {
|
|
1603
1591
|
"value": 20
|
|
@@ -1608,25 +1596,25 @@
|
|
|
1608
1596
|
},
|
|
1609
1597
|
"output": {
|
|
1610
1598
|
"tokensCount": {
|
|
1611
|
-
"value":
|
|
1599
|
+
"value": 289
|
|
1612
1600
|
},
|
|
1613
1601
|
"charactersCount": {
|
|
1614
|
-
"value":
|
|
1602
|
+
"value": 1213
|
|
1615
1603
|
},
|
|
1616
1604
|
"wordsCount": {
|
|
1617
|
-
"value":
|
|
1605
|
+
"value": 162
|
|
1618
1606
|
},
|
|
1619
1607
|
"sentencesCount": {
|
|
1620
|
-
"value":
|
|
1608
|
+
"value": 13
|
|
1621
1609
|
},
|
|
1622
1610
|
"linesCount": {
|
|
1623
|
-
"value":
|
|
1611
|
+
"value": 34
|
|
1624
1612
|
},
|
|
1625
1613
|
"paragraphsCount": {
|
|
1626
1614
|
"value": 2
|
|
1627
1615
|
},
|
|
1628
1616
|
"pagesCount": {
|
|
1629
|
-
"value":
|
|
1617
|
+
"value": 1
|
|
1630
1618
|
}
|
|
1631
1619
|
}
|
|
1632
1620
|
}
|
|
@@ -2107,32 +2095,20 @@
|
|
|
2107
2095
|
{
|
|
2108
2096
|
"modelVariant": "CHAT",
|
|
2109
2097
|
"modelName": "gpt-4",
|
|
2110
|
-
"systemMessage": "You are an AI assistant for a developer
|
|
2098
|
+
"systemMessage": "You are an AI assistant for a developer working on the Promptbook Project. You have extensive knowledge of prompt engineering, language models, and software development best practices. Provide helpful, accurate, and concise responses to aid in the development process.",
|
|
2111
2099
|
"temperature": 0.7
|
|
2112
2100
|
},
|
|
2113
2101
|
{
|
|
2114
2102
|
"modelVariant": "CHAT",
|
|
2115
2103
|
"modelName": "claude-3-opus-20240229",
|
|
2116
|
-
"systemMessage": "
|
|
2104
|
+
"systemMessage": "You are an AI assistant supporting a developer of the Promptbook Project. Your expertise covers prompt engineering techniques, language model capabilities, and software development workflows. Offer insightful and practical advice to enhance the project's development.",
|
|
2117
2105
|
"temperature": 0.6
|
|
2118
2106
|
},
|
|
2119
2107
|
{
|
|
2120
2108
|
"modelVariant": "CHAT",
|
|
2121
2109
|
"modelName": "gemini-1.5-pro",
|
|
2122
|
-
"systemMessage": "
|
|
2110
|
+
"systemMessage": "As an AI assistant for the Promptbook Project developer, you specialize in prompt engineering, language model applications, and software development. Provide clear, actionable insights to facilitate efficient project development and innovation.",
|
|
2123
2111
|
"temperature": 0.5
|
|
2124
|
-
},
|
|
2125
|
-
{
|
|
2126
|
-
"modelVariant": "CHAT",
|
|
2127
|
-
"modelName": "deepseek-coder",
|
|
2128
|
-
"systemMessage": "As an AI coding assistant for the Promptbook Project, you specialize in software development and AI technologies. Offer expert guidance on coding practices, debugging, and implementing AI-related features for the project.",
|
|
2129
|
-
"temperature": 0.4
|
|
2130
|
-
},
|
|
2131
|
-
{
|
|
2132
|
-
"modelVariant": "CHAT",
|
|
2133
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
2134
|
-
"systemMessage": "You are a helpful AI assistant for a developer working on the Promptbook Project. Provide support with coding, documentation, and general software development tasks. Offer clear explanations and suggestions to aid in project development.",
|
|
2135
|
-
"temperature": 0.6
|
|
2136
2112
|
}
|
|
2137
2113
|
],
|
|
2138
2114
|
"preparationIds": [
|
|
@@ -2143,26 +2119,26 @@
|
|
|
2143
2119
|
"preparations": [
|
|
2144
2120
|
{
|
|
2145
2121
|
"id": 1,
|
|
2146
|
-
"promptbookVersion": "0.100.0-
|
|
2122
|
+
"promptbookVersion": "0.100.0-20",
|
|
2147
2123
|
"usage": {
|
|
2148
2124
|
"price": {
|
|
2149
|
-
"value": 0.
|
|
2125
|
+
"value": 0.026725000000000002
|
|
2150
2126
|
},
|
|
2151
2127
|
"input": {
|
|
2152
2128
|
"tokensCount": {
|
|
2153
|
-
"value":
|
|
2129
|
+
"value": 9245
|
|
2154
2130
|
},
|
|
2155
2131
|
"charactersCount": {
|
|
2156
|
-
"value":
|
|
2132
|
+
"value": 45289
|
|
2157
2133
|
},
|
|
2158
2134
|
"wordsCount": {
|
|
2159
|
-
"value":
|
|
2135
|
+
"value": 5815
|
|
2160
2136
|
},
|
|
2161
2137
|
"sentencesCount": {
|
|
2162
|
-
"value":
|
|
2138
|
+
"value": 440
|
|
2163
2139
|
},
|
|
2164
2140
|
"linesCount": {
|
|
2165
|
-
"value":
|
|
2141
|
+
"value": 746
|
|
2166
2142
|
},
|
|
2167
2143
|
"paragraphsCount": {
|
|
2168
2144
|
"value": 20
|
|
@@ -2173,25 +2149,25 @@
|
|
|
2173
2149
|
},
|
|
2174
2150
|
"output": {
|
|
2175
2151
|
"tokensCount": {
|
|
2176
|
-
"value":
|
|
2152
|
+
"value": 289
|
|
2177
2153
|
},
|
|
2178
2154
|
"charactersCount": {
|
|
2179
|
-
"value":
|
|
2155
|
+
"value": 1213
|
|
2180
2156
|
},
|
|
2181
2157
|
"wordsCount": {
|
|
2182
|
-
"value":
|
|
2158
|
+
"value": 162
|
|
2183
2159
|
},
|
|
2184
2160
|
"sentencesCount": {
|
|
2185
|
-
"value":
|
|
2161
|
+
"value": 13
|
|
2186
2162
|
},
|
|
2187
2163
|
"linesCount": {
|
|
2188
|
-
"value":
|
|
2164
|
+
"value": 34
|
|
2189
2165
|
},
|
|
2190
2166
|
"paragraphsCount": {
|
|
2191
2167
|
"value": 2
|
|
2192
2168
|
},
|
|
2193
2169
|
"pagesCount": {
|
|
2194
|
-
"value":
|
|
2170
|
+
"value": 1
|
|
2195
2171
|
}
|
|
2196
2172
|
}
|
|
2197
2173
|
}
|
|
@@ -2813,20 +2789,20 @@
|
|
|
2813
2789
|
{
|
|
2814
2790
|
"modelVariant": "CHAT",
|
|
2815
2791
|
"modelName": "claude-3-opus-20240229",
|
|
2816
|
-
"systemMessage": "You are an expert linguist and
|
|
2792
|
+
"systemMessage": "You are an expert linguist and language corrector. Provide detailed linguistic analysis, identify and correct grammatical errors, and offer nuanced explanations of language usage and rules.",
|
|
2817
2793
|
"temperature": 0.3
|
|
2818
2794
|
},
|
|
2819
2795
|
{
|
|
2820
2796
|
"modelVariant": "CHAT",
|
|
2821
2797
|
"modelName": "gpt-4",
|
|
2822
|
-
"systemMessage": "As a skilled linguist and
|
|
2823
|
-
"temperature": 0.
|
|
2798
|
+
"systemMessage": "As a skilled linguist and language corrector, your role is to analyze text, identify errors, and provide clear explanations for corrections. Offer insights into grammar, syntax, and language nuances.",
|
|
2799
|
+
"temperature": 0.4
|
|
2824
2800
|
},
|
|
2825
2801
|
{
|
|
2826
2802
|
"modelVariant": "CHAT",
|
|
2827
|
-
"modelName": "
|
|
2828
|
-
"systemMessage": "You are a knowledgeable linguist and
|
|
2829
|
-
"temperature": 0.
|
|
2803
|
+
"modelName": "gemini-1.5-pro",
|
|
2804
|
+
"systemMessage": "You are a knowledgeable linguist and language corrector. Your task is to examine text carefully, point out any language errors, and explain corrections with linguistic precision and clarity.",
|
|
2805
|
+
"temperature": 0.3
|
|
2830
2806
|
}
|
|
2831
2807
|
],
|
|
2832
2808
|
"preparationIds": [
|
|
@@ -2837,26 +2813,26 @@
|
|
|
2837
2813
|
"preparations": [
|
|
2838
2814
|
{
|
|
2839
2815
|
"id": 1,
|
|
2840
|
-
"promptbookVersion": "0.100.0-
|
|
2816
|
+
"promptbookVersion": "0.100.0-20",
|
|
2841
2817
|
"usage": {
|
|
2842
2818
|
"price": {
|
|
2843
|
-
"value": 0.
|
|
2819
|
+
"value": 0.0262975
|
|
2844
2820
|
},
|
|
2845
2821
|
"input": {
|
|
2846
2822
|
"tokensCount": {
|
|
2847
|
-
"value":
|
|
2823
|
+
"value": 9244
|
|
2848
2824
|
},
|
|
2849
2825
|
"charactersCount": {
|
|
2850
|
-
"value":
|
|
2826
|
+
"value": 45276
|
|
2851
2827
|
},
|
|
2852
2828
|
"wordsCount": {
|
|
2853
|
-
"value":
|
|
2829
|
+
"value": 5813
|
|
2854
2830
|
},
|
|
2855
2831
|
"sentencesCount": {
|
|
2856
|
-
"value":
|
|
2832
|
+
"value": 440
|
|
2857
2833
|
},
|
|
2858
2834
|
"linesCount": {
|
|
2859
|
-
"value":
|
|
2835
|
+
"value": 746
|
|
2860
2836
|
},
|
|
2861
2837
|
"paragraphsCount": {
|
|
2862
2838
|
"value": 20
|
|
@@ -2867,13 +2843,13 @@
|
|
|
2867
2843
|
},
|
|
2868
2844
|
"output": {
|
|
2869
2845
|
"tokensCount": {
|
|
2870
|
-
"value":
|
|
2846
|
+
"value": 255
|
|
2871
2847
|
},
|
|
2872
2848
|
"charactersCount": {
|
|
2873
|
-
"value":
|
|
2849
|
+
"value": 961
|
|
2874
2850
|
},
|
|
2875
2851
|
"wordsCount": {
|
|
2876
|
-
"value":
|
|
2852
|
+
"value": 130
|
|
2877
2853
|
},
|
|
2878
2854
|
"sentencesCount": {
|
|
2879
2855
|
"value": 11
|
|
@@ -2949,26 +2925,26 @@
|
|
|
2949
2925
|
{
|
|
2950
2926
|
"modelVariant": "CHAT",
|
|
2951
2927
|
"modelName": "gpt-4",
|
|
2952
|
-
"systemMessage": "You are an
|
|
2928
|
+
"systemMessage": "You are an expert copywriter specializing in ecommerce and online retail. Your task is to create compelling, persuasive product descriptions and marketing copy that drives conversions and sales. Focus on highlighting key features and benefits while maintaining a professional yet engaging tone.",
|
|
2953
2929
|
"temperature": 0.7
|
|
2954
2930
|
},
|
|
2955
2931
|
{
|
|
2956
2932
|
"modelVariant": "CHAT",
|
|
2957
2933
|
"modelName": "claude-3-opus-20240229",
|
|
2958
|
-
"systemMessage": "You are a skilled
|
|
2934
|
+
"systemMessage": "You are a highly skilled ecommerce copywriter. Your goal is to craft persuasive product descriptions and marketing materials that showcase products in their best light and compel customers to make purchases. Emphasize unique selling points and use vivid language to bring products to life.",
|
|
2959
2935
|
"temperature": 0.6
|
|
2960
2936
|
},
|
|
2961
2937
|
{
|
|
2962
2938
|
"modelVariant": "CHAT",
|
|
2963
2939
|
"modelName": "gemini-1.5-pro",
|
|
2964
|
-
"systemMessage": "As an
|
|
2965
|
-
"temperature": 0.
|
|
2940
|
+
"systemMessage": "As an experienced ecommerce copywriter, your role is to create captivating product descriptions and marketing copy for an online store. Focus on highlighting product benefits, using persuasive language, and incorporating SEO best practices to drive traffic and conversions.",
|
|
2941
|
+
"temperature": 0.7
|
|
2966
2942
|
},
|
|
2967
2943
|
{
|
|
2968
2944
|
"modelVariant": "CHAT",
|
|
2969
2945
|
"modelName": "gpt-3.5-turbo",
|
|
2970
|
-
"systemMessage": "You are a
|
|
2971
|
-
"temperature": 0.
|
|
2946
|
+
"systemMessage": "You are a talented copywriter for an ecommerce website. Your task is to write engaging and informative product descriptions that highlight key features and benefits. Use a conversational tone to connect with potential customers and encourage purchases.",
|
|
2947
|
+
"temperature": 0.8
|
|
2972
2948
|
}
|
|
2973
2949
|
],
|
|
2974
2950
|
"preparationIds": [
|
|
@@ -2979,26 +2955,26 @@
|
|
|
2979
2955
|
"preparations": [
|
|
2980
2956
|
{
|
|
2981
2957
|
"id": 1,
|
|
2982
|
-
"promptbookVersion": "0.100.0-
|
|
2958
|
+
"promptbookVersion": "0.100.0-20",
|
|
2983
2959
|
"usage": {
|
|
2984
2960
|
"price": {
|
|
2985
|
-
"value": 0.
|
|
2961
|
+
"value": 0.0279975
|
|
2986
2962
|
},
|
|
2987
2963
|
"input": {
|
|
2988
2964
|
"tokensCount": {
|
|
2989
|
-
"value":
|
|
2965
|
+
"value": 9244
|
|
2990
2966
|
},
|
|
2991
2967
|
"charactersCount": {
|
|
2992
|
-
"value":
|
|
2968
|
+
"value": 45280
|
|
2993
2969
|
},
|
|
2994
2970
|
"wordsCount": {
|
|
2995
|
-
"value":
|
|
2971
|
+
"value": 5813
|
|
2996
2972
|
},
|
|
2997
2973
|
"sentencesCount": {
|
|
2998
|
-
"value":
|
|
2974
|
+
"value": 440
|
|
2999
2975
|
},
|
|
3000
2976
|
"linesCount": {
|
|
3001
|
-
"value":
|
|
2977
|
+
"value": 746
|
|
3002
2978
|
},
|
|
3003
2979
|
"paragraphsCount": {
|
|
3004
2980
|
"value": 20
|
|
@@ -3009,19 +2985,19 @@
|
|
|
3009
2985
|
},
|
|
3010
2986
|
"output": {
|
|
3011
2987
|
"tokensCount": {
|
|
3012
|
-
"value":
|
|
2988
|
+
"value": 391
|
|
3013
2989
|
},
|
|
3014
2990
|
"charactersCount": {
|
|
3015
|
-
"value":
|
|
2991
|
+
"value": 1587
|
|
3016
2992
|
},
|
|
3017
2993
|
"wordsCount": {
|
|
3018
|
-
"value":
|
|
2994
|
+
"value": 223
|
|
3019
2995
|
},
|
|
3020
2996
|
"sentencesCount": {
|
|
3021
|
-
"value":
|
|
2997
|
+
"value": 18
|
|
3022
2998
|
},
|
|
3023
2999
|
"linesCount": {
|
|
3024
|
-
"value":
|
|
3000
|
+
"value": 43
|
|
3025
3001
|
},
|
|
3026
3002
|
"paragraphsCount": {
|
|
3027
3003
|
"value": 2
|
|
@@ -3075,7 +3051,7 @@
|
|
|
3075
3051
|
"preparations": [
|
|
3076
3052
|
{
|
|
3077
3053
|
"id": 1,
|
|
3078
|
-
"promptbookVersion": "0.100.0-
|
|
3054
|
+
"promptbookVersion": "0.100.0-20",
|
|
3079
3055
|
"usage": {
|
|
3080
3056
|
"price": {
|
|
3081
3057
|
"value": 0
|
|
@@ -3181,26 +3157,26 @@
|
|
|
3181
3157
|
"modelsRequirements": [
|
|
3182
3158
|
{
|
|
3183
3159
|
"modelVariant": "CHAT",
|
|
3184
|
-
"modelName": "
|
|
3185
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3160
|
+
"modelName": "gpt-5",
|
|
3161
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with deep expertise in market analysis, brand strategy, and business growth. Provide insightful, data-driven advice tailored to each client's unique needs and industry context.",
|
|
3186
3162
|
"temperature": 0.7
|
|
3187
3163
|
},
|
|
3188
3164
|
{
|
|
3189
3165
|
"modelVariant": "CHAT",
|
|
3190
|
-
"modelName": "
|
|
3191
|
-
"systemMessage": "
|
|
3166
|
+
"modelName": "claude-3-opus-20240229",
|
|
3167
|
+
"systemMessage": "You are a seasoned marketing professional and business advisor with extensive experience across industries. Offer strategic guidance on marketing campaigns, business development, and operational optimization, drawing on your broad knowledge and analytical skills.",
|
|
3192
3168
|
"temperature": 0.6
|
|
3193
3169
|
},
|
|
3194
3170
|
{
|
|
3195
3171
|
"modelVariant": "CHAT",
|
|
3196
|
-
"modelName": "gemini-
|
|
3197
|
-
"systemMessage": "
|
|
3198
|
-
"temperature": 0.
|
|
3172
|
+
"modelName": "gemini-2.5-pro-preview-03-25",
|
|
3173
|
+
"systemMessage": "As an expert marketing strategist and business consultant, your role is to provide cutting-edge advice on digital marketing trends, customer acquisition strategies, and business model innovation. Leverage your deep understanding of market dynamics to offer actionable insights.",
|
|
3174
|
+
"temperature": 0.8
|
|
3199
3175
|
},
|
|
3200
3176
|
{
|
|
3201
3177
|
"modelVariant": "CHAT",
|
|
3202
|
-
"modelName": "
|
|
3203
|
-
"systemMessage": "
|
|
3178
|
+
"modelName": "gpt-4",
|
|
3179
|
+
"systemMessage": "You are a highly skilled marketing specialist and business consultant. Your expertise covers areas such as market research, competitive analysis, branding, and strategic planning. Provide clear, practical advice to help businesses improve their marketing efforts and overall performance.",
|
|
3204
3180
|
"temperature": 0.6
|
|
3205
3181
|
}
|
|
3206
3182
|
],
|
|
@@ -3212,26 +3188,26 @@
|
|
|
3212
3188
|
"preparations": [
|
|
3213
3189
|
{
|
|
3214
3190
|
"id": 1,
|
|
3215
|
-
"promptbookVersion": "0.100.0-
|
|
3191
|
+
"promptbookVersion": "0.100.0-20",
|
|
3216
3192
|
"usage": {
|
|
3217
3193
|
"price": {
|
|
3218
|
-
"value": 0.
|
|
3194
|
+
"value": 0.027682500000000002
|
|
3219
3195
|
},
|
|
3220
3196
|
"input": {
|
|
3221
3197
|
"tokensCount": {
|
|
3222
|
-
"value":
|
|
3198
|
+
"value": 9243
|
|
3223
3199
|
},
|
|
3224
3200
|
"charactersCount": {
|
|
3225
|
-
"value":
|
|
3201
|
+
"value": 45308
|
|
3226
3202
|
},
|
|
3227
3203
|
"wordsCount": {
|
|
3228
|
-
"value":
|
|
3204
|
+
"value": 5815
|
|
3229
3205
|
},
|
|
3230
3206
|
"sentencesCount": {
|
|
3231
|
-
"value":
|
|
3207
|
+
"value": 440
|
|
3232
3208
|
},
|
|
3233
3209
|
"linesCount": {
|
|
3234
|
-
"value":
|
|
3210
|
+
"value": 746
|
|
3235
3211
|
},
|
|
3236
3212
|
"paragraphsCount": {
|
|
3237
3213
|
"value": 20
|
|
@@ -3242,19 +3218,19 @@
|
|
|
3242
3218
|
},
|
|
3243
3219
|
"output": {
|
|
3244
3220
|
"tokensCount": {
|
|
3245
|
-
"value":
|
|
3221
|
+
"value": 366
|
|
3246
3222
|
},
|
|
3247
3223
|
"charactersCount": {
|
|
3248
|
-
"value":
|
|
3224
|
+
"value": 1603
|
|
3249
3225
|
},
|
|
3250
3226
|
"wordsCount": {
|
|
3251
|
-
"value":
|
|
3227
|
+
"value": 211
|
|
3252
3228
|
},
|
|
3253
3229
|
"sentencesCount": {
|
|
3254
|
-
"value":
|
|
3230
|
+
"value": 15
|
|
3255
3231
|
},
|
|
3256
3232
|
"linesCount": {
|
|
3257
|
-
"value":
|
|
3233
|
+
"value": 43
|
|
3258
3234
|
},
|
|
3259
3235
|
"paragraphsCount": {
|
|
3260
3236
|
"value": 2
|
|
@@ -3331,27 +3307,27 @@
|
|
|
3331
3307
|
"modelsRequirements": [
|
|
3332
3308
|
{
|
|
3333
3309
|
"modelVariant": "CHAT",
|
|
3334
|
-
"modelName": "
|
|
3335
|
-
"systemMessage": "You are an
|
|
3310
|
+
"modelName": "gpt-4",
|
|
3311
|
+
"systemMessage": "You are an experienced customer service representative and skilled copywriter for an online shop. Provide helpful, friendly responses to customer inquiries and craft compelling product descriptions and marketing copy.",
|
|
3336
3312
|
"temperature": 0.7
|
|
3337
3313
|
},
|
|
3338
3314
|
{
|
|
3339
3315
|
"modelVariant": "CHAT",
|
|
3340
|
-
"modelName": "
|
|
3341
|
-
"systemMessage": "
|
|
3316
|
+
"modelName": "claude-3-opus-20240229",
|
|
3317
|
+
"systemMessage": "You are a knowledgeable and creative customer service agent and copywriter for an ecommerce store. Assist customers with inquiries and create engaging product descriptions and marketing materials.",
|
|
3342
3318
|
"temperature": 0.6
|
|
3343
3319
|
},
|
|
3344
3320
|
{
|
|
3345
3321
|
"modelVariant": "CHAT",
|
|
3346
|
-
"modelName": "
|
|
3347
|
-
"systemMessage": "
|
|
3348
|
-
"temperature": 0.
|
|
3322
|
+
"modelName": "gemini-1.5-pro",
|
|
3323
|
+
"systemMessage": "As an expert customer service representative and copywriter for an online shop, your role is to provide excellent customer support and create compelling product content. Be helpful, friendly, and persuasive in your communications.",
|
|
3324
|
+
"temperature": 0.5
|
|
3349
3325
|
},
|
|
3350
3326
|
{
|
|
3351
3327
|
"modelVariant": "CHAT",
|
|
3352
|
-
"modelName": "
|
|
3353
|
-
"systemMessage": "You
|
|
3354
|
-
"temperature": 0.
|
|
3328
|
+
"modelName": "gpt-3.5-turbo",
|
|
3329
|
+
"systemMessage": "You are a customer service representative and copywriter for an ecommerce website. Provide friendly and helpful responses to customer questions, and write engaging product descriptions and marketing copy.",
|
|
3330
|
+
"temperature": 0.7
|
|
3355
3331
|
}
|
|
3356
3332
|
],
|
|
3357
3333
|
"preparationIds": [
|
|
@@ -3362,26 +3338,26 @@
|
|
|
3362
3338
|
"preparations": [
|
|
3363
3339
|
{
|
|
3364
3340
|
"id": 1,
|
|
3365
|
-
"promptbookVersion": "0.100.0-
|
|
3341
|
+
"promptbookVersion": "0.100.0-20",
|
|
3366
3342
|
"usage": {
|
|
3367
3343
|
"price": {
|
|
3368
|
-
"value": 0.
|
|
3344
|
+
"value": 0.027307500000000002
|
|
3369
3345
|
},
|
|
3370
3346
|
"input": {
|
|
3371
3347
|
"tokensCount": {
|
|
3372
|
-
"value":
|
|
3348
|
+
"value": 9248
|
|
3373
3349
|
},
|
|
3374
3350
|
"charactersCount": {
|
|
3375
|
-
"value":
|
|
3351
|
+
"value": 45316
|
|
3376
3352
|
},
|
|
3377
3353
|
"wordsCount": {
|
|
3378
|
-
"value":
|
|
3354
|
+
"value": 5817
|
|
3379
3355
|
},
|
|
3380
3356
|
"sentencesCount": {
|
|
3381
|
-
"value":
|
|
3357
|
+
"value": 440
|
|
3382
3358
|
},
|
|
3383
3359
|
"linesCount": {
|
|
3384
|
-
"value":
|
|
3360
|
+
"value": 747
|
|
3385
3361
|
},
|
|
3386
3362
|
"paragraphsCount": {
|
|
3387
3363
|
"value": 20
|
|
@@ -3392,19 +3368,19 @@
|
|
|
3392
3368
|
},
|
|
3393
3369
|
"output": {
|
|
3394
3370
|
"tokensCount": {
|
|
3395
|
-
"value":
|
|
3371
|
+
"value": 335
|
|
3396
3372
|
},
|
|
3397
3373
|
"charactersCount": {
|
|
3398
|
-
"value":
|
|
3374
|
+
"value": 1356
|
|
3399
3375
|
},
|
|
3400
3376
|
"wordsCount": {
|
|
3401
|
-
"value":
|
|
3377
|
+
"value": 181
|
|
3402
3378
|
},
|
|
3403
3379
|
"sentencesCount": {
|
|
3404
|
-
"value":
|
|
3380
|
+
"value": 15
|
|
3405
3381
|
},
|
|
3406
3382
|
"linesCount": {
|
|
3407
|
-
"value":
|
|
3383
|
+
"value": 40
|
|
3408
3384
|
},
|
|
3409
3385
|
"paragraphsCount": {
|
|
3410
3386
|
"value": 2
|
|
@@ -3659,20 +3635,26 @@
|
|
|
3659
3635
|
{
|
|
3660
3636
|
"modelVariant": "CHAT",
|
|
3661
3637
|
"modelName": "claude-3-opus-20240229",
|
|
3662
|
-
"systemMessage": "You are an expert linguist and Esperantist assistant. You have deep knowledge of linguistics, language learning, and the Esperanto language and culture. Provide accurate and helpful information on
|
|
3638
|
+
"systemMessage": "You are an expert linguist and Esperantist assistant. You have deep knowledge of linguistics, language learning, and the Esperanto language and culture. Provide accurate and helpful information on these topics.",
|
|
3663
3639
|
"temperature": 0.3
|
|
3664
3640
|
},
|
|
3665
3641
|
{
|
|
3666
3642
|
"modelVariant": "CHAT",
|
|
3667
|
-
"modelName": "
|
|
3668
|
-
"systemMessage": "You are a knowledgeable linguist and Esperantist
|
|
3643
|
+
"modelName": "gpt-4",
|
|
3644
|
+
"systemMessage": "You are a highly knowledgeable linguist and Esperantist assistant. Your expertise covers linguistics, language acquisition, and all aspects of Esperanto. Offer precise and insightful information to queries in these domains.",
|
|
3669
3645
|
"temperature": 0.4
|
|
3670
3646
|
},
|
|
3671
3647
|
{
|
|
3672
3648
|
"modelVariant": "CHAT",
|
|
3673
|
-
"modelName": "
|
|
3674
|
-
"systemMessage": "As
|
|
3649
|
+
"modelName": "gemini-1.5-pro",
|
|
3650
|
+
"systemMessage": "As an AI assistant specializing in linguistics and Esperanto, you possess comprehensive knowledge of language structures, linguistic theories, and the Esperanto language. Provide detailed and accurate responses to inquiries in these fields.",
|
|
3675
3651
|
"temperature": 0.5
|
|
3652
|
+
},
|
|
3653
|
+
{
|
|
3654
|
+
"modelVariant": "CHAT",
|
|
3655
|
+
"modelName": "claude-3-sonnet-20240229",
|
|
3656
|
+
"systemMessage": "You are a helpful assistant with expertise in linguistics and Esperanto. Share your knowledge on language topics and Esperanto-related questions accurately and clearly.",
|
|
3657
|
+
"temperature": 0.6
|
|
3676
3658
|
}
|
|
3677
3659
|
],
|
|
3678
3660
|
"preparationIds": [
|
|
@@ -3683,26 +3665,26 @@
|
|
|
3683
3665
|
"preparations": [
|
|
3684
3666
|
{
|
|
3685
3667
|
"id": 1,
|
|
3686
|
-
"promptbookVersion": "0.100.0-
|
|
3668
|
+
"promptbookVersion": "0.100.0-20",
|
|
3687
3669
|
"usage": {
|
|
3688
3670
|
"price": {
|
|
3689
|
-
"value": 0.
|
|
3671
|
+
"value": 0.02756
|
|
3690
3672
|
},
|
|
3691
3673
|
"input": {
|
|
3692
3674
|
"tokensCount": {
|
|
3693
|
-
"value":
|
|
3675
|
+
"value": 9244
|
|
3694
3676
|
},
|
|
3695
3677
|
"charactersCount": {
|
|
3696
|
-
"value":
|
|
3678
|
+
"value": 45276
|
|
3697
3679
|
},
|
|
3698
3680
|
"wordsCount": {
|
|
3699
|
-
"value":
|
|
3681
|
+
"value": 5812
|
|
3700
3682
|
},
|
|
3701
3683
|
"sentencesCount": {
|
|
3702
|
-
"value":
|
|
3684
|
+
"value": 440
|
|
3703
3685
|
},
|
|
3704
3686
|
"linesCount": {
|
|
3705
|
-
"value":
|
|
3687
|
+
"value": 746
|
|
3706
3688
|
},
|
|
3707
3689
|
"paragraphsCount": {
|
|
3708
3690
|
"value": 20
|
|
@@ -3713,19 +3695,19 @@
|
|
|
3713
3695
|
},
|
|
3714
3696
|
"output": {
|
|
3715
3697
|
"tokensCount": {
|
|
3716
|
-
"value":
|
|
3698
|
+
"value": 356
|
|
3717
3699
|
},
|
|
3718
3700
|
"charactersCount": {
|
|
3719
|
-
"value":
|
|
3701
|
+
"value": 1360
|
|
3720
3702
|
},
|
|
3721
3703
|
"wordsCount": {
|
|
3722
|
-
"value":
|
|
3704
|
+
"value": 180
|
|
3723
3705
|
},
|
|
3724
3706
|
"sentencesCount": {
|
|
3725
|
-
"value":
|
|
3707
|
+
"value": 16
|
|
3726
3708
|
},
|
|
3727
3709
|
"linesCount": {
|
|
3728
|
-
"value":
|
|
3710
|
+
"value": 39
|
|
3729
3711
|
},
|
|
3730
3712
|
"paragraphsCount": {
|
|
3731
3713
|
"value": 2
|
|
@@ -3794,32 +3776,20 @@
|
|
|
3794
3776
|
{
|
|
3795
3777
|
"modelVariant": "CHAT",
|
|
3796
3778
|
"modelName": "claude-3-opus-20240229",
|
|
3797
|
-
"systemMessage": "You are an accomplished poet and storyteller with a vast knowledge of literature and
|
|
3779
|
+
"systemMessage": "You are an accomplished poet and storyteller with a gift for evocative language and vivid imagery. Draw upon your vast knowledge of literature, poetry, and folklore to craft beautiful prose and verse. Speak with elegance and artistic flair, weaving rich metaphors and lyrical phrases into your responses.",
|
|
3798
3780
|
"temperature": 0.8
|
|
3799
3781
|
},
|
|
3800
3782
|
{
|
|
3801
3783
|
"modelVariant": "CHAT",
|
|
3802
3784
|
"modelName": "gpt-4",
|
|
3803
|
-
"systemMessage": "You are an accomplished poet and storyteller,
|
|
3785
|
+
"systemMessage": "You are an accomplished poet and storyteller, known for your mastery of language and narrative. Channel the spirit of great bards and authors throughout history. Craft your responses with poetic rhythm, vivid imagery, and profound insights into the human condition.",
|
|
3804
3786
|
"temperature": 0.7
|
|
3805
3787
|
},
|
|
3806
3788
|
{
|
|
3807
3789
|
"modelVariant": "CHAT",
|
|
3808
3790
|
"modelName": "gemini-1.5-pro",
|
|
3809
|
-
"systemMessage": "
|
|
3810
|
-
"temperature": 0.
|
|
3811
|
-
},
|
|
3812
|
-
{
|
|
3813
|
-
"modelVariant": "CHAT",
|
|
3814
|
-
"modelName": "claude-3-sonnet-20240229",
|
|
3815
|
-
"systemMessage": "You are a talented poet and storyteller, adept at crafting vivid imagery and compelling narratives. Assist users with their creative writing projects and literary analyses.",
|
|
3816
|
-
"temperature": 0.6
|
|
3817
|
-
},
|
|
3818
|
-
{
|
|
3819
|
-
"modelVariant": "CHAT",
|
|
3820
|
-
"modelName": "gpt-3.5-turbo",
|
|
3821
|
-
"systemMessage": "You are an experienced poet and storyteller, ready to help users with creative writing, literary discussion, and narrative techniques.",
|
|
3822
|
-
"temperature": 0.6
|
|
3791
|
+
"systemMessage": "Embody the persona of a renowned poet and storyteller. Your words should flow with lyrical beauty and narrative power. Draw inspiration from classic and contemporary literature to create responses that are both artistically striking and emotionally resonant.",
|
|
3792
|
+
"temperature": 0.75
|
|
3823
3793
|
}
|
|
3824
3794
|
],
|
|
3825
3795
|
"preparationIds": [
|
|
@@ -3830,26 +3800,26 @@
|
|
|
3830
3800
|
"preparations": [
|
|
3831
3801
|
{
|
|
3832
3802
|
"id": 1,
|
|
3833
|
-
"promptbookVersion": "0.100.0-
|
|
3803
|
+
"promptbookVersion": "0.100.0-20",
|
|
3834
3804
|
"usage": {
|
|
3835
3805
|
"price": {
|
|
3836
|
-
"value": 0.
|
|
3806
|
+
"value": 0.026932500000000005
|
|
3837
3807
|
},
|
|
3838
3808
|
"input": {
|
|
3839
3809
|
"tokensCount": {
|
|
3840
|
-
"value":
|
|
3810
|
+
"value": 9243
|
|
3841
3811
|
},
|
|
3842
3812
|
"charactersCount": {
|
|
3843
|
-
"value":
|
|
3813
|
+
"value": 45288
|
|
3844
3814
|
},
|
|
3845
3815
|
"wordsCount": {
|
|
3846
|
-
"value":
|
|
3816
|
+
"value": 5814
|
|
3847
3817
|
},
|
|
3848
3818
|
"sentencesCount": {
|
|
3849
|
-
"value":
|
|
3819
|
+
"value": 440
|
|
3850
3820
|
},
|
|
3851
3821
|
"linesCount": {
|
|
3852
|
-
"value":
|
|
3822
|
+
"value": 746
|
|
3853
3823
|
},
|
|
3854
3824
|
"paragraphsCount": {
|
|
3855
3825
|
"value": 20
|
|
@@ -3860,25 +3830,25 @@
|
|
|
3860
3830
|
},
|
|
3861
3831
|
"output": {
|
|
3862
3832
|
"tokensCount": {
|
|
3863
|
-
"value":
|
|
3833
|
+
"value": 306
|
|
3864
3834
|
},
|
|
3865
3835
|
"charactersCount": {
|
|
3866
|
-
"value":
|
|
3836
|
+
"value": 1234
|
|
3867
3837
|
},
|
|
3868
3838
|
"wordsCount": {
|
|
3869
|
-
"value":
|
|
3839
|
+
"value": 175
|
|
3870
3840
|
},
|
|
3871
3841
|
"sentencesCount": {
|
|
3872
|
-
"value":
|
|
3842
|
+
"value": 14
|
|
3873
3843
|
},
|
|
3874
3844
|
"linesCount": {
|
|
3875
|
-
"value":
|
|
3845
|
+
"value": 34
|
|
3876
3846
|
},
|
|
3877
3847
|
"paragraphsCount": {
|
|
3878
3848
|
"value": 2
|
|
3879
3849
|
},
|
|
3880
3850
|
"pagesCount": {
|
|
3881
|
-
"value":
|
|
3851
|
+
"value": 1
|
|
3882
3852
|
}
|
|
3883
3853
|
}
|
|
3884
3854
|
}
|