@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/esm/index.es.js
CHANGED
|
@@ -17,7 +17,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
17
17
|
* @generated
|
|
18
18
|
* @see https://github.com/webgptorg/promptbook
|
|
19
19
|
*/
|
|
20
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.
|
|
20
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.3-0';
|
|
21
21
|
/**
|
|
22
22
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
23
23
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -39,7 +39,7 @@ function isValidEmail(email) {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
|
-
* Tests if given string is valid
|
|
42
|
+
* Tests if given string is valid file path.
|
|
43
43
|
*
|
|
44
44
|
* Note: This does not check if the file exists only if the path is valid
|
|
45
45
|
* @public exported from `@promptbook/utils`
|
|
@@ -51,18 +51,25 @@ function isValidFilePath(filename) {
|
|
|
51
51
|
if (filename.split('\n').length > 1) {
|
|
52
52
|
return false;
|
|
53
53
|
}
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
// Normalize slashes early so heuristics can detect path-like inputs
|
|
55
|
+
const filenameSlashes = filename.replace(/\\/g, '/');
|
|
56
|
+
// Reject strings that look like sentences (informational text)
|
|
57
|
+
// Heuristic: contains multiple spaces and ends with a period, or contains typical sentence punctuation
|
|
58
|
+
// But skip this heuristic if the string looks like a path (contains '/' or starts with a drive letter)
|
|
59
|
+
if (filename.trim().length > 60 && // long enough to be a sentence
|
|
60
|
+
/[.!?]/.test(filename) && // contains sentence punctuation
|
|
61
|
+
filename.split(' ').length > 8 && // has many words
|
|
62
|
+
!/\/|^[A-Z]:/i.test(filenameSlashes) // do NOT treat as sentence if looks like a path
|
|
63
|
+
) {
|
|
56
64
|
return false;
|
|
57
65
|
}
|
|
58
|
-
const filenameSlashes = filename.split('\\').join('/');
|
|
59
66
|
// Absolute Unix path: /hello.txt
|
|
60
67
|
if (/^(\/)/i.test(filenameSlashes)) {
|
|
61
68
|
// console.log(filename, 'Absolute Unix path: /hello.txt');
|
|
62
69
|
return true;
|
|
63
70
|
}
|
|
64
|
-
// Absolute Windows path:
|
|
65
|
-
if (/^
|
|
71
|
+
// Absolute Windows path: C:/ or C:\ (allow spaces and multiple dots in filename)
|
|
72
|
+
if (/^[A-Z]:\/.+$/i.test(filenameSlashes)) {
|
|
66
73
|
// console.log(filename, 'Absolute Windows path: /hello.txt');
|
|
67
74
|
return true;
|
|
68
75
|
}
|
|
@@ -1545,28 +1552,33 @@ function getTemplatesPipelineCollection() {
|
|
|
1545
1552
|
"models": [
|
|
1546
1553
|
{
|
|
1547
1554
|
"modelName": "gpt-4.1",
|
|
1548
|
-
"systemMessage": "You are a developer
|
|
1555
|
+
"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.",
|
|
1549
1556
|
"temperature": 0.3
|
|
1550
1557
|
},
|
|
1551
1558
|
{
|
|
1552
1559
|
"modelName": "chatgpt-4o-latest",
|
|
1553
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1560
|
+
"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.",
|
|
1554
1561
|
"temperature": 0.4
|
|
1555
1562
|
},
|
|
1563
|
+
{
|
|
1564
|
+
"modelName": "gpt-realtime",
|
|
1565
|
+
"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.",
|
|
1566
|
+
"temperature": 0.2
|
|
1567
|
+
},
|
|
1556
1568
|
{
|
|
1557
1569
|
"modelName": "o4-mini",
|
|
1558
|
-
"systemMessage": "You are a
|
|
1570
|
+
"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.",
|
|
1559
1571
|
"temperature": 0.2
|
|
1560
1572
|
},
|
|
1561
1573
|
{
|
|
1562
1574
|
"modelName": "gpt-4",
|
|
1563
|
-
"systemMessage": "You are
|
|
1575
|
+
"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.",
|
|
1564
1576
|
"temperature": 0.3
|
|
1565
1577
|
},
|
|
1566
1578
|
{
|
|
1567
1579
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1568
|
-
"systemMessage": "You are a
|
|
1569
|
-
"temperature": 0.
|
|
1580
|
+
"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.",
|
|
1581
|
+
"temperature": 0.3
|
|
1570
1582
|
}
|
|
1571
1583
|
]
|
|
1572
1584
|
}
|
|
@@ -1579,10 +1591,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1579
1591
|
"preparations": [
|
|
1580
1592
|
{
|
|
1581
1593
|
"id": 1,
|
|
1582
|
-
"promptbookVersion": "0.100.
|
|
1594
|
+
"promptbookVersion": "0.100.2",
|
|
1583
1595
|
"usage": {
|
|
1584
1596
|
"price": {
|
|
1585
|
-
"value": 0.
|
|
1597
|
+
"value": 0.037782500000000004
|
|
1586
1598
|
},
|
|
1587
1599
|
"input": {
|
|
1588
1600
|
"tokensCount": {
|
|
@@ -1609,19 +1621,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1609
1621
|
},
|
|
1610
1622
|
"output": {
|
|
1611
1623
|
"tokensCount": {
|
|
1612
|
-
"value":
|
|
1624
|
+
"value": 3056
|
|
1613
1625
|
},
|
|
1614
1626
|
"charactersCount": {
|
|
1615
|
-
"value":
|
|
1627
|
+
"value": 2477
|
|
1616
1628
|
},
|
|
1617
1629
|
"wordsCount": {
|
|
1618
|
-
"value":
|
|
1630
|
+
"value": 332
|
|
1619
1631
|
},
|
|
1620
1632
|
"sentencesCount": {
|
|
1621
|
-
"value":
|
|
1633
|
+
"value": 36
|
|
1622
1634
|
},
|
|
1623
1635
|
"linesCount": {
|
|
1624
|
-
"value":
|
|
1636
|
+
"value": 63
|
|
1625
1637
|
},
|
|
1626
1638
|
"paragraphsCount": {
|
|
1627
1639
|
"value": 1
|
|
@@ -2110,28 +2122,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2110
2122
|
"models": [
|
|
2111
2123
|
{
|
|
2112
2124
|
"modelName": "gpt-4.1",
|
|
2113
|
-
"systemMessage": "You are a developer
|
|
2125
|
+
"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.",
|
|
2114
2126
|
"temperature": 0.3
|
|
2115
2127
|
},
|
|
2116
2128
|
{
|
|
2117
2129
|
"modelName": "chatgpt-4o-latest",
|
|
2118
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2130
|
+
"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.",
|
|
2119
2131
|
"temperature": 0.4
|
|
2120
2132
|
},
|
|
2133
|
+
{
|
|
2134
|
+
"modelName": "gpt-realtime",
|
|
2135
|
+
"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.",
|
|
2136
|
+
"temperature": 0.2
|
|
2137
|
+
},
|
|
2121
2138
|
{
|
|
2122
2139
|
"modelName": "o4-mini",
|
|
2123
|
-
"systemMessage": "You are a
|
|
2140
|
+
"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.",
|
|
2124
2141
|
"temperature": 0.2
|
|
2125
2142
|
},
|
|
2126
2143
|
{
|
|
2127
2144
|
"modelName": "gpt-4",
|
|
2128
|
-
"systemMessage": "You are
|
|
2145
|
+
"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.",
|
|
2129
2146
|
"temperature": 0.3
|
|
2130
2147
|
},
|
|
2131
2148
|
{
|
|
2132
2149
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2133
|
-
"systemMessage": "You are a
|
|
2134
|
-
"temperature": 0.
|
|
2150
|
+
"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.",
|
|
2151
|
+
"temperature": 0.3
|
|
2135
2152
|
}
|
|
2136
2153
|
]
|
|
2137
2154
|
}
|
|
@@ -2144,10 +2161,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2144
2161
|
"preparations": [
|
|
2145
2162
|
{
|
|
2146
2163
|
"id": 1,
|
|
2147
|
-
"promptbookVersion": "0.100.
|
|
2164
|
+
"promptbookVersion": "0.100.2",
|
|
2148
2165
|
"usage": {
|
|
2149
2166
|
"price": {
|
|
2150
|
-
"value": 0.
|
|
2167
|
+
"value": 0.037782500000000004
|
|
2151
2168
|
},
|
|
2152
2169
|
"input": {
|
|
2153
2170
|
"tokensCount": {
|
|
@@ -2174,19 +2191,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2174
2191
|
},
|
|
2175
2192
|
"output": {
|
|
2176
2193
|
"tokensCount": {
|
|
2177
|
-
"value":
|
|
2194
|
+
"value": 3056
|
|
2178
2195
|
},
|
|
2179
2196
|
"charactersCount": {
|
|
2180
|
-
"value":
|
|
2197
|
+
"value": 2477
|
|
2181
2198
|
},
|
|
2182
2199
|
"wordsCount": {
|
|
2183
|
-
"value":
|
|
2200
|
+
"value": 332
|
|
2184
2201
|
},
|
|
2185
2202
|
"sentencesCount": {
|
|
2186
|
-
"value":
|
|
2203
|
+
"value": 36
|
|
2187
2204
|
},
|
|
2188
2205
|
"linesCount": {
|
|
2189
|
-
"value":
|
|
2206
|
+
"value": 63
|
|
2190
2207
|
},
|
|
2191
2208
|
"paragraphsCount": {
|
|
2192
2209
|
"value": 1
|
|
@@ -2816,23 +2833,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2816
2833
|
"models": [
|
|
2817
2834
|
{
|
|
2818
2835
|
"modelName": "gpt-4.1",
|
|
2819
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector.
|
|
2836
|
+
"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.",
|
|
2820
2837
|
"temperature": 0.2
|
|
2821
2838
|
},
|
|
2822
2839
|
{
|
|
2823
2840
|
"modelName": "chatgpt-4o-latest",
|
|
2824
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector.
|
|
2825
|
-
"temperature": 0.
|
|
2841
|
+
"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.",
|
|
2842
|
+
"temperature": 0.2
|
|
2826
2843
|
},
|
|
2827
2844
|
{
|
|
2828
2845
|
"modelName": "gpt-4",
|
|
2829
|
-
"systemMessage": "You are a
|
|
2846
|
+
"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.",
|
|
2830
2847
|
"temperature": 0.2
|
|
2831
2848
|
},
|
|
2832
2849
|
{
|
|
2833
2850
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2834
|
-
"systemMessage": "You are a
|
|
2835
|
-
"temperature": 0.
|
|
2851
|
+
"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.",
|
|
2852
|
+
"temperature": 0.1
|
|
2836
2853
|
}
|
|
2837
2854
|
]
|
|
2838
2855
|
}
|
|
@@ -2845,10 +2862,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2845
2862
|
"preparations": [
|
|
2846
2863
|
{
|
|
2847
2864
|
"id": 1,
|
|
2848
|
-
"promptbookVersion": "0.100.
|
|
2865
|
+
"promptbookVersion": "0.100.2",
|
|
2849
2866
|
"usage": {
|
|
2850
2867
|
"price": {
|
|
2851
|
-
"value": 0.
|
|
2868
|
+
"value": 0.02846125
|
|
2852
2869
|
},
|
|
2853
2870
|
"input": {
|
|
2854
2871
|
"tokensCount": {
|
|
@@ -2875,19 +2892,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2875
2892
|
},
|
|
2876
2893
|
"output": {
|
|
2877
2894
|
"tokensCount": {
|
|
2878
|
-
"value":
|
|
2895
|
+
"value": 2124
|
|
2879
2896
|
},
|
|
2880
2897
|
"charactersCount": {
|
|
2881
|
-
"value":
|
|
2898
|
+
"value": 2171
|
|
2882
2899
|
},
|
|
2883
2900
|
"wordsCount": {
|
|
2884
|
-
"value":
|
|
2901
|
+
"value": 286
|
|
2885
2902
|
},
|
|
2886
2903
|
"sentencesCount": {
|
|
2887
|
-
"value":
|
|
2904
|
+
"value": 29
|
|
2888
2905
|
},
|
|
2889
2906
|
"linesCount": {
|
|
2890
|
-
"value":
|
|
2907
|
+
"value": 52
|
|
2891
2908
|
},
|
|
2892
2909
|
"paragraphsCount": {
|
|
2893
2910
|
"value": 1
|
|
@@ -2959,23 +2976,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2959
2976
|
"models": [
|
|
2960
2977
|
{
|
|
2961
2978
|
"modelName": "gpt-4.1",
|
|
2962
|
-
"systemMessage": "You are a skilled e
|
|
2963
|
-
"temperature": 0.
|
|
2979
|
+
"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.",
|
|
2980
|
+
"temperature": 0.65
|
|
2964
2981
|
},
|
|
2965
2982
|
{
|
|
2966
2983
|
"modelName": "chatgpt-4o-latest",
|
|
2967
|
-
"systemMessage": "You are a skilled e
|
|
2968
|
-
"temperature": 0.
|
|
2984
|
+
"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.",
|
|
2985
|
+
"temperature": 0.7
|
|
2969
2986
|
},
|
|
2970
2987
|
{
|
|
2971
2988
|
"modelName": "gpt-4",
|
|
2972
|
-
"systemMessage": "You are a skilled e
|
|
2989
|
+
"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.",
|
|
2973
2990
|
"temperature": 0.6
|
|
2974
2991
|
},
|
|
2975
2992
|
{
|
|
2976
2993
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2977
|
-
"systemMessage": "You are a skilled e
|
|
2978
|
-
"temperature": 0.
|
|
2994
|
+
"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.",
|
|
2995
|
+
"temperature": 0.7
|
|
2979
2996
|
}
|
|
2980
2997
|
]
|
|
2981
2998
|
}
|
|
@@ -2988,10 +3005,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2988
3005
|
"preparations": [
|
|
2989
3006
|
{
|
|
2990
3007
|
"id": 1,
|
|
2991
|
-
"promptbookVersion": "0.100.
|
|
3008
|
+
"promptbookVersion": "0.100.2",
|
|
2992
3009
|
"usage": {
|
|
2993
3010
|
"price": {
|
|
2994
|
-
"value": 0.
|
|
3011
|
+
"value": 0.03529125
|
|
2995
3012
|
},
|
|
2996
3013
|
"input": {
|
|
2997
3014
|
"tokensCount": {
|
|
@@ -3018,19 +3035,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3018
3035
|
},
|
|
3019
3036
|
"output": {
|
|
3020
3037
|
"tokensCount": {
|
|
3021
|
-
"value":
|
|
3038
|
+
"value": 2807
|
|
3022
3039
|
},
|
|
3023
3040
|
"charactersCount": {
|
|
3024
|
-
"value":
|
|
3041
|
+
"value": 3232
|
|
3025
3042
|
},
|
|
3026
3043
|
"wordsCount": {
|
|
3027
|
-
"value":
|
|
3044
|
+
"value": 469
|
|
3028
3045
|
},
|
|
3029
3046
|
"sentencesCount": {
|
|
3030
|
-
"value":
|
|
3047
|
+
"value": 41
|
|
3031
3048
|
},
|
|
3032
3049
|
"linesCount": {
|
|
3033
|
-
"value":
|
|
3050
|
+
"value": 69
|
|
3034
3051
|
},
|
|
3035
3052
|
"paragraphsCount": {
|
|
3036
3053
|
"value": 1
|
|
@@ -3084,7 +3101,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3084
3101
|
"preparations": [
|
|
3085
3102
|
{
|
|
3086
3103
|
"id": 1,
|
|
3087
|
-
"promptbookVersion": "0.100.
|
|
3104
|
+
"promptbookVersion": "0.100.2",
|
|
3088
3105
|
"usage": {
|
|
3089
3106
|
"price": {
|
|
3090
3107
|
"value": 0
|
|
@@ -3193,27 +3210,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3193
3210
|
"models": [
|
|
3194
3211
|
{
|
|
3195
3212
|
"modelName": "gpt-4.1",
|
|
3196
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3197
|
-
"temperature": 0.
|
|
3213
|
+
"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.",
|
|
3214
|
+
"temperature": 0.4
|
|
3198
3215
|
},
|
|
3199
3216
|
{
|
|
3200
3217
|
"modelName": "chatgpt-4o-latest",
|
|
3201
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3218
|
+
"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.",
|
|
3202
3219
|
"temperature": 0.6
|
|
3203
3220
|
},
|
|
3204
|
-
{
|
|
3205
|
-
"modelName": "gpt-4",
|
|
3206
|
-
"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.",
|
|
3207
|
-
"temperature": 0.35
|
|
3208
|
-
},
|
|
3209
3221
|
{
|
|
3210
3222
|
"modelName": "o4-mini",
|
|
3211
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3212
|
-
"temperature": 0.
|
|
3223
|
+
"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
|
+
"temperature": 0.35
|
|
3213
3225
|
},
|
|
3214
3226
|
{
|
|
3215
3227
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3216
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3228
|
+
"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.",
|
|
3217
3229
|
"temperature": 0.5
|
|
3218
3230
|
}
|
|
3219
3231
|
]
|
|
@@ -3227,10 +3239,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3227
3239
|
"preparations": [
|
|
3228
3240
|
{
|
|
3229
3241
|
"id": 1,
|
|
3230
|
-
"promptbookVersion": "0.100.
|
|
3242
|
+
"promptbookVersion": "0.100.2",
|
|
3231
3243
|
"usage": {
|
|
3232
3244
|
"price": {
|
|
3233
|
-
"value": 0.
|
|
3245
|
+
"value": 0.036001250000000005
|
|
3234
3246
|
},
|
|
3235
3247
|
"input": {
|
|
3236
3248
|
"tokensCount": {
|
|
@@ -3257,19 +3269,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3257
3269
|
},
|
|
3258
3270
|
"output": {
|
|
3259
3271
|
"tokensCount": {
|
|
3260
|
-
"value":
|
|
3272
|
+
"value": 2878
|
|
3261
3273
|
},
|
|
3262
3274
|
"charactersCount": {
|
|
3263
|
-
"value":
|
|
3275
|
+
"value": 3269
|
|
3264
3276
|
},
|
|
3265
3277
|
"wordsCount": {
|
|
3266
|
-
"value":
|
|
3278
|
+
"value": 422
|
|
3267
3279
|
},
|
|
3268
3280
|
"sentencesCount": {
|
|
3269
|
-
"value":
|
|
3281
|
+
"value": 39
|
|
3270
3282
|
},
|
|
3271
3283
|
"linesCount": {
|
|
3272
|
-
"value":
|
|
3284
|
+
"value": 68
|
|
3273
3285
|
},
|
|
3274
3286
|
"paragraphsCount": {
|
|
3275
3287
|
"value": 1
|
|
@@ -3349,22 +3361,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3349
3361
|
"models": [
|
|
3350
3362
|
{
|
|
3351
3363
|
"modelName": "gpt-4.1",
|
|
3352
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3353
|
-
"temperature": 0.
|
|
3364
|
+
"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.",
|
|
3365
|
+
"temperature": 0.4
|
|
3354
3366
|
},
|
|
3355
3367
|
{
|
|
3356
3368
|
"modelName": "chatgpt-4o-latest",
|
|
3357
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3358
|
-
"temperature": 0.
|
|
3369
|
+
"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.",
|
|
3370
|
+
"temperature": 0.5
|
|
3359
3371
|
},
|
|
3360
3372
|
{
|
|
3361
3373
|
"modelName": "gpt-4",
|
|
3362
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3374
|
+
"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.",
|
|
3363
3375
|
"temperature": 0.5
|
|
3364
3376
|
},
|
|
3365
3377
|
{
|
|
3366
|
-
"modelName": "gpt-3.5-turbo-
|
|
3367
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.
|
|
3378
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3379
|
+
"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.",
|
|
3380
|
+
"temperature": 0.5
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
"modelName": "gpt-3.5-turbo",
|
|
3384
|
+
"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.",
|
|
3368
3385
|
"temperature": 0.5
|
|
3369
3386
|
}
|
|
3370
3387
|
]
|
|
@@ -3378,10 +3395,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3378
3395
|
"preparations": [
|
|
3379
3396
|
{
|
|
3380
3397
|
"id": 1,
|
|
3381
|
-
"promptbookVersion": "0.100.
|
|
3398
|
+
"promptbookVersion": "0.100.2",
|
|
3382
3399
|
"usage": {
|
|
3383
3400
|
"price": {
|
|
3384
|
-
"value": 0.
|
|
3401
|
+
"value": 0.030406250000000003
|
|
3385
3402
|
},
|
|
3386
3403
|
"input": {
|
|
3387
3404
|
"tokensCount": {
|
|
@@ -3408,19 +3425,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3408
3425
|
},
|
|
3409
3426
|
"output": {
|
|
3410
3427
|
"tokensCount": {
|
|
3411
|
-
"value":
|
|
3428
|
+
"value": 2318
|
|
3412
3429
|
},
|
|
3413
3430
|
"charactersCount": {
|
|
3414
|
-
"value":
|
|
3431
|
+
"value": 2917
|
|
3415
3432
|
},
|
|
3416
3433
|
"wordsCount": {
|
|
3417
|
-
"value":
|
|
3434
|
+
"value": 406
|
|
3418
3435
|
},
|
|
3419
3436
|
"sentencesCount": {
|
|
3420
|
-
"value":
|
|
3437
|
+
"value": 42
|
|
3421
3438
|
},
|
|
3422
3439
|
"linesCount": {
|
|
3423
|
-
"value":
|
|
3440
|
+
"value": 67
|
|
3424
3441
|
},
|
|
3425
3442
|
"paragraphsCount": {
|
|
3426
3443
|
"value": 1
|
|
@@ -3676,29 +3693,24 @@ function getTemplatesPipelineCollection() {
|
|
|
3676
3693
|
"modelVariant": "CHAT",
|
|
3677
3694
|
"models": [
|
|
3678
3695
|
{
|
|
3679
|
-
"modelName": "
|
|
3680
|
-
"systemMessage": "You are a professional linguist and
|
|
3696
|
+
"modelName": "chatgpt-4o-latest",
|
|
3697
|
+
"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.",
|
|
3681
3698
|
"temperature": 0.4
|
|
3682
3699
|
},
|
|
3683
3700
|
{
|
|
3684
|
-
"modelName": "
|
|
3685
|
-
"systemMessage": "You are a
|
|
3686
|
-
"temperature": 0.
|
|
3701
|
+
"modelName": "gpt-4.1",
|
|
3702
|
+
"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.",
|
|
3703
|
+
"temperature": 0.3
|
|
3687
3704
|
},
|
|
3688
3705
|
{
|
|
3689
3706
|
"modelName": "gpt-4",
|
|
3690
|
-
"systemMessage": "You are a professional linguist and
|
|
3691
|
-
"temperature": 0.
|
|
3692
|
-
},
|
|
3693
|
-
{
|
|
3694
|
-
"modelName": "o4-mini",
|
|
3695
|
-
"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.",
|
|
3696
|
-
"temperature": 0.3
|
|
3707
|
+
"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.",
|
|
3708
|
+
"temperature": 0.35
|
|
3697
3709
|
},
|
|
3698
3710
|
{
|
|
3699
3711
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3700
|
-
"systemMessage": "You are a
|
|
3701
|
-
"temperature": 0.
|
|
3712
|
+
"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.",
|
|
3713
|
+
"temperature": 0.5
|
|
3702
3714
|
}
|
|
3703
3715
|
]
|
|
3704
3716
|
}
|
|
@@ -3711,10 +3723,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3711
3723
|
"preparations": [
|
|
3712
3724
|
{
|
|
3713
3725
|
"id": 1,
|
|
3714
|
-
"promptbookVersion": "0.100.
|
|
3726
|
+
"promptbookVersion": "0.100.2",
|
|
3715
3727
|
"usage": {
|
|
3716
3728
|
"price": {
|
|
3717
|
-
"value": 0.
|
|
3729
|
+
"value": 0.02805125
|
|
3718
3730
|
},
|
|
3719
3731
|
"input": {
|
|
3720
3732
|
"tokensCount": {
|
|
@@ -3741,19 +3753,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3741
3753
|
},
|
|
3742
3754
|
"output": {
|
|
3743
3755
|
"tokensCount": {
|
|
3744
|
-
"value":
|
|
3756
|
+
"value": 2083
|
|
3745
3757
|
},
|
|
3746
3758
|
"charactersCount": {
|
|
3747
|
-
"value":
|
|
3759
|
+
"value": 2859
|
|
3748
3760
|
},
|
|
3749
3761
|
"wordsCount": {
|
|
3750
|
-
"value":
|
|
3762
|
+
"value": 374
|
|
3751
3763
|
},
|
|
3752
3764
|
"sentencesCount": {
|
|
3753
|
-
"value":
|
|
3765
|
+
"value": 31
|
|
3754
3766
|
},
|
|
3755
3767
|
"linesCount": {
|
|
3756
|
-
"value":
|
|
3768
|
+
"value": 64
|
|
3757
3769
|
},
|
|
3758
3770
|
"paragraphsCount": {
|
|
3759
3771
|
"value": 1
|
|
@@ -3824,23 +3836,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3824
3836
|
"models": [
|
|
3825
3837
|
{
|
|
3826
3838
|
"modelName": "gpt-4.1",
|
|
3827
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3839
|
+
"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.",
|
|
3828
3840
|
"temperature": 0.85
|
|
3829
3841
|
},
|
|
3830
3842
|
{
|
|
3831
|
-
"modelName": "
|
|
3832
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3843
|
+
"modelName": "chatgpt-4o-latest",
|
|
3844
|
+
"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.",
|
|
3833
3845
|
"temperature": 0.9
|
|
3834
3846
|
},
|
|
3835
3847
|
{
|
|
3836
|
-
"modelName": "
|
|
3837
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3848
|
+
"modelName": "gpt-4",
|
|
3849
|
+
"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.",
|
|
3838
3850
|
"temperature": 0.9
|
|
3839
3851
|
},
|
|
3840
3852
|
{
|
|
3841
3853
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3842
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3843
|
-
"temperature": 0.
|
|
3854
|
+
"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.",
|
|
3855
|
+
"temperature": 0.9
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
"modelName": "gpt-3.5-turbo",
|
|
3859
|
+
"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.",
|
|
3860
|
+
"temperature": 0.9
|
|
3844
3861
|
}
|
|
3845
3862
|
]
|
|
3846
3863
|
}
|
|
@@ -3853,10 +3870,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3853
3870
|
"preparations": [
|
|
3854
3871
|
{
|
|
3855
3872
|
"id": 1,
|
|
3856
|
-
"promptbookVersion": "0.100.
|
|
3873
|
+
"promptbookVersion": "0.100.2",
|
|
3857
3874
|
"usage": {
|
|
3858
3875
|
"price": {
|
|
3859
|
-
"value": 0.
|
|
3876
|
+
"value": 0.028300000000000002
|
|
3860
3877
|
},
|
|
3861
3878
|
"input": {
|
|
3862
3879
|
"tokensCount": {
|
|
@@ -3883,19 +3900,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3883
3900
|
},
|
|
3884
3901
|
"output": {
|
|
3885
3902
|
"tokensCount": {
|
|
3886
|
-
"value":
|
|
3903
|
+
"value": 2108
|
|
3887
3904
|
},
|
|
3888
3905
|
"charactersCount": {
|
|
3889
|
-
"value":
|
|
3906
|
+
"value": 1906
|
|
3890
3907
|
},
|
|
3891
3908
|
"wordsCount": {
|
|
3892
|
-
"value":
|
|
3909
|
+
"value": 259
|
|
3893
3910
|
},
|
|
3894
3911
|
"sentencesCount": {
|
|
3895
|
-
"value":
|
|
3912
|
+
"value": 28
|
|
3896
3913
|
},
|
|
3897
3914
|
"linesCount": {
|
|
3898
|
-
"value":
|
|
3915
|
+
"value": 51
|
|
3899
3916
|
},
|
|
3900
3917
|
"paragraphsCount": {
|
|
3901
3918
|
"value": 1
|