@promptbook/templates 0.102.0-8 → 0.102.0-9
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 +149 -183
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/utils/markdown/prettifyMarkdown.d.ts +2 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +149 -183
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/utils/markdown/prettifyMarkdown.test.d.ts +0 -1
package/umd/index.umd.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* @generated
|
|
23
23
|
* @see https://github.com/webgptorg/promptbook
|
|
24
24
|
*/
|
|
25
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-9';
|
|
26
26
|
/**
|
|
27
27
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
28
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -398,42 +398,10 @@
|
|
|
398
398
|
* @param content raw html code
|
|
399
399
|
* @returns formatted html code
|
|
400
400
|
* @private withing the package because of HUGE size of prettier dependency
|
|
401
|
+
* @deprecated Prettier removed from Promptbook due to package size
|
|
401
402
|
*/
|
|
402
403
|
function prettifyMarkdown(content) {
|
|
403
|
-
|
|
404
|
-
// since prettier parsers are not available and would cause bundling issues
|
|
405
|
-
if (typeof window !== 'undefined') {
|
|
406
|
-
return content;
|
|
407
|
-
}
|
|
408
|
-
try {
|
|
409
|
-
// Use dynamic require to avoid static imports that cause bundling issues
|
|
410
|
-
// This will only work in Node.js environments
|
|
411
|
-
const prettierStandalone = eval('require')('prettier/standalone');
|
|
412
|
-
const parserMarkdown = eval('require')('prettier/parser-markdown');
|
|
413
|
-
const parserHtml = eval('require')('prettier/parser-html');
|
|
414
|
-
return prettierStandalone.format(content, {
|
|
415
|
-
parser: 'markdown',
|
|
416
|
-
plugins: [parserMarkdown, parserHtml],
|
|
417
|
-
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
418
|
-
endOfLine: 'lf',
|
|
419
|
-
tabWidth: 4,
|
|
420
|
-
singleQuote: true,
|
|
421
|
-
trailingComma: 'all',
|
|
422
|
-
arrowParens: 'always',
|
|
423
|
-
printWidth: 120,
|
|
424
|
-
htmlWhitespaceSensitivity: 'ignore',
|
|
425
|
-
jsxBracketSameLine: false,
|
|
426
|
-
bracketSpacing: true,
|
|
427
|
-
});
|
|
428
|
-
}
|
|
429
|
-
catch (error) {
|
|
430
|
-
// TODO: [🟥] Detect browser / node and make it colorful
|
|
431
|
-
console.error('There was an error with prettifying the markdown, using the original as the fallback', {
|
|
432
|
-
error,
|
|
433
|
-
html: content,
|
|
434
|
-
});
|
|
435
|
-
return content;
|
|
436
|
-
}
|
|
404
|
+
return (content + `\n\n<!-- Note: Prettier removed from Promptbook -->`);
|
|
437
405
|
}
|
|
438
406
|
|
|
439
407
|
/**
|
|
@@ -1569,30 +1537,30 @@
|
|
|
1569
1537
|
{
|
|
1570
1538
|
"modelVariant": "CHAT",
|
|
1571
1539
|
"models": [
|
|
1572
|
-
{
|
|
1573
|
-
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a developer of the Promptbook Project and a helpful virtual assistant. Be technically precise and pragmatic. Use concise bullet points, include code snippets when useful, follow best practices, and ask clarifying questions if requirements are ambiguous.",
|
|
1575
|
-
"temperature": 0.2
|
|
1576
|
-
},
|
|
1577
1540
|
{
|
|
1578
1541
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1542
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1580
1543
|
"temperature": 0.3
|
|
1581
1544
|
},
|
|
1582
1545
|
{
|
|
1583
|
-
"modelName": "gpt-4",
|
|
1584
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1585
|
-
"temperature": 0.
|
|
1546
|
+
"modelName": "gpt-4.1",
|
|
1547
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1548
|
+
"temperature": 0.25
|
|
1586
1549
|
},
|
|
1587
1550
|
{
|
|
1588
|
-
"modelName": "
|
|
1589
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1590
|
-
"temperature": 0.
|
|
1551
|
+
"modelName": "gpt-4",
|
|
1552
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1553
|
+
"temperature": 0.3
|
|
1591
1554
|
},
|
|
1592
1555
|
{
|
|
1593
1556
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1594
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1595
|
-
"temperature": 0.
|
|
1557
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1558
|
+
"temperature": 0.4
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"modelName": "o4-mini",
|
|
1562
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1563
|
+
"temperature": 0.2
|
|
1596
1564
|
}
|
|
1597
1565
|
]
|
|
1598
1566
|
}
|
|
@@ -1605,10 +1573,10 @@
|
|
|
1605
1573
|
"preparations": [
|
|
1606
1574
|
{
|
|
1607
1575
|
"id": 1,
|
|
1608
|
-
"promptbookVersion": "0.102.0-
|
|
1576
|
+
"promptbookVersion": "0.102.0-8",
|
|
1609
1577
|
"usage": {
|
|
1610
1578
|
"price": {
|
|
1611
|
-
"value": 0.
|
|
1579
|
+
"value": 0.0355725
|
|
1612
1580
|
},
|
|
1613
1581
|
"input": {
|
|
1614
1582
|
"tokensCount": {
|
|
@@ -1635,19 +1603,19 @@
|
|
|
1635
1603
|
},
|
|
1636
1604
|
"output": {
|
|
1637
1605
|
"tokensCount": {
|
|
1638
|
-
"value":
|
|
1606
|
+
"value": 2788
|
|
1639
1607
|
},
|
|
1640
1608
|
"charactersCount": {
|
|
1641
|
-
"value":
|
|
1609
|
+
"value": 3604
|
|
1642
1610
|
},
|
|
1643
1611
|
"wordsCount": {
|
|
1644
|
-
"value":
|
|
1612
|
+
"value": 466
|
|
1645
1613
|
},
|
|
1646
1614
|
"sentencesCount": {
|
|
1647
|
-
"value":
|
|
1615
|
+
"value": 48
|
|
1648
1616
|
},
|
|
1649
1617
|
"linesCount": {
|
|
1650
|
-
"value":
|
|
1618
|
+
"value": 79
|
|
1651
1619
|
},
|
|
1652
1620
|
"paragraphsCount": {
|
|
1653
1621
|
"value": 1
|
|
@@ -2134,30 +2102,30 @@
|
|
|
2134
2102
|
{
|
|
2135
2103
|
"modelVariant": "CHAT",
|
|
2136
2104
|
"models": [
|
|
2137
|
-
{
|
|
2138
|
-
"modelName": "gpt-4.1",
|
|
2139
|
-
"systemMessage": "You are a developer of the Promptbook Project and a helpful virtual assistant. Be technically precise and pragmatic. Use concise bullet points, include code snippets when useful, follow best practices, and ask clarifying questions if requirements are ambiguous.",
|
|
2140
|
-
"temperature": 0.2
|
|
2141
|
-
},
|
|
2142
2105
|
{
|
|
2143
2106
|
"modelName": "chatgpt-4o-latest",
|
|
2144
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2107
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2145
2108
|
"temperature": 0.3
|
|
2146
2109
|
},
|
|
2147
2110
|
{
|
|
2148
|
-
"modelName": "gpt-4",
|
|
2149
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2150
|
-
"temperature": 0.
|
|
2111
|
+
"modelName": "gpt-4.1",
|
|
2112
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2113
|
+
"temperature": 0.25
|
|
2151
2114
|
},
|
|
2152
2115
|
{
|
|
2153
|
-
"modelName": "
|
|
2154
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2155
|
-
"temperature": 0.
|
|
2116
|
+
"modelName": "gpt-4",
|
|
2117
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2118
|
+
"temperature": 0.3
|
|
2156
2119
|
},
|
|
2157
2120
|
{
|
|
2158
2121
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2159
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2160
|
-
"temperature": 0.
|
|
2122
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2123
|
+
"temperature": 0.4
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"modelName": "o4-mini",
|
|
2127
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2128
|
+
"temperature": 0.2
|
|
2161
2129
|
}
|
|
2162
2130
|
]
|
|
2163
2131
|
}
|
|
@@ -2170,10 +2138,10 @@
|
|
|
2170
2138
|
"preparations": [
|
|
2171
2139
|
{
|
|
2172
2140
|
"id": 1,
|
|
2173
|
-
"promptbookVersion": "0.102.0-
|
|
2141
|
+
"promptbookVersion": "0.102.0-8",
|
|
2174
2142
|
"usage": {
|
|
2175
2143
|
"price": {
|
|
2176
|
-
"value": 0.
|
|
2144
|
+
"value": 0.0355725
|
|
2177
2145
|
},
|
|
2178
2146
|
"input": {
|
|
2179
2147
|
"tokensCount": {
|
|
@@ -2200,19 +2168,19 @@
|
|
|
2200
2168
|
},
|
|
2201
2169
|
"output": {
|
|
2202
2170
|
"tokensCount": {
|
|
2203
|
-
"value":
|
|
2171
|
+
"value": 2788
|
|
2204
2172
|
},
|
|
2205
2173
|
"charactersCount": {
|
|
2206
|
-
"value":
|
|
2174
|
+
"value": 3604
|
|
2207
2175
|
},
|
|
2208
2176
|
"wordsCount": {
|
|
2209
|
-
"value":
|
|
2177
|
+
"value": 466
|
|
2210
2178
|
},
|
|
2211
2179
|
"sentencesCount": {
|
|
2212
|
-
"value":
|
|
2180
|
+
"value": 48
|
|
2213
2181
|
},
|
|
2214
2182
|
"linesCount": {
|
|
2215
|
-
"value":
|
|
2183
|
+
"value": 79
|
|
2216
2184
|
},
|
|
2217
2185
|
"paragraphsCount": {
|
|
2218
2186
|
"value": 1
|
|
@@ -2842,22 +2810,22 @@
|
|
|
2842
2810
|
"models": [
|
|
2843
2811
|
{
|
|
2844
2812
|
"modelName": "gpt-4.1",
|
|
2845
|
-
"systemMessage": "You are an expert linguist
|
|
2846
|
-
"temperature": 0.
|
|
2813
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2814
|
+
"temperature": 0.15
|
|
2847
2815
|
},
|
|
2848
2816
|
{
|
|
2849
2817
|
"modelName": "gpt-4",
|
|
2850
|
-
"systemMessage": "You are an expert linguist
|
|
2818
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2851
2819
|
"temperature": 0.2
|
|
2852
2820
|
},
|
|
2853
2821
|
{
|
|
2854
2822
|
"modelName": "chatgpt-4o-latest",
|
|
2855
|
-
"systemMessage": "You are
|
|
2856
|
-
"temperature": 0.
|
|
2823
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2824
|
+
"temperature": 0.2
|
|
2857
2825
|
},
|
|
2858
2826
|
{
|
|
2859
2827
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2860
|
-
"systemMessage": "You are
|
|
2828
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2861
2829
|
"temperature": 0.2
|
|
2862
2830
|
}
|
|
2863
2831
|
]
|
|
@@ -2871,10 +2839,10 @@
|
|
|
2871
2839
|
"preparations": [
|
|
2872
2840
|
{
|
|
2873
2841
|
"id": 1,
|
|
2874
|
-
"promptbookVersion": "0.102.0-
|
|
2842
|
+
"promptbookVersion": "0.102.0-8",
|
|
2875
2843
|
"usage": {
|
|
2876
2844
|
"price": {
|
|
2877
|
-
"value": 0.
|
|
2845
|
+
"value": 0.039041250000000007
|
|
2878
2846
|
},
|
|
2879
2847
|
"input": {
|
|
2880
2848
|
"tokensCount": {
|
|
@@ -2901,25 +2869,25 @@
|
|
|
2901
2869
|
},
|
|
2902
2870
|
"output": {
|
|
2903
2871
|
"tokensCount": {
|
|
2904
|
-
"value":
|
|
2872
|
+
"value": 3135
|
|
2905
2873
|
},
|
|
2906
2874
|
"charactersCount": {
|
|
2907
|
-
"value":
|
|
2875
|
+
"value": 2871
|
|
2908
2876
|
},
|
|
2909
2877
|
"wordsCount": {
|
|
2910
|
-
"value":
|
|
2878
|
+
"value": 410
|
|
2911
2879
|
},
|
|
2912
2880
|
"sentencesCount": {
|
|
2913
|
-
"value":
|
|
2881
|
+
"value": 39
|
|
2914
2882
|
},
|
|
2915
2883
|
"linesCount": {
|
|
2916
|
-
"value":
|
|
2884
|
+
"value": 64
|
|
2917
2885
|
},
|
|
2918
2886
|
"paragraphsCount": {
|
|
2919
2887
|
"value": 1
|
|
2920
2888
|
},
|
|
2921
2889
|
"pagesCount": {
|
|
2922
|
-
"value":
|
|
2890
|
+
"value": 2
|
|
2923
2891
|
}
|
|
2924
2892
|
}
|
|
2925
2893
|
}
|
|
@@ -2985,27 +2953,22 @@
|
|
|
2985
2953
|
"models": [
|
|
2986
2954
|
{
|
|
2987
2955
|
"modelName": "gpt-4.1",
|
|
2988
|
-
"systemMessage": "You are a skilled e-commerce copywriter.
|
|
2956
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
2989
2957
|
"temperature": 0.7
|
|
2990
2958
|
},
|
|
2991
2959
|
{
|
|
2992
2960
|
"modelName": "chatgpt-4o-latest",
|
|
2993
|
-
"systemMessage": "You are a skilled e-commerce copywriter
|
|
2961
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
2994
2962
|
"temperature": 0.7
|
|
2995
2963
|
},
|
|
2996
2964
|
{
|
|
2997
2965
|
"modelName": "gpt-4",
|
|
2998
|
-
"systemMessage": "You are a
|
|
2966
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
2999
2967
|
"temperature": 0.65
|
|
3000
2968
|
},
|
|
3001
2969
|
{
|
|
3002
2970
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3003
|
-
"systemMessage": "You are a skilled e-commerce copywriter
|
|
3004
|
-
"temperature": 0.6
|
|
3005
|
-
},
|
|
3006
|
-
{
|
|
3007
|
-
"modelName": "gpt-3.5-turbo",
|
|
3008
|
-
"systemMessage": "You are an e-commerce copywriter. Create concise, benefit-driven, SEO-conscious product copy that matches the brand voice and meets provided constraints. Keep language clear, avoid fluff, and include calls to action. Request missing information and offer variants as needed.",
|
|
2971
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
3009
2972
|
"temperature": 0.6
|
|
3010
2973
|
}
|
|
3011
2974
|
]
|
|
@@ -3019,10 +2982,10 @@
|
|
|
3019
2982
|
"preparations": [
|
|
3020
2983
|
{
|
|
3021
2984
|
"id": 1,
|
|
3022
|
-
"promptbookVersion": "0.102.0-
|
|
2985
|
+
"promptbookVersion": "0.102.0-8",
|
|
3023
2986
|
"usage": {
|
|
3024
2987
|
"price": {
|
|
3025
|
-
"value": 0.
|
|
2988
|
+
"value": 0.032961250000000004
|
|
3026
2989
|
},
|
|
3027
2990
|
"input": {
|
|
3028
2991
|
"tokensCount": {
|
|
@@ -3049,19 +3012,19 @@
|
|
|
3049
3012
|
},
|
|
3050
3013
|
"output": {
|
|
3051
3014
|
"tokensCount": {
|
|
3052
|
-
"value":
|
|
3015
|
+
"value": 2527
|
|
3053
3016
|
},
|
|
3054
3017
|
"charactersCount": {
|
|
3055
|
-
"value":
|
|
3018
|
+
"value": 2759
|
|
3056
3019
|
},
|
|
3057
3020
|
"wordsCount": {
|
|
3058
|
-
"value":
|
|
3021
|
+
"value": 378
|
|
3059
3022
|
},
|
|
3060
3023
|
"sentencesCount": {
|
|
3061
|
-
"value":
|
|
3024
|
+
"value": 35
|
|
3062
3025
|
},
|
|
3063
3026
|
"linesCount": {
|
|
3064
|
-
"value":
|
|
3027
|
+
"value": 60
|
|
3065
3028
|
},
|
|
3066
3029
|
"paragraphsCount": {
|
|
3067
3030
|
"value": 1
|
|
@@ -3115,7 +3078,7 @@
|
|
|
3115
3078
|
"preparations": [
|
|
3116
3079
|
{
|
|
3117
3080
|
"id": 1,
|
|
3118
|
-
"promptbookVersion": "0.102.0-
|
|
3081
|
+
"promptbookVersion": "0.102.0-8",
|
|
3119
3082
|
"usage": {
|
|
3120
3083
|
"price": {
|
|
3121
3084
|
"value": 0
|
|
@@ -3220,34 +3183,32 @@
|
|
|
3220
3183
|
"description": "experienced marketing specialist and business consultant",
|
|
3221
3184
|
"modelsRequirements": [
|
|
3222
3185
|
{
|
|
3223
|
-
"
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
}
|
|
3250
|
-
]
|
|
3186
|
+
"0": {
|
|
3187
|
+
"modelName": "gpt-4.1",
|
|
3188
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, actionable, data-driven guidance. Use structured frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT), quantify assumptions, KPIs, and expected ROI, and outline step-by-step plans with timelines. Ask concise clarifying questions when context is missing. Keep tone professional, concise, and executive-ready.",
|
|
3189
|
+
"temperature": 0.4
|
|
3190
|
+
},
|
|
3191
|
+
"1": {
|
|
3192
|
+
"modelName": "chatgpt-4o-latest",
|
|
3193
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide pragmatic, audience-tailored advice with a friendly, engaging tone. Use recognizable frameworks, examples, and checklists. Suggest KPIs, experiments, and iterations, and offer persuasive copy when helpful. Ask brief clarifying questions if needed.",
|
|
3194
|
+
"temperature": 0.6
|
|
3195
|
+
},
|
|
3196
|
+
"2": {
|
|
3197
|
+
"modelName": "gpt-4",
|
|
3198
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, evidence-based recommendations, prioritize clarity, and include implementation steps, risks, and mitigation. Use business frameworks and quantify impact where possible.",
|
|
3199
|
+
"temperature": 0.4
|
|
3200
|
+
},
|
|
3201
|
+
"3": {
|
|
3202
|
+
"modelName": "o4-mini",
|
|
3203
|
+
"systemMessage": "You are a marketing analytics strategist and business consultant. Perform rigorous reasoning and calculations (e.g., CAC, LTV, payback, cohort/funnel analysis, scenario forecasts). State assumptions, show formulas briefly, and summarize executive takeaways with recommended actions.",
|
|
3204
|
+
"temperature": 0.2
|
|
3205
|
+
},
|
|
3206
|
+
"4": {
|
|
3207
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3208
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, concise guidance with clear steps, examples, and KPIs. Keep jargon minimal and focus on actionable outcomes.",
|
|
3209
|
+
"temperature": 0.5
|
|
3210
|
+
},
|
|
3211
|
+
"modelVariant": "CHAT"
|
|
3251
3212
|
}
|
|
3252
3213
|
],
|
|
3253
3214
|
"preparationIds": [
|
|
@@ -3258,10 +3219,10 @@
|
|
|
3258
3219
|
"preparations": [
|
|
3259
3220
|
{
|
|
3260
3221
|
"id": 1,
|
|
3261
|
-
"promptbookVersion": "0.102.0-
|
|
3222
|
+
"promptbookVersion": "0.102.0-8",
|
|
3262
3223
|
"usage": {
|
|
3263
3224
|
"price": {
|
|
3264
|
-
"value": 0.
|
|
3225
|
+
"value": 0.02887125
|
|
3265
3226
|
},
|
|
3266
3227
|
"input": {
|
|
3267
3228
|
"tokensCount": {
|
|
@@ -3288,19 +3249,19 @@
|
|
|
3288
3249
|
},
|
|
3289
3250
|
"output": {
|
|
3290
3251
|
"tokensCount": {
|
|
3291
|
-
"value":
|
|
3252
|
+
"value": 2118
|
|
3292
3253
|
},
|
|
3293
3254
|
"charactersCount": {
|
|
3294
|
-
"value":
|
|
3255
|
+
"value": 1918
|
|
3295
3256
|
},
|
|
3296
3257
|
"wordsCount": {
|
|
3297
|
-
"value":
|
|
3258
|
+
"value": 246
|
|
3298
3259
|
},
|
|
3299
3260
|
"sentencesCount": {
|
|
3300
|
-
"value":
|
|
3261
|
+
"value": 31
|
|
3301
3262
|
},
|
|
3302
3263
|
"linesCount": {
|
|
3303
|
-
"value":
|
|
3264
|
+
"value": 49
|
|
3304
3265
|
},
|
|
3305
3266
|
"paragraphsCount": {
|
|
3306
3267
|
"value": 1
|
|
@@ -3380,23 +3341,23 @@
|
|
|
3380
3341
|
"models": [
|
|
3381
3342
|
{
|
|
3382
3343
|
"modelName": "gpt-4.1",
|
|
3383
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3344
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be friendly, concise, and solution‑oriented. Tasks: 1) Resolve customer issues about orders, shipping, returns, sizing, billing, and product details. 2) Write persuasive, brand‑aligned, SEO‑friendly copy (product pages, emails, social posts, FAQs). Guidelines: ask for missing details (order ID, email, SKU) before proceeding; follow store policies and do not invent facts; summarize next steps clearly; use the customer’s locale, currency, and units when known; avoid requesting sensitive data (never ask for full card numbers); keep responses accurate and empathetic. For copywriting, focus on benefits, clarity, and skimmability; provide optional alternatives or variants when helpful; use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
|
|
3384
3345
|
"temperature": 0.4
|
|
3385
3346
|
},
|
|
3386
3347
|
{
|
|
3387
3348
|
"modelName": "chatgpt-4o-latest",
|
|
3388
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3349
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Provide warm, efficient support for orders, shipping, returns, sizing, and product info. Write concise, persuasive, brand‑aligned, SEO‑friendly copy when asked. Ask clarifying questions if details are missing; follow store policies; do not guess. Offer clear options and next steps; use the customer’s locale, currency, and units when known; protect sensitive data. For copy, emphasize benefits and clarity, and include 2–3 concise variants if useful. Use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
|
|
3389
3350
|
"temperature": 0.5
|
|
3390
3351
|
},
|
|
3391
3352
|
{
|
|
3392
3353
|
"modelName": "gpt-4",
|
|
3393
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3394
|
-
"temperature": 0.
|
|
3354
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be empathetic, accurate, and concise. Handle customer inquiries about orders, returns, shipping, sizing, and product details. Ask for required info (order ID, email, SKU) before acting; follow policies; avoid speculation; summarize next steps. For copywriting, create persuasive, brand‑consistent, SEO‑friendly text with clear benefits and calls‑to‑action; provide alternate variants on request. Use short paragraphs and light bullet lists; avoid heavy formatting unless requested; respect locale, currency, and units.",
|
|
3355
|
+
"temperature": 0.5
|
|
3395
3356
|
},
|
|
3396
3357
|
{
|
|
3397
3358
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3398
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3399
|
-
"temperature": 0.
|
|
3359
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Provide friendly, accurate support on orders, shipping, returns, sizing, and product questions. Ask for missing details (order ID, email, SKU) and follow store policies; don’t invent information. Summarize actions and next steps clearly, using the customer’s locale and currency when known. For copywriting, produce persuasive, brand‑aligned, SEO‑friendly copy with clear benefits and optional variants. Keep messages concise; use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
|
|
3360
|
+
"temperature": 0.6
|
|
3400
3361
|
}
|
|
3401
3362
|
]
|
|
3402
3363
|
}
|
|
@@ -3409,10 +3370,10 @@
|
|
|
3409
3370
|
"preparations": [
|
|
3410
3371
|
{
|
|
3411
3372
|
"id": 1,
|
|
3412
|
-
"promptbookVersion": "0.102.0-
|
|
3373
|
+
"promptbookVersion": "0.102.0-8",
|
|
3413
3374
|
"usage": {
|
|
3414
3375
|
"price": {
|
|
3415
|
-
"value": 0.
|
|
3376
|
+
"value": 0.03241625
|
|
3416
3377
|
},
|
|
3417
3378
|
"input": {
|
|
3418
3379
|
"tokensCount": {
|
|
@@ -3439,19 +3400,19 @@
|
|
|
3439
3400
|
},
|
|
3440
3401
|
"output": {
|
|
3441
3402
|
"tokensCount": {
|
|
3442
|
-
"value":
|
|
3403
|
+
"value": 2472
|
|
3443
3404
|
},
|
|
3444
3405
|
"charactersCount": {
|
|
3445
|
-
"value":
|
|
3406
|
+
"value": 3099
|
|
3446
3407
|
},
|
|
3447
3408
|
"wordsCount": {
|
|
3448
|
-
"value":
|
|
3409
|
+
"value": 427
|
|
3449
3410
|
},
|
|
3450
3411
|
"sentencesCount": {
|
|
3451
|
-
"value":
|
|
3412
|
+
"value": 32
|
|
3452
3413
|
},
|
|
3453
3414
|
"linesCount": {
|
|
3454
|
-
"value":
|
|
3415
|
+
"value": 66
|
|
3455
3416
|
},
|
|
3456
3417
|
"paragraphsCount": {
|
|
3457
3418
|
"value": 1
|
|
@@ -3708,23 +3669,23 @@
|
|
|
3708
3669
|
"models": [
|
|
3709
3670
|
{
|
|
3710
3671
|
"modelName": "gpt-4.1",
|
|
3711
|
-
"systemMessage": "You are a
|
|
3712
|
-
"temperature": 0.
|
|
3672
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3673
|
+
"temperature": 0.3
|
|
3713
3674
|
},
|
|
3714
3675
|
{
|
|
3715
3676
|
"modelName": "chatgpt-4o-latest",
|
|
3716
|
-
"systemMessage": "You are a
|
|
3717
|
-
"temperature": 0.
|
|
3677
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3678
|
+
"temperature": 0.4
|
|
3718
3679
|
},
|
|
3719
3680
|
{
|
|
3720
3681
|
"modelName": "gpt-4",
|
|
3721
|
-
"systemMessage": "You are a
|
|
3722
|
-
"temperature": 0.
|
|
3682
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3683
|
+
"temperature": 0.3
|
|
3723
3684
|
},
|
|
3724
3685
|
{
|
|
3725
3686
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3726
|
-
"systemMessage": "You are a
|
|
3727
|
-
"temperature": 0.
|
|
3687
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3688
|
+
"temperature": 0.2
|
|
3728
3689
|
}
|
|
3729
3690
|
]
|
|
3730
3691
|
}
|
|
@@ -3737,10 +3698,10 @@
|
|
|
3737
3698
|
"preparations": [
|
|
3738
3699
|
{
|
|
3739
3700
|
"id": 1,
|
|
3740
|
-
"promptbookVersion": "0.102.0-
|
|
3701
|
+
"promptbookVersion": "0.102.0-8",
|
|
3741
3702
|
"usage": {
|
|
3742
3703
|
"price": {
|
|
3743
|
-
"value": 0.
|
|
3704
|
+
"value": 0.02812125
|
|
3744
3705
|
},
|
|
3745
3706
|
"input": {
|
|
3746
3707
|
"tokensCount": {
|
|
@@ -3767,19 +3728,19 @@
|
|
|
3767
3728
|
},
|
|
3768
3729
|
"output": {
|
|
3769
3730
|
"tokensCount": {
|
|
3770
|
-
"value":
|
|
3731
|
+
"value": 2043
|
|
3771
3732
|
},
|
|
3772
3733
|
"charactersCount": {
|
|
3773
|
-
"value":
|
|
3734
|
+
"value": 2186
|
|
3774
3735
|
},
|
|
3775
3736
|
"wordsCount": {
|
|
3776
|
-
"value":
|
|
3737
|
+
"value": 286
|
|
3777
3738
|
},
|
|
3778
3739
|
"sentencesCount": {
|
|
3779
|
-
"value":
|
|
3740
|
+
"value": 27
|
|
3780
3741
|
},
|
|
3781
3742
|
"linesCount": {
|
|
3782
|
-
"value":
|
|
3743
|
+
"value": 52
|
|
3783
3744
|
},
|
|
3784
3745
|
"paragraphsCount": {
|
|
3785
3746
|
"value": 1
|
|
@@ -3848,24 +3809,29 @@
|
|
|
3848
3809
|
{
|
|
3849
3810
|
"modelVariant": "CHAT",
|
|
3850
3811
|
"models": [
|
|
3812
|
+
{
|
|
3813
|
+
"modelName": "gpt-5",
|
|
3814
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose award-caliber poems and narratives with vivid imagery, musical language, and a clear emotional arc. Adapt to requested forms and genres (e.g., sonnet, free verse, ballad, mythic fantasy, microfiction). Avoid clichés, favor fresh metaphors, and maintain voice and coherence. For longer works, propose a brief outline first unless the user specifies otherwise. Ask one concise clarifying question when key details are missing.",
|
|
3815
|
+
"temperature": 0.95
|
|
3816
|
+
},
|
|
3851
3817
|
{
|
|
3852
3818
|
"modelName": "gpt-4.1",
|
|
3853
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with
|
|
3819
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with evocative imagery, strong voice, and rhythm. Match requested forms and constraints precisely (meter, rhyme, word count, point of view). Keep language fresh, concrete, and original. Offer a short outline for long pieces unless the user declines. Ask one brief clarifying question if essential details are ambiguous.",
|
|
3854
3820
|
"temperature": 0.9
|
|
3855
3821
|
},
|
|
3856
3822
|
{
|
|
3857
3823
|
"modelName": "chatgpt-4o-latest",
|
|
3858
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3859
|
-
"temperature": 0.
|
|
3824
|
+
"systemMessage": "You are an accomplished poet and storyteller. Create vivid, emotionally resonant poetry and narrative in varied styles and forms. Use sensory detail, metaphor, and cadence; avoid clichés. Tailor tone and structure to the user’s brief, and suggest alternatives when helpful. For longer pieces, propose a quick outline unless told otherwise. Ask one concise clarifying question if needed.",
|
|
3825
|
+
"temperature": 0.9
|
|
3860
3826
|
},
|
|
3861
3827
|
{
|
|
3862
3828
|
"modelName": "gpt-4",
|
|
3863
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3829
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft original, image-rich verse and narrative with clear voice, rhythm, and momentum. Respect requested forms and constraints, minimize clichés, and prioritize clarity and emotional impact. Offer a brief outline for longer works unless the user opts out. Ask one concise clarifying question when key details are missing.",
|
|
3864
3830
|
"temperature": 0.85
|
|
3865
3831
|
},
|
|
3866
3832
|
{
|
|
3867
3833
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3868
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3834
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce vivid, original poems and stories with strong imagery and cadence, adapting to specified forms and constraints. Keep language fresh and clear, suggest a brief outline for longer pieces unless the user declines, and ask one concise clarifying question when needed.",
|
|
3869
3835
|
"temperature": 0.8
|
|
3870
3836
|
}
|
|
3871
3837
|
]
|
|
@@ -3879,10 +3845,10 @@
|
|
|
3879
3845
|
"preparations": [
|
|
3880
3846
|
{
|
|
3881
3847
|
"id": 1,
|
|
3882
|
-
"promptbookVersion": "0.102.0-
|
|
3848
|
+
"promptbookVersion": "0.102.0-8",
|
|
3883
3849
|
"usage": {
|
|
3884
3850
|
"price": {
|
|
3885
|
-
"value": 0.
|
|
3851
|
+
"value": 0.031030000000000002
|
|
3886
3852
|
},
|
|
3887
3853
|
"input": {
|
|
3888
3854
|
"tokensCount": {
|
|
@@ -3909,19 +3875,19 @@
|
|
|
3909
3875
|
},
|
|
3910
3876
|
"output": {
|
|
3911
3877
|
"tokensCount": {
|
|
3912
|
-
"value":
|
|
3878
|
+
"value": 2334
|
|
3913
3879
|
},
|
|
3914
3880
|
"charactersCount": {
|
|
3915
|
-
"value":
|
|
3881
|
+
"value": 2432
|
|
3916
3882
|
},
|
|
3917
3883
|
"wordsCount": {
|
|
3918
|
-
"value":
|
|
3884
|
+
"value": 338
|
|
3919
3885
|
},
|
|
3920
3886
|
"sentencesCount": {
|
|
3921
|
-
"value":
|
|
3887
|
+
"value": 36
|
|
3922
3888
|
},
|
|
3923
3889
|
"linesCount": {
|
|
3924
|
-
"value":
|
|
3890
|
+
"value": 59
|
|
3925
3891
|
},
|
|
3926
3892
|
"paragraphsCount": {
|
|
3927
3893
|
"value": 1
|