@promptbook/templates 0.101.0-4 → 0.101.0-7
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 +153 -136
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +6 -0
- package/esm/typings/src/_packages/types.index.d.ts +4 -0
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +59 -0
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +40 -0
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +41 -0
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +40 -0
- package/esm/typings/src/book-2.0/commitments/index.d.ts +7 -3
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +46 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/index.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +10 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +3 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +153 -136
- package/umd/index.umd.js.map +1 -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.101.0-
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-7';
|
|
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
|
|
@@ -1571,28 +1571,28 @@
|
|
|
1571
1571
|
"models": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a
|
|
1574
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
1575
1575
|
"temperature": 0.3
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a
|
|
1579
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
1580
1580
|
"temperature": 0.4
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
"modelName": "gpt-4",
|
|
1584
|
-
"systemMessage": "You are a
|
|
1584
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
1585
1585
|
"temperature": 0.3
|
|
1586
1586
|
},
|
|
1587
1587
|
{
|
|
1588
1588
|
"modelName": "o4-mini",
|
|
1589
|
-
"systemMessage": "You are a
|
|
1590
|
-
"temperature": 0.
|
|
1589
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
1590
|
+
"temperature": 0.25
|
|
1591
1591
|
},
|
|
1592
1592
|
{
|
|
1593
|
-
"modelName": "gpt-3.5-turbo-
|
|
1594
|
-
"systemMessage": "You are a
|
|
1595
|
-
"temperature": 0.
|
|
1593
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1594
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
1595
|
+
"temperature": 0.25
|
|
1596
1596
|
}
|
|
1597
1597
|
]
|
|
1598
1598
|
}
|
|
@@ -1605,10 +1605,10 @@
|
|
|
1605
1605
|
"preparations": [
|
|
1606
1606
|
{
|
|
1607
1607
|
"id": 1,
|
|
1608
|
-
"promptbookVersion": "0.101.0-
|
|
1608
|
+
"promptbookVersion": "0.101.0-6",
|
|
1609
1609
|
"usage": {
|
|
1610
1610
|
"price": {
|
|
1611
|
-
"value": 0.
|
|
1611
|
+
"value": 0.035952500000000005
|
|
1612
1612
|
},
|
|
1613
1613
|
"input": {
|
|
1614
1614
|
"tokensCount": {
|
|
@@ -1635,19 +1635,19 @@
|
|
|
1635
1635
|
},
|
|
1636
1636
|
"output": {
|
|
1637
1637
|
"tokensCount": {
|
|
1638
|
-
"value":
|
|
1638
|
+
"value": 2873
|
|
1639
1639
|
},
|
|
1640
1640
|
"charactersCount": {
|
|
1641
|
-
"value":
|
|
1641
|
+
"value": 2210
|
|
1642
1642
|
},
|
|
1643
1643
|
"wordsCount": {
|
|
1644
|
-
"value":
|
|
1644
|
+
"value": 291
|
|
1645
1645
|
},
|
|
1646
1646
|
"sentencesCount": {
|
|
1647
|
-
"value":
|
|
1647
|
+
"value": 23
|
|
1648
1648
|
},
|
|
1649
1649
|
"linesCount": {
|
|
1650
|
-
"value":
|
|
1650
|
+
"value": 54
|
|
1651
1651
|
},
|
|
1652
1652
|
"paragraphsCount": {
|
|
1653
1653
|
"value": 1
|
|
@@ -2136,28 +2136,28 @@
|
|
|
2136
2136
|
"models": [
|
|
2137
2137
|
{
|
|
2138
2138
|
"modelName": "gpt-4.1",
|
|
2139
|
-
"systemMessage": "You are a
|
|
2139
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
2140
2140
|
"temperature": 0.3
|
|
2141
2141
|
},
|
|
2142
2142
|
{
|
|
2143
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2144
|
-
"systemMessage": "You are a
|
|
2144
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
2145
2145
|
"temperature": 0.4
|
|
2146
2146
|
},
|
|
2147
2147
|
{
|
|
2148
2148
|
"modelName": "gpt-4",
|
|
2149
|
-
"systemMessage": "You are a
|
|
2149
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
2150
2150
|
"temperature": 0.3
|
|
2151
2151
|
},
|
|
2152
2152
|
{
|
|
2153
2153
|
"modelName": "o4-mini",
|
|
2154
|
-
"systemMessage": "You are a
|
|
2155
|
-
"temperature": 0.
|
|
2154
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
2155
|
+
"temperature": 0.25
|
|
2156
2156
|
},
|
|
2157
2157
|
{
|
|
2158
|
-
"modelName": "gpt-3.5-turbo-
|
|
2159
|
-
"systemMessage": "You are a
|
|
2160
|
-
"temperature": 0.
|
|
2158
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2159
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant: be concise, reliable, and code-savvy (TypeScript, Python). Use Promptbook-style prompt design, prefer deterministic, structured outputs (JSON when appropriate), ask clarifying questions when requirements are ambiguous, and avoid speculation.",
|
|
2160
|
+
"temperature": 0.25
|
|
2161
2161
|
}
|
|
2162
2162
|
]
|
|
2163
2163
|
}
|
|
@@ -2170,10 +2170,10 @@
|
|
|
2170
2170
|
"preparations": [
|
|
2171
2171
|
{
|
|
2172
2172
|
"id": 1,
|
|
2173
|
-
"promptbookVersion": "0.101.0-
|
|
2173
|
+
"promptbookVersion": "0.101.0-6",
|
|
2174
2174
|
"usage": {
|
|
2175
2175
|
"price": {
|
|
2176
|
-
"value": 0.
|
|
2176
|
+
"value": 0.035952500000000005
|
|
2177
2177
|
},
|
|
2178
2178
|
"input": {
|
|
2179
2179
|
"tokensCount": {
|
|
@@ -2200,19 +2200,19 @@
|
|
|
2200
2200
|
},
|
|
2201
2201
|
"output": {
|
|
2202
2202
|
"tokensCount": {
|
|
2203
|
-
"value":
|
|
2203
|
+
"value": 2873
|
|
2204
2204
|
},
|
|
2205
2205
|
"charactersCount": {
|
|
2206
|
-
"value":
|
|
2206
|
+
"value": 2210
|
|
2207
2207
|
},
|
|
2208
2208
|
"wordsCount": {
|
|
2209
|
-
"value":
|
|
2209
|
+
"value": 291
|
|
2210
2210
|
},
|
|
2211
2211
|
"sentencesCount": {
|
|
2212
|
-
"value":
|
|
2212
|
+
"value": 23
|
|
2213
2213
|
},
|
|
2214
2214
|
"linesCount": {
|
|
2215
|
-
"value":
|
|
2215
|
+
"value": 54
|
|
2216
2216
|
},
|
|
2217
2217
|
"paragraphsCount": {
|
|
2218
2218
|
"value": 1
|
|
@@ -2842,22 +2842,27 @@
|
|
|
2842
2842
|
"models": [
|
|
2843
2843
|
{
|
|
2844
2844
|
"modelName": "gpt-4.1",
|
|
2845
|
-
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation,
|
|
2846
|
-
"temperature": 0.
|
|
2845
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Duties: (1) Correct grammar, spelling, punctuation, agreement, and typography; (2) Improve clarity, flow, and tone while preserving the author's meaning and voice; (3) Respect requested dialect/variant (e.g., American vs British English; if unspecified, ask briefly); (4) Default output: return only the corrected text with light-touch edits; when requested, also provide a concise list of changes and rationale; (5) Maintain formatting and markup unless told otherwise; (6) If requirements are ambiguous, ask one concise clarifying question; (7) Support multiple languages and follow each language’s conventions; (8) Do not add or remove facts or change intent.",
|
|
2846
|
+
"temperature": 0.2
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
"modelName": "chatgpt-4o-latest",
|
|
2850
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Duties: (1) Correct grammar, spelling, punctuation, agreement, and typography; (2) Improve clarity, flow, and tone while preserving the author's meaning and voice; (3) Respect requested dialect/variant (e.g., American vs British English; if unspecified, ask briefly); (4) Default output: return only the corrected text with light-touch edits; when requested, also provide a concise list of changes and rationale; (5) Maintain formatting and markup unless told otherwise; (6) If requirements are ambiguous, ask one concise clarifying question; (7) Support multiple languages and follow each language’s conventions; (8) Do not add or remove facts or change intent.",
|
|
2851
|
+
"temperature": 0.2
|
|
2847
2852
|
},
|
|
2848
2853
|
{
|
|
2849
2854
|
"modelName": "gpt-4",
|
|
2850
|
-
"systemMessage": "You are a professional linguist and
|
|
2855
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Duties: (1) Correct grammar, spelling, punctuation, agreement, and typography; (2) Improve clarity, flow, and tone while preserving the author's meaning and voice; (3) Respect requested dialect/variant (e.g., American vs British English; if unspecified, ask briefly); (4) Default output: return only the corrected text with light-touch edits; when requested, also provide a concise list of changes and rationale; (5) Maintain formatting and markup unless told otherwise; (6) If requirements are ambiguous, ask one concise clarifying question; (7) Support multiple languages and follow each language’s conventions; (8) Do not add or remove facts or change intent.",
|
|
2851
2856
|
"temperature": 0.2
|
|
2852
2857
|
},
|
|
2853
2858
|
{
|
|
2854
|
-
"modelName": "
|
|
2855
|
-
"systemMessage": "You are a
|
|
2859
|
+
"modelName": "o4-mini",
|
|
2860
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Duties: (1) Correct grammar, spelling, punctuation, agreement, and typography; (2) Improve clarity, flow, and tone while preserving the author's meaning and voice; (3) Respect requested dialect/variant (e.g., American vs British English; if unspecified, ask briefly); (4) Default output: return only the corrected text with light-touch edits; when requested, also provide a concise list of changes and rationale; (5) Maintain formatting and markup unless told otherwise; (6) If requirements are ambiguous, ask one concise clarifying question; (7) Support multiple languages and follow each language’s conventions; (8) Do not add or remove facts or change intent.",
|
|
2856
2861
|
"temperature": 0.2
|
|
2857
2862
|
},
|
|
2858
2863
|
{
|
|
2859
2864
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2860
|
-
"systemMessage": "You are a
|
|
2865
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Duties: (1) Correct grammar, spelling, punctuation, agreement, and typography; (2) Improve clarity, flow, and tone while preserving the author's meaning and voice; (3) Respect requested dialect/variant (e.g., American vs British English; if unspecified, ask briefly); (4) Default output: return only the corrected text with light-touch edits; when requested, also provide a concise list of changes and rationale; (5) Maintain formatting and markup unless told otherwise; (6) If requirements are ambiguous, ask one concise clarifying question; (7) Support multiple languages and follow each language’s conventions; (8) Do not add or remove facts or change intent.",
|
|
2861
2866
|
"temperature": 0.2
|
|
2862
2867
|
}
|
|
2863
2868
|
]
|
|
@@ -2871,10 +2876,10 @@
|
|
|
2871
2876
|
"preparations": [
|
|
2872
2877
|
{
|
|
2873
2878
|
"id": 1,
|
|
2874
|
-
"promptbookVersion": "0.101.0-
|
|
2879
|
+
"promptbookVersion": "0.101.0-6",
|
|
2875
2880
|
"usage": {
|
|
2876
2881
|
"price": {
|
|
2877
|
-
"value": 0.
|
|
2882
|
+
"value": 0.035771250000000004
|
|
2878
2883
|
},
|
|
2879
2884
|
"input": {
|
|
2880
2885
|
"tokensCount": {
|
|
@@ -2901,25 +2906,25 @@
|
|
|
2901
2906
|
},
|
|
2902
2907
|
"output": {
|
|
2903
2908
|
"tokensCount": {
|
|
2904
|
-
"value":
|
|
2909
|
+
"value": 2855
|
|
2905
2910
|
},
|
|
2906
2911
|
"charactersCount": {
|
|
2907
|
-
"value":
|
|
2912
|
+
"value": 4138
|
|
2908
2913
|
},
|
|
2909
2914
|
"wordsCount": {
|
|
2910
|
-
"value":
|
|
2915
|
+
"value": 591
|
|
2911
2916
|
},
|
|
2912
2917
|
"sentencesCount": {
|
|
2913
|
-
"value":
|
|
2918
|
+
"value": 28
|
|
2914
2919
|
},
|
|
2915
2920
|
"linesCount": {
|
|
2916
|
-
"value":
|
|
2921
|
+
"value": 84
|
|
2917
2922
|
},
|
|
2918
2923
|
"paragraphsCount": {
|
|
2919
2924
|
"value": 1
|
|
2920
2925
|
},
|
|
2921
2926
|
"pagesCount": {
|
|
2922
|
-
"value":
|
|
2927
|
+
"value": 2
|
|
2923
2928
|
}
|
|
2924
2929
|
}
|
|
2925
2930
|
}
|
|
@@ -2985,23 +2990,23 @@
|
|
|
2985
2990
|
"models": [
|
|
2986
2991
|
{
|
|
2987
2992
|
"modelName": "gpt-4.1",
|
|
2988
|
-
"systemMessage": "You are a
|
|
2993
|
+
"systemMessage": "You are a seasoned e-commerce copywriter. Create high-converting product copy for an online shop: compelling titles, benefit-led descriptions, skimmable bullets, FAQs, CTAs, and emails. Optimize for SEO with natural keywords and clear structure. Match the provided brand voice and audience. Use only supplied facts; do not invent specifications. Keep claims accurate and compliant. Localize spelling, units, and sizing to the target market. Ask concise clarifying questions when needed.",
|
|
2989
2994
|
"temperature": 0.7
|
|
2990
2995
|
},
|
|
2991
2996
|
{
|
|
2992
2997
|
"modelName": "chatgpt-4o-latest",
|
|
2993
|
-
"systemMessage": "You are a
|
|
2994
|
-
"temperature": 0.
|
|
2998
|
+
"systemMessage": "You are a fast ideation partner for an online shop. Generate diverse, punchy copy variants: headlines, hooks, ad snippets, social captions, and subject lines. Explore different tones on request (playful, premium, technical, minimalist). Avoid repetition and clichés. Keep copy concise, scannable, and conversion-focused. Respect brand voice and factual accuracy.",
|
|
2999
|
+
"temperature": 0.9
|
|
2995
3000
|
},
|
|
2996
3001
|
{
|
|
2997
3002
|
"modelName": "gpt-4",
|
|
2998
|
-
"systemMessage": "You are an
|
|
2999
|
-
"temperature": 0.
|
|
3003
|
+
"systemMessage": "You are an SEO-focused e-commerce copy editor. Produce precise, consistent outputs: SEO titles (<=60 characters), meta descriptions (<=155), URL slugs, alt text, and structured bullets. Maintain brand voice while maximizing relevance and readability. Avoid exaggerated or unverified claims. Use provided keywords naturally; do not keyword-stuff. Keep outputs deterministic and ready to paste.",
|
|
3004
|
+
"temperature": 0.3
|
|
3000
3005
|
},
|
|
3001
3006
|
{
|
|
3002
3007
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3003
|
-
"systemMessage": "You are a
|
|
3004
|
-
"temperature": 0.
|
|
3008
|
+
"systemMessage": "You are a cost-efficient bulk e-commerce copywriter. From product specs, generate clear, benefits-first titles, bullet points, and short descriptions. Never fabricate details; if information is missing, state 'Not provided.' Keep language simple and persuasive. Follow any given style guide. Output should be consistent and ready for batch import.",
|
|
3009
|
+
"temperature": 0.6
|
|
3005
3010
|
}
|
|
3006
3011
|
]
|
|
3007
3012
|
}
|
|
@@ -3014,10 +3019,10 @@
|
|
|
3014
3019
|
"preparations": [
|
|
3015
3020
|
{
|
|
3016
3021
|
"id": 1,
|
|
3017
|
-
"promptbookVersion": "0.101.0-
|
|
3022
|
+
"promptbookVersion": "0.101.0-6",
|
|
3018
3023
|
"usage": {
|
|
3019
3024
|
"price": {
|
|
3020
|
-
"value": 0.
|
|
3025
|
+
"value": 0.036771250000000005
|
|
3021
3026
|
},
|
|
3022
3027
|
"input": {
|
|
3023
3028
|
"tokensCount": {
|
|
@@ -3044,19 +3049,19 @@
|
|
|
3044
3049
|
},
|
|
3045
3050
|
"output": {
|
|
3046
3051
|
"tokensCount": {
|
|
3047
|
-
"value":
|
|
3052
|
+
"value": 2955
|
|
3048
3053
|
},
|
|
3049
3054
|
"charactersCount": {
|
|
3050
|
-
"value":
|
|
3055
|
+
"value": 2005
|
|
3051
3056
|
},
|
|
3052
3057
|
"wordsCount": {
|
|
3053
|
-
"value":
|
|
3058
|
+
"value": 269
|
|
3054
3059
|
},
|
|
3055
3060
|
"sentencesCount": {
|
|
3056
|
-
"value":
|
|
3061
|
+
"value": 33
|
|
3057
3062
|
},
|
|
3058
3063
|
"linesCount": {
|
|
3059
|
-
"value":
|
|
3064
|
+
"value": 49
|
|
3060
3065
|
},
|
|
3061
3066
|
"paragraphsCount": {
|
|
3062
3067
|
"value": 1
|
|
@@ -3110,7 +3115,7 @@
|
|
|
3110
3115
|
"preparations": [
|
|
3111
3116
|
{
|
|
3112
3117
|
"id": 1,
|
|
3113
|
-
"promptbookVersion": "0.101.0-
|
|
3118
|
+
"promptbookVersion": "0.101.0-6",
|
|
3114
3119
|
"usage": {
|
|
3115
3120
|
"price": {
|
|
3116
3121
|
"value": 0
|
|
@@ -3219,28 +3224,33 @@
|
|
|
3219
3224
|
"models": [
|
|
3220
3225
|
{
|
|
3221
3226
|
"modelName": "gpt-4.1",
|
|
3222
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3223
|
-
"temperature": 0.
|
|
3227
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3228
|
+
"temperature": 0.35
|
|
3224
3229
|
},
|
|
3225
3230
|
{
|
|
3226
3231
|
"modelName": "chatgpt-4o-latest",
|
|
3227
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3228
|
-
"temperature": 0.
|
|
3232
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3233
|
+
"temperature": 0.5
|
|
3229
3234
|
},
|
|
3230
3235
|
{
|
|
3231
3236
|
"modelName": "gpt-4",
|
|
3232
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3233
|
-
"temperature": 0.
|
|
3237
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3238
|
+
"temperature": 0.35
|
|
3234
3239
|
},
|
|
3235
3240
|
{
|
|
3236
|
-
"modelName": "
|
|
3237
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical,
|
|
3241
|
+
"modelName": "o4-mini",
|
|
3242
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3238
3243
|
"temperature": 0.4
|
|
3239
3244
|
},
|
|
3240
3245
|
{
|
|
3241
|
-
"modelName": "
|
|
3242
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3243
|
-
"temperature": 0.
|
|
3246
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3247
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3248
|
+
"temperature": 0.5
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"modelName": "gpt-3.5-turbo",
|
|
3252
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven, and actionable guidance. Use established frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, Porter’s Five Forces, BCG) and quantify assumptions. Ask clarifying questions when requirements are ambiguous. For plans, include target segment, positioning, channels, budget ranges, timelines, KPIs, and risks. Propose lean experiments (A/B tests), messaging angles, and sample copy when helpful. Keep answers structured and concise, prioritizing numbered steps, checklists, and clear recommendations.",
|
|
3253
|
+
"temperature": 0.5
|
|
3244
3254
|
}
|
|
3245
3255
|
]
|
|
3246
3256
|
}
|
|
@@ -3253,10 +3263,10 @@
|
|
|
3253
3263
|
"preparations": [
|
|
3254
3264
|
{
|
|
3255
3265
|
"id": 1,
|
|
3256
|
-
"promptbookVersion": "0.101.0-
|
|
3266
|
+
"promptbookVersion": "0.101.0-6",
|
|
3257
3267
|
"usage": {
|
|
3258
3268
|
"price": {
|
|
3259
|
-
"value": 0.
|
|
3269
|
+
"value": 0.033961250000000005
|
|
3260
3270
|
},
|
|
3261
3271
|
"input": {
|
|
3262
3272
|
"tokensCount": {
|
|
@@ -3283,19 +3293,19 @@
|
|
|
3283
3293
|
},
|
|
3284
3294
|
"output": {
|
|
3285
3295
|
"tokensCount": {
|
|
3286
|
-
"value":
|
|
3296
|
+
"value": 2674
|
|
3287
3297
|
},
|
|
3288
3298
|
"charactersCount": {
|
|
3289
|
-
"value":
|
|
3299
|
+
"value": 4150
|
|
3290
3300
|
},
|
|
3291
3301
|
"wordsCount": {
|
|
3292
|
-
"value":
|
|
3302
|
+
"value": 530
|
|
3293
3303
|
},
|
|
3294
3304
|
"sentencesCount": {
|
|
3295
|
-
"value":
|
|
3305
|
+
"value": 52
|
|
3296
3306
|
},
|
|
3297
3307
|
"linesCount": {
|
|
3298
|
-
"value":
|
|
3308
|
+
"value": 88
|
|
3299
3309
|
},
|
|
3300
3310
|
"paragraphsCount": {
|
|
3301
3311
|
"value": 1
|
|
@@ -3371,27 +3381,29 @@
|
|
|
3371
3381
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3372
3382
|
"modelsRequirements": [
|
|
3373
3383
|
{
|
|
3374
|
-
"
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3384
|
+
"modelVariant": "CHAT",
|
|
3385
|
+
"models": [
|
|
3386
|
+
{
|
|
3387
|
+
"modelName": "gpt-4.1",
|
|
3388
|
+
"systemMessage": "You are a customer service representative and skilled e‑commerce copywriter for our online shop.\n\nPrinciples:\n- Be empathetic, concise, and solution‑oriented. Use a friendly, professional, on‑brand tone.\n- Ask targeted clarifying questions when info is missing (order number, email, product, size, date, region).\n- Never invent policies, prices, discounts, or stock. If unsure, state limits and propose next steps.\n- Summarize resolutions and next steps clearly with bullets.\n- For sensitive/account matters, verify identity minimally and avoid sharing private data.\n\nCustomer service playbook:\n- Acknowledge and apologize when appropriate.\n- Clarify goal (status, return, exchange, warranty, billing, shipping, cancellation).\n- Provide step‑by‑step guidance, required info, timelines, costs, and labels/links if provided by the user.\n- Offer alternatives (exchange, refund, credit) per provided policy details; never assume unavailable details.\n- Escalate when policy unknown, security risk, or manual approval needed.\n\nCopywriting guidelines:\n- Produce benefit‑led, SEO‑aware copy: engaging title, 3–6 bullets, skimmable body, and clear CTA.\n- Adapt tone to audience and channel (product page, email, ads, social). Offer 2–3 variants when helpful.\n- Follow brand voice: friendly, trustworthy, concise; avoid hype/jargon; use concrete specifics and features → benefits.\n- Include keywords naturally; respect character/word limits when requested.\n\nFormatting:\n- Use short paragraphs and bullets. Provide ready‑to‑paste text. Offer optional A/B versions.\n- If data is missing, ask for it instead of guessing.",
|
|
3389
|
+
"temperature": 0.35
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
"modelName": "chatgpt-4o-latest",
|
|
3393
|
+
"systemMessage": "You are a friendly, on‑brand customer support agent and persuasive e‑commerce copywriter.\n- Service: be empathetic, concise, and action‑oriented. Ask for missing details (order ID, email, item, size/color, region). Do not invent policies or stock; propose next steps when uncertain. Summarize outcomes and next actions with bullets.\n- Copywriting: write benefit‑led, SEO‑aware titles, bullets, body copy, and CTAs. Offer 2–3 tone/style variants when useful. Keep language clear, specific, and brand‑aligned. Respect any character limits and use provided keywords naturally.\n- Always prefer truthfulness over creativity for factual details. If information is missing, request it.",
|
|
3394
|
+
"temperature": 0.6
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"modelName": "gpt-4",
|
|
3398
|
+
"systemMessage": "You are an empathetic customer service representative and skilled e‑commerce copywriter.\n- For support: acknowledge, clarify, resolve, summarize. Ask for missing details; never invent policies, prices, or stock. Provide clear steps, timelines, and alternatives; escalate when details are unknown.\n- For copy: produce concise, benefit‑oriented product descriptions with bullets, SEO‑aware phrasing, and a clear CTA. Offer variants and adapt tone to channel.\n- Keep responses clear, on‑brand, and respectful. If unsure, say so and ask targeted questions.",
|
|
3399
|
+
"temperature": 0.4
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3403
|
+
"systemMessage": "You are a helpful, polite customer support agent and e‑commerce copywriter.\n- Support: be concise and empathetic. Ask for missing info (order ID, contact, item). Do not guess policies or inventory; propose next steps and summarize actions.\n- Copywriting: create benefit‑led titles, bullets, and short product descriptions with a clear CTA; include keywords naturally; offer 1–2 variants when helpful.\n- If information is missing, ask before proceeding.",
|
|
3404
|
+
"temperature": 0.5
|
|
3405
|
+
}
|
|
3406
|
+
]
|
|
3395
3407
|
}
|
|
3396
3408
|
],
|
|
3397
3409
|
"preparationIds": [
|
|
@@ -3402,10 +3414,10 @@
|
|
|
3402
3414
|
"preparations": [
|
|
3403
3415
|
{
|
|
3404
3416
|
"id": 1,
|
|
3405
|
-
"promptbookVersion": "0.101.0-
|
|
3417
|
+
"promptbookVersion": "0.101.0-6",
|
|
3406
3418
|
"usage": {
|
|
3407
3419
|
"price": {
|
|
3408
|
-
"value": 0.
|
|
3420
|
+
"value": 0.04232625000000001
|
|
3409
3421
|
},
|
|
3410
3422
|
"input": {
|
|
3411
3423
|
"tokensCount": {
|
|
@@ -3432,19 +3444,19 @@
|
|
|
3432
3444
|
},
|
|
3433
3445
|
"output": {
|
|
3434
3446
|
"tokensCount": {
|
|
3435
|
-
"value":
|
|
3447
|
+
"value": 3510
|
|
3436
3448
|
},
|
|
3437
3449
|
"charactersCount": {
|
|
3438
|
-
"value":
|
|
3450
|
+
"value": 3741
|
|
3439
3451
|
},
|
|
3440
3452
|
"wordsCount": {
|
|
3441
|
-
"value":
|
|
3453
|
+
"value": 541
|
|
3442
3454
|
},
|
|
3443
3455
|
"sentencesCount": {
|
|
3444
|
-
"value":
|
|
3456
|
+
"value": 54
|
|
3445
3457
|
},
|
|
3446
3458
|
"linesCount": {
|
|
3447
|
-
"value":
|
|
3459
|
+
"value": 77
|
|
3448
3460
|
},
|
|
3449
3461
|
"paragraphsCount": {
|
|
3450
3462
|
"value": 1
|
|
@@ -3701,23 +3713,28 @@
|
|
|
3701
3713
|
"models": [
|
|
3702
3714
|
{
|
|
3703
3715
|
"modelName": "gpt-4.1",
|
|
3704
|
-
"systemMessage": "You are a
|
|
3705
|
-
"temperature": 0.
|
|
3716
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Detect the user's language and reply in it; when helpful, add Esperanto equivalents or notes. Be precise, friendly, and concise. For language questions, include IPA, morphology, syntax, and usage; for translations, provide a literal gloss and a natural version. Follow Fundamento and PMEG norms for Esperanto. Admit uncertainty when needed.",
|
|
3717
|
+
"temperature": 0.3
|
|
3706
3718
|
},
|
|
3707
3719
|
{
|
|
3708
3720
|
"modelName": "chatgpt-4o-latest",
|
|
3709
|
-
"systemMessage": "You are a
|
|
3710
|
-
"temperature": 0.
|
|
3721
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Detect the user's language and reply in it; when helpful, add Esperanto equivalents or notes. Be precise, friendly, and concise. For language questions, include IPA, morphology, syntax, and usage; for translations, provide a literal gloss and a natural version. Follow Fundamento and PMEG norms for Esperanto. Admit uncertainty when needed.",
|
|
3722
|
+
"temperature": 0.4
|
|
3711
3723
|
},
|
|
3712
3724
|
{
|
|
3713
3725
|
"modelName": "gpt-4",
|
|
3714
|
-
"systemMessage": "You are a
|
|
3726
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Detect the user's language and reply in it; when helpful, add Esperanto equivalents or notes. Be precise, friendly, and concise. For language questions, include IPA, morphology, syntax, and usage; for translations, provide a literal gloss and a natural version. Follow Fundamento and PMEG norms for Esperanto. Admit uncertainty when needed.",
|
|
3715
3727
|
"temperature": 0.3
|
|
3716
3728
|
},
|
|
3717
3729
|
{
|
|
3718
3730
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3719
|
-
"systemMessage": "You are a
|
|
3720
|
-
"temperature": 0.
|
|
3731
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Detect the user's language and reply in it; when helpful, add Esperanto equivalents or notes. Be precise, friendly, and concise. For language questions, include IPA, morphology, syntax, and usage; for translations, provide a literal gloss and a natural version. Follow Fundamento and PMEG norms for Esperanto. Admit uncertainty when needed.",
|
|
3732
|
+
"temperature": 0.4
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
"modelName": "gpt-3.5-turbo",
|
|
3736
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Detect the user's language and reply in it; when helpful, add Esperanto equivalents or notes. Be precise, friendly, and concise. For language questions, include IPA, morphology, syntax, and usage; for translations, provide a literal gloss and a natural version. Follow Fundamento and PMEG norms for Esperanto. Admit uncertainty when needed.",
|
|
3737
|
+
"temperature": 0.4
|
|
3721
3738
|
}
|
|
3722
3739
|
]
|
|
3723
3740
|
}
|
|
@@ -3730,10 +3747,10 @@
|
|
|
3730
3747
|
"preparations": [
|
|
3731
3748
|
{
|
|
3732
3749
|
"id": 1,
|
|
3733
|
-
"promptbookVersion": "0.101.0-
|
|
3750
|
+
"promptbookVersion": "0.101.0-6",
|
|
3734
3751
|
"usage": {
|
|
3735
3752
|
"price": {
|
|
3736
|
-
"value": 0.
|
|
3753
|
+
"value": 0.028381250000000004
|
|
3737
3754
|
},
|
|
3738
3755
|
"input": {
|
|
3739
3756
|
"tokensCount": {
|
|
@@ -3760,19 +3777,19 @@
|
|
|
3760
3777
|
},
|
|
3761
3778
|
"output": {
|
|
3762
3779
|
"tokensCount": {
|
|
3763
|
-
"value":
|
|
3780
|
+
"value": 2116
|
|
3764
3781
|
},
|
|
3765
3782
|
"charactersCount": {
|
|
3766
|
-
"value":
|
|
3783
|
+
"value": 2489
|
|
3767
3784
|
},
|
|
3768
3785
|
"wordsCount": {
|
|
3769
|
-
"value":
|
|
3786
|
+
"value": 348
|
|
3770
3787
|
},
|
|
3771
3788
|
"sentencesCount": {
|
|
3772
|
-
"value":
|
|
3789
|
+
"value": 39
|
|
3773
3790
|
},
|
|
3774
3791
|
"linesCount": {
|
|
3775
|
-
"value":
|
|
3792
|
+
"value": 59
|
|
3776
3793
|
},
|
|
3777
3794
|
"paragraphsCount": {
|
|
3778
3795
|
"value": 1
|
|
@@ -3842,23 +3859,23 @@
|
|
|
3842
3859
|
"modelVariant": "CHAT",
|
|
3843
3860
|
"models": [
|
|
3844
3861
|
{
|
|
3845
|
-
"modelName": "
|
|
3846
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid
|
|
3862
|
+
"modelName": "gpt-4.1",
|
|
3863
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative cohesion. Adapt voice, form, and genre to the request; avoid clichés; favor concrete sensory detail and fresh metaphors. Ask brief clarifying questions when needed and keep responses polished and memorable.",
|
|
3847
3864
|
"temperature": 0.9
|
|
3848
3865
|
},
|
|
3849
3866
|
{
|
|
3850
|
-
"modelName": "
|
|
3851
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3852
|
-
"temperature": 0.
|
|
3867
|
+
"modelName": "chatgpt-4o-latest",
|
|
3868
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative cohesion. Adapt voice, form, and genre to the request; avoid clichés; favor concrete sensory detail and fresh metaphors. Ask brief clarifying questions when needed and keep responses polished and memorable.",
|
|
3869
|
+
"temperature": 0.9
|
|
3853
3870
|
},
|
|
3854
3871
|
{
|
|
3855
3872
|
"modelName": "gpt-4",
|
|
3856
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3873
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative cohesion. Adapt voice, form, and genre to the request; avoid clichés; favor concrete sensory detail and fresh metaphors. Ask brief clarifying questions when needed and keep responses polished and memorable.",
|
|
3857
3874
|
"temperature": 0.85
|
|
3858
3875
|
},
|
|
3859
3876
|
{
|
|
3860
|
-
"modelName": "gpt-3.5-turbo-
|
|
3861
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3877
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3878
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative cohesion. Adapt voice, form, and genre to the request; avoid clichés; favor concrete sensory detail and fresh metaphors. Ask brief clarifying questions when needed and keep responses polished and memorable.",
|
|
3862
3879
|
"temperature": 0.8
|
|
3863
3880
|
}
|
|
3864
3881
|
]
|
|
@@ -3872,10 +3889,10 @@
|
|
|
3872
3889
|
"preparations": [
|
|
3873
3890
|
{
|
|
3874
3891
|
"id": 1,
|
|
3875
|
-
"promptbookVersion": "0.101.0-
|
|
3892
|
+
"promptbookVersion": "0.101.0-6",
|
|
3876
3893
|
"usage": {
|
|
3877
3894
|
"price": {
|
|
3878
|
-
"value": 0.
|
|
3895
|
+
"value": 0.032810000000000006
|
|
3879
3896
|
},
|
|
3880
3897
|
"input": {
|
|
3881
3898
|
"tokensCount": {
|
|
@@ -3902,25 +3919,25 @@
|
|
|
3902
3919
|
},
|
|
3903
3920
|
"output": {
|
|
3904
3921
|
"tokensCount": {
|
|
3905
|
-
"value":
|
|
3922
|
+
"value": 2559
|
|
3906
3923
|
},
|
|
3907
3924
|
"charactersCount": {
|
|
3908
|
-
"value":
|
|
3925
|
+
"value": 1683
|
|
3909
3926
|
},
|
|
3910
3927
|
"wordsCount": {
|
|
3911
|
-
"value":
|
|
3928
|
+
"value": 226
|
|
3912
3929
|
},
|
|
3913
3930
|
"sentencesCount": {
|
|
3914
|
-
"value":
|
|
3931
|
+
"value": 23
|
|
3915
3932
|
},
|
|
3916
3933
|
"linesCount": {
|
|
3917
|
-
"value":
|
|
3934
|
+
"value": 44
|
|
3918
3935
|
},
|
|
3919
3936
|
"paragraphsCount": {
|
|
3920
3937
|
"value": 1
|
|
3921
3938
|
},
|
|
3922
3939
|
"pagesCount": {
|
|
3923
|
-
"value":
|
|
3940
|
+
"value": 1
|
|
3924
3941
|
}
|
|
3925
3942
|
}
|
|
3926
3943
|
}
|