@promptbook/templates 0.100.1 → 0.100.2
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 +152 -140
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +2 -2
- package/esm/typings/src/execution/utils/validatePromptResult.d.ts +4 -4
- package/esm/typings/src/utils/take/interfaces/ITakeChain.d.ts +2 -2
- package/esm/typings/src/utils/validators/filePath/isValidFilePath.d.ts +1 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/esm/typings/src/wizard/wizard.d.ts +2 -2
- package/package.json +2 -2
- package/umd/index.umd.js +152 -140
- package/umd/index.umd.js.map +1 -1
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.2';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
* Tests if given string is valid
|
|
49
|
+
* Tests if given string is valid file path.
|
|
50
50
|
*
|
|
51
51
|
* Note: This does not check if the file exists only if the path is valid
|
|
52
52
|
* @public exported from `@promptbook/utils`
|
|
@@ -58,18 +58,25 @@
|
|
|
58
58
|
if (filename.split('\n').length > 1) {
|
|
59
59
|
return false;
|
|
60
60
|
}
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
// Normalize slashes early so heuristics can detect path-like inputs
|
|
62
|
+
const filenameSlashes = filename.replace(/\\/g, '/');
|
|
63
|
+
// Reject strings that look like sentences (informational text)
|
|
64
|
+
// Heuristic: contains multiple spaces and ends with a period, or contains typical sentence punctuation
|
|
65
|
+
// But skip this heuristic if the string looks like a path (contains '/' or starts with a drive letter)
|
|
66
|
+
if (filename.trim().length > 60 && // long enough to be a sentence
|
|
67
|
+
/[.!?]/.test(filename) && // contains sentence punctuation
|
|
68
|
+
filename.split(' ').length > 8 && // has many words
|
|
69
|
+
!/\/|^[A-Z]:/i.test(filenameSlashes) // do NOT treat as sentence if looks like a path
|
|
70
|
+
) {
|
|
63
71
|
return false;
|
|
64
72
|
}
|
|
65
|
-
const filenameSlashes = filename.split('\\').join('/');
|
|
66
73
|
// Absolute Unix path: /hello.txt
|
|
67
74
|
if (/^(\/)/i.test(filenameSlashes)) {
|
|
68
75
|
// console.log(filename, 'Absolute Unix path: /hello.txt');
|
|
69
76
|
return true;
|
|
70
77
|
}
|
|
71
|
-
// Absolute Windows path:
|
|
72
|
-
if (/^
|
|
78
|
+
// Absolute Windows path: C:/ or C:\ (allow spaces and multiple dots in filename)
|
|
79
|
+
if (/^[A-Z]:\/.+$/i.test(filenameSlashes)) {
|
|
73
80
|
// console.log(filename, 'Absolute Windows path: /hello.txt');
|
|
74
81
|
return true;
|
|
75
82
|
}
|
|
@@ -1552,28 +1559,28 @@
|
|
|
1552
1559
|
"models": [
|
|
1553
1560
|
{
|
|
1554
1561
|
"modelName": "gpt-4.1",
|
|
1555
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1556
|
-
"temperature": 0.
|
|
1562
|
+
"systemMessage": "You are a developer of the Promptbook Project and a highly capable virtual assistant. Be concise, accurate, and pragmatic. Ask brief clarifying questions when requirements are ambiguous. Prefer deterministic, structured outputs when requested. Follow Promptbook conventions.",
|
|
1563
|
+
"temperature": 0.2
|
|
1557
1564
|
},
|
|
1558
1565
|
{
|
|
1559
1566
|
"modelName": "chatgpt-4o-latest",
|
|
1560
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1561
|
-
"temperature": 0.
|
|
1567
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, knowledgeable virtual assistant. Communicate clearly and helpfully, handle multi-turn tasks, and ask clarifying questions when needed. Follow Promptbook conventions and keep responses concise and actionable.",
|
|
1568
|
+
"temperature": 0.3
|
|
1562
1569
|
},
|
|
1563
1570
|
{
|
|
1564
|
-
"modelName": "
|
|
1565
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1571
|
+
"modelName": "gpt-4",
|
|
1572
|
+
"systemMessage": "You are a developer of the Promptbook Project and a precise virtual assistant. Provide reliable, step-by-step answers, verify assumptions, and keep outputs concise. Ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
1566
1573
|
"temperature": 0.2
|
|
1567
1574
|
},
|
|
1568
1575
|
{
|
|
1569
|
-
"modelName": "
|
|
1570
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1571
|
-
"temperature": 0.
|
|
1576
|
+
"modelName": "o4-mini",
|
|
1577
|
+
"systemMessage": "You are a developer of the Promptbook Project and a fast, cost-efficient virtual assistant. Prioritize clarity and speed while remaining accurate. Ask brief clarifying questions when necessary. Follow Promptbook conventions and keep outputs concise.",
|
|
1578
|
+
"temperature": 0.2
|
|
1572
1579
|
},
|
|
1573
1580
|
{
|
|
1574
1581
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1575
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1576
|
-
"temperature": 0.
|
|
1582
|
+
"systemMessage": "You are a developer of the Promptbook Project and a helpful virtual assistant. Be concise, follow instructions carefully, and ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
1583
|
+
"temperature": 0.3
|
|
1577
1584
|
}
|
|
1578
1585
|
]
|
|
1579
1586
|
}
|
|
@@ -1586,10 +1593,10 @@
|
|
|
1586
1593
|
"preparations": [
|
|
1587
1594
|
{
|
|
1588
1595
|
"id": 1,
|
|
1589
|
-
"promptbookVersion": "0.100.
|
|
1596
|
+
"promptbookVersion": "0.100.1",
|
|
1590
1597
|
"usage": {
|
|
1591
1598
|
"price": {
|
|
1592
|
-
"value": 0.
|
|
1599
|
+
"value": 0.030392500000000003
|
|
1593
1600
|
},
|
|
1594
1601
|
"input": {
|
|
1595
1602
|
"tokensCount": {
|
|
@@ -1616,19 +1623,19 @@
|
|
|
1616
1623
|
},
|
|
1617
1624
|
"output": {
|
|
1618
1625
|
"tokensCount": {
|
|
1619
|
-
"value":
|
|
1626
|
+
"value": 2317
|
|
1620
1627
|
},
|
|
1621
1628
|
"charactersCount": {
|
|
1622
|
-
"value":
|
|
1629
|
+
"value": 1732
|
|
1623
1630
|
},
|
|
1624
1631
|
"wordsCount": {
|
|
1625
|
-
"value":
|
|
1632
|
+
"value": 219
|
|
1626
1633
|
},
|
|
1627
1634
|
"sentencesCount": {
|
|
1628
|
-
"value":
|
|
1635
|
+
"value": 27
|
|
1629
1636
|
},
|
|
1630
1637
|
"linesCount": {
|
|
1631
|
-
"value":
|
|
1638
|
+
"value": 48
|
|
1632
1639
|
},
|
|
1633
1640
|
"paragraphsCount": {
|
|
1634
1641
|
"value": 1
|
|
@@ -2117,28 +2124,28 @@
|
|
|
2117
2124
|
"models": [
|
|
2118
2125
|
{
|
|
2119
2126
|
"modelName": "gpt-4.1",
|
|
2120
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2121
|
-
"temperature": 0.
|
|
2127
|
+
"systemMessage": "You are a developer of the Promptbook Project and a highly capable virtual assistant. Be concise, accurate, and pragmatic. Ask brief clarifying questions when requirements are ambiguous. Prefer deterministic, structured outputs when requested. Follow Promptbook conventions.",
|
|
2128
|
+
"temperature": 0.2
|
|
2122
2129
|
},
|
|
2123
2130
|
{
|
|
2124
2131
|
"modelName": "chatgpt-4o-latest",
|
|
2125
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2126
|
-
"temperature": 0.
|
|
2132
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, knowledgeable virtual assistant. Communicate clearly and helpfully, handle multi-turn tasks, and ask clarifying questions when needed. Follow Promptbook conventions and keep responses concise and actionable.",
|
|
2133
|
+
"temperature": 0.3
|
|
2127
2134
|
},
|
|
2128
2135
|
{
|
|
2129
|
-
"modelName": "
|
|
2130
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2136
|
+
"modelName": "gpt-4",
|
|
2137
|
+
"systemMessage": "You are a developer of the Promptbook Project and a precise virtual assistant. Provide reliable, step-by-step answers, verify assumptions, and keep outputs concise. Ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
2131
2138
|
"temperature": 0.2
|
|
2132
2139
|
},
|
|
2133
2140
|
{
|
|
2134
|
-
"modelName": "
|
|
2135
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2136
|
-
"temperature": 0.
|
|
2141
|
+
"modelName": "o4-mini",
|
|
2142
|
+
"systemMessage": "You are a developer of the Promptbook Project and a fast, cost-efficient virtual assistant. Prioritize clarity and speed while remaining accurate. Ask brief clarifying questions when necessary. Follow Promptbook conventions and keep outputs concise.",
|
|
2143
|
+
"temperature": 0.2
|
|
2137
2144
|
},
|
|
2138
2145
|
{
|
|
2139
2146
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2140
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2141
|
-
"temperature": 0.
|
|
2147
|
+
"systemMessage": "You are a developer of the Promptbook Project and a helpful virtual assistant. Be concise, follow instructions carefully, and ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
2148
|
+
"temperature": 0.3
|
|
2142
2149
|
}
|
|
2143
2150
|
]
|
|
2144
2151
|
}
|
|
@@ -2151,10 +2158,10 @@
|
|
|
2151
2158
|
"preparations": [
|
|
2152
2159
|
{
|
|
2153
2160
|
"id": 1,
|
|
2154
|
-
"promptbookVersion": "0.100.
|
|
2161
|
+
"promptbookVersion": "0.100.1",
|
|
2155
2162
|
"usage": {
|
|
2156
2163
|
"price": {
|
|
2157
|
-
"value": 0.
|
|
2164
|
+
"value": 0.030392500000000003
|
|
2158
2165
|
},
|
|
2159
2166
|
"input": {
|
|
2160
2167
|
"tokensCount": {
|
|
@@ -2181,19 +2188,19 @@
|
|
|
2181
2188
|
},
|
|
2182
2189
|
"output": {
|
|
2183
2190
|
"tokensCount": {
|
|
2184
|
-
"value":
|
|
2191
|
+
"value": 2317
|
|
2185
2192
|
},
|
|
2186
2193
|
"charactersCount": {
|
|
2187
|
-
"value":
|
|
2194
|
+
"value": 1732
|
|
2188
2195
|
},
|
|
2189
2196
|
"wordsCount": {
|
|
2190
|
-
"value":
|
|
2197
|
+
"value": 219
|
|
2191
2198
|
},
|
|
2192
2199
|
"sentencesCount": {
|
|
2193
|
-
"value":
|
|
2200
|
+
"value": 27
|
|
2194
2201
|
},
|
|
2195
2202
|
"linesCount": {
|
|
2196
|
-
"value":
|
|
2203
|
+
"value": 48
|
|
2197
2204
|
},
|
|
2198
2205
|
"paragraphsCount": {
|
|
2199
2206
|
"value": 1
|
|
@@ -2823,23 +2830,28 @@
|
|
|
2823
2830
|
"models": [
|
|
2824
2831
|
{
|
|
2825
2832
|
"modelName": "gpt-4.1",
|
|
2826
|
-
"systemMessage": "You are
|
|
2827
|
-
"temperature": 0.
|
|
2833
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2834
|
+
"temperature": 0.15
|
|
2828
2835
|
},
|
|
2829
2836
|
{
|
|
2830
|
-
"modelName": "
|
|
2831
|
-
"systemMessage": "You are
|
|
2832
|
-
"temperature": 0.
|
|
2837
|
+
"modelName": "gpt-4",
|
|
2838
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2839
|
+
"temperature": 0.15
|
|
2833
2840
|
},
|
|
2834
2841
|
{
|
|
2835
|
-
"modelName": "
|
|
2836
|
-
"systemMessage": "You are
|
|
2842
|
+
"modelName": "chatgpt-4o-latest",
|
|
2843
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2837
2844
|
"temperature": 0.2
|
|
2838
2845
|
},
|
|
2846
|
+
{
|
|
2847
|
+
"modelName": "o4-mini",
|
|
2848
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2849
|
+
"temperature": 0.15
|
|
2850
|
+
},
|
|
2839
2851
|
{
|
|
2840
2852
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2841
|
-
"systemMessage": "You are
|
|
2842
|
-
"temperature": 0.
|
|
2853
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2854
|
+
"temperature": 0.1
|
|
2843
2855
|
}
|
|
2844
2856
|
]
|
|
2845
2857
|
}
|
|
@@ -2852,10 +2864,10 @@
|
|
|
2852
2864
|
"preparations": [
|
|
2853
2865
|
{
|
|
2854
2866
|
"id": 1,
|
|
2855
|
-
"promptbookVersion": "0.100.
|
|
2867
|
+
"promptbookVersion": "0.100.1",
|
|
2856
2868
|
"usage": {
|
|
2857
2869
|
"price": {
|
|
2858
|
-
"value": 0.
|
|
2870
|
+
"value": 0.036931250000000006
|
|
2859
2871
|
},
|
|
2860
2872
|
"input": {
|
|
2861
2873
|
"tokensCount": {
|
|
@@ -2882,19 +2894,19 @@
|
|
|
2882
2894
|
},
|
|
2883
2895
|
"output": {
|
|
2884
2896
|
"tokensCount": {
|
|
2885
|
-
"value":
|
|
2897
|
+
"value": 2971
|
|
2886
2898
|
},
|
|
2887
2899
|
"charactersCount": {
|
|
2888
|
-
"value":
|
|
2900
|
+
"value": 3611
|
|
2889
2901
|
},
|
|
2890
2902
|
"wordsCount": {
|
|
2891
|
-
"value":
|
|
2903
|
+
"value": 541
|
|
2892
2904
|
},
|
|
2893
2905
|
"sentencesCount": {
|
|
2894
|
-
"value":
|
|
2906
|
+
"value": 58
|
|
2895
2907
|
},
|
|
2896
2908
|
"linesCount": {
|
|
2897
|
-
"value":
|
|
2909
|
+
"value": 79
|
|
2898
2910
|
},
|
|
2899
2911
|
"paragraphsCount": {
|
|
2900
2912
|
"value": 1
|
|
@@ -2966,23 +2978,23 @@
|
|
|
2966
2978
|
"models": [
|
|
2967
2979
|
{
|
|
2968
2980
|
"modelName": "gpt-4.1",
|
|
2969
|
-
"systemMessage": "You are a skilled e
|
|
2970
|
-
"temperature": 0.
|
|
2981
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for online stores. Write persuasive, conversion-focused copy for product and category pages, landing pages, ads, and emails. Use benefits-first messaging, highlight key features and social proof, reduce friction, and include strong, specific calls to action. Match the provided brand voice and target audience. Optimize for SEO with natural keywords, compelling H1/H2s, meta titles/descriptions, and concise bullet points. Provide 3–5 headline options and 2–3 description variants when asked. Keep tone clear, trustworthy, and impactful. Ask clarifying questions if requirements are incomplete.",
|
|
2982
|
+
"temperature": 0.6
|
|
2971
2983
|
},
|
|
2972
2984
|
{
|
|
2973
2985
|
"modelName": "chatgpt-4o-latest",
|
|
2974
|
-
"systemMessage": "You are a skilled e
|
|
2975
|
-
"temperature": 0.
|
|
2986
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for online stores. Create compelling, brand-aligned product descriptions, category copy, ads, and emails that drive conversions. Lead with benefits, support with features and social proof, and end with concise, specific CTAs. Keep language scannable with bullets and short paragraphs. Apply SEO best practices: natural keyword usage, strong titles, meta descriptions, and structured headings. Offer multiple headline/tagline options and A/B test variations on request. Ask for missing details (audience, tone, USP, keywords) before writing.",
|
|
2987
|
+
"temperature": 0.65
|
|
2976
2988
|
},
|
|
2977
2989
|
{
|
|
2978
2990
|
"modelName": "gpt-4",
|
|
2979
|
-
"systemMessage": "You are a skilled e
|
|
2980
|
-
"temperature": 0.
|
|
2991
|
+
"systemMessage": "You are a skilled e‑commerce copywriter. Produce persuasive, conversion-oriented copy for product pages, categories, landing pages, ads, and email. Emphasize benefits over features, handle objections, add social proof, and include clear CTAs. Follow the provided brand voice and audience. Optimize for SEO with natural keywords, strong headings, and concise meta tags. Provide 2–3 compelling variations when asked and note suggested keywords/FAQs. Ask clarifying questions if inputs are incomplete.",
|
|
2992
|
+
"temperature": 0.65
|
|
2981
2993
|
},
|
|
2982
2994
|
{
|
|
2983
2995
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2984
|
-
"systemMessage": "You are a
|
|
2985
|
-
"temperature": 0.
|
|
2996
|
+
"systemMessage": "You are a cost‑efficient e‑commerce copywriter. Write concise, persuasive product and category copy with clear benefits, features, and a strong CTA. Keep it scannable with short sentences and bullets. Match the given brand voice and include natural SEO keywords, headings, and meta descriptions. When requested, provide two alternative versions and headline options. Ask brief clarifying questions if essential details are missing.",
|
|
2997
|
+
"temperature": 0.7
|
|
2986
2998
|
}
|
|
2987
2999
|
]
|
|
2988
3000
|
}
|
|
@@ -2995,10 +3007,10 @@
|
|
|
2995
3007
|
"preparations": [
|
|
2996
3008
|
{
|
|
2997
3009
|
"id": 1,
|
|
2998
|
-
"promptbookVersion": "0.100.
|
|
3010
|
+
"promptbookVersion": "0.100.1",
|
|
2999
3011
|
"usage": {
|
|
3000
3012
|
"price": {
|
|
3001
|
-
"value": 0.
|
|
3013
|
+
"value": 0.03275125
|
|
3002
3014
|
},
|
|
3003
3015
|
"input": {
|
|
3004
3016
|
"tokensCount": {
|
|
@@ -3025,19 +3037,19 @@
|
|
|
3025
3037
|
},
|
|
3026
3038
|
"output": {
|
|
3027
3039
|
"tokensCount": {
|
|
3028
|
-
"value":
|
|
3040
|
+
"value": 2553
|
|
3029
3041
|
},
|
|
3030
3042
|
"charactersCount": {
|
|
3031
|
-
"value":
|
|
3043
|
+
"value": 2563
|
|
3032
3044
|
},
|
|
3033
3045
|
"wordsCount": {
|
|
3034
|
-
"value":
|
|
3046
|
+
"value": 353
|
|
3035
3047
|
},
|
|
3036
3048
|
"sentencesCount": {
|
|
3037
3049
|
"value": 35
|
|
3038
3050
|
},
|
|
3039
3051
|
"linesCount": {
|
|
3040
|
-
"value":
|
|
3052
|
+
"value": 58
|
|
3041
3053
|
},
|
|
3042
3054
|
"paragraphsCount": {
|
|
3043
3055
|
"value": 1
|
|
@@ -3091,7 +3103,7 @@
|
|
|
3091
3103
|
"preparations": [
|
|
3092
3104
|
{
|
|
3093
3105
|
"id": 1,
|
|
3094
|
-
"promptbookVersion": "0.100.
|
|
3106
|
+
"promptbookVersion": "0.100.1",
|
|
3095
3107
|
"usage": {
|
|
3096
3108
|
"price": {
|
|
3097
3109
|
"value": 0
|
|
@@ -3197,31 +3209,31 @@
|
|
|
3197
3209
|
"modelsRequirements": [
|
|
3198
3210
|
{
|
|
3199
3211
|
"modelVariant": "CHAT",
|
|
3200
|
-
"
|
|
3201
|
-
{
|
|
3202
|
-
"modelName": "gpt-4.1",
|
|
3203
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Diagnose problems with structured, data-driven thinking. Provide concise, actionable recommendations with step-by-step plans, estimated impact, and clear KPIs. Ask targeted clarifying questions when needed. Tailor advice to the user's industry, audience, budget, and timeline. Be pragmatic, prioritize ROI, and state key assumptions and risks. Use a professional yet approachable tone.",
|
|
3204
|
-
"temperature": 0.3
|
|
3205
|
-
},
|
|
3212
|
+
"result": [
|
|
3206
3213
|
{
|
|
3207
3214
|
"modelName": "chatgpt-4o-latest",
|
|
3208
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3209
|
-
"temperature": 0.
|
|
3215
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3216
|
+
"temperature": 0.5
|
|
3210
3217
|
},
|
|
3211
3218
|
{
|
|
3212
|
-
"modelName": "gpt-4",
|
|
3213
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3214
|
-
"temperature": 0.
|
|
3219
|
+
"modelName": "gpt-4.1",
|
|
3220
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3221
|
+
"temperature": 0.4
|
|
3215
3222
|
},
|
|
3216
3223
|
{
|
|
3217
3224
|
"modelName": "o4-mini",
|
|
3218
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3219
|
-
"temperature": 0.
|
|
3225
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3226
|
+
"temperature": 0.4
|
|
3227
|
+
},
|
|
3228
|
+
{
|
|
3229
|
+
"modelName": "gpt-4",
|
|
3230
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3231
|
+
"temperature": 0.4
|
|
3220
3232
|
},
|
|
3221
3233
|
{
|
|
3222
3234
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3223
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3224
|
-
"temperature": 0.
|
|
3235
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3236
|
+
"temperature": 0.4
|
|
3225
3237
|
}
|
|
3226
3238
|
]
|
|
3227
3239
|
}
|
|
@@ -3234,10 +3246,10 @@
|
|
|
3234
3246
|
"preparations": [
|
|
3235
3247
|
{
|
|
3236
3248
|
"id": 1,
|
|
3237
|
-
"promptbookVersion": "0.100.
|
|
3249
|
+
"promptbookVersion": "0.100.1",
|
|
3238
3250
|
"usage": {
|
|
3239
3251
|
"price": {
|
|
3240
|
-
"value": 0.
|
|
3252
|
+
"value": 0.03970125
|
|
3241
3253
|
},
|
|
3242
3254
|
"input": {
|
|
3243
3255
|
"tokensCount": {
|
|
@@ -3264,19 +3276,19 @@
|
|
|
3264
3276
|
},
|
|
3265
3277
|
"output": {
|
|
3266
3278
|
"tokensCount": {
|
|
3267
|
-
"value":
|
|
3279
|
+
"value": 3248
|
|
3268
3280
|
},
|
|
3269
3281
|
"charactersCount": {
|
|
3270
|
-
"value":
|
|
3282
|
+
"value": 3913
|
|
3271
3283
|
},
|
|
3272
3284
|
"wordsCount": {
|
|
3273
|
-
"value":
|
|
3285
|
+
"value": 536
|
|
3274
3286
|
},
|
|
3275
3287
|
"sentencesCount": {
|
|
3276
|
-
"value":
|
|
3288
|
+
"value": 68
|
|
3277
3289
|
},
|
|
3278
3290
|
"linesCount": {
|
|
3279
|
-
"value":
|
|
3291
|
+
"value": 84
|
|
3280
3292
|
},
|
|
3281
3293
|
"paragraphsCount": {
|
|
3282
3294
|
"value": 1
|
|
@@ -3353,26 +3365,26 @@
|
|
|
3353
3365
|
"modelsRequirements": [
|
|
3354
3366
|
{
|
|
3355
3367
|
"modelVariant": "CHAT",
|
|
3356
|
-
"
|
|
3368
|
+
"results": [
|
|
3357
3369
|
{
|
|
3358
3370
|
"modelName": "gpt-4.1",
|
|
3359
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3371
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3360
3372
|
"temperature": 0.5
|
|
3361
3373
|
},
|
|
3362
3374
|
{
|
|
3363
3375
|
"modelName": "chatgpt-4o-latest",
|
|
3364
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3376
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3365
3377
|
"temperature": 0.6
|
|
3366
3378
|
},
|
|
3367
3379
|
{
|
|
3368
3380
|
"modelName": "gpt-4",
|
|
3369
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3381
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3370
3382
|
"temperature": 0.5
|
|
3371
3383
|
},
|
|
3372
3384
|
{
|
|
3373
|
-
"modelName": "gpt-3.5-turbo-
|
|
3374
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3375
|
-
"temperature": 0.
|
|
3385
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3386
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3387
|
+
"temperature": 0.6
|
|
3376
3388
|
}
|
|
3377
3389
|
]
|
|
3378
3390
|
}
|
|
@@ -3385,10 +3397,10 @@
|
|
|
3385
3397
|
"preparations": [
|
|
3386
3398
|
{
|
|
3387
3399
|
"id": 1,
|
|
3388
|
-
"promptbookVersion": "0.100.
|
|
3400
|
+
"promptbookVersion": "0.100.1",
|
|
3389
3401
|
"usage": {
|
|
3390
3402
|
"price": {
|
|
3391
|
-
"value": 0.
|
|
3403
|
+
"value": 0.04001625
|
|
3392
3404
|
},
|
|
3393
3405
|
"input": {
|
|
3394
3406
|
"tokensCount": {
|
|
@@ -3415,25 +3427,25 @@
|
|
|
3415
3427
|
},
|
|
3416
3428
|
"output": {
|
|
3417
3429
|
"tokensCount": {
|
|
3418
|
-
"value":
|
|
3430
|
+
"value": 3279
|
|
3419
3431
|
},
|
|
3420
3432
|
"charactersCount": {
|
|
3421
|
-
"value":
|
|
3433
|
+
"value": 4627
|
|
3422
3434
|
},
|
|
3423
3435
|
"wordsCount": {
|
|
3424
|
-
"value":
|
|
3436
|
+
"value": 630
|
|
3425
3437
|
},
|
|
3426
3438
|
"sentencesCount": {
|
|
3427
|
-
"value":
|
|
3439
|
+
"value": 31
|
|
3428
3440
|
},
|
|
3429
3441
|
"linesCount": {
|
|
3430
|
-
"value":
|
|
3442
|
+
"value": 92
|
|
3431
3443
|
},
|
|
3432
3444
|
"paragraphsCount": {
|
|
3433
3445
|
"value": 1
|
|
3434
3446
|
},
|
|
3435
3447
|
"pagesCount": {
|
|
3436
|
-
"value":
|
|
3448
|
+
"value": 3
|
|
3437
3449
|
}
|
|
3438
3450
|
}
|
|
3439
3451
|
}
|
|
@@ -3684,27 +3696,27 @@
|
|
|
3684
3696
|
"models": [
|
|
3685
3697
|
{
|
|
3686
3698
|
"modelName": "gpt-4.1",
|
|
3687
|
-
"systemMessage": "You are a professional linguist and
|
|
3699
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3688
3700
|
"temperature": 0.4
|
|
3689
3701
|
},
|
|
3690
3702
|
{
|
|
3691
3703
|
"modelName": "chatgpt-4o-latest",
|
|
3692
|
-
"systemMessage": "You are a
|
|
3704
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3693
3705
|
"temperature": 0.5
|
|
3694
3706
|
},
|
|
3695
3707
|
{
|
|
3696
3708
|
"modelName": "gpt-4",
|
|
3697
|
-
"systemMessage": "You are a professional linguist and
|
|
3709
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3698
3710
|
"temperature": 0.4
|
|
3699
3711
|
},
|
|
3700
3712
|
{
|
|
3701
|
-
"modelName": "
|
|
3702
|
-
"systemMessage": "You are a
|
|
3703
|
-
"temperature": 0.
|
|
3713
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3714
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3715
|
+
"temperature": 0.5
|
|
3704
3716
|
},
|
|
3705
3717
|
{
|
|
3706
|
-
"modelName": "
|
|
3707
|
-
"systemMessage": "You are a
|
|
3718
|
+
"modelName": "o4-mini",
|
|
3719
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3708
3720
|
"temperature": 0.3
|
|
3709
3721
|
}
|
|
3710
3722
|
]
|
|
@@ -3718,10 +3730,10 @@
|
|
|
3718
3730
|
"preparations": [
|
|
3719
3731
|
{
|
|
3720
3732
|
"id": 1,
|
|
3721
|
-
"promptbookVersion": "0.100.
|
|
3733
|
+
"promptbookVersion": "0.100.1",
|
|
3722
3734
|
"usage": {
|
|
3723
3735
|
"price": {
|
|
3724
|
-
"value": 0.
|
|
3736
|
+
"value": 0.04079125
|
|
3725
3737
|
},
|
|
3726
3738
|
"input": {
|
|
3727
3739
|
"tokensCount": {
|
|
@@ -3748,19 +3760,19 @@
|
|
|
3748
3760
|
},
|
|
3749
3761
|
"output": {
|
|
3750
3762
|
"tokensCount": {
|
|
3751
|
-
"value":
|
|
3763
|
+
"value": 3357
|
|
3752
3764
|
},
|
|
3753
3765
|
"charactersCount": {
|
|
3754
|
-
"value":
|
|
3766
|
+
"value": 4038
|
|
3755
3767
|
},
|
|
3756
3768
|
"wordsCount": {
|
|
3757
|
-
"value":
|
|
3769
|
+
"value": 526
|
|
3758
3770
|
},
|
|
3759
3771
|
"sentencesCount": {
|
|
3760
|
-
"value":
|
|
3772
|
+
"value": 58
|
|
3761
3773
|
},
|
|
3762
3774
|
"linesCount": {
|
|
3763
|
-
"value":
|
|
3775
|
+
"value": 84
|
|
3764
3776
|
},
|
|
3765
3777
|
"paragraphsCount": {
|
|
3766
3778
|
"value": 1
|
|
@@ -3831,23 +3843,23 @@
|
|
|
3831
3843
|
"models": [
|
|
3832
3844
|
{
|
|
3833
3845
|
"modelName": "gpt-4.1",
|
|
3834
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3835
|
-
"temperature": 0.
|
|
3846
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3847
|
+
"temperature": 0.9
|
|
3836
3848
|
},
|
|
3837
3849
|
{
|
|
3838
|
-
"modelName": "
|
|
3839
|
-
"systemMessage": "You are an accomplished poet and storyteller. Compose with strong imagery, rhythm, and voice. Adapt form and tone to the
|
|
3850
|
+
"modelName": "chatgpt-4o-latest",
|
|
3851
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3840
3852
|
"temperature": 0.9
|
|
3841
3853
|
},
|
|
3842
3854
|
{
|
|
3843
|
-
"modelName": "
|
|
3844
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3855
|
+
"modelName": "gpt-4",
|
|
3856
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3845
3857
|
"temperature": 0.9
|
|
3846
3858
|
},
|
|
3847
3859
|
{
|
|
3848
3860
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3849
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3850
|
-
"temperature": 0.
|
|
3861
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3862
|
+
"temperature": 0.8
|
|
3851
3863
|
}
|
|
3852
3864
|
]
|
|
3853
3865
|
}
|
|
@@ -3860,10 +3872,10 @@
|
|
|
3860
3872
|
"preparations": [
|
|
3861
3873
|
{
|
|
3862
3874
|
"id": 1,
|
|
3863
|
-
"promptbookVersion": "0.100.
|
|
3875
|
+
"promptbookVersion": "0.100.1",
|
|
3864
3876
|
"usage": {
|
|
3865
3877
|
"price": {
|
|
3866
|
-
"value": 0.
|
|
3878
|
+
"value": 0.02909
|
|
3867
3879
|
},
|
|
3868
3880
|
"input": {
|
|
3869
3881
|
"tokensCount": {
|
|
@@ -3890,19 +3902,19 @@
|
|
|
3890
3902
|
},
|
|
3891
3903
|
"output": {
|
|
3892
3904
|
"tokensCount": {
|
|
3893
|
-
"value":
|
|
3905
|
+
"value": 2187
|
|
3894
3906
|
},
|
|
3895
3907
|
"charactersCount": {
|
|
3896
|
-
"value":
|
|
3908
|
+
"value": 1930
|
|
3897
3909
|
},
|
|
3898
3910
|
"wordsCount": {
|
|
3899
|
-
"value":
|
|
3911
|
+
"value": 278
|
|
3900
3912
|
},
|
|
3901
3913
|
"sentencesCount": {
|
|
3902
3914
|
"value": 35
|
|
3903
3915
|
},
|
|
3904
3916
|
"linesCount": {
|
|
3905
|
-
"value":
|
|
3917
|
+
"value": 48
|
|
3906
3918
|
},
|
|
3907
3919
|
"paragraphsCount": {
|
|
3908
3920
|
"value": 1
|