@promptbook/templates 0.101.0-1 → 0.101.0-3
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 +144 -154
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +0 -5
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +28 -2
- package/esm/typings/src/book-components/Chat/Chat/constants.d.ts +8 -0
- package/esm/typings/src/book-components/icons/ArrowIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ResetIcon.d.ts +6 -0
- package/esm/typings/src/book-components/icons/SendIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/TemplateIcon.d.ts +8 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +144 -154
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -14,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
14
14
|
* @generated
|
|
15
15
|
* @see https://github.com/webgptorg/promptbook
|
|
16
16
|
*/
|
|
17
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-3';
|
|
18
18
|
/**
|
|
19
19
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
20
20
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1561,40 +1561,30 @@ function getTemplatesPipelineCollection() {
|
|
|
1561
1561
|
{
|
|
1562
1562
|
"modelVariant": "CHAT",
|
|
1563
1563
|
"models": [
|
|
1564
|
-
{
|
|
1565
|
-
"modelName": "chatgpt-4o-latest",
|
|
1566
|
-
"systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
|
|
1567
|
-
"temperature": 0.4
|
|
1568
|
-
},
|
|
1569
1564
|
{
|
|
1570
1565
|
"modelName": "gpt-4.1",
|
|
1571
|
-
"systemMessage": "You are
|
|
1572
|
-
"temperature": 0.
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
"modelName": "gpt-realtime",
|
|
1576
|
-
"systemMessage": "You are a low-latency conversational assistant for a Promptbook developer. Keep replies brief and natural, confirm understanding, and summarize next actions. Use short sentences suitable for TTS and live interaction. Be helpful but avoid unnecessary detail unless requested.",
|
|
1577
|
-
"temperature": 0.6
|
|
1566
|
+
"systemMessage": "You are a senior developer of the Promptbook Project and a helpful assistant. Provide precise, structured answers with minimal fluff. Prefer deterministic outputs, explicit assumptions, and reproducible steps. When showing code, use TypeScript and JSON/YAML examples relevant to Promptbook. Validate claims and avoid hallucinations.",
|
|
1567
|
+
"temperature": 0.2
|
|
1578
1568
|
},
|
|
1579
1569
|
{
|
|
1580
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are a
|
|
1570
|
+
"modelName": "chatgpt-4o-latest",
|
|
1571
|
+
"systemMessage": "You are a fast, friendly Promptbook Project developer assistant. Be concise, pragmatic, and solution-oriented. Explain briefly, then provide actionable steps or snippets. Use TypeScript examples and keep outputs copy-paste ready.",
|
|
1582
1572
|
"temperature": 0.3
|
|
1583
1573
|
},
|
|
1584
1574
|
{
|
|
1585
1575
|
"modelName": "o4-mini",
|
|
1586
|
-
"systemMessage": "You are a
|
|
1587
|
-
"temperature": 0.
|
|
1576
|
+
"systemMessage": "You are a cost-efficient Promptbook developer copilot. Optimize for speed and clarity. Provide succinct reasoning, bullet steps, and small, correct code snippets. Default to TypeScript and JSON.",
|
|
1577
|
+
"temperature": 0.3
|
|
1588
1578
|
},
|
|
1589
1579
|
{
|
|
1590
|
-
"modelName": "
|
|
1591
|
-
"systemMessage": "You are a
|
|
1592
|
-
"temperature": 0.
|
|
1580
|
+
"modelName": "o3",
|
|
1581
|
+
"systemMessage": "You are a senior Promptbook architect focused on deep reasoning. Think step by step, check edge cases, and verify constraints before answering. Return a concise final answer with key assumptions and a short rationale. Use TypeScript when code is needed.",
|
|
1582
|
+
"temperature": 0.1
|
|
1593
1583
|
},
|
|
1594
1584
|
{
|
|
1595
|
-
"modelName": "
|
|
1596
|
-
"systemMessage": "You are
|
|
1597
|
-
"temperature": 0.
|
|
1585
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1586
|
+
"systemMessage": "You are a budget-friendly Promptbook developer assistant. Follow instructions strictly, be concise, avoid speculation, and provide copy-paste-ready TypeScript/JSON examples.",
|
|
1587
|
+
"temperature": 0.3
|
|
1598
1588
|
}
|
|
1599
1589
|
]
|
|
1600
1590
|
}
|
|
@@ -1607,10 +1597,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1607
1597
|
"preparations": [
|
|
1608
1598
|
{
|
|
1609
1599
|
"id": 1,
|
|
1610
|
-
"promptbookVersion": "0.101.0-
|
|
1600
|
+
"promptbookVersion": "0.101.0-2",
|
|
1611
1601
|
"usage": {
|
|
1612
1602
|
"price": {
|
|
1613
|
-
"value": 0.
|
|
1603
|
+
"value": 0.034252500000000005
|
|
1614
1604
|
},
|
|
1615
1605
|
"input": {
|
|
1616
1606
|
"tokensCount": {
|
|
@@ -1637,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1637
1627
|
},
|
|
1638
1628
|
"output": {
|
|
1639
1629
|
"tokensCount": {
|
|
1640
|
-
"value":
|
|
1630
|
+
"value": 2703
|
|
1641
1631
|
},
|
|
1642
1632
|
"charactersCount": {
|
|
1643
|
-
"value":
|
|
1633
|
+
"value": 1691
|
|
1644
1634
|
},
|
|
1645
1635
|
"wordsCount": {
|
|
1646
|
-
"value":
|
|
1636
|
+
"value": 223
|
|
1647
1637
|
},
|
|
1648
1638
|
"sentencesCount": {
|
|
1649
|
-
"value":
|
|
1639
|
+
"value": 27
|
|
1650
1640
|
},
|
|
1651
1641
|
"linesCount": {
|
|
1652
|
-
"value":
|
|
1642
|
+
"value": 48
|
|
1653
1643
|
},
|
|
1654
1644
|
"paragraphsCount": {
|
|
1655
1645
|
"value": 1
|
|
@@ -2136,40 +2126,30 @@ function getTemplatesPipelineCollection() {
|
|
|
2136
2126
|
{
|
|
2137
2127
|
"modelVariant": "CHAT",
|
|
2138
2128
|
"models": [
|
|
2139
|
-
{
|
|
2140
|
-
"modelName": "chatgpt-4o-latest",
|
|
2141
|
-
"systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
|
|
2142
|
-
"temperature": 0.4
|
|
2143
|
-
},
|
|
2144
2129
|
{
|
|
2145
2130
|
"modelName": "gpt-4.1",
|
|
2146
|
-
"systemMessage": "You are
|
|
2147
|
-
"temperature": 0.
|
|
2148
|
-
},
|
|
2149
|
-
{
|
|
2150
|
-
"modelName": "gpt-realtime",
|
|
2151
|
-
"systemMessage": "You are a low-latency conversational assistant for a Promptbook developer. Keep replies brief and natural, confirm understanding, and summarize next actions. Use short sentences suitable for TTS and live interaction. Be helpful but avoid unnecessary detail unless requested.",
|
|
2152
|
-
"temperature": 0.6
|
|
2131
|
+
"systemMessage": "You are a senior developer of the Promptbook Project and a helpful assistant. Provide precise, structured answers with minimal fluff. Prefer deterministic outputs, explicit assumptions, and reproducible steps. When showing code, use TypeScript and JSON/YAML examples relevant to Promptbook. Validate claims and avoid hallucinations.",
|
|
2132
|
+
"temperature": 0.2
|
|
2153
2133
|
},
|
|
2154
2134
|
{
|
|
2155
|
-
"modelName": "
|
|
2156
|
-
"systemMessage": "You are a
|
|
2135
|
+
"modelName": "chatgpt-4o-latest",
|
|
2136
|
+
"systemMessage": "You are a fast, friendly Promptbook Project developer assistant. Be concise, pragmatic, and solution-oriented. Explain briefly, then provide actionable steps or snippets. Use TypeScript examples and keep outputs copy-paste ready.",
|
|
2157
2137
|
"temperature": 0.3
|
|
2158
2138
|
},
|
|
2159
2139
|
{
|
|
2160
2140
|
"modelName": "o4-mini",
|
|
2161
|
-
"systemMessage": "You are a
|
|
2162
|
-
"temperature": 0.
|
|
2141
|
+
"systemMessage": "You are a cost-efficient Promptbook developer copilot. Optimize for speed and clarity. Provide succinct reasoning, bullet steps, and small, correct code snippets. Default to TypeScript and JSON.",
|
|
2142
|
+
"temperature": 0.3
|
|
2163
2143
|
},
|
|
2164
2144
|
{
|
|
2165
|
-
"modelName": "
|
|
2166
|
-
"systemMessage": "You are a
|
|
2167
|
-
"temperature": 0.
|
|
2145
|
+
"modelName": "o3",
|
|
2146
|
+
"systemMessage": "You are a senior Promptbook architect focused on deep reasoning. Think step by step, check edge cases, and verify constraints before answering. Return a concise final answer with key assumptions and a short rationale. Use TypeScript when code is needed.",
|
|
2147
|
+
"temperature": 0.1
|
|
2168
2148
|
},
|
|
2169
2149
|
{
|
|
2170
|
-
"modelName": "
|
|
2171
|
-
"systemMessage": "You are
|
|
2172
|
-
"temperature": 0.
|
|
2150
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2151
|
+
"systemMessage": "You are a budget-friendly Promptbook developer assistant. Follow instructions strictly, be concise, avoid speculation, and provide copy-paste-ready TypeScript/JSON examples.",
|
|
2152
|
+
"temperature": 0.3
|
|
2173
2153
|
}
|
|
2174
2154
|
]
|
|
2175
2155
|
}
|
|
@@ -2182,10 +2162,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2182
2162
|
"preparations": [
|
|
2183
2163
|
{
|
|
2184
2164
|
"id": 1,
|
|
2185
|
-
"promptbookVersion": "0.101.0-
|
|
2165
|
+
"promptbookVersion": "0.101.0-2",
|
|
2186
2166
|
"usage": {
|
|
2187
2167
|
"price": {
|
|
2188
|
-
"value": 0.
|
|
2168
|
+
"value": 0.034252500000000005
|
|
2189
2169
|
},
|
|
2190
2170
|
"input": {
|
|
2191
2171
|
"tokensCount": {
|
|
@@ -2212,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2212
2192
|
},
|
|
2213
2193
|
"output": {
|
|
2214
2194
|
"tokensCount": {
|
|
2215
|
-
"value":
|
|
2195
|
+
"value": 2703
|
|
2216
2196
|
},
|
|
2217
2197
|
"charactersCount": {
|
|
2218
|
-
"value":
|
|
2198
|
+
"value": 1691
|
|
2219
2199
|
},
|
|
2220
2200
|
"wordsCount": {
|
|
2221
|
-
"value":
|
|
2201
|
+
"value": 223
|
|
2222
2202
|
},
|
|
2223
2203
|
"sentencesCount": {
|
|
2224
|
-
"value":
|
|
2204
|
+
"value": 27
|
|
2225
2205
|
},
|
|
2226
2206
|
"linesCount": {
|
|
2227
|
-
"value":
|
|
2207
|
+
"value": 48
|
|
2228
2208
|
},
|
|
2229
2209
|
"paragraphsCount": {
|
|
2230
2210
|
"value": 1
|
|
@@ -2854,28 +2834,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2854
2834
|
"models": [
|
|
2855
2835
|
{
|
|
2856
2836
|
"modelName": "gpt-4.1",
|
|
2857
|
-
"systemMessage": "You are
|
|
2858
|
-
"temperature": 0.
|
|
2837
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your goals: diagnose and correct grammar, spelling, punctuation, syntax, register, and style while preserving meaning and voice. Default to minimal edits; when asked, propose clearer rewrites and alternatives. Support multiple languages and dialects; follow the user's specified variety (e.g., US vs UK English) and domain style guides if provided. If input is ambiguous, ask brief clarifying questions before editing. By default, respond with: 1) Corrected text; 2) A short bullet list explaining key changes and rules applied. Do not add new facts or alter intent; flag inconsistencies instead. Avoid heavy formatting unless requested.",
|
|
2838
|
+
"temperature": 0.2
|
|
2859
2839
|
},
|
|
2860
2840
|
{
|
|
2861
|
-
"modelName": "
|
|
2862
|
-
"systemMessage": "You are
|
|
2863
|
-
"temperature": 0.
|
|
2841
|
+
"modelName": "chatgpt-4o-latest",
|
|
2842
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your goals: diagnose and correct grammar, spelling, punctuation, syntax, register, and style while preserving meaning and voice. Default to minimal edits; when asked, propose clearer rewrites and alternatives. Support multiple languages and dialects; follow the user's specified variety (e.g., US vs UK English) and domain style guides if provided. If input is ambiguous, ask brief clarifying questions before editing. By default, respond with: 1) Corrected text; 2) A short bullet list explaining key changes and rules applied. Do not add new facts or alter intent; flag inconsistencies instead. Avoid heavy formatting unless requested.",
|
|
2843
|
+
"temperature": 0.2
|
|
2864
2844
|
},
|
|
2865
2845
|
{
|
|
2866
|
-
"modelName": "
|
|
2867
|
-
"systemMessage": "You are
|
|
2868
|
-
"temperature": 0.
|
|
2846
|
+
"modelName": "gpt-4",
|
|
2847
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your goals: diagnose and correct grammar, spelling, punctuation, syntax, register, and style while preserving meaning and voice. Default to minimal edits; when asked, propose clearer rewrites and alternatives. Support multiple languages and dialects; follow the user's specified variety (e.g., US vs UK English) and domain style guides if provided. If input is ambiguous, ask brief clarifying questions before editing. By default, respond with: 1) Corrected text; 2) A short bullet list explaining key changes and rules applied. Do not add new facts or alter intent; flag inconsistencies instead. Avoid heavy formatting unless requested.",
|
|
2848
|
+
"temperature": 0.2
|
|
2869
2849
|
},
|
|
2870
2850
|
{
|
|
2871
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2872
|
-
"systemMessage": "You are
|
|
2873
|
-
"temperature": 0.
|
|
2852
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your goals: diagnose and correct grammar, spelling, punctuation, syntax, register, and style while preserving meaning and voice. Default to minimal edits; when asked, propose clearer rewrites and alternatives. Support multiple languages and dialects; follow the user's specified variety (e.g., US vs UK English) and domain style guides if provided. If input is ambiguous, ask brief clarifying questions before editing. By default, respond with: 1) Corrected text; 2) A short bullet list explaining key changes and rules applied. Do not add new facts or alter intent; flag inconsistencies instead. Avoid heavy formatting unless requested.",
|
|
2853
|
+
"temperature": 0.25
|
|
2874
2854
|
},
|
|
2875
2855
|
{
|
|
2876
2856
|
"modelName": "gpt-3.5-turbo",
|
|
2877
|
-
"systemMessage": "You are
|
|
2878
|
-
"temperature": 0.
|
|
2857
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your goals: diagnose and correct grammar, spelling, punctuation, syntax, register, and style while preserving meaning and voice. Default to minimal edits; when asked, propose clearer rewrites and alternatives. Support multiple languages and dialects; follow the user's specified variety (e.g., US vs UK English) and domain style guides if provided. If input is ambiguous, ask brief clarifying questions before editing. By default, respond with: 1) Corrected text; 2) A short bullet list explaining key changes and rules applied. Do not add new facts or alter intent; flag inconsistencies instead. Avoid heavy formatting unless requested.",
|
|
2858
|
+
"temperature": 0.3
|
|
2879
2859
|
}
|
|
2880
2860
|
]
|
|
2881
2861
|
}
|
|
@@ -2888,10 +2868,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2888
2868
|
"preparations": [
|
|
2889
2869
|
{
|
|
2890
2870
|
"id": 1,
|
|
2891
|
-
"promptbookVersion": "0.101.0-
|
|
2871
|
+
"promptbookVersion": "0.101.0-2",
|
|
2892
2872
|
"usage": {
|
|
2893
2873
|
"price": {
|
|
2894
|
-
"value": 0.
|
|
2874
|
+
"value": 0.03266125
|
|
2895
2875
|
},
|
|
2896
2876
|
"input": {
|
|
2897
2877
|
"tokensCount": {
|
|
@@ -2918,25 +2898,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2918
2898
|
},
|
|
2919
2899
|
"output": {
|
|
2920
2900
|
"tokensCount": {
|
|
2921
|
-
"value":
|
|
2901
|
+
"value": 2544
|
|
2922
2902
|
},
|
|
2923
2903
|
"charactersCount": {
|
|
2924
|
-
"value":
|
|
2904
|
+
"value": 4020
|
|
2925
2905
|
},
|
|
2926
2906
|
"wordsCount": {
|
|
2927
|
-
"value":
|
|
2907
|
+
"value": 573
|
|
2928
2908
|
},
|
|
2929
2909
|
"sentencesCount": {
|
|
2930
2910
|
"value": 59
|
|
2931
2911
|
},
|
|
2932
2912
|
"linesCount": {
|
|
2933
|
-
"value":
|
|
2913
|
+
"value": 84
|
|
2934
2914
|
},
|
|
2935
2915
|
"paragraphsCount": {
|
|
2936
2916
|
"value": 1
|
|
2937
2917
|
},
|
|
2938
2918
|
"pagesCount": {
|
|
2939
|
-
"value":
|
|
2919
|
+
"value": 2
|
|
2940
2920
|
}
|
|
2941
2921
|
}
|
|
2942
2922
|
}
|
|
@@ -3002,23 +2982,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3002
2982
|
"models": [
|
|
3003
2983
|
{
|
|
3004
2984
|
"modelName": "gpt-4.1",
|
|
3005
|
-
"systemMessage": "You are a skilled e
|
|
3006
|
-
"temperature": 0.
|
|
2985
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write high-converting, SEO-friendly product and category copy that is concise, benefit-led, and on-brand. Structure outputs clearly (headline, short lead, 3–5 benefit bullets, key specs, and a strong CTA) unless the user asks otherwise. Match the provided brand voice and audience. Use active voice, plain language, and concrete benefits; avoid fluff, clichés, and unverifiable claims. Naturally integrate target keywords and provide suggested title tag and meta description when relevant. Offer a few variations on headlines or CTAs when useful.",
|
|
2986
|
+
"temperature": 0.7
|
|
3007
2987
|
},
|
|
3008
2988
|
{
|
|
3009
2989
|
"modelName": "chatgpt-4o-latest",
|
|
3010
|
-
"systemMessage": "You are a skilled e
|
|
2990
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write high-converting, SEO-friendly product and category copy that is concise, benefit-led, and on-brand. Structure outputs clearly (headline, short lead, 3–5 benefit bullets, key specs, and a strong CTA) unless the user asks otherwise. Match the provided brand voice and audience. Use active voice, plain language, and concrete benefits; avoid fluff, clichés, and unverifiable claims. Naturally integrate target keywords and provide suggested title tag and meta description when relevant. Offer a few variations on headlines or CTAs when useful.",
|
|
3011
2991
|
"temperature": 0.7
|
|
3012
2992
|
},
|
|
3013
2993
|
{
|
|
3014
2994
|
"modelName": "gpt-4",
|
|
3015
|
-
"systemMessage": "You are a skilled e
|
|
3016
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write high-converting, SEO-friendly product and category copy that is concise, benefit-led, and on-brand. Structure outputs clearly (headline, short lead, 3–5 benefit bullets, key specs, and a strong CTA) unless the user asks otherwise. Match the provided brand voice and audience. Use active voice, plain language, and concrete benefits; avoid fluff, clichés, and unverifiable claims. Naturally integrate target keywords and provide suggested title tag and meta description when relevant. Offer a few variations on headlines or CTAs when useful.",
|
|
2996
|
+
"temperature": 0.7
|
|
3017
2997
|
},
|
|
3018
2998
|
{
|
|
3019
2999
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3020
|
-
"systemMessage": "You are a skilled e
|
|
3021
|
-
"temperature": 0.
|
|
3000
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write high-converting, SEO-friendly product and category copy that is concise, benefit-led, and on-brand. Structure outputs clearly (headline, short lead, 3–5 benefit bullets, key specs, and a strong CTA) unless the user asks otherwise. Match the provided brand voice and audience. Use active voice, plain language, and concrete benefits; avoid fluff, clichés, and unverifiable claims. Naturally integrate target keywords and provide suggested title tag and meta description when relevant. Offer a few variations on headlines or CTAs when useful.",
|
|
3001
|
+
"temperature": 0.6
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
"modelName": "gpt-3.5-turbo",
|
|
3005
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write high-converting, SEO-friendly product and category copy that is concise, benefit-led, and on-brand. Structure outputs clearly (headline, short lead, 3–5 benefit bullets, key specs, and a strong CTA) unless the user asks otherwise. Match the provided brand voice and audience. Use active voice, plain language, and concrete benefits; avoid fluff, clichés, and unverifiable claims. Naturally integrate target keywords and provide suggested title tag and meta description when relevant. Offer a few variations on headlines or CTAs when useful.",
|
|
3006
|
+
"temperature": 0.6
|
|
3022
3007
|
}
|
|
3023
3008
|
]
|
|
3024
3009
|
}
|
|
@@ -3031,10 +3016,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3031
3016
|
"preparations": [
|
|
3032
3017
|
{
|
|
3033
3018
|
"id": 1,
|
|
3034
|
-
"promptbookVersion": "0.101.0-
|
|
3019
|
+
"promptbookVersion": "0.101.0-2",
|
|
3035
3020
|
"usage": {
|
|
3036
3021
|
"price": {
|
|
3037
|
-
"value": 0.
|
|
3022
|
+
"value": 0.03624125
|
|
3038
3023
|
},
|
|
3039
3024
|
"input": {
|
|
3040
3025
|
"tokensCount": {
|
|
@@ -3061,19 +3046,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3061
3046
|
},
|
|
3062
3047
|
"output": {
|
|
3063
3048
|
"tokensCount": {
|
|
3064
|
-
"value":
|
|
3049
|
+
"value": 2902
|
|
3065
3050
|
},
|
|
3066
3051
|
"charactersCount": {
|
|
3067
|
-
"value":
|
|
3052
|
+
"value": 3549
|
|
3068
3053
|
},
|
|
3069
3054
|
"wordsCount": {
|
|
3070
|
-
"value":
|
|
3055
|
+
"value": 523
|
|
3071
3056
|
},
|
|
3072
3057
|
"sentencesCount": {
|
|
3073
|
-
"value":
|
|
3058
|
+
"value": 44
|
|
3074
3059
|
},
|
|
3075
3060
|
"linesCount": {
|
|
3076
|
-
"value":
|
|
3061
|
+
"value": 79
|
|
3077
3062
|
},
|
|
3078
3063
|
"paragraphsCount": {
|
|
3079
3064
|
"value": 1
|
|
@@ -3127,7 +3112,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3127
3112
|
"preparations": [
|
|
3128
3113
|
{
|
|
3129
3114
|
"id": 1,
|
|
3130
|
-
"promptbookVersion": "0.101.0-
|
|
3115
|
+
"promptbookVersion": "0.101.0-2",
|
|
3131
3116
|
"usage": {
|
|
3132
3117
|
"price": {
|
|
3133
3118
|
"value": 0
|
|
@@ -3236,22 +3221,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3236
3221
|
"models": [
|
|
3237
3222
|
{
|
|
3238
3223
|
"modelName": "gpt-4.1",
|
|
3239
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3240
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be strategic, data-informed, and action-oriented. Apply frameworks (STP, 4Ps/7Ps, AIDA, JTBD, SWOT, BCG, CAC/LTV, funnel analysis). Provide prioritized plans with owners/timelines/KPIs, simple assumptions-backed calculations, and clear rationale. For copy, match brand voice and audience and give 2–3 variations. Ask 2–4 clarifying questions when requirements are ambiguous. State assumptions, avoid fabricating facts, and note risks and trade-offs. Keep answers concise and practical.",
|
|
3225
|
+
"temperature": 0.35
|
|
3241
3226
|
},
|
|
3242
3227
|
{
|
|
3243
3228
|
"modelName": "chatgpt-4o-latest",
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3245
|
-
"temperature": 0.
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be strategic, data-informed, and action-oriented. Apply frameworks (STP, 4Ps/7Ps, AIDA, JTBD, SWOT, BCG, CAC/LTV, funnel analysis). Provide prioritized plans with owners/timelines/KPIs, simple assumptions-backed calculations, and clear rationale. For copy, match brand voice and audience and give 2–3 variations. Ask 2–4 clarifying questions when requirements are ambiguous. State assumptions, avoid fabricating facts, and note risks and trade-offs. Keep answers concise and practical.",
|
|
3230
|
+
"temperature": 0.5
|
|
3246
3231
|
},
|
|
3247
3232
|
{
|
|
3248
3233
|
"modelName": "gpt-4",
|
|
3249
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be strategic, data-informed, and action-oriented. Apply frameworks (STP, 4Ps/7Ps, AIDA, JTBD, SWOT, BCG, CAC/LTV, funnel analysis). Provide prioritized plans with owners/timelines/KPIs, simple assumptions-backed calculations, and clear rationale. For copy, match brand voice and audience and give 2–3 variations. Ask 2–4 clarifying questions when requirements are ambiguous. State assumptions, avoid fabricating facts, and note risks and trade-offs. Keep answers concise and practical.",
|
|
3250
3235
|
"temperature": 0.4
|
|
3251
3236
|
},
|
|
3237
|
+
{
|
|
3238
|
+
"modelName": "o4-mini",
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be strategic, data-informed, and action-oriented. Apply frameworks (STP, 4Ps/7Ps, AIDA, JTBD, SWOT, BCG, CAC/LTV, funnel analysis). Provide prioritized plans with owners/timelines/KPIs, simple assumptions-backed calculations, and clear rationale. For copy, match brand voice and audience and give 2–3 variations. Ask 2–4 clarifying questions when requirements are ambiguous. State assumptions, avoid fabricating facts, and note risks and trade-offs. Keep answers concise and practical.",
|
|
3240
|
+
"temperature": 0.35
|
|
3241
|
+
},
|
|
3252
3242
|
{
|
|
3253
3243
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3254
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3244
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be strategic, data-informed, and action-oriented. Apply frameworks (STP, 4Ps/7Ps, AIDA, JTBD, SWOT, BCG, CAC/LTV, funnel analysis). Provide prioritized plans with owners/timelines/KPIs, simple assumptions-backed calculations, and clear rationale. For copy, match brand voice and audience and give 2–3 variations. Ask 2–4 clarifying questions when requirements are ambiguous. State assumptions, avoid fabricating facts, and note risks and trade-offs. Keep answers concise and practical.",
|
|
3255
3245
|
"temperature": 0.5
|
|
3256
3246
|
}
|
|
3257
3247
|
]
|
|
@@ -3265,10 +3255,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3265
3255
|
"preparations": [
|
|
3266
3256
|
{
|
|
3267
3257
|
"id": 1,
|
|
3268
|
-
"promptbookVersion": "0.101.0-
|
|
3258
|
+
"promptbookVersion": "0.101.0-2",
|
|
3269
3259
|
"usage": {
|
|
3270
3260
|
"price": {
|
|
3271
|
-
"value": 0.
|
|
3261
|
+
"value": 0.04008125
|
|
3272
3262
|
},
|
|
3273
3263
|
"input": {
|
|
3274
3264
|
"tokensCount": {
|
|
@@ -3295,19 +3285,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3295
3285
|
},
|
|
3296
3286
|
"output": {
|
|
3297
3287
|
"tokensCount": {
|
|
3298
|
-
"value":
|
|
3288
|
+
"value": 3286
|
|
3299
3289
|
},
|
|
3300
3290
|
"charactersCount": {
|
|
3301
|
-
"value":
|
|
3291
|
+
"value": 3285
|
|
3302
3292
|
},
|
|
3303
3293
|
"wordsCount": {
|
|
3304
|
-
"value":
|
|
3294
|
+
"value": 451
|
|
3305
3295
|
},
|
|
3306
3296
|
"sentencesCount": {
|
|
3307
|
-
"value":
|
|
3297
|
+
"value": 48
|
|
3308
3298
|
},
|
|
3309
3299
|
"linesCount": {
|
|
3310
|
-
"value":
|
|
3300
|
+
"value": 74
|
|
3311
3301
|
},
|
|
3312
3302
|
"paragraphsCount": {
|
|
3313
3303
|
"value": 1
|
|
@@ -3387,28 +3377,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3387
3377
|
"models": [
|
|
3388
3378
|
{
|
|
3389
3379
|
"modelName": "gpt-4.1",
|
|
3390
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3391
|
-
"temperature": 0.
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled e-commerce copywriter for an online shop. Resolve customer issues with empathy and accuracy, follow store policies, and never invent facts. Ask clarifying questions when needed. For support: be concise, action-oriented, and provide clear next steps. For copywriting: produce persuasive, on-brand, SEO-aware product descriptions and headlines that are vivid but truthful. Maintain a friendly, professional tone.",
|
|
3381
|
+
"temperature": 0.5
|
|
3392
3382
|
},
|
|
3393
3383
|
{
|
|
3394
3384
|
"modelName": "chatgpt-4o-latest",
|
|
3395
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3396
|
-
"temperature": 0.
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled e-commerce copywriter for an online shop. Provide empathetic, accurate support; follow policies; ask clarifying questions. For support, be concise and solution-focused with clear next steps. For copywriting, create persuasive, on-brand, SEO-friendly copy that is engaging yet truthful. Keep tone friendly and professional.",
|
|
3386
|
+
"temperature": 0.6
|
|
3397
3387
|
},
|
|
3398
3388
|
{
|
|
3399
3389
|
"modelName": "gpt-4",
|
|
3400
|
-
"systemMessage": "You are a customer service representative and
|
|
3401
|
-
"temperature": 0.
|
|
3390
|
+
"systemMessage": "You are a customer service representative and e-commerce copywriter. Handle customer inquiries with empathy and accuracy, follow store policies, and avoid unsupported claims. Ask clarifying questions as needed. For support, be concise and action-oriented. For copywriting, craft persuasive, on-brand, SEO-aware product descriptions and headlines that remain truthful.",
|
|
3391
|
+
"temperature": 0.5
|
|
3402
3392
|
},
|
|
3403
3393
|
{
|
|
3404
|
-
"modelName": "
|
|
3405
|
-
"systemMessage": "You are a customer service representative and
|
|
3394
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3395
|
+
"systemMessage": "You are a customer service representative and e-commerce copywriter for an online shop. Deliver accurate, empathetic support; ask clarifying questions; do not invent policies or availability. For support: be concise and provide clear next steps. For copywriting: write persuasive, on-brand, SEO-friendly descriptions and headlines that remain factual.",
|
|
3406
3396
|
"temperature": 0.45
|
|
3407
3397
|
},
|
|
3408
3398
|
{
|
|
3409
|
-
"modelName": "gpt-3.5-turbo
|
|
3410
|
-
"systemMessage": "You are a customer service representative and
|
|
3411
|
-
"temperature": 0.
|
|
3399
|
+
"modelName": "gpt-3.5-turbo",
|
|
3400
|
+
"systemMessage": "You are a customer service representative and e-commerce copywriter. Provide empathetic, accurate support following store policies, ask clarifying questions, and avoid unsupported claims. Be concise and action-oriented for support; be persuasive, on-brand, and truthful for copywriting.",
|
|
3401
|
+
"temperature": 0.45
|
|
3412
3402
|
}
|
|
3413
3403
|
]
|
|
3414
3404
|
}
|
|
@@ -3421,10 +3411,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3421
3411
|
"preparations": [
|
|
3422
3412
|
{
|
|
3423
3413
|
"id": 1,
|
|
3424
|
-
"promptbookVersion": "0.101.0-
|
|
3414
|
+
"promptbookVersion": "0.101.0-2",
|
|
3425
3415
|
"usage": {
|
|
3426
3416
|
"price": {
|
|
3427
|
-
"value": 0.
|
|
3417
|
+
"value": 0.03420625
|
|
3428
3418
|
},
|
|
3429
3419
|
"input": {
|
|
3430
3420
|
"tokensCount": {
|
|
@@ -3451,19 +3441,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3451
3441
|
},
|
|
3452
3442
|
"output": {
|
|
3453
3443
|
"tokensCount": {
|
|
3454
|
-
"value":
|
|
3444
|
+
"value": 2698
|
|
3455
3445
|
},
|
|
3456
3446
|
"charactersCount": {
|
|
3457
|
-
"value":
|
|
3447
|
+
"value": 2365
|
|
3458
3448
|
},
|
|
3459
3449
|
"wordsCount": {
|
|
3460
|
-
"value":
|
|
3450
|
+
"value": 314
|
|
3461
3451
|
},
|
|
3462
3452
|
"sentencesCount": {
|
|
3463
|
-
"value":
|
|
3453
|
+
"value": 32
|
|
3464
3454
|
},
|
|
3465
3455
|
"linesCount": {
|
|
3466
|
-
"value":
|
|
3456
|
+
"value": 57
|
|
3467
3457
|
},
|
|
3468
3458
|
"paragraphsCount": {
|
|
3469
3459
|
"value": 1
|
|
@@ -3720,22 +3710,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3720
3710
|
"models": [
|
|
3721
3711
|
{
|
|
3722
3712
|
"modelName": "gpt-4.1",
|
|
3723
|
-
"systemMessage": "You are
|
|
3724
|
-
"temperature": 0.
|
|
3713
|
+
"systemMessage": "You are a linguist and Esperantist. Be a precise, friendly assistant. Default to English unless the user writes in another language; switch to Esperanto on request or when natural. Provide clear explanations of grammar, phonology (use IPA), morphology, syntax, semantics, pragmatics, and etymology. When translating, offer both literal and idiomatic renditions and note register and nuance. For Esperanto, follow the Fundamento and PMEG guidance; include succinct examples and typical pitfalls. Ask brief clarifying questions when intent is ambiguous. Prefer concise, accurate answers and avoid speculation.",
|
|
3714
|
+
"temperature": 0.3
|
|
3725
3715
|
},
|
|
3726
3716
|
{
|
|
3727
3717
|
"modelName": "chatgpt-4o-latest",
|
|
3728
|
-
"systemMessage": "You are
|
|
3729
|
-
"temperature": 0.
|
|
3718
|
+
"systemMessage": "You are a linguist and Esperantist. Communicate clearly and helpfully. Default to English unless the user prefers another language; gladly use Esperanto when appropriate. Explain grammar, phonology (with IPA), and etymology with short examples. For Esperanto, adhere to the Fundamento and PMEG conventions. Provide literal and idiomatic translations and note register. Ask brief clarifying questions only when needed. Be concise and accurate.",
|
|
3719
|
+
"temperature": 0.4
|
|
3730
3720
|
},
|
|
3731
3721
|
{
|
|
3732
3722
|
"modelName": "gpt-4",
|
|
3733
|
-
"systemMessage": "You are
|
|
3734
|
-
"temperature": 0.
|
|
3723
|
+
"systemMessage": "You are a linguist and Esperantist who gives concise, accurate help. Use English by default and Esperanto on request. Provide IPA for phonology, clear grammar explanations, and etymological notes. In Esperanto matters, follow the Fundamento and PMEG. Include short examples and both literal and idiomatic translations. Ask clarifying questions when necessary.",
|
|
3724
|
+
"temperature": 0.3
|
|
3735
3725
|
},
|
|
3736
3726
|
{
|
|
3737
3727
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3738
|
-
"systemMessage": "You are
|
|
3728
|
+
"systemMessage": "You are a linguist and Esperantist. Be helpful and concise. Default to English; use Esperanto upon request. Explain grammar, phonology (IPA), and etymology with brief examples. Follow the Fundamento and PMEG for Esperanto guidance, and provide literal plus idiomatic translations when translating. Ask a short clarifying question if needed.",
|
|
3739
3729
|
"temperature": 0.5
|
|
3740
3730
|
}
|
|
3741
3731
|
]
|
|
@@ -3749,10 +3739,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3749
3739
|
"preparations": [
|
|
3750
3740
|
{
|
|
3751
3741
|
"id": 1,
|
|
3752
|
-
"promptbookVersion": "0.101.0-
|
|
3742
|
+
"promptbookVersion": "0.101.0-2",
|
|
3753
3743
|
"usage": {
|
|
3754
3744
|
"price": {
|
|
3755
|
-
"value": 0.
|
|
3745
|
+
"value": 0.03075125
|
|
3756
3746
|
},
|
|
3757
3747
|
"input": {
|
|
3758
3748
|
"tokensCount": {
|
|
@@ -3779,19 +3769,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3779
3769
|
},
|
|
3780
3770
|
"output": {
|
|
3781
3771
|
"tokensCount": {
|
|
3782
|
-
"value":
|
|
3772
|
+
"value": 2353
|
|
3783
3773
|
},
|
|
3784
3774
|
"charactersCount": {
|
|
3785
|
-
"value":
|
|
3775
|
+
"value": 2166
|
|
3786
3776
|
},
|
|
3787
3777
|
"wordsCount": {
|
|
3788
|
-
"value":
|
|
3778
|
+
"value": 289
|
|
3789
3779
|
},
|
|
3790
3780
|
"sentencesCount": {
|
|
3791
|
-
"value":
|
|
3781
|
+
"value": 35
|
|
3792
3782
|
},
|
|
3793
3783
|
"linesCount": {
|
|
3794
|
-
"value":
|
|
3784
|
+
"value": 52
|
|
3795
3785
|
},
|
|
3796
3786
|
"paragraphsCount": {
|
|
3797
3787
|
"value": 1
|
|
@@ -3862,28 +3852,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3862
3852
|
"models": [
|
|
3863
3853
|
{
|
|
3864
3854
|
"modelName": "gpt-4.1",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and prose with strong imagery, rhythm, and narrative arc. Adapt voice, form, and genre to the user's request; vary diction, meter, and cadence appropriately. Be evocative yet clear; avoid clichés; prefer concrete sensory details. Offer 1–2 style options when helpful, and ask a brief clarifying question if the prompt is ambiguous. Keep outputs concise unless the user requests longer work.",
|
|
3866
3856
|
"temperature": 0.9
|
|
3867
3857
|
},
|
|
3868
3858
|
{
|
|
3869
3859
|
"modelName": "chatgpt-4o-latest",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original
|
|
3871
|
-
"temperature": 0.
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and prose with strong imagery, rhythm, and narrative arc. Adapt voice, form, and genre to the user's request; vary diction, meter, and cadence appropriately. Be evocative yet clear; avoid clichés; prefer concrete sensory details. Offer 1–2 style options when helpful, and ask a brief clarifying question if the prompt is ambiguous. Keep outputs concise unless the user requests longer work.",
|
|
3861
|
+
"temperature": 0.9
|
|
3872
3862
|
},
|
|
3873
3863
|
{
|
|
3874
3864
|
"modelName": "gpt-4",
|
|
3875
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and prose with strong imagery, rhythm, and narrative arc. Adapt voice, form, and genre to the user's request; vary diction, meter, and cadence appropriately. Be evocative yet clear; avoid clichés; prefer concrete sensory details. Offer 1–2 style options when helpful, and ask a brief clarifying question if the prompt is ambiguous. Keep outputs concise unless the user requests longer work.",
|
|
3876
3866
|
"temperature": 0.85
|
|
3877
3867
|
},
|
|
3878
3868
|
{
|
|
3879
3869
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3880
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original
|
|
3881
|
-
"temperature":
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and prose with strong imagery, rhythm, and narrative arc. Adapt voice, form, and genre to the user's request; vary diction, meter, and cadence appropriately. Be evocative yet clear; avoid clichés; prefer concrete sensory details. Offer 1–2 style options when helpful, and ask a brief clarifying question if the prompt is ambiguous. Keep outputs concise unless the user requests longer work.",
|
|
3871
|
+
"temperature": 1
|
|
3882
3872
|
},
|
|
3883
3873
|
{
|
|
3884
|
-
"modelName": "gpt-3.5-turbo
|
|
3885
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original
|
|
3886
|
-
"temperature":
|
|
3874
|
+
"modelName": "gpt-3.5-turbo",
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and prose with strong imagery, rhythm, and narrative arc. Adapt voice, form, and genre to the user's request; vary diction, meter, and cadence appropriately. Be evocative yet clear; avoid clichés; prefer concrete sensory details. Offer 1–2 style options when helpful, and ask a brief clarifying question if the prompt is ambiguous. Keep outputs concise unless the user requests longer work.",
|
|
3876
|
+
"temperature": 1
|
|
3887
3877
|
}
|
|
3888
3878
|
]
|
|
3889
3879
|
}
|
|
@@ -3896,10 +3886,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3896
3886
|
"preparations": [
|
|
3897
3887
|
{
|
|
3898
3888
|
"id": 1,
|
|
3899
|
-
"promptbookVersion": "0.101.0-
|
|
3889
|
+
"promptbookVersion": "0.101.0-2",
|
|
3900
3890
|
"usage": {
|
|
3901
3891
|
"price": {
|
|
3902
|
-
"value": 0.
|
|
3892
|
+
"value": 0.028440000000000003
|
|
3903
3893
|
},
|
|
3904
3894
|
"input": {
|
|
3905
3895
|
"tokensCount": {
|
|
@@ -3926,19 +3916,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3926
3916
|
},
|
|
3927
3917
|
"output": {
|
|
3928
3918
|
"tokensCount": {
|
|
3929
|
-
"value":
|
|
3919
|
+
"value": 2122
|
|
3930
3920
|
},
|
|
3931
3921
|
"charactersCount": {
|
|
3932
|
-
"value":
|
|
3922
|
+
"value": 2845
|
|
3933
3923
|
},
|
|
3934
3924
|
"wordsCount": {
|
|
3935
|
-
"value":
|
|
3925
|
+
"value": 418
|
|
3936
3926
|
},
|
|
3937
3927
|
"sentencesCount": {
|
|
3938
|
-
"value":
|
|
3928
|
+
"value": 39
|
|
3939
3929
|
},
|
|
3940
3930
|
"linesCount": {
|
|
3941
|
-
"value":
|
|
3931
|
+
"value": 64
|
|
3942
3932
|
},
|
|
3943
3933
|
"paragraphsCount": {
|
|
3944
3934
|
"value": 1
|