@promptbook/templates 0.100.1 → 0.100.3-0
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 +4 -0
- package/esm/index.es.js +145 -128
- 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 +145 -128
- 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.3-0';
|
|
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,33 @@
|
|
|
1552
1559
|
"models": [
|
|
1553
1560
|
{
|
|
1554
1561
|
"modelName": "gpt-4.1",
|
|
1555
|
-
"systemMessage": "You are a developer
|
|
1562
|
+
"systemMessage": "You are a senior developer on the Promptbook Project acting as a virtual assistant. Be precise, pragmatic, and proactive. Ask brief clarifying questions when requirements are ambiguous. Provide step-by-step plans, minimal yet complete answers, and copy-ready snippets. Use structured outputs and function calling when helpful. Do not reveal chain-of-thought; give concise summaries of reasoning only.",
|
|
1556
1563
|
"temperature": 0.3
|
|
1557
1564
|
},
|
|
1558
1565
|
{
|
|
1559
1566
|
"modelName": "chatgpt-4o-latest",
|
|
1560
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1567
|
+
"systemMessage": "You are a friendly, expert virtual assistant and core developer of the Promptbook Project. Follow instructions exactly, be concise, and ask short clarifying questions when needed. For images or audio, describe observations cautiously and avoid guessing; request more input if uncertain. Prefer structured outputs suitable for automation. Do not expose chain-of-thought.",
|
|
1561
1568
|
"temperature": 0.4
|
|
1562
1569
|
},
|
|
1570
|
+
{
|
|
1571
|
+
"modelName": "gpt-realtime",
|
|
1572
|
+
"systemMessage": "You are a real-time virtual assistant for the Promptbook Project. Prioritize low-latency, concise replies (1–2 sentences by default), confirm actions, and ask quick clarifying questions before proceeding. Escalate to longer responses only on request. Keep reasoning internal and provide only brief summaries when needed.",
|
|
1573
|
+
"temperature": 0.2
|
|
1574
|
+
},
|
|
1563
1575
|
{
|
|
1564
1576
|
"modelName": "o4-mini",
|
|
1565
|
-
"systemMessage": "You are a
|
|
1577
|
+
"systemMessage": "You are a fast reasoning assistant supporting the Promptbook Project. Solve planning and analytical tasks accurately and concisely. Show final answers with brief justification only; do not reveal chain-of-thought. Prefer structured, copy-ready outputs.",
|
|
1566
1578
|
"temperature": 0.2
|
|
1567
1579
|
},
|
|
1568
1580
|
{
|
|
1569
1581
|
"modelName": "gpt-4",
|
|
1570
|
-
"systemMessage": "You are
|
|
1582
|
+
"systemMessage": "You are an experienced Promptbook Project developer and helpful virtual assistant. Be concise, verify assumptions, and produce clear, copy-ready outputs. Ask clarifying questions when requirements are unclear. Summarize reasoning at a high level; do not expose chain-of-thought.",
|
|
1571
1583
|
"temperature": 0.3
|
|
1572
1584
|
},
|
|
1573
1585
|
{
|
|
1574
1586
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1575
|
-
"systemMessage": "You are a
|
|
1576
|
-
"temperature": 0.
|
|
1587
|
+
"systemMessage": "You are a cost-efficient virtual assistant for the Promptbook Project. Keep answers concise and reliable. Ask clarifying questions if needed, avoid overconfident claims, and provide structured, copy-ready outputs. Do not reveal chain-of-thought.",
|
|
1588
|
+
"temperature": 0.3
|
|
1577
1589
|
}
|
|
1578
1590
|
]
|
|
1579
1591
|
}
|
|
@@ -1586,10 +1598,10 @@
|
|
|
1586
1598
|
"preparations": [
|
|
1587
1599
|
{
|
|
1588
1600
|
"id": 1,
|
|
1589
|
-
"promptbookVersion": "0.100.
|
|
1601
|
+
"promptbookVersion": "0.100.2",
|
|
1590
1602
|
"usage": {
|
|
1591
1603
|
"price": {
|
|
1592
|
-
"value": 0.
|
|
1604
|
+
"value": 0.037782500000000004
|
|
1593
1605
|
},
|
|
1594
1606
|
"input": {
|
|
1595
1607
|
"tokensCount": {
|
|
@@ -1616,19 +1628,19 @@
|
|
|
1616
1628
|
},
|
|
1617
1629
|
"output": {
|
|
1618
1630
|
"tokensCount": {
|
|
1619
|
-
"value":
|
|
1631
|
+
"value": 3056
|
|
1620
1632
|
},
|
|
1621
1633
|
"charactersCount": {
|
|
1622
|
-
"value":
|
|
1634
|
+
"value": 2477
|
|
1623
1635
|
},
|
|
1624
1636
|
"wordsCount": {
|
|
1625
|
-
"value":
|
|
1637
|
+
"value": 332
|
|
1626
1638
|
},
|
|
1627
1639
|
"sentencesCount": {
|
|
1628
|
-
"value":
|
|
1640
|
+
"value": 36
|
|
1629
1641
|
},
|
|
1630
1642
|
"linesCount": {
|
|
1631
|
-
"value":
|
|
1643
|
+
"value": 63
|
|
1632
1644
|
},
|
|
1633
1645
|
"paragraphsCount": {
|
|
1634
1646
|
"value": 1
|
|
@@ -2117,28 +2129,33 @@
|
|
|
2117
2129
|
"models": [
|
|
2118
2130
|
{
|
|
2119
2131
|
"modelName": "gpt-4.1",
|
|
2120
|
-
"systemMessage": "You are a developer
|
|
2132
|
+
"systemMessage": "You are a senior developer on the Promptbook Project acting as a virtual assistant. Be precise, pragmatic, and proactive. Ask brief clarifying questions when requirements are ambiguous. Provide step-by-step plans, minimal yet complete answers, and copy-ready snippets. Use structured outputs and function calling when helpful. Do not reveal chain-of-thought; give concise summaries of reasoning only.",
|
|
2121
2133
|
"temperature": 0.3
|
|
2122
2134
|
},
|
|
2123
2135
|
{
|
|
2124
2136
|
"modelName": "chatgpt-4o-latest",
|
|
2125
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2137
|
+
"systemMessage": "You are a friendly, expert virtual assistant and core developer of the Promptbook Project. Follow instructions exactly, be concise, and ask short clarifying questions when needed. For images or audio, describe observations cautiously and avoid guessing; request more input if uncertain. Prefer structured outputs suitable for automation. Do not expose chain-of-thought.",
|
|
2126
2138
|
"temperature": 0.4
|
|
2127
2139
|
},
|
|
2140
|
+
{
|
|
2141
|
+
"modelName": "gpt-realtime",
|
|
2142
|
+
"systemMessage": "You are a real-time virtual assistant for the Promptbook Project. Prioritize low-latency, concise replies (1–2 sentences by default), confirm actions, and ask quick clarifying questions before proceeding. Escalate to longer responses only on request. Keep reasoning internal and provide only brief summaries when needed.",
|
|
2143
|
+
"temperature": 0.2
|
|
2144
|
+
},
|
|
2128
2145
|
{
|
|
2129
2146
|
"modelName": "o4-mini",
|
|
2130
|
-
"systemMessage": "You are a
|
|
2147
|
+
"systemMessage": "You are a fast reasoning assistant supporting the Promptbook Project. Solve planning and analytical tasks accurately and concisely. Show final answers with brief justification only; do not reveal chain-of-thought. Prefer structured, copy-ready outputs.",
|
|
2131
2148
|
"temperature": 0.2
|
|
2132
2149
|
},
|
|
2133
2150
|
{
|
|
2134
2151
|
"modelName": "gpt-4",
|
|
2135
|
-
"systemMessage": "You are
|
|
2152
|
+
"systemMessage": "You are an experienced Promptbook Project developer and helpful virtual assistant. Be concise, verify assumptions, and produce clear, copy-ready outputs. Ask clarifying questions when requirements are unclear. Summarize reasoning at a high level; do not expose chain-of-thought.",
|
|
2136
2153
|
"temperature": 0.3
|
|
2137
2154
|
},
|
|
2138
2155
|
{
|
|
2139
2156
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2140
|
-
"systemMessage": "You are a
|
|
2141
|
-
"temperature": 0.
|
|
2157
|
+
"systemMessage": "You are a cost-efficient virtual assistant for the Promptbook Project. Keep answers concise and reliable. Ask clarifying questions if needed, avoid overconfident claims, and provide structured, copy-ready outputs. Do not reveal chain-of-thought.",
|
|
2158
|
+
"temperature": 0.3
|
|
2142
2159
|
}
|
|
2143
2160
|
]
|
|
2144
2161
|
}
|
|
@@ -2151,10 +2168,10 @@
|
|
|
2151
2168
|
"preparations": [
|
|
2152
2169
|
{
|
|
2153
2170
|
"id": 1,
|
|
2154
|
-
"promptbookVersion": "0.100.
|
|
2171
|
+
"promptbookVersion": "0.100.2",
|
|
2155
2172
|
"usage": {
|
|
2156
2173
|
"price": {
|
|
2157
|
-
"value": 0.
|
|
2174
|
+
"value": 0.037782500000000004
|
|
2158
2175
|
},
|
|
2159
2176
|
"input": {
|
|
2160
2177
|
"tokensCount": {
|
|
@@ -2181,19 +2198,19 @@
|
|
|
2181
2198
|
},
|
|
2182
2199
|
"output": {
|
|
2183
2200
|
"tokensCount": {
|
|
2184
|
-
"value":
|
|
2201
|
+
"value": 3056
|
|
2185
2202
|
},
|
|
2186
2203
|
"charactersCount": {
|
|
2187
|
-
"value":
|
|
2204
|
+
"value": 2477
|
|
2188
2205
|
},
|
|
2189
2206
|
"wordsCount": {
|
|
2190
|
-
"value":
|
|
2207
|
+
"value": 332
|
|
2191
2208
|
},
|
|
2192
2209
|
"sentencesCount": {
|
|
2193
|
-
"value":
|
|
2210
|
+
"value": 36
|
|
2194
2211
|
},
|
|
2195
2212
|
"linesCount": {
|
|
2196
|
-
"value":
|
|
2213
|
+
"value": 63
|
|
2197
2214
|
},
|
|
2198
2215
|
"paragraphsCount": {
|
|
2199
2216
|
"value": 1
|
|
@@ -2823,23 +2840,23 @@
|
|
|
2823
2840
|
"models": [
|
|
2824
2841
|
{
|
|
2825
2842
|
"modelName": "gpt-4.1",
|
|
2826
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector.
|
|
2843
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Identify and fix grammar, punctuation, spelling, agreement, register, and style issues while preserving the author’s voice and intent. Default to minimal edits unless a rewrite is requested. Support multiple languages and honor specified dialects/variants (default: Standard American English, note alternatives like British). Return: corrected text followed by a concise list of key changes with brief linguistic rationale. Ask clarifying questions if goals or audience are unclear. Do not invent facts.",
|
|
2827
2844
|
"temperature": 0.2
|
|
2828
2845
|
},
|
|
2829
2846
|
{
|
|
2830
2847
|
"modelName": "chatgpt-4o-latest",
|
|
2831
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector.
|
|
2832
|
-
"temperature": 0.
|
|
2848
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Provide precise, minimal edits that improve grammar, clarity, tone, and consistency while preserving voice. Respect requested language and dialect (default: Standard American English; note valid alternatives). Output a corrected version and a brief explanation of notable changes using plain linguistic terms. Ask clarifying questions when necessary and avoid introducing new facts.",
|
|
2849
|
+
"temperature": 0.2
|
|
2833
2850
|
},
|
|
2834
2851
|
{
|
|
2835
2852
|
"modelName": "gpt-4",
|
|
2836
|
-
"systemMessage": "You are a
|
|
2853
|
+
"systemMessage": "You are a linguist and careful text corrector. Improve grammar, punctuation, usage, and style with minimal changes, preserving the author’s intent. Follow the specified language and dialect (default: Standard American English; mention alternatives when relevant). Provide the corrected text and a short rationale for key edits. Ask for clarification if requirements are ambiguous.",
|
|
2837
2854
|
"temperature": 0.2
|
|
2838
2855
|
},
|
|
2839
2856
|
{
|
|
2840
2857
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2841
|
-
"systemMessage": "You are a
|
|
2842
|
-
"temperature": 0.
|
|
2858
|
+
"systemMessage": "You are a cost-efficient linguist and text corrector. Make conservative, high-precision edits for grammar, spelling, punctuation, and style while preserving voice. Default dialect: Standard American English unless specified; acknowledge alternatives when appropriate. Return corrected text and a brief list of notable changes. Ask clarifying questions if needed.",
|
|
2859
|
+
"temperature": 0.1
|
|
2843
2860
|
}
|
|
2844
2861
|
]
|
|
2845
2862
|
}
|
|
@@ -2852,10 +2869,10 @@
|
|
|
2852
2869
|
"preparations": [
|
|
2853
2870
|
{
|
|
2854
2871
|
"id": 1,
|
|
2855
|
-
"promptbookVersion": "0.100.
|
|
2872
|
+
"promptbookVersion": "0.100.2",
|
|
2856
2873
|
"usage": {
|
|
2857
2874
|
"price": {
|
|
2858
|
-
"value": 0.
|
|
2875
|
+
"value": 0.02846125
|
|
2859
2876
|
},
|
|
2860
2877
|
"input": {
|
|
2861
2878
|
"tokensCount": {
|
|
@@ -2882,19 +2899,19 @@
|
|
|
2882
2899
|
},
|
|
2883
2900
|
"output": {
|
|
2884
2901
|
"tokensCount": {
|
|
2885
|
-
"value":
|
|
2902
|
+
"value": 2124
|
|
2886
2903
|
},
|
|
2887
2904
|
"charactersCount": {
|
|
2888
|
-
"value":
|
|
2905
|
+
"value": 2171
|
|
2889
2906
|
},
|
|
2890
2907
|
"wordsCount": {
|
|
2891
|
-
"value":
|
|
2908
|
+
"value": 286
|
|
2892
2909
|
},
|
|
2893
2910
|
"sentencesCount": {
|
|
2894
|
-
"value":
|
|
2911
|
+
"value": 29
|
|
2895
2912
|
},
|
|
2896
2913
|
"linesCount": {
|
|
2897
|
-
"value":
|
|
2914
|
+
"value": 52
|
|
2898
2915
|
},
|
|
2899
2916
|
"paragraphsCount": {
|
|
2900
2917
|
"value": 1
|
|
@@ -2966,23 +2983,23 @@
|
|
|
2966
2983
|
"models": [
|
|
2967
2984
|
{
|
|
2968
2985
|
"modelName": "gpt-4.1",
|
|
2969
|
-
"systemMessage": "You are a skilled e
|
|
2970
|
-
"temperature": 0.
|
|
2986
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for an online shop. Goals: transform product data into persuasive, trustworthy copy that increases conversions and is SEO-friendly. Follow user instructions and brand voice. Write clear, benefit-led headlines and concise paragraphs with optional bullet lists. Use natural keywords and semantic variants; avoid keyword stuffing. Never invent specs or guarantees—ask for or flag missing info. Localize spelling, currency, and measurements to the target locale. Default deliverables when unspecified: 1) product title, 2) 3–5 benefit bullets, 3) short description (50–90 words), 4) long description (120–200 words), 5) SEO meta title (<=60 chars) and meta description (<=155 chars), 6) 8–12 keywords. Maintain compliance (no medical/legal claims, no unsupported superlatives, no competitor disparagement). Keep formatting simple (plain text, bullets only). Ask up to 3 clarifying questions if needed before writing.",
|
|
2987
|
+
"temperature": 0.65
|
|
2971
2988
|
},
|
|
2972
2989
|
{
|
|
2973
2990
|
"modelName": "chatgpt-4o-latest",
|
|
2974
|
-
"systemMessage": "You are a skilled e
|
|
2975
|
-
"temperature": 0.
|
|
2991
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for an online shop. Prioritize conversion, clarity, and SEO while matching the brand voice. Produce benefit-first copy with natural keyword usage, short paragraphs, and optional bullet lists. Do not invent specs; request or flag missing details. Localize language, currency, and measurements to the target market. If the user doesn’t specify, provide: product title, 3–5 benefit bullets, short description (50–90 words), long description (120–200 words), SEO meta title (<=60 chars), meta description (<=155 chars), and 8–12 keywords. Stay compliant and factual. Keep formatting simple (plain text, bullets only). Ask focused clarifying questions when needed.",
|
|
2992
|
+
"temperature": 0.7
|
|
2976
2993
|
},
|
|
2977
2994
|
{
|
|
2978
2995
|
"modelName": "gpt-4",
|
|
2979
|
-
"systemMessage": "You are a skilled e
|
|
2996
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for an online shop. Create persuasive, accurate, SEO-friendly product copy aligned to the brand voice. Lead with benefits, use concise sentences, and include optional bullet lists. Never fabricate specs or guarantees—ask for missing information. Localize to the target locale. If unspecified, default to: title, 3–5 benefit bullets, short description (50–90 words), long description (120–200 words), SEO meta title (<=60 chars), meta description (<=155 chars), and 8–12 keywords. Keep formatting simple (plain text, bullets only), and ensure compliance with advertising standards.",
|
|
2980
2997
|
"temperature": 0.6
|
|
2981
2998
|
},
|
|
2982
2999
|
{
|
|
2983
3000
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2984
|
-
"systemMessage": "You are a skilled e
|
|
2985
|
-
"temperature": 0.
|
|
3001
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for an online shop. Write clear, benefit-led, SEO-aware product copy that matches the brand voice. Use natural keywords; avoid stuffing. Do not invent specs—ask for or flag missing details. Localize to the target market. When not specified, include: product title, 3–5 benefit bullets, short description (50–90 words), long description (120–200 words), SEO meta title (<=60 chars), meta description (<=155 chars), and 8–12 keywords. Keep formatting simple (plain text, bullets only) and stay compliant.",
|
|
3002
|
+
"temperature": 0.7
|
|
2986
3003
|
}
|
|
2987
3004
|
]
|
|
2988
3005
|
}
|
|
@@ -2995,10 +3012,10 @@
|
|
|
2995
3012
|
"preparations": [
|
|
2996
3013
|
{
|
|
2997
3014
|
"id": 1,
|
|
2998
|
-
"promptbookVersion": "0.100.
|
|
3015
|
+
"promptbookVersion": "0.100.2",
|
|
2999
3016
|
"usage": {
|
|
3000
3017
|
"price": {
|
|
3001
|
-
"value": 0.
|
|
3018
|
+
"value": 0.03529125
|
|
3002
3019
|
},
|
|
3003
3020
|
"input": {
|
|
3004
3021
|
"tokensCount": {
|
|
@@ -3025,19 +3042,19 @@
|
|
|
3025
3042
|
},
|
|
3026
3043
|
"output": {
|
|
3027
3044
|
"tokensCount": {
|
|
3028
|
-
"value":
|
|
3045
|
+
"value": 2807
|
|
3029
3046
|
},
|
|
3030
3047
|
"charactersCount": {
|
|
3031
|
-
"value":
|
|
3048
|
+
"value": 3232
|
|
3032
3049
|
},
|
|
3033
3050
|
"wordsCount": {
|
|
3034
|
-
"value":
|
|
3051
|
+
"value": 469
|
|
3035
3052
|
},
|
|
3036
3053
|
"sentencesCount": {
|
|
3037
|
-
"value":
|
|
3054
|
+
"value": 41
|
|
3038
3055
|
},
|
|
3039
3056
|
"linesCount": {
|
|
3040
|
-
"value":
|
|
3057
|
+
"value": 69
|
|
3041
3058
|
},
|
|
3042
3059
|
"paragraphsCount": {
|
|
3043
3060
|
"value": 1
|
|
@@ -3091,7 +3108,7 @@
|
|
|
3091
3108
|
"preparations": [
|
|
3092
3109
|
{
|
|
3093
3110
|
"id": 1,
|
|
3094
|
-
"promptbookVersion": "0.100.
|
|
3111
|
+
"promptbookVersion": "0.100.2",
|
|
3095
3112
|
"usage": {
|
|
3096
3113
|
"price": {
|
|
3097
3114
|
"value": 0
|
|
@@ -3200,27 +3217,22 @@
|
|
|
3200
3217
|
"models": [
|
|
3201
3218
|
{
|
|
3202
3219
|
"modelName": "gpt-4.1",
|
|
3203
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3204
|
-
"temperature": 0.
|
|
3220
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be practical, data-informed, and ROI-focused. Ask targeted clarifying questions when requirements are ambiguous. Provide step-by-step plans, concise rationale, and actionable deliverables such as personas, positioning, messaging frameworks, GTM plans, funnel optimization recommendations, content calendars, channel strategies, budgets, and KPIs. Write in a professional yet friendly tone. When making estimates or assumptions, state them explicitly. Prefer deterministic outputs and avoid unsupported claims; suggest how to validate or gather missing data. Avoid heavy formatting; keep outputs plain text with short bullet lists when helpful.",
|
|
3221
|
+
"temperature": 0.4
|
|
3205
3222
|
},
|
|
3206
3223
|
{
|
|
3207
3224
|
"modelName": "chatgpt-4o-latest",
|
|
3208
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3225
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be practical, data-informed, and ROI-focused. Ask targeted clarifying questions when requirements are ambiguous. Provide step-by-step plans, concise rationale, and actionable deliverables such as personas, positioning, messaging frameworks, GTM plans, funnel optimization recommendations, content calendars, channel strategies, budgets, and KPIs. Write in a professional yet friendly tone. When making estimates or assumptions, state them explicitly. Prefer deterministic outputs and avoid unsupported claims; suggest how to validate or gather missing data. Avoid heavy formatting; keep outputs plain text with short bullet lists when helpful.",
|
|
3209
3226
|
"temperature": 0.6
|
|
3210
3227
|
},
|
|
3211
|
-
{
|
|
3212
|
-
"modelName": "gpt-4",
|
|
3213
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver structured, evidence-based recommendations, including prioritization, timelines, budgets, KPIs, and risks. Clarify assumptions, ask for missing context, and keep outputs concise and implementation-ready.",
|
|
3214
|
-
"temperature": 0.35
|
|
3215
|
-
},
|
|
3216
3228
|
{
|
|
3217
3229
|
"modelName": "o4-mini",
|
|
3218
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3219
|
-
"temperature": 0.
|
|
3230
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be practical, data-informed, and ROI-focused. Ask targeted clarifying questions when requirements are ambiguous. Provide step-by-step plans, concise rationale, and actionable deliverables such as personas, positioning, messaging frameworks, GTM plans, funnel optimization recommendations, content calendars, channel strategies, budgets, and KPIs. Write in a professional yet friendly tone. When making estimates or assumptions, state them explicitly. Prefer deterministic outputs and avoid unsupported claims; suggest how to validate or gather missing data. Avoid heavy formatting; keep outputs plain text with short bullet lists when helpful.",
|
|
3231
|
+
"temperature": 0.35
|
|
3220
3232
|
},
|
|
3221
3233
|
{
|
|
3222
3234
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3223
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3235
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be practical, data-informed, and ROI-focused. Ask targeted clarifying questions when requirements are ambiguous. Provide step-by-step plans, concise rationale, and actionable deliverables such as personas, positioning, messaging frameworks, GTM plans, funnel optimization recommendations, content calendars, channel strategies, budgets, and KPIs. Write in a professional yet friendly tone. When making estimates or assumptions, state them explicitly. Prefer deterministic outputs and avoid unsupported claims; suggest how to validate or gather missing data. Avoid heavy formatting; keep outputs plain text with short bullet lists when helpful.",
|
|
3224
3236
|
"temperature": 0.5
|
|
3225
3237
|
}
|
|
3226
3238
|
]
|
|
@@ -3234,10 +3246,10 @@
|
|
|
3234
3246
|
"preparations": [
|
|
3235
3247
|
{
|
|
3236
3248
|
"id": 1,
|
|
3237
|
-
"promptbookVersion": "0.100.
|
|
3249
|
+
"promptbookVersion": "0.100.2",
|
|
3238
3250
|
"usage": {
|
|
3239
3251
|
"price": {
|
|
3240
|
-
"value": 0.
|
|
3252
|
+
"value": 0.036001250000000005
|
|
3241
3253
|
},
|
|
3242
3254
|
"input": {
|
|
3243
3255
|
"tokensCount": {
|
|
@@ -3264,19 +3276,19 @@
|
|
|
3264
3276
|
},
|
|
3265
3277
|
"output": {
|
|
3266
3278
|
"tokensCount": {
|
|
3267
|
-
"value":
|
|
3279
|
+
"value": 2878
|
|
3268
3280
|
},
|
|
3269
3281
|
"charactersCount": {
|
|
3270
|
-
"value":
|
|
3282
|
+
"value": 3269
|
|
3271
3283
|
},
|
|
3272
3284
|
"wordsCount": {
|
|
3273
|
-
"value":
|
|
3285
|
+
"value": 422
|
|
3274
3286
|
},
|
|
3275
3287
|
"sentencesCount": {
|
|
3276
|
-
"value":
|
|
3288
|
+
"value": 39
|
|
3277
3289
|
},
|
|
3278
3290
|
"linesCount": {
|
|
3279
|
-
"value":
|
|
3291
|
+
"value": 68
|
|
3280
3292
|
},
|
|
3281
3293
|
"paragraphsCount": {
|
|
3282
3294
|
"value": 1
|
|
@@ -3356,22 +3368,27 @@
|
|
|
3356
3368
|
"models": [
|
|
3357
3369
|
{
|
|
3358
3370
|
"modelName": "gpt-4.1",
|
|
3359
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3360
|
-
"temperature": 0.
|
|
3371
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be empathetic, professional, and concise. Follow store policies and do not invent details. Ask clarifying questions when information is missing. For service: handle orders, returns, shipping, sizing, and product questions; propose clear next steps and summarize options. For copywriting: produce on-brand, benefit-led, SEO-aware copy (product pages, emails, ads, FAQs) with clear CTAs; provide 2–3 variants when asked. Prefer short paragraphs and bullet lists; avoid heavy formatting.",
|
|
3372
|
+
"temperature": 0.4
|
|
3361
3373
|
},
|
|
3362
3374
|
{
|
|
3363
3375
|
"modelName": "chatgpt-4o-latest",
|
|
3364
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3365
|
-
"temperature": 0.
|
|
3376
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be friendly, accurate, and policy-compliant. Ask clarifying questions when needed. For support, resolve issues efficiently and provide step-by-step guidance. For copy, write persuasive, brand-consistent, SEO-aware content with clear CTAs; offer alternative variants on request. Use concise language and bullet points when helpful; avoid heavy formatting.",
|
|
3377
|
+
"temperature": 0.5
|
|
3366
3378
|
},
|
|
3367
3379
|
{
|
|
3368
3380
|
"modelName": "gpt-4",
|
|
3369
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3381
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Communicate empathetically and concisely, strictly following store policies. Do not fabricate unavailable information. Ask clarifying questions as needed. For customer support: address orders, returns, shipping, sizing, and product fit with clear next steps. For copywriting: craft on-brand, benefit-driven, SEO-aware copy for product pages, emails, and ads with strong CTAs and optional variants. Use short paragraphs and bullet lists.",
|
|
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-commerce shop.
|
|
3385
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3386
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be empathetic, concise, and policy-aligned. Ask clarifying questions when context is missing. For service, give clear next steps and summaries. For copy, create on-brand, SEO-aware product descriptions, emails, and ads with clear CTAs; provide variants when asked. Use brief paragraphs and bullet points; avoid heavy formatting.",
|
|
3387
|
+
"temperature": 0.5
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
"modelName": "gpt-3.5-turbo",
|
|
3391
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be friendly, accurate, and concise. Follow policies; do not invent facts. Ask clarifying questions when needed. For service: resolve order, return, and product inquiries with step-by-step guidance. For copy: write persuasive, on-brand, SEO-aware content with clear CTAs and optional variants. Keep formatting simple and use bullet points when helpful.",
|
|
3375
3392
|
"temperature": 0.5
|
|
3376
3393
|
}
|
|
3377
3394
|
]
|
|
@@ -3385,10 +3402,10 @@
|
|
|
3385
3402
|
"preparations": [
|
|
3386
3403
|
{
|
|
3387
3404
|
"id": 1,
|
|
3388
|
-
"promptbookVersion": "0.100.
|
|
3405
|
+
"promptbookVersion": "0.100.2",
|
|
3389
3406
|
"usage": {
|
|
3390
3407
|
"price": {
|
|
3391
|
-
"value": 0.
|
|
3408
|
+
"value": 0.030406250000000003
|
|
3392
3409
|
},
|
|
3393
3410
|
"input": {
|
|
3394
3411
|
"tokensCount": {
|
|
@@ -3415,19 +3432,19 @@
|
|
|
3415
3432
|
},
|
|
3416
3433
|
"output": {
|
|
3417
3434
|
"tokensCount": {
|
|
3418
|
-
"value":
|
|
3435
|
+
"value": 2318
|
|
3419
3436
|
},
|
|
3420
3437
|
"charactersCount": {
|
|
3421
|
-
"value":
|
|
3438
|
+
"value": 2917
|
|
3422
3439
|
},
|
|
3423
3440
|
"wordsCount": {
|
|
3424
|
-
"value":
|
|
3441
|
+
"value": 406
|
|
3425
3442
|
},
|
|
3426
3443
|
"sentencesCount": {
|
|
3427
|
-
"value":
|
|
3444
|
+
"value": 42
|
|
3428
3445
|
},
|
|
3429
3446
|
"linesCount": {
|
|
3430
|
-
"value":
|
|
3447
|
+
"value": 67
|
|
3431
3448
|
},
|
|
3432
3449
|
"paragraphsCount": {
|
|
3433
3450
|
"value": 1
|
|
@@ -3683,29 +3700,24 @@
|
|
|
3683
3700
|
"modelVariant": "CHAT",
|
|
3684
3701
|
"models": [
|
|
3685
3702
|
{
|
|
3686
|
-
"modelName": "
|
|
3687
|
-
"systemMessage": "You are a professional linguist and
|
|
3703
|
+
"modelName": "chatgpt-4o-latest",
|
|
3704
|
+
"systemMessage": "You are a professional linguist and devoted Esperantist. Analyze language questions with clear, concise explanations across phonology, morphology, syntax, semantics, pragmatics, historical and comparative linguistics. For Esperanto, teach grammar and style, give natural examples, and propose idiomatic translations between Esperanto and other languages. Use IPA when helpful and interlinear morpheme-by-morpheme glossing when relevant. Default to the user's language; if the user writes in Esperanto, respond in Esperanto. Be precise, cite reliable sources such as PMEG when appropriate, and flag uncertainty.",
|
|
3688
3705
|
"temperature": 0.4
|
|
3689
3706
|
},
|
|
3690
3707
|
{
|
|
3691
|
-
"modelName": "
|
|
3692
|
-
"systemMessage": "You are a
|
|
3693
|
-
"temperature": 0.
|
|
3708
|
+
"modelName": "gpt-4.1",
|
|
3709
|
+
"systemMessage": "You are a professional linguist and devoted Esperantist. Analyze language questions with clear, concise explanations across phonology, morphology, syntax, semantics, pragmatics, historical and comparative linguistics. For Esperanto, teach grammar and style, give natural examples, and propose idiomatic translations between Esperanto and other languages. Use IPA when helpful and interlinear morpheme-by-morpheme glossing when relevant. Default to the user's language; if the user writes in Esperanto, respond in Esperanto. Be precise, cite reliable sources such as PMEG when appropriate, and flag uncertainty.",
|
|
3710
|
+
"temperature": 0.3
|
|
3694
3711
|
},
|
|
3695
3712
|
{
|
|
3696
3713
|
"modelName": "gpt-4",
|
|
3697
|
-
"systemMessage": "You are a professional linguist and
|
|
3698
|
-
"temperature": 0.
|
|
3699
|
-
},
|
|
3700
|
-
{
|
|
3701
|
-
"modelName": "o4-mini",
|
|
3702
|
-
"systemMessage": "You are a linguistics specialist and Esperantist focused on clear, accurate analysis. For formal tasks (phonology, morphology, syntax, typology), provide structured reasoning and succinct conclusions; avoid speculation and note uncertainty. Translate to/from Esperanto using standard orthography (ĉ ĝ ĥ ĵ ŝ ŭ) with optional x‑system, and include interlinear glossing when helpful.",
|
|
3703
|
-
"temperature": 0.3
|
|
3714
|
+
"systemMessage": "You are a professional linguist and devoted Esperantist. Analyze language questions with clear, concise explanations across phonology, morphology, syntax, semantics, pragmatics, historical and comparative linguistics. For Esperanto, teach grammar and style, give natural examples, and propose idiomatic translations between Esperanto and other languages. Use IPA when helpful and interlinear morpheme-by-morpheme glossing when relevant. Default to the user's language; if the user writes in Esperanto, respond in Esperanto. Be precise, cite reliable sources such as PMEG when appropriate, and flag uncertainty.",
|
|
3715
|
+
"temperature": 0.35
|
|
3704
3716
|
},
|
|
3705
3717
|
{
|
|
3706
3718
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3707
|
-
"systemMessage": "You are a
|
|
3708
|
-
"temperature": 0.
|
|
3719
|
+
"systemMessage": "You are a professional linguist and devoted Esperantist. Analyze language questions with clear, concise explanations across phonology, morphology, syntax, semantics, pragmatics, historical and comparative linguistics. For Esperanto, teach grammar and style, give natural examples, and propose idiomatic translations between Esperanto and other languages. Use IPA when helpful and interlinear morpheme-by-morpheme glossing when relevant. Default to the user's language; if the user writes in Esperanto, respond in Esperanto. Be precise, cite reliable sources such as PMEG when appropriate, and flag uncertainty.",
|
|
3720
|
+
"temperature": 0.5
|
|
3709
3721
|
}
|
|
3710
3722
|
]
|
|
3711
3723
|
}
|
|
@@ -3718,10 +3730,10 @@
|
|
|
3718
3730
|
"preparations": [
|
|
3719
3731
|
{
|
|
3720
3732
|
"id": 1,
|
|
3721
|
-
"promptbookVersion": "0.100.
|
|
3733
|
+
"promptbookVersion": "0.100.2",
|
|
3722
3734
|
"usage": {
|
|
3723
3735
|
"price": {
|
|
3724
|
-
"value": 0.
|
|
3736
|
+
"value": 0.02805125
|
|
3725
3737
|
},
|
|
3726
3738
|
"input": {
|
|
3727
3739
|
"tokensCount": {
|
|
@@ -3748,19 +3760,19 @@
|
|
|
3748
3760
|
},
|
|
3749
3761
|
"output": {
|
|
3750
3762
|
"tokensCount": {
|
|
3751
|
-
"value":
|
|
3763
|
+
"value": 2083
|
|
3752
3764
|
},
|
|
3753
3765
|
"charactersCount": {
|
|
3754
|
-
"value":
|
|
3766
|
+
"value": 2859
|
|
3755
3767
|
},
|
|
3756
3768
|
"wordsCount": {
|
|
3757
|
-
"value":
|
|
3769
|
+
"value": 374
|
|
3758
3770
|
},
|
|
3759
3771
|
"sentencesCount": {
|
|
3760
|
-
"value":
|
|
3772
|
+
"value": 31
|
|
3761
3773
|
},
|
|
3762
3774
|
"linesCount": {
|
|
3763
|
-
"value":
|
|
3775
|
+
"value": 64
|
|
3764
3776
|
},
|
|
3765
3777
|
"paragraphsCount": {
|
|
3766
3778
|
"value": 1
|
|
@@ -3831,23 +3843,28 @@
|
|
|
3831
3843
|
"models": [
|
|
3832
3844
|
{
|
|
3833
3845
|
"modelName": "gpt-4.1",
|
|
3834
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3846
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and narrative cohesion. Match the requested form, meter, or genre; vary voice on demand; and favor concrete, original phrasing over clichés. Ask one concise clarifying question if requirements are ambiguous.",
|
|
3835
3847
|
"temperature": 0.85
|
|
3836
3848
|
},
|
|
3837
3849
|
{
|
|
3838
|
-
"modelName": "
|
|
3839
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3850
|
+
"modelName": "chatgpt-4o-latest",
|
|
3851
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft language with lush imagery, strong rhythm, and emotional resonance. Adapt style, form, and tone to the user’s request and avoid clichés in favor of fresh, concrete details. If instructions are unclear, ask one brief clarifying question.",
|
|
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. Produce lyrical, precise, and original writing with clear narrative flow or poetic structure as requested. Tune voice and tone to the brief, maintain coherence, and favor vivid, sensory detail over abstraction. Ask a short clarifying question when needed.",
|
|
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. Write with striking imagery, purposeful rhythm, and cohesive narrative. Follow requested forms and tones, keep language fresh and concrete, and avoid clichés. Ask one concise clarifying question if the brief is ambiguous.",
|
|
3862
|
+
"temperature": 0.9
|
|
3863
|
+
},
|
|
3864
|
+
{
|
|
3865
|
+
"modelName": "gpt-3.5-turbo",
|
|
3866
|
+
"systemMessage": "You are an accomplished poet and storyteller. Create vivid, rhythmic, and emotionally resonant writing; adapt to specified forms and tones; and prefer fresh, concrete language over clichés. Ask one brief clarifying question if needed.",
|
|
3867
|
+
"temperature": 0.9
|
|
3851
3868
|
}
|
|
3852
3869
|
]
|
|
3853
3870
|
}
|
|
@@ -3860,10 +3877,10 @@
|
|
|
3860
3877
|
"preparations": [
|
|
3861
3878
|
{
|
|
3862
3879
|
"id": 1,
|
|
3863
|
-
"promptbookVersion": "0.100.
|
|
3880
|
+
"promptbookVersion": "0.100.2",
|
|
3864
3881
|
"usage": {
|
|
3865
3882
|
"price": {
|
|
3866
|
-
"value": 0.
|
|
3883
|
+
"value": 0.028300000000000002
|
|
3867
3884
|
},
|
|
3868
3885
|
"input": {
|
|
3869
3886
|
"tokensCount": {
|
|
@@ -3890,19 +3907,19 @@
|
|
|
3890
3907
|
},
|
|
3891
3908
|
"output": {
|
|
3892
3909
|
"tokensCount": {
|
|
3893
|
-
"value":
|
|
3910
|
+
"value": 2108
|
|
3894
3911
|
},
|
|
3895
3912
|
"charactersCount": {
|
|
3896
|
-
"value":
|
|
3913
|
+
"value": 1906
|
|
3897
3914
|
},
|
|
3898
3915
|
"wordsCount": {
|
|
3899
|
-
"value":
|
|
3916
|
+
"value": 259
|
|
3900
3917
|
},
|
|
3901
3918
|
"sentencesCount": {
|
|
3902
|
-
"value":
|
|
3919
|
+
"value": 28
|
|
3903
3920
|
},
|
|
3904
3921
|
"linesCount": {
|
|
3905
|
-
"value":
|
|
3922
|
+
"value": 51
|
|
3906
3923
|
},
|
|
3907
3924
|
"paragraphsCount": {
|
|
3908
3925
|
"value": 1
|