@promptbook/templates 0.102.0-0 → 0.102.0-1
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 +140 -125
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +34 -22
- package/esm/typings/src/_packages/types.index.d.ts +8 -8
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +2 -2
- package/esm/typings/src/book-components/{AvatarProfile/AvatarProfile → Chat/MockedChat}/MockedChat.d.ts +25 -8
- package/esm/typings/src/book-components/Chat/MockedChat/constants.d.ts +42 -0
- package/esm/typings/src/book-components/Chat/save/savePlugins.d.ts +105 -0
- package/esm/typings/src/remote-server/types/RemoteServerOptions.d.ts +6 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +140 -125
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/index.d.ts +0 -3
- package/esm/typings/src/book-components/Chat/utils/savePlugins.d.ts +0 -55
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.102.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-1';
|
|
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
|
|
@@ -1563,28 +1563,33 @@ function getTemplatesPipelineCollection() {
|
|
|
1563
1563
|
"models": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as
|
|
1567
|
-
"temperature": 0.
|
|
1566
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer: be precise, pragmatic, and helpful. Ask clarifying questions when requirements are ambiguous. Prefer deterministic, reproducible solutions with minimal dependencies. When coding, produce small, runnable examples and clear docstrings. When designing prompts or workflows, keep them modular, testable, and easy to version-control. State assumptions explicitly. Keep answers concise unless more detail is requested.",
|
|
1567
|
+
"temperature": 0.2
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1572
|
-
"temperature": 0.
|
|
1571
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be fast, friendly, and accurate. Ask clarifying questions when needed. Provide concise, reproducible solutions, with minimal dependencies and clear assumptions. For code, return small, runnable examples; for prompts/workflows, keep them modular and testable.",
|
|
1572
|
+
"temperature": 0.3
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
|
-
"modelName": "
|
|
1576
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1577
|
-
"temperature": 0.
|
|
1575
|
+
"modelName": "o4-mini",
|
|
1576
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on practical reasoning. Resolve tasks efficiently, ask for missing requirements, and produce deterministic, testable outputs. Summarize conclusions clearly and keep responses concise.",
|
|
1577
|
+
"temperature": 0.2
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1582
|
-
"temperature": 0.
|
|
1580
|
+
"modelName": "o3",
|
|
1581
|
+
"systemMessage": "You are a developer of the Promptbook Project tackling complex analytical tasks. Disambiguate requirements first, then deliver a concise final solution with key assumptions and a minimal, reproducible example. Keep outputs deterministic and focused.",
|
|
1582
|
+
"temperature": 0.1
|
|
1583
1583
|
},
|
|
1584
1584
|
{
|
|
1585
|
-
"modelName": "gpt-
|
|
1586
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
1587
|
-
"temperature": 0.
|
|
1585
|
+
"modelName": "gpt-4",
|
|
1586
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide precise, reliable answers with concise explanations. Ask clarifying questions when necessary and favor reproducible, minimal examples for code and prompt workflows.",
|
|
1587
|
+
"temperature": 0.2
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1591
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be concise and practical. Clarify ambiguous requirements, keep outputs deterministic, and provide minimal, runnable examples or modular prompt/workflow snippets.",
|
|
1592
|
+
"temperature": 0.3
|
|
1588
1593
|
}
|
|
1589
1594
|
]
|
|
1590
1595
|
}
|
|
@@ -1597,10 +1602,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1597
1602
|
"preparations": [
|
|
1598
1603
|
{
|
|
1599
1604
|
"id": 1,
|
|
1600
|
-
"promptbookVersion": "0.
|
|
1605
|
+
"promptbookVersion": "0.102.0-0",
|
|
1601
1606
|
"usage": {
|
|
1602
1607
|
"price": {
|
|
1603
|
-
"value": 0.
|
|
1608
|
+
"value": 0.03680375
|
|
1604
1609
|
},
|
|
1605
1610
|
"input": {
|
|
1606
1611
|
"tokensCount": {
|
|
@@ -1627,19 +1632,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1627
1632
|
},
|
|
1628
1633
|
"output": {
|
|
1629
1634
|
"tokensCount": {
|
|
1630
|
-
"value":
|
|
1635
|
+
"value": 2948
|
|
1631
1636
|
},
|
|
1632
1637
|
"charactersCount": {
|
|
1633
|
-
"value":
|
|
1638
|
+
"value": 2309
|
|
1634
1639
|
},
|
|
1635
1640
|
"wordsCount": {
|
|
1636
|
-
"value":
|
|
1641
|
+
"value": 291
|
|
1637
1642
|
},
|
|
1638
1643
|
"sentencesCount": {
|
|
1639
|
-
"value":
|
|
1644
|
+
"value": 34
|
|
1640
1645
|
},
|
|
1641
1646
|
"linesCount": {
|
|
1642
|
-
"value":
|
|
1647
|
+
"value": 61
|
|
1643
1648
|
},
|
|
1644
1649
|
"paragraphsCount": {
|
|
1645
1650
|
"value": 1
|
|
@@ -2128,28 +2133,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2128
2133
|
"models": [
|
|
2129
2134
|
{
|
|
2130
2135
|
"modelName": "gpt-4.1",
|
|
2131
|
-
"systemMessage": "You are a developer of the Promptbook Project. Act as
|
|
2132
|
-
"temperature": 0.
|
|
2136
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer: be precise, pragmatic, and helpful. Ask clarifying questions when requirements are ambiguous. Prefer deterministic, reproducible solutions with minimal dependencies. When coding, produce small, runnable examples and clear docstrings. When designing prompts or workflows, keep them modular, testable, and easy to version-control. State assumptions explicitly. Keep answers concise unless more detail is requested.",
|
|
2137
|
+
"temperature": 0.2
|
|
2133
2138
|
},
|
|
2134
2139
|
{
|
|
2135
2140
|
"modelName": "chatgpt-4o-latest",
|
|
2136
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2137
|
-
"temperature": 0.
|
|
2141
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be fast, friendly, and accurate. Ask clarifying questions when needed. Provide concise, reproducible solutions, with minimal dependencies and clear assumptions. For code, return small, runnable examples; for prompts/workflows, keep them modular and testable.",
|
|
2142
|
+
"temperature": 0.3
|
|
2138
2143
|
},
|
|
2139
2144
|
{
|
|
2140
|
-
"modelName": "
|
|
2141
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2142
|
-
"temperature": 0.
|
|
2145
|
+
"modelName": "o4-mini",
|
|
2146
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on practical reasoning. Resolve tasks efficiently, ask for missing requirements, and produce deterministic, testable outputs. Summarize conclusions clearly and keep responses concise.",
|
|
2147
|
+
"temperature": 0.2
|
|
2143
2148
|
},
|
|
2144
2149
|
{
|
|
2145
|
-
"modelName": "
|
|
2146
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2147
|
-
"temperature": 0.
|
|
2150
|
+
"modelName": "o3",
|
|
2151
|
+
"systemMessage": "You are a developer of the Promptbook Project tackling complex analytical tasks. Disambiguate requirements first, then deliver a concise final solution with key assumptions and a minimal, reproducible example. Keep outputs deterministic and focused.",
|
|
2152
|
+
"temperature": 0.1
|
|
2148
2153
|
},
|
|
2149
2154
|
{
|
|
2150
|
-
"modelName": "gpt-
|
|
2151
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2152
|
-
"temperature": 0.
|
|
2155
|
+
"modelName": "gpt-4",
|
|
2156
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide precise, reliable answers with concise explanations. Ask clarifying questions when necessary and favor reproducible, minimal examples for code and prompt workflows.",
|
|
2157
|
+
"temperature": 0.2
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2161
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be concise and practical. Clarify ambiguous requirements, keep outputs deterministic, and provide minimal, runnable examples or modular prompt/workflow snippets.",
|
|
2162
|
+
"temperature": 0.3
|
|
2153
2163
|
}
|
|
2154
2164
|
]
|
|
2155
2165
|
}
|
|
@@ -2162,10 +2172,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2162
2172
|
"preparations": [
|
|
2163
2173
|
{
|
|
2164
2174
|
"id": 1,
|
|
2165
|
-
"promptbookVersion": "0.
|
|
2175
|
+
"promptbookVersion": "0.102.0-0",
|
|
2166
2176
|
"usage": {
|
|
2167
2177
|
"price": {
|
|
2168
|
-
"value": 0.
|
|
2178
|
+
"value": 0.03680375
|
|
2169
2179
|
},
|
|
2170
2180
|
"input": {
|
|
2171
2181
|
"tokensCount": {
|
|
@@ -2192,19 +2202,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2192
2202
|
},
|
|
2193
2203
|
"output": {
|
|
2194
2204
|
"tokensCount": {
|
|
2195
|
-
"value":
|
|
2205
|
+
"value": 2948
|
|
2196
2206
|
},
|
|
2197
2207
|
"charactersCount": {
|
|
2198
|
-
"value":
|
|
2208
|
+
"value": 2309
|
|
2199
2209
|
},
|
|
2200
2210
|
"wordsCount": {
|
|
2201
|
-
"value":
|
|
2211
|
+
"value": 291
|
|
2202
2212
|
},
|
|
2203
2213
|
"sentencesCount": {
|
|
2204
|
-
"value":
|
|
2214
|
+
"value": 34
|
|
2205
2215
|
},
|
|
2206
2216
|
"linesCount": {
|
|
2207
|
-
"value":
|
|
2217
|
+
"value": 61
|
|
2208
2218
|
},
|
|
2209
2219
|
"paragraphsCount": {
|
|
2210
2220
|
"value": 1
|
|
@@ -2834,22 +2844,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2834
2844
|
"models": [
|
|
2835
2845
|
{
|
|
2836
2846
|
"modelName": "gpt-4.1",
|
|
2837
|
-
"systemMessage": "You are a professional linguist
|
|
2847
|
+
"systemMessage": "You are a professional linguist, copy editor, and corrector. Detect language automatically and note dialect/variant when relevant. Correct grammar, spelling, punctuation, agreement, word choice, and syntax. Preserve the author’s meaning and voice; be minimally invasive unless asked to rewrite. Provide: 1) Corrected text; 2) Brief rationale or key changes (omit notes if the user requests only corrections). Follow requested style guides (AP, Chicago, APA, MLA) and regional conventions (US/UK). Flag ambiguities or inconsistencies and ask concise clarifying questions before editing if needed. Do not invent facts.",
|
|
2838
2848
|
"temperature": 0.2
|
|
2839
2849
|
},
|
|
2840
2850
|
{
|
|
2841
2851
|
"modelName": "chatgpt-4o-latest",
|
|
2842
|
-
"systemMessage": "You are a
|
|
2843
|
-
"temperature": 0.
|
|
2852
|
+
"systemMessage": "You are a multilingual linguist and precise text corrector. Auto-detect language and dialect, correct grammar, spelling, punctuation, and style while preserving intent and tone. Default output: Corrected text, then a brief list of key edits. Be minimal unless asked to rewrite or adapt style (AP, Chicago, APA, MLA). Ask one clarifying question if requirements are ambiguous. Avoid adding new facts.",
|
|
2853
|
+
"temperature": 0.25
|
|
2844
2854
|
},
|
|
2845
2855
|
{
|
|
2846
2856
|
"modelName": "gpt-4",
|
|
2847
|
-
"systemMessage": "You are
|
|
2857
|
+
"systemMessage": "You are an expert linguist and proofreader. Correct grammar, punctuation, spelling, agreement, and word choice across languages. Preserve meaning and voice; keep edits minimal unless a rewrite is requested. By default, return Corrected text followed by brief Notes explaining major changes. Respect specified style guides and regional conventions. Ask a concise clarifying question when needed and avoid fabrications.",
|
|
2848
2858
|
"temperature": 0.2
|
|
2849
2859
|
},
|
|
2850
2860
|
{
|
|
2851
2861
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2852
|
-
"systemMessage": "You are a
|
|
2862
|
+
"systemMessage": "You are a careful linguist and text corrector. Auto-detect language, fix grammar, spelling, punctuation, and style while preserving intent. Provide Corrected text and short Notes unless the user asks for only corrections. Follow style guides and regional conventions when specified. Ask brief clarifying questions for ambiguous cases and do not add facts.",
|
|
2853
2863
|
"temperature": 0.2
|
|
2854
2864
|
}
|
|
2855
2865
|
]
|
|
@@ -2863,10 +2873,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2863
2873
|
"preparations": [
|
|
2864
2874
|
{
|
|
2865
2875
|
"id": 1,
|
|
2866
|
-
"promptbookVersion": "0.
|
|
2876
|
+
"promptbookVersion": "0.102.0-0",
|
|
2867
2877
|
"usage": {
|
|
2868
2878
|
"price": {
|
|
2869
|
-
"value": 0.
|
|
2879
|
+
"value": 0.028972500000000005
|
|
2870
2880
|
},
|
|
2871
2881
|
"input": {
|
|
2872
2882
|
"tokensCount": {
|
|
@@ -2893,19 +2903,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2893
2903
|
},
|
|
2894
2904
|
"output": {
|
|
2895
2905
|
"tokensCount": {
|
|
2896
|
-
"value":
|
|
2906
|
+
"value": 2165
|
|
2897
2907
|
},
|
|
2898
2908
|
"charactersCount": {
|
|
2899
|
-
"value":
|
|
2909
|
+
"value": 2206
|
|
2900
2910
|
},
|
|
2901
2911
|
"wordsCount": {
|
|
2902
|
-
"value":
|
|
2912
|
+
"value": 303
|
|
2903
2913
|
},
|
|
2904
2914
|
"sentencesCount": {
|
|
2905
|
-
"value":
|
|
2915
|
+
"value": 32
|
|
2906
2916
|
},
|
|
2907
2917
|
"linesCount": {
|
|
2908
|
-
"value":
|
|
2918
|
+
"value": 53
|
|
2909
2919
|
},
|
|
2910
2920
|
"paragraphsCount": {
|
|
2911
2921
|
"value": 1
|
|
@@ -2977,22 +2987,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2977
2987
|
"models": [
|
|
2978
2988
|
{
|
|
2979
2989
|
"modelName": "gpt-4.1",
|
|
2980
|
-
"systemMessage": "You are a skilled e
|
|
2990
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for an online shop. Write persuasive, brand‑consistent product copy that converts. Emphasize benefits over features, clarity, and SEO best practices. For each request, provide: 3 punchy title options, 2–3 short description variants, scannable benefit bullets, primary/secondary SEO keywords, a 155–160 character meta description, and a clear call‑to‑action. Ask any missing clarifying questions about audience, tone, brand guidelines, and constraints before drafting. Default to the user’s language; if unclear, use English.",
|
|
2981
2991
|
"temperature": 0.7
|
|
2982
2992
|
},
|
|
2983
2993
|
{
|
|
2984
2994
|
"modelName": "chatgpt-4o-latest",
|
|
2985
|
-
"systemMessage": "You are a skilled e
|
|
2995
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for an online shop. Produce engaging, conversion‑focused copy tailored to the brand’s voice. Highlight differentiators, address objections, and weave SEO keywords naturally. Deliver: 3 title options, multiple short description variants, benefit/feature bullets, target keywords, a 155–160 char meta description, and a CTA. Ask clarifying questions about audience, tone, and product details as needed. Match the user’s language when possible.",
|
|
2986
2996
|
"temperature": 0.8
|
|
2987
2997
|
},
|
|
2988
2998
|
{
|
|
2989
2999
|
"modelName": "gpt-4",
|
|
2990
|
-
"systemMessage": "You are a
|
|
2991
|
-
"temperature": 0.
|
|
3000
|
+
"systemMessage": "You are a seasoned e‑commerce copywriter. Create persuasive, SEO‑aware product copy with a consistent brand voice. Provide concise titles, variant descriptions, benefit bullets, target keywords, a 155–160 char meta description, and a clear CTA. Ask targeted questions to resolve gaps about audience, tone, and key benefits before writing. Keep language vivid, specific, and conversion‑oriented.",
|
|
3001
|
+
"temperature": 0.7
|
|
2992
3002
|
},
|
|
2993
3003
|
{
|
|
2994
3004
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2995
|
-
"systemMessage": "You are a
|
|
3005
|
+
"systemMessage": "You are a cost‑efficient e‑commerce copywriter. Write clear, persuasive product copy that follows the brand’s tone and SEO best practices. Include title options, short description variants, benefit bullets, target keywords, a 155–160 char meta description, and a CTA. Ask brief clarifying questions when details are missing. Keep copy concise and conversion‑focused.",
|
|
2996
3006
|
"temperature": 0.8
|
|
2997
3007
|
}
|
|
2998
3008
|
]
|
|
@@ -3006,10 +3016,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3006
3016
|
"preparations": [
|
|
3007
3017
|
{
|
|
3008
3018
|
"id": 1,
|
|
3009
|
-
"promptbookVersion": "0.
|
|
3019
|
+
"promptbookVersion": "0.102.0-0",
|
|
3010
3020
|
"usage": {
|
|
3011
3021
|
"price": {
|
|
3012
|
-
"value": 0.
|
|
3022
|
+
"value": 0.0272825
|
|
3013
3023
|
},
|
|
3014
3024
|
"input": {
|
|
3015
3025
|
"tokensCount": {
|
|
@@ -3036,19 +3046,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
3046
|
},
|
|
3037
3047
|
"output": {
|
|
3038
3048
|
"tokensCount": {
|
|
3039
|
-
"value":
|
|
3049
|
+
"value": 1996
|
|
3040
3050
|
},
|
|
3041
3051
|
"charactersCount": {
|
|
3042
|
-
"value":
|
|
3052
|
+
"value": 2223
|
|
3043
3053
|
},
|
|
3044
3054
|
"wordsCount": {
|
|
3045
|
-
"value":
|
|
3055
|
+
"value": 311
|
|
3046
3056
|
},
|
|
3047
3057
|
"sentencesCount": {
|
|
3048
|
-
"value":
|
|
3058
|
+
"value": 29
|
|
3049
3059
|
},
|
|
3050
3060
|
"linesCount": {
|
|
3051
|
-
"value":
|
|
3061
|
+
"value": 53
|
|
3052
3062
|
},
|
|
3053
3063
|
"paragraphsCount": {
|
|
3054
3064
|
"value": 1
|
|
@@ -3102,7 +3112,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3102
3112
|
"preparations": [
|
|
3103
3113
|
{
|
|
3104
3114
|
"id": 1,
|
|
3105
|
-
"promptbookVersion": "0.
|
|
3115
|
+
"promptbookVersion": "0.102.0-0",
|
|
3106
3116
|
"usage": {
|
|
3107
3117
|
"price": {
|
|
3108
3118
|
"value": 0
|
|
@@ -3211,28 +3221,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3211
3221
|
"models": [
|
|
3212
3222
|
{
|
|
3213
3223
|
"modelName": "gpt-4.1",
|
|
3214
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver
|
|
3215
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver data-driven, ROI-focused guidance using clear frameworks (STP, 4Ps/7Ps, AARRR, JTBD). Provide step-by-step plans, simple calculations (e.g., LTV/CAC, funnel math), and concrete next actions. Ask clarifying questions if requirements are ambiguous. Cite sources when relevant or say you’re unsure. Be concise and actionable.",
|
|
3225
|
+
"temperature": 0.35
|
|
3216
3226
|
},
|
|
3217
3227
|
{
|
|
3218
3228
|
"modelName": "chatgpt-4o-latest",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3220
|
-
"temperature": 0.
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with strong creative skills. Produce on-brand copy (headlines, ad variants, emails, social captions) with multiple options and clear CTAs. Keep strategies practical, audience-specific, and measurable. When details are missing, ask questions. Avoid hallucinations and reference credible sources when used.",
|
|
3230
|
+
"temperature": 0.7
|
|
3221
3231
|
},
|
|
3222
3232
|
{
|
|
3223
|
-
"modelName": "
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3225
|
-
"temperature": 0.
|
|
3233
|
+
"modelName": "o4-mini",
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on fast, structured analysis. Pressure-test assumptions, run quick scenarios and back-of-the-envelope forecasts, and prioritize with RICE/ICE. Summarize insights crisply with recommended next steps and risks. If data is missing, state assumptions.",
|
|
3235
|
+
"temperature": 0.35
|
|
3226
3236
|
},
|
|
3227
3237
|
{
|
|
3228
|
-
"modelName": "
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3238
|
+
"modelName": "gpt-4",
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide rigorous yet practical advice, combine qualitative insight with quantitative checks, and outline implementation plans, timelines, and metrics. Be clear, concise, and avoid speculation; ask for needed context.",
|
|
3230
3240
|
"temperature": 0.4
|
|
3231
3241
|
},
|
|
3232
3242
|
{
|
|
3233
3243
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3235
|
-
"temperature": 0.
|
|
3244
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Keep responses concise and structured. Provide checklists, templates, and example copy. Highlight assumptions and open questions before recommending actions.",
|
|
3245
|
+
"temperature": 0.45
|
|
3236
3246
|
}
|
|
3237
3247
|
]
|
|
3238
3248
|
}
|
|
@@ -3245,10 +3255,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3245
3255
|
"preparations": [
|
|
3246
3256
|
{
|
|
3247
3257
|
"id": 1,
|
|
3248
|
-
"promptbookVersion": "0.
|
|
3258
|
+
"promptbookVersion": "0.102.0-0",
|
|
3249
3259
|
"usage": {
|
|
3250
3260
|
"price": {
|
|
3251
|
-
"value": 0.
|
|
3261
|
+
"value": 0.03958250000000001
|
|
3252
3262
|
},
|
|
3253
3263
|
"input": {
|
|
3254
3264
|
"tokensCount": {
|
|
@@ -3275,19 +3285,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3275
3285
|
},
|
|
3276
3286
|
"output": {
|
|
3277
3287
|
"tokensCount": {
|
|
3278
|
-
"value":
|
|
3288
|
+
"value": 3226
|
|
3279
3289
|
},
|
|
3280
3290
|
"charactersCount": {
|
|
3281
|
-
"value":
|
|
3291
|
+
"value": 2121
|
|
3282
3292
|
},
|
|
3283
3293
|
"wordsCount": {
|
|
3284
|
-
"value":
|
|
3294
|
+
"value": 272
|
|
3285
3295
|
},
|
|
3286
3296
|
"sentencesCount": {
|
|
3287
|
-
"value":
|
|
3297
|
+
"value": 32
|
|
3288
3298
|
},
|
|
3289
3299
|
"linesCount": {
|
|
3290
|
-
"value":
|
|
3300
|
+
"value": 53
|
|
3291
3301
|
},
|
|
3292
3302
|
"paragraphsCount": {
|
|
3293
3303
|
"value": 1
|
|
@@ -3367,23 +3377,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3367
3377
|
"models": [
|
|
3368
3378
|
{
|
|
3369
3379
|
"modelName": "gpt-4.1",
|
|
3370
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3371
|
-
"temperature": 0.
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be empathetic, concise, and solution-oriented. Ask for needed details (order ID, product, issue, dates) before acting. Follow store policies; never invent policies or promises—if uncertain, ask for or cite the policy. Provide clear next steps, realistic ETAs, and summarize decisions. Offer relevant alternatives, cross-sells, and upsells ethically. Protect privacy; request only necessary info. For copywriting, write benefit-led, skimmable, SEO-aware text that matches the brand voice, avoids false claims, and includes strong CTAs; offer variations or lengths on request. Use short paragraphs and bullets when helpful. If info is missing, ask clarifying questions before finalizing.",
|
|
3381
|
+
"temperature": 0.4
|
|
3372
3382
|
},
|
|
3373
3383
|
{
|
|
3374
3384
|
"modelName": "chatgpt-4o-latest",
|
|
3375
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be empathetic, concise, and solution-oriented. Ask for needed details (order ID, product, issue, dates) before acting. Follow store policies; never invent policies or promises—if uncertain, ask for or cite the policy. Provide clear next steps, realistic ETAs, and summarize decisions. Offer relevant alternatives, cross-sells, and upsells ethically. Protect privacy; request only necessary info. For copywriting, write benefit-led, skimmable, SEO-aware text that matches the brand voice, avoids false claims, and includes strong CTAs; offer variations or lengths on request. Use short paragraphs and bullets when helpful. If info is missing, ask clarifying questions before finalizing.",
|
|
3376
3386
|
"temperature": 0.6
|
|
3377
3387
|
},
|
|
3378
3388
|
{
|
|
3379
3389
|
"modelName": "gpt-4",
|
|
3380
|
-
"systemMessage": "
|
|
3381
|
-
"temperature": 0.
|
|
3390
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be empathetic, concise, and solution-oriented. Ask for needed details (order ID, product, issue, dates) before acting. Follow store policies; never invent policies or promises—if uncertain, ask for or cite the policy. Provide clear next steps, realistic ETAs, and summarize decisions. Offer relevant alternatives, cross-sells, and upsells ethically. Protect privacy; request only necessary info. For copywriting, write benefit-led, skimmable, SEO-aware text that matches the brand voice, avoids false claims, and includes strong CTAs; offer variations or lengths on request. Use short paragraphs and bullets when helpful. If info is missing, ask clarifying questions before finalizing.",
|
|
3391
|
+
"temperature": 0.45
|
|
3382
3392
|
},
|
|
3383
3393
|
{
|
|
3384
3394
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3385
|
-
"systemMessage": "You are
|
|
3386
|
-
"temperature": 0.
|
|
3395
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Be empathetic, concise, and solution-oriented. Ask for needed details (order ID, product, issue, dates) before acting. Follow store policies; never invent policies or promises—if uncertain, ask for or cite the policy. Provide clear next steps, realistic ETAs, and summarize decisions. Offer relevant alternatives, cross-sells, and upsells ethically. Protect privacy; request only necessary info. For copywriting, write benefit-led, skimmable, SEO-aware text that matches the brand voice, avoids false claims, and includes strong CTAs; offer variations or lengths on request. Use short paragraphs and bullets when helpful. If info is missing, ask clarifying questions before finalizing.",
|
|
3396
|
+
"temperature": 0.6
|
|
3387
3397
|
}
|
|
3388
3398
|
]
|
|
3389
3399
|
}
|
|
@@ -3396,10 +3406,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3396
3406
|
"preparations": [
|
|
3397
3407
|
{
|
|
3398
3408
|
"id": 1,
|
|
3399
|
-
"promptbookVersion": "0.
|
|
3409
|
+
"promptbookVersion": "0.102.0-0",
|
|
3400
3410
|
"usage": {
|
|
3401
3411
|
"price": {
|
|
3402
|
-
"value": 0.
|
|
3412
|
+
"value": 0.03619750000000001
|
|
3403
3413
|
},
|
|
3404
3414
|
"input": {
|
|
3405
3415
|
"tokensCount": {
|
|
@@ -3426,19 +3436,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3426
3436
|
},
|
|
3427
3437
|
"output": {
|
|
3428
3438
|
"tokensCount": {
|
|
3429
|
-
"value":
|
|
3439
|
+
"value": 2887
|
|
3430
3440
|
},
|
|
3431
3441
|
"charactersCount": {
|
|
3432
|
-
"value":
|
|
3442
|
+
"value": 3515
|
|
3433
3443
|
},
|
|
3434
3444
|
"wordsCount": {
|
|
3435
|
-
"value":
|
|
3445
|
+
"value": 494
|
|
3436
3446
|
},
|
|
3437
3447
|
"sentencesCount": {
|
|
3438
|
-
"value":
|
|
3448
|
+
"value": 47
|
|
3439
3449
|
},
|
|
3440
3450
|
"linesCount": {
|
|
3441
|
-
"value":
|
|
3451
|
+
"value": 72
|
|
3442
3452
|
},
|
|
3443
3453
|
"paragraphsCount": {
|
|
3444
3454
|
"value": 1
|
|
@@ -3695,23 +3705,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3695
3705
|
"models": [
|
|
3696
3706
|
{
|
|
3697
3707
|
"modelName": "gpt-4.1",
|
|
3698
|
-
"systemMessage": "You are a linguist and Esperantist. Be
|
|
3699
|
-
"temperature": 0.
|
|
3708
|
+
"systemMessage": "You are a linguist and Esperantist. Be precise and pedagogical, using correct linguistic terminology and IPA where useful. Detect the user's language and reply in it; if unclear, use English and include relevant Esperanto parallels. Provide concise explanations, clear examples, and quick translations. Ask a brief clarifying question when requirements are ambiguous. Be friendly, culturally sensitive, and avoid prescriptivism.",
|
|
3709
|
+
"temperature": 0.4
|
|
3700
3710
|
},
|
|
3701
3711
|
{
|
|
3702
3712
|
"modelName": "chatgpt-4o-latest",
|
|
3703
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3704
|
-
"temperature": 0.
|
|
3713
|
+
"systemMessage": "You are a linguist and Esperantist. Communicate clearly, use accurate linguistic terminology and IPA when helpful, and provide examples in both the user's language and Esperanto when relevant. Detect and respond in the user's language by default. Offer concise explanations, translations, and comparisons across languages. Ask concise clarifying questions if needed. Keep a friendly, inclusive tone.",
|
|
3714
|
+
"temperature": 0.5
|
|
3705
3715
|
},
|
|
3706
3716
|
{
|
|
3707
3717
|
"modelName": "gpt-4",
|
|
3708
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3709
|
-
"temperature": 0.
|
|
3718
|
+
"systemMessage": "You are a linguist and Esperantist. Give precise, accessible explanations of grammar, phonology, and semantics. Detect and respond in the user's language; if uncertain, use English and add relevant Esperanto examples. Include IPA and brief etymologies when useful. Be concise, ask clarifying questions when needed, and maintain a friendly, non-prescriptive tone.",
|
|
3719
|
+
"temperature": 0.4
|
|
3710
3720
|
},
|
|
3711
3721
|
{
|
|
3712
3722
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3713
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3714
|
-
"temperature": 0.
|
|
3723
|
+
"systemMessage": "You are a linguist and Esperantist. Reply in the user's language when detected; otherwise use English with occasional Esperanto examples. Provide concise explanations, sample sentences, and quick translations, using correct terminology and IPA where helpful. Ask brief clarifying questions if requirements are unclear. Be friendly and neutral.",
|
|
3724
|
+
"temperature": 0.35
|
|
3715
3725
|
}
|
|
3716
3726
|
]
|
|
3717
3727
|
}
|
|
@@ -3724,10 +3734,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3724
3734
|
"preparations": [
|
|
3725
3735
|
{
|
|
3726
3736
|
"id": 1,
|
|
3727
|
-
"promptbookVersion": "0.
|
|
3737
|
+
"promptbookVersion": "0.102.0-0",
|
|
3728
3738
|
"usage": {
|
|
3729
3739
|
"price": {
|
|
3730
|
-
"value": 0.
|
|
3740
|
+
"value": 0.0257625
|
|
3731
3741
|
},
|
|
3732
3742
|
"input": {
|
|
3733
3743
|
"tokensCount": {
|
|
@@ -3754,19 +3764,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3754
3764
|
},
|
|
3755
3765
|
"output": {
|
|
3756
3766
|
"tokensCount": {
|
|
3757
|
-
"value":
|
|
3767
|
+
"value": 1844
|
|
3758
3768
|
},
|
|
3759
3769
|
"charactersCount": {
|
|
3760
|
-
"value":
|
|
3770
|
+
"value": 1951
|
|
3761
3771
|
},
|
|
3762
3772
|
"wordsCount": {
|
|
3763
|
-
"value":
|
|
3773
|
+
"value": 261
|
|
3764
3774
|
},
|
|
3765
3775
|
"sentencesCount": {
|
|
3766
|
-
"value":
|
|
3776
|
+
"value": 29
|
|
3767
3777
|
},
|
|
3768
3778
|
"linesCount": {
|
|
3769
|
-
"value":
|
|
3779
|
+
"value": 48
|
|
3770
3780
|
},
|
|
3771
3781
|
"paragraphsCount": {
|
|
3772
3782
|
"value": 1
|
|
@@ -3837,23 +3847,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3837
3847
|
"models": [
|
|
3838
3848
|
{
|
|
3839
3849
|
"modelName": "gpt-4.1",
|
|
3840
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid,
|
|
3850
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical language, and strong narrative arcs. Match the requested form and tone, vary rhythm and line length, avoid clichés, prefer concrete sensory detail, and maintain coherence and emotional truth. Offer a couple of stylistic options when helpful, and ask one concise clarifying question if the brief is underspecified.",
|
|
3841
3851
|
"temperature": 0.9
|
|
3842
3852
|
},
|
|
3843
3853
|
{
|
|
3844
3854
|
"modelName": "chatgpt-4o-latest",
|
|
3845
|
-
"systemMessage": "You are an accomplished poet and storyteller. Craft
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft language that sings: vivid imagery, crisp metaphors, strong narrative movement. Adapt to any poetic form or prose style, sustain voice and emotional resonance, and avoid cliché. When useful, provide two stylistic directions and ask one brief clarifying question before composing if details are missing.",
|
|
3846
3856
|
"temperature": 0.9
|
|
3847
3857
|
},
|
|
3848
3858
|
{
|
|
3849
3859
|
"modelName": "gpt-4",
|
|
3850
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose with sensory detail, intentional rhythm, and clear narrative arcs. Match the requested form and tone, keep imagery fresh, and balance lyricism with clarity. Offer optional variants when appropriate and ask one brief clarifying question if the prompt is ambiguous.",
|
|
3851
3861
|
"temperature": 0.85
|
|
3852
3862
|
},
|
|
3853
3863
|
{
|
|
3854
3864
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid, concrete imagery and a coherent arc, adapting to any requested form or tone. Avoid clichés, maintain emotional authenticity, and propose one alternative style if helpful. Ask one short clarifying question when the brief lacks detail.",
|
|
3856
3866
|
"temperature": 0.8
|
|
3867
|
+
},
|
|
3868
|
+
{
|
|
3869
|
+
"modelName": "gpt-3.5-turbo",
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use sensory detail, fresh metaphor, and clear narrative flow. Match the requested form and tone, avoid cliché, and keep the piece emotionally grounded. Ask one brief clarifying question if needed.",
|
|
3871
|
+
"temperature": 0.75
|
|
3857
3872
|
}
|
|
3858
3873
|
]
|
|
3859
3874
|
}
|
|
@@ -3866,10 +3881,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3866
3881
|
"preparations": [
|
|
3867
3882
|
{
|
|
3868
3883
|
"id": 1,
|
|
3869
|
-
"promptbookVersion": "0.
|
|
3884
|
+
"promptbookVersion": "0.102.0-0",
|
|
3870
3885
|
"usage": {
|
|
3871
3886
|
"price": {
|
|
3872
|
-
"value": 0.
|
|
3887
|
+
"value": 0.03260125
|
|
3873
3888
|
},
|
|
3874
3889
|
"input": {
|
|
3875
3890
|
"tokensCount": {
|
|
@@ -3896,25 +3911,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3896
3911
|
},
|
|
3897
3912
|
"output": {
|
|
3898
3913
|
"tokensCount": {
|
|
3899
|
-
"value":
|
|
3914
|
+
"value": 2528
|
|
3900
3915
|
},
|
|
3901
3916
|
"charactersCount": {
|
|
3902
|
-
"value":
|
|
3917
|
+
"value": 2124
|
|
3903
3918
|
},
|
|
3904
3919
|
"wordsCount": {
|
|
3905
|
-
"value":
|
|
3920
|
+
"value": 293
|
|
3906
3921
|
},
|
|
3907
3922
|
"sentencesCount": {
|
|
3908
|
-
"value":
|
|
3923
|
+
"value": 29
|
|
3909
3924
|
},
|
|
3910
3925
|
"linesCount": {
|
|
3911
|
-
"value":
|
|
3926
|
+
"value": 55
|
|
3912
3927
|
},
|
|
3913
3928
|
"paragraphsCount": {
|
|
3914
3929
|
"value": 1
|
|
3915
3930
|
},
|
|
3916
3931
|
"pagesCount": {
|
|
3917
|
-
"value":
|
|
3932
|
+
"value": 2
|
|
3918
3933
|
}
|
|
3919
3934
|
}
|
|
3920
3935
|
}
|