@promptbook/templates 0.101.0-16 → 0.101.0-18
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 +167 -145
- 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-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +2 -2
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/hooks/index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/hooks/useChatAutoScroll.d.ts +41 -0
- package/esm/typings/src/book-components/Chat/hooks/useSendMessageToLlmChat.d.ts +44 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +167 -145
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +0 -17
- package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +0 -12
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-18';
|
|
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,23 +1571,28 @@
|
|
|
1571
1571
|
"models": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are
|
|
1575
|
-
"temperature": 0.
|
|
1574
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a pragmatic, senior AI engineer: design, debug, and optimize prompt workflows, templates, and tooling. Be precise, reproducible, and concise. Prefer stepwise reasoning internally, but return clean, actionable answers with minimal fluff. When useful, provide Promptbook-friendly snippets and test cases.",
|
|
1575
|
+
"temperature": 0.3
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a
|
|
1580
|
-
"temperature": 0.
|
|
1579
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be a fast, helpful assistant for day-to-day development, documentation, and UX copy. Keep answers clear and practical, include short examples, and favor Promptbook-compatible patterns.",
|
|
1580
|
+
"temperature": 0.5
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
"modelName": "o4-mini",
|
|
1584
|
-
"systemMessage": "You are
|
|
1584
|
+
"systemMessage": "You are a developer of the Promptbook Project specializing in complex reasoning, evaluation, and planning. Solve tough debugging, prompt evaluation, and architecture tasks with rigorous, testable solutions. Share final answers succinctly.",
|
|
1585
1585
|
"temperature": 0.2
|
|
1586
1586
|
},
|
|
1587
|
+
{
|
|
1588
|
+
"modelName": "gpt-4",
|
|
1589
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide accurate, implementation-focused guidance with stable, production-ready patterns. Be concise and cite assumptions.",
|
|
1590
|
+
"temperature": 0.3
|
|
1591
|
+
},
|
|
1587
1592
|
{
|
|
1588
1593
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1589
|
-
"systemMessage": "You are a
|
|
1590
|
-
"temperature": 0.
|
|
1594
|
+
"systemMessage": "You are a developer of the Promptbook Project. Offer cost-efficient, clear guidance for routine tasks, summaries, and boilerplate generation. Keep outputs brief and structured.",
|
|
1595
|
+
"temperature": 0.4
|
|
1591
1596
|
}
|
|
1592
1597
|
]
|
|
1593
1598
|
}
|
|
@@ -1600,10 +1605,10 @@
|
|
|
1600
1605
|
"preparations": [
|
|
1601
1606
|
{
|
|
1602
1607
|
"id": 1,
|
|
1603
|
-
"promptbookVersion": "0.101.0-
|
|
1608
|
+
"promptbookVersion": "0.101.0-17",
|
|
1604
1609
|
"usage": {
|
|
1605
1610
|
"price": {
|
|
1606
|
-
"value": 0.
|
|
1611
|
+
"value": 0.03307375
|
|
1607
1612
|
},
|
|
1608
1613
|
"input": {
|
|
1609
1614
|
"tokensCount": {
|
|
@@ -1630,25 +1635,25 @@
|
|
|
1630
1635
|
},
|
|
1631
1636
|
"output": {
|
|
1632
1637
|
"tokensCount": {
|
|
1633
|
-
"value":
|
|
1638
|
+
"value": 2575
|
|
1634
1639
|
},
|
|
1635
1640
|
"charactersCount": {
|
|
1636
|
-
"value":
|
|
1641
|
+
"value": 1683
|
|
1637
1642
|
},
|
|
1638
1643
|
"wordsCount": {
|
|
1639
|
-
"value":
|
|
1644
|
+
"value": 215
|
|
1640
1645
|
},
|
|
1641
1646
|
"sentencesCount": {
|
|
1642
1647
|
"value": 25
|
|
1643
1648
|
},
|
|
1644
1649
|
"linesCount": {
|
|
1645
|
-
"value":
|
|
1650
|
+
"value": 49
|
|
1646
1651
|
},
|
|
1647
1652
|
"paragraphsCount": {
|
|
1648
1653
|
"value": 1
|
|
1649
1654
|
},
|
|
1650
1655
|
"pagesCount": {
|
|
1651
|
-
"value":
|
|
1656
|
+
"value": 2
|
|
1652
1657
|
}
|
|
1653
1658
|
}
|
|
1654
1659
|
}
|
|
@@ -2131,23 +2136,28 @@
|
|
|
2131
2136
|
"models": [
|
|
2132
2137
|
{
|
|
2133
2138
|
"modelName": "gpt-4.1",
|
|
2134
|
-
"systemMessage": "You are
|
|
2135
|
-
"temperature": 0.
|
|
2139
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a pragmatic, senior AI engineer: design, debug, and optimize prompt workflows, templates, and tooling. Be precise, reproducible, and concise. Prefer stepwise reasoning internally, but return clean, actionable answers with minimal fluff. When useful, provide Promptbook-friendly snippets and test cases.",
|
|
2140
|
+
"temperature": 0.3
|
|
2136
2141
|
},
|
|
2137
2142
|
{
|
|
2138
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2139
|
-
"systemMessage": "You are a
|
|
2140
|
-
"temperature": 0.
|
|
2144
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be a fast, helpful assistant for day-to-day development, documentation, and UX copy. Keep answers clear and practical, include short examples, and favor Promptbook-compatible patterns.",
|
|
2145
|
+
"temperature": 0.5
|
|
2141
2146
|
},
|
|
2142
2147
|
{
|
|
2143
2148
|
"modelName": "o4-mini",
|
|
2144
|
-
"systemMessage": "You are
|
|
2149
|
+
"systemMessage": "You are a developer of the Promptbook Project specializing in complex reasoning, evaluation, and planning. Solve tough debugging, prompt evaluation, and architecture tasks with rigorous, testable solutions. Share final answers succinctly.",
|
|
2145
2150
|
"temperature": 0.2
|
|
2146
2151
|
},
|
|
2152
|
+
{
|
|
2153
|
+
"modelName": "gpt-4",
|
|
2154
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide accurate, implementation-focused guidance with stable, production-ready patterns. Be concise and cite assumptions.",
|
|
2155
|
+
"temperature": 0.3
|
|
2156
|
+
},
|
|
2147
2157
|
{
|
|
2148
2158
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2149
|
-
"systemMessage": "You are a
|
|
2150
|
-
"temperature": 0.
|
|
2159
|
+
"systemMessage": "You are a developer of the Promptbook Project. Offer cost-efficient, clear guidance for routine tasks, summaries, and boilerplate generation. Keep outputs brief and structured.",
|
|
2160
|
+
"temperature": 0.4
|
|
2151
2161
|
}
|
|
2152
2162
|
]
|
|
2153
2163
|
}
|
|
@@ -2160,10 +2170,10 @@
|
|
|
2160
2170
|
"preparations": [
|
|
2161
2171
|
{
|
|
2162
2172
|
"id": 1,
|
|
2163
|
-
"promptbookVersion": "0.101.0-
|
|
2173
|
+
"promptbookVersion": "0.101.0-17",
|
|
2164
2174
|
"usage": {
|
|
2165
2175
|
"price": {
|
|
2166
|
-
"value": 0.
|
|
2176
|
+
"value": 0.03307375
|
|
2167
2177
|
},
|
|
2168
2178
|
"input": {
|
|
2169
2179
|
"tokensCount": {
|
|
@@ -2190,25 +2200,25 @@
|
|
|
2190
2200
|
},
|
|
2191
2201
|
"output": {
|
|
2192
2202
|
"tokensCount": {
|
|
2193
|
-
"value":
|
|
2203
|
+
"value": 2575
|
|
2194
2204
|
},
|
|
2195
2205
|
"charactersCount": {
|
|
2196
|
-
"value":
|
|
2206
|
+
"value": 1683
|
|
2197
2207
|
},
|
|
2198
2208
|
"wordsCount": {
|
|
2199
|
-
"value":
|
|
2209
|
+
"value": 215
|
|
2200
2210
|
},
|
|
2201
2211
|
"sentencesCount": {
|
|
2202
2212
|
"value": 25
|
|
2203
2213
|
},
|
|
2204
2214
|
"linesCount": {
|
|
2205
|
-
"value":
|
|
2215
|
+
"value": 49
|
|
2206
2216
|
},
|
|
2207
2217
|
"paragraphsCount": {
|
|
2208
2218
|
"value": 1
|
|
2209
2219
|
},
|
|
2210
2220
|
"pagesCount": {
|
|
2211
|
-
"value":
|
|
2221
|
+
"value": 2
|
|
2212
2222
|
}
|
|
2213
2223
|
}
|
|
2214
2224
|
}
|
|
@@ -2829,7 +2839,28 @@
|
|
|
2829
2839
|
"modelsRequirements": [
|
|
2830
2840
|
{
|
|
2831
2841
|
"modelVariant": "CHAT",
|
|
2832
|
-
"
|
|
2842
|
+
"models": [
|
|
2843
|
+
{
|
|
2844
|
+
"modelName": "gpt-4.1",
|
|
2845
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Goals: (1) Correct grammar, spelling, punctuation, syntax, and word choice. (2) Improve clarity, flow, and tone while preserving meaning and voice. (3) Follow the user's dialect and style guide (e.g., US vs. UK) and register. (4) When the user says 'correct' or 'polish', return only the corrected text. (5) When the user asks 'explain', add concise rule-based notes and minimal examples. (6) Offer brief alternatives when helpful; never invent content.",
|
|
2846
|
+
"temperature": 0.2
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
"modelName": "gpt-4",
|
|
2850
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Goals: (1) Correct grammar, spelling, punctuation, syntax, and word choice. (2) Improve clarity, flow, and tone while preserving meaning and voice. (3) Follow the user's dialect and style guide (e.g., US vs. UK) and register. (4) When the user says 'correct' or 'polish', return only the corrected text. (5) When the user asks 'explain', add concise rule-based notes and minimal examples. (6) Offer brief alternatives when helpful; never invent content.",
|
|
2851
|
+
"temperature": 0.2
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
"modelName": "chatgpt-4o-latest",
|
|
2855
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Goals: (1) Correct grammar, spelling, punctuation, syntax, and word choice. (2) Improve clarity, flow, and tone while preserving meaning and voice. (3) Follow the user's dialect and style guide (e.g., US vs. UK) and register. (4) When the user says 'correct' or 'polish', return only the corrected text. (5) When the user asks 'explain', add concise rule-based notes and minimal examples. (6) Offer brief alternatives when helpful; never invent content.",
|
|
2856
|
+
"temperature": 0.25
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2860
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Goals: (1) Correct grammar, spelling, punctuation, syntax, and word choice. (2) Improve clarity, flow, and tone while preserving meaning and voice. (3) Follow the user's dialect and style guide (e.g., US vs. UK) and register. (4) When the user says 'correct' or 'polish', return only the corrected text. (5) When the user asks 'explain', add concise rule-based notes and minimal examples. (6) Offer brief alternatives when helpful; never invent content.",
|
|
2861
|
+
"temperature": 0.2
|
|
2862
|
+
}
|
|
2863
|
+
]
|
|
2833
2864
|
}
|
|
2834
2865
|
],
|
|
2835
2866
|
"preparationIds": [
|
|
@@ -2840,10 +2871,10 @@
|
|
|
2840
2871
|
"preparations": [
|
|
2841
2872
|
{
|
|
2842
2873
|
"id": 1,
|
|
2843
|
-
"promptbookVersion": "0.101.0-
|
|
2874
|
+
"promptbookVersion": "0.101.0-17",
|
|
2844
2875
|
"usage": {
|
|
2845
2876
|
"price": {
|
|
2846
|
-
"value": 0.
|
|
2877
|
+
"value": 0.0316325
|
|
2847
2878
|
},
|
|
2848
2879
|
"input": {
|
|
2849
2880
|
"tokensCount": {
|
|
@@ -2870,25 +2901,25 @@
|
|
|
2870
2901
|
},
|
|
2871
2902
|
"output": {
|
|
2872
2903
|
"tokensCount": {
|
|
2873
|
-
"value":
|
|
2904
|
+
"value": 2431
|
|
2874
2905
|
},
|
|
2875
2906
|
"charactersCount": {
|
|
2876
|
-
"value":
|
|
2907
|
+
"value": 2483
|
|
2877
2908
|
},
|
|
2878
2909
|
"wordsCount": {
|
|
2879
|
-
"value":
|
|
2910
|
+
"value": 370
|
|
2880
2911
|
},
|
|
2881
2912
|
"sentencesCount": {
|
|
2882
|
-
"value":
|
|
2913
|
+
"value": 47
|
|
2883
2914
|
},
|
|
2884
2915
|
"linesCount": {
|
|
2885
|
-
"value":
|
|
2916
|
+
"value": 56
|
|
2886
2917
|
},
|
|
2887
2918
|
"paragraphsCount": {
|
|
2888
2919
|
"value": 1
|
|
2889
2920
|
},
|
|
2890
2921
|
"pagesCount": {
|
|
2891
|
-
"value":
|
|
2922
|
+
"value": 2
|
|
2892
2923
|
}
|
|
2893
2924
|
}
|
|
2894
2925
|
}
|
|
@@ -2951,28 +2982,7 @@
|
|
|
2951
2982
|
"modelsRequirements": [
|
|
2952
2983
|
{
|
|
2953
2984
|
"modelVariant": "CHAT",
|
|
2954
|
-
"
|
|
2955
|
-
{
|
|
2956
|
-
"modelName": "gpt-4.1",
|
|
2957
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Your goals: increase conversions, maintain brand voice, and improve SEO. Before writing, ask up to 3 concise clarifying questions if requirements are ambiguous (audience, tone, brand voice, target keywords, compliance limits, locale). Produce clear, benefit-led copy with strong CTAs, scannable structure (headlines, short paragraphs, bullet points), and accurate, non-misleading claims. Deliverables may include product titles, feature/benefit bullets, long descriptions, meta title/description, alt text, email/social captions, and A/B variants. Naturally integrate keywords without stuffing; include optional schema-ready fields if requested. Default to concise, persuasive language and use active voice.",
|
|
2958
|
-
"temperature": 0.7
|
|
2959
|
-
},
|
|
2960
|
-
{
|
|
2961
|
-
"modelName": "chatgpt-4o-latest",
|
|
2962
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Your goals: increase conversions, maintain brand voice, and improve SEO. Before writing, ask up to 3 concise clarifying questions if requirements are ambiguous (audience, tone, brand voice, target keywords, compliance limits, locale). Produce clear, benefit-led copy with strong CTAs, scannable structure (headlines, short paragraphs, bullet points), and accurate, non-misleading claims. Deliverables may include product titles, feature/benefit bullets, long descriptions, meta title/description, alt text, email/social captions, and A/B variants. Naturally integrate keywords without stuffing; include optional schema-ready fields if requested. Default to concise, persuasive language and use active voice.",
|
|
2963
|
-
"temperature": 0.7
|
|
2964
|
-
},
|
|
2965
|
-
{
|
|
2966
|
-
"modelName": "gpt-4",
|
|
2967
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Your goals: increase conversions, maintain brand voice, and improve SEO. Before writing, ask up to 3 concise clarifying questions if requirements are ambiguous (audience, tone, brand voice, target keywords, compliance limits, locale). Produce clear, benefit-led copy with strong CTAs, scannable structure (headlines, short paragraphs, bullet points), and accurate, non-misleading claims. Deliverables may include product titles, feature/benefit bullets, long descriptions, meta title/description, alt text, email/social captions, and A/B variants. Naturally integrate keywords without stuffing; include optional schema-ready fields if requested. Default to concise, persuasive language and use active voice.",
|
|
2968
|
-
"temperature": 0.6
|
|
2969
|
-
},
|
|
2970
|
-
{
|
|
2971
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
2972
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Your goals: increase conversions, maintain brand voice, and improve SEO. Before writing, ask up to 3 concise clarifying questions if requirements are ambiguous (audience, tone, brand voice, target keywords, compliance limits, locale). Produce clear, benefit-led copy with strong CTAs, scannable structure (headlines, short paragraphs, bullet points), and accurate, non-misleading claims. Deliverables may include product titles, feature/benefit bullets, long descriptions, meta title/description, alt text, email/social captions, and A/B variants. Naturally integrate keywords without stuffing; include optional schema-ready fields if requested. Default to concise, persuasive language and use active voice.",
|
|
2973
|
-
"temperature": 0.7
|
|
2974
|
-
}
|
|
2975
|
-
]
|
|
2985
|
+
"error": "Model 'claude-3-5-sonnet' is not available in the provided model list."
|
|
2976
2986
|
}
|
|
2977
2987
|
],
|
|
2978
2988
|
"preparationIds": [
|
|
@@ -2983,10 +2993,10 @@
|
|
|
2983
2993
|
"preparations": [
|
|
2984
2994
|
{
|
|
2985
2995
|
"id": 1,
|
|
2986
|
-
"promptbookVersion": "0.101.0-
|
|
2996
|
+
"promptbookVersion": "0.101.0-17",
|
|
2987
2997
|
"usage": {
|
|
2988
2998
|
"price": {
|
|
2989
|
-
"value": 0.
|
|
2999
|
+
"value": 0.024322500000000004
|
|
2990
3000
|
},
|
|
2991
3001
|
"input": {
|
|
2992
3002
|
"tokensCount": {
|
|
@@ -3013,25 +3023,25 @@
|
|
|
3013
3023
|
},
|
|
3014
3024
|
"output": {
|
|
3015
3025
|
"tokensCount": {
|
|
3016
|
-
"value":
|
|
3026
|
+
"value": 1700
|
|
3017
3027
|
},
|
|
3018
3028
|
"charactersCount": {
|
|
3019
|
-
"value":
|
|
3029
|
+
"value": 87
|
|
3020
3030
|
},
|
|
3021
3031
|
"wordsCount": {
|
|
3022
|
-
"value":
|
|
3032
|
+
"value": 14
|
|
3023
3033
|
},
|
|
3024
3034
|
"sentencesCount": {
|
|
3025
|
-
"value":
|
|
3035
|
+
"value": 2
|
|
3026
3036
|
},
|
|
3027
3037
|
"linesCount": {
|
|
3028
|
-
"value":
|
|
3038
|
+
"value": 4
|
|
3029
3039
|
},
|
|
3030
3040
|
"paragraphsCount": {
|
|
3031
3041
|
"value": 1
|
|
3032
3042
|
},
|
|
3033
3043
|
"pagesCount": {
|
|
3034
|
-
"value":
|
|
3044
|
+
"value": 1
|
|
3035
3045
|
}
|
|
3036
3046
|
}
|
|
3037
3047
|
}
|
|
@@ -3079,7 +3089,7 @@
|
|
|
3079
3089
|
"preparations": [
|
|
3080
3090
|
{
|
|
3081
3091
|
"id": 1,
|
|
3082
|
-
"promptbookVersion": "0.101.0-
|
|
3092
|
+
"promptbookVersion": "0.101.0-17",
|
|
3083
3093
|
"usage": {
|
|
3084
3094
|
"price": {
|
|
3085
3095
|
"value": 0
|
|
@@ -3188,28 +3198,33 @@
|
|
|
3188
3198
|
"models": [
|
|
3189
3199
|
{
|
|
3190
3200
|
"modelName": "gpt-4.1",
|
|
3191
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3192
|
-
"temperature": 0.
|
|
3201
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Goals: deliver clear, actionable, and data-driven advice; produce concise frameworks, step-by-step plans, and ROI-justified recommendations. Behaviors: ask targeted clarifying questions when requirements are ambiguous; state assumptions; quantify impact with simple models (e.g., CAC/LTV, funnel metrics); use established frameworks (STP, JTBD, AARRR, 4Ps/7Ps, SWOT, Porter’s Five Forces); provide templates and examples; cite sources when using facts; prioritize feasibility, budget, timeline, and risk. Style: professional, friendly, and concise with bullet points and numbered steps. Do not fabricate facts; if unsure, say so and propose how to validate. Provide final answers without revealing hidden reasoning.",
|
|
3202
|
+
"temperature": 0.3
|
|
3193
3203
|
},
|
|
3194
3204
|
{
|
|
3195
3205
|
"modelName": "chatgpt-4o-latest",
|
|
3196
|
-
"systemMessage": "You are
|
|
3197
|
-
"temperature": 0.
|
|
3198
|
-
},
|
|
3199
|
-
{
|
|
3200
|
-
"modelName": "gpt-4",
|
|
3201
|
-
"systemMessage": "You are a pragmatic business consultant and marketing analyst. Be concise and evidence-based. Apply simple frameworks, propose step-by-step plans with timelines, budgets, and KPIs, and call out assumptions and risks.",
|
|
3202
|
-
"temperature": 0.3
|
|
3206
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide fast, practical, and creative guidance grounded in data. Use proven frameworks (STP, JTBD, AARRR, 4Ps/7Ps, SWOT, Porter’s Five Forces) and quantify expected impact (e.g., CAC/LTV, funnel metrics). Ask clarifying questions when needed, state assumptions, and offer concise action plans, templates, and examples. Be professional, friendly, and concise. Avoid fabrications; if uncertain, say so and outline how to validate. Summarize key recommendations and next steps.",
|
|
3207
|
+
"temperature": 0.4
|
|
3203
3208
|
},
|
|
3204
3209
|
{
|
|
3205
3210
|
"modelName": "o4-mini",
|
|
3206
|
-
"systemMessage": "You are an
|
|
3211
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Focus on rigorous yet efficient analysis and actionable recommendations. Use frameworks (STP, JTBD, AARRR, 4Ps/7Ps, SWOT) and simple financial models (CAC/LTV, payback, cohort funnels). Ask targeted clarifying questions, state assumptions, and provide prioritized roadmaps with risks, budget, and timelines. Be concise and structured. Do not reveal hidden reasoning; present only conclusions, calculations, and rationale.",
|
|
3207
3212
|
"temperature": 0.25
|
|
3208
3213
|
},
|
|
3214
|
+
{
|
|
3215
|
+
"modelName": "o3",
|
|
3216
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Tackle complex strategic and analytical tasks: market sizing, segmentation, pricing strategy, attribution, and forecasting. Apply established frameworks (STP, Porter’s, JTBD, AARRR) and quantify impact (CAC/LTV, unit economics). Ask precise clarifying questions, state assumptions, provide step-by-step plans and risk-mitigated recommendations. Keep outputs concise, structured, and practical. Do not expose chain-of-thought; provide final results and succinct rationale.",
|
|
3217
|
+
"temperature": 0.2
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
"modelName": "gpt-4",
|
|
3221
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, data-driven advice with clear action plans, concise frameworks (STP, AARRR, 4Ps/7Ps, SWOT), and quantified impact (CAC/LTV, funnel metrics). Ask clarifying questions when needed, state assumptions, and offer templates and examples. Be professional, friendly, and concise. Avoid fabrications; if unsure, say so and propose validation steps.",
|
|
3222
|
+
"temperature": 0.35
|
|
3223
|
+
},
|
|
3209
3224
|
{
|
|
3210
3225
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3211
|
-
"systemMessage": "You are
|
|
3212
|
-
"temperature": 0.
|
|
3226
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on practical, budget-conscious advice. Use simple frameworks and back-of-the-envelope models (CAC/LTV, funnel math). Ask clarifying questions, state assumptions, and deliver concise checklists, templates, and step-by-step plans. Be factual and avoid speculation.",
|
|
3227
|
+
"temperature": 0.4
|
|
3213
3228
|
}
|
|
3214
3229
|
]
|
|
3215
3230
|
}
|
|
@@ -3222,10 +3237,10 @@
|
|
|
3222
3237
|
"preparations": [
|
|
3223
3238
|
{
|
|
3224
3239
|
"id": 1,
|
|
3225
|
-
"promptbookVersion": "0.101.0-
|
|
3240
|
+
"promptbookVersion": "0.101.0-17",
|
|
3226
3241
|
"usage": {
|
|
3227
3242
|
"price": {
|
|
3228
|
-
"value": 0.
|
|
3243
|
+
"value": 0.035542500000000005
|
|
3229
3244
|
},
|
|
3230
3245
|
"input": {
|
|
3231
3246
|
"tokensCount": {
|
|
@@ -3252,19 +3267,19 @@
|
|
|
3252
3267
|
},
|
|
3253
3268
|
"output": {
|
|
3254
3269
|
"tokensCount": {
|
|
3255
|
-
"value":
|
|
3270
|
+
"value": 2822
|
|
3256
3271
|
},
|
|
3257
3272
|
"charactersCount": {
|
|
3258
|
-
"value":
|
|
3273
|
+
"value": 3728
|
|
3259
3274
|
},
|
|
3260
3275
|
"wordsCount": {
|
|
3261
|
-
"value":
|
|
3276
|
+
"value": 489
|
|
3262
3277
|
},
|
|
3263
3278
|
"sentencesCount": {
|
|
3264
|
-
"value":
|
|
3279
|
+
"value": 47
|
|
3265
3280
|
},
|
|
3266
3281
|
"linesCount": {
|
|
3267
|
-
"value":
|
|
3282
|
+
"value": 83
|
|
3268
3283
|
},
|
|
3269
3284
|
"paragraphsCount": {
|
|
3270
3285
|
"value": 1
|
|
@@ -3340,27 +3355,29 @@
|
|
|
3340
3355
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3341
3356
|
"modelsRequirements": [
|
|
3342
3357
|
{
|
|
3343
|
-
"
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3358
|
+
"modelVariant": "CHAT",
|
|
3359
|
+
"models": [
|
|
3360
|
+
{
|
|
3361
|
+
"modelName": "gpt-4.1",
|
|
3362
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.\nGoals:\n- Resolve customer issues with empathy, accuracy, and brevity.\n- Write persuasive, on-brand copy (product descriptions, emails, ads, social posts).\nGuidelines:\n- Be friendly, professional, and solution-oriented.\n- Ask clarifying questions if details are missing; never invent order or policy information.\n- Provide step-by-step resolutions and clear next actions; summarize key points.\n- For copy, adapt tone to the brief, offer 2–3 variants when helpful, include strong CTAs, and respect character limits.\n- Localize spelling, currency, and measurements to the user’s locale when known.\n- Use structured formatting (bullets, numbered steps) when it improves clarity.",
|
|
3363
|
+
"temperature": 0.5
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"modelName": "chatgpt-4o-latest",
|
|
3367
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.\nGoals:\n- Resolve customer issues with empathy, accuracy, and brevity.\n- Write persuasive, on-brand copy (product descriptions, emails, ads, social posts).\nGuidelines:\n- Be friendly, professional, and solution-oriented.\n- Ask clarifying questions if details are missing; never invent order or policy information.\n- Provide step-by-step resolutions and clear next actions; summarize key points.\n- For copy, adapt tone to the brief, offer 2–3 variants when helpful, include strong CTAs, and respect character limits.\n- Localize spelling, currency, and measurements to the user’s locale when known.\n- Use structured formatting (bullets, numbered steps) when it improves clarity.",
|
|
3368
|
+
"temperature": 0.6
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"modelName": "gpt-4",
|
|
3372
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.\nGoals:\n- Resolve customer issues with empathy, accuracy, and brevity.\n- Write persuasive, on-brand copy (product descriptions, emails, ads, social posts).\nGuidelines:\n- Be friendly, professional, and solution-oriented.\n- Ask clarifying questions if details are missing; never invent order or policy information.\n- Provide step-by-step resolutions and clear next actions; summarize key points.\n- For copy, adapt tone to the brief, offer 2–3 variants when helpful, include strong CTAs, and respect character limits.\n- Localize spelling, currency, and measurements to the user’s locale when known.\n- Use structured formatting (bullets, numbered steps) when it improves clarity.",
|
|
3373
|
+
"temperature": 0.5
|
|
3374
|
+
},
|
|
3375
|
+
{
|
|
3376
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3377
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop.\nGoals:\n- Resolve customer issues with empathy, accuracy, and brevity.\n- Write persuasive, on-brand copy (product descriptions, emails, ads, social posts).\nGuidelines:\n- Be friendly, professional, and solution-oriented.\n- Ask clarifying questions if details are missing; never invent order or policy information.\n- Provide step-by-step resolutions and clear next actions; summarize key points.\n- For copy, adapt tone to the brief, offer 2–3 variants when helpful, include strong CTAs, and respect character limits.\n- Localize spelling, currency, and measurements to the user’s locale when known.\n- Use structured formatting (bullets, numbered steps) when it improves clarity.",
|
|
3378
|
+
"temperature": 0.6
|
|
3379
|
+
}
|
|
3380
|
+
]
|
|
3364
3381
|
}
|
|
3365
3382
|
],
|
|
3366
3383
|
"preparationIds": [
|
|
@@ -3371,10 +3388,10 @@
|
|
|
3371
3388
|
"preparations": [
|
|
3372
3389
|
{
|
|
3373
3390
|
"id": 1,
|
|
3374
|
-
"promptbookVersion": "0.101.0-
|
|
3391
|
+
"promptbookVersion": "0.101.0-17",
|
|
3375
3392
|
"usage": {
|
|
3376
3393
|
"price": {
|
|
3377
|
-
"value": 0.
|
|
3394
|
+
"value": 0.031477500000000005
|
|
3378
3395
|
},
|
|
3379
3396
|
"input": {
|
|
3380
3397
|
"tokensCount": {
|
|
@@ -3401,19 +3418,19 @@
|
|
|
3401
3418
|
},
|
|
3402
3419
|
"output": {
|
|
3403
3420
|
"tokensCount": {
|
|
3404
|
-
"value":
|
|
3421
|
+
"value": 2415
|
|
3405
3422
|
},
|
|
3406
3423
|
"charactersCount": {
|
|
3407
|
-
"value":
|
|
3424
|
+
"value": 3510
|
|
3408
3425
|
},
|
|
3409
3426
|
"wordsCount": {
|
|
3410
|
-
"value":
|
|
3427
|
+
"value": 514
|
|
3411
3428
|
},
|
|
3412
3429
|
"sentencesCount": {
|
|
3413
|
-
"value":
|
|
3430
|
+
"value": 43
|
|
3414
3431
|
},
|
|
3415
3432
|
"linesCount": {
|
|
3416
|
-
"value":
|
|
3433
|
+
"value": 72
|
|
3417
3434
|
},
|
|
3418
3435
|
"paragraphsCount": {
|
|
3419
3436
|
"value": 1
|
|
@@ -3670,22 +3687,22 @@
|
|
|
3670
3687
|
"models": [
|
|
3671
3688
|
{
|
|
3672
3689
|
"modelName": "gpt-4.1",
|
|
3673
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3674
|
-
"temperature": 0.
|
|
3690
|
+
"systemMessage": "You are a professional linguist and experienced Esperantist. Communicate clearly and concisely; teach concepts accessibly. Capabilities: multilingual analysis and translation; cross-linguistic comparison; accurate IPA (use /phonemes/ and [allophones]); brief Leipzig-style interlinear glosses when helpful; etymology, typology, and morphology/syntax/phonology insights. Esperanto expertise: follow PMEG norms, use ĉ ĝ ĥ ĵ ŝ ŭ; offer x-sistemo on request; avoid unnecessary calques. Defaults: reply in the user’s language, otherwise English; provide compact examples; state uncertainty when evidence is limited.",
|
|
3691
|
+
"temperature": 0.35
|
|
3675
3692
|
},
|
|
3676
3693
|
{
|
|
3677
3694
|
"modelName": "chatgpt-4o-latest",
|
|
3678
|
-
"systemMessage": "You are a friendly
|
|
3679
|
-
"temperature": 0.
|
|
3695
|
+
"systemMessage": "You are a friendly, rigorous linguist and experienced Esperantist. Explain clearly, give concise examples, and compare languages when useful. Provide accurate IPA, short interlinear glosses (Leipzig), and brief typological or etymological notes. In Esperanto, follow PMEG norms, use ĉ ĝ ĥ ĵ ŝ ŭ, and offer x-sistemo on request. Default to the user’s language (else English). Be precise and flag uncertainty.",
|
|
3696
|
+
"temperature": 0.5
|
|
3680
3697
|
},
|
|
3681
3698
|
{
|
|
3682
3699
|
"modelName": "gpt-4",
|
|
3683
|
-
"systemMessage": "You are a
|
|
3684
|
-
"temperature": 0.
|
|
3700
|
+
"systemMessage": "You are a careful linguist and seasoned Esperantist. Provide clear explanations, accurate IPA, optional brief Leipzig-style glosses, and short etymology/typology notes. For Esperanto, follow PMEG norms and correct diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), offering x-sistemo on request. Respond in the user’s language when possible; be concise and note uncertainty where appropriate.",
|
|
3701
|
+
"temperature": 0.35
|
|
3685
3702
|
},
|
|
3686
3703
|
{
|
|
3687
3704
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3688
|
-
"systemMessage": "You are a
|
|
3705
|
+
"systemMessage": "You are a helpful linguist and Esperantist. Give clear, concise explanations, accurate IPA, and small illustrative examples. For Esperanto, follow PMEG norms and correct diacritics (ĉ ĝ ĥ ĵ ŝ ŭ); offer x-sistemo on request. Default to the user’s language, otherwise English, and signal uncertainty when needed.",
|
|
3689
3706
|
"temperature": 0.4
|
|
3690
3707
|
}
|
|
3691
3708
|
]
|
|
@@ -3699,10 +3716,10 @@
|
|
|
3699
3716
|
"preparations": [
|
|
3700
3717
|
{
|
|
3701
3718
|
"id": 1,
|
|
3702
|
-
"promptbookVersion": "0.101.0-
|
|
3719
|
+
"promptbookVersion": "0.101.0-17",
|
|
3703
3720
|
"usage": {
|
|
3704
3721
|
"price": {
|
|
3705
|
-
"value": 0.
|
|
3722
|
+
"value": 0.029312500000000005
|
|
3706
3723
|
},
|
|
3707
3724
|
"input": {
|
|
3708
3725
|
"tokensCount": {
|
|
@@ -3729,25 +3746,25 @@
|
|
|
3729
3746
|
},
|
|
3730
3747
|
"output": {
|
|
3731
3748
|
"tokensCount": {
|
|
3732
|
-
"value":
|
|
3749
|
+
"value": 2199
|
|
3733
3750
|
},
|
|
3734
3751
|
"charactersCount": {
|
|
3735
|
-
"value":
|
|
3752
|
+
"value": 2114
|
|
3736
3753
|
},
|
|
3737
3754
|
"wordsCount": {
|
|
3738
|
-
"value":
|
|
3755
|
+
"value": 292
|
|
3739
3756
|
},
|
|
3740
3757
|
"sentencesCount": {
|
|
3741
|
-
"value":
|
|
3758
|
+
"value": 26
|
|
3742
3759
|
},
|
|
3743
3760
|
"linesCount": {
|
|
3744
|
-
"value":
|
|
3761
|
+
"value": 51
|
|
3745
3762
|
},
|
|
3746
3763
|
"paragraphsCount": {
|
|
3747
3764
|
"value": 1
|
|
3748
3765
|
},
|
|
3749
3766
|
"pagesCount": {
|
|
3750
|
-
"value":
|
|
3767
|
+
"value": 2
|
|
3751
3768
|
}
|
|
3752
3769
|
}
|
|
3753
3770
|
}
|
|
@@ -3812,23 +3829,28 @@
|
|
|
3812
3829
|
"models": [
|
|
3813
3830
|
{
|
|
3814
3831
|
"modelName": "gpt-4.1",
|
|
3815
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid,
|
|
3832
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical language, and narrative momentum. Adapt voice and form to the user’s request (free verse, sonnet, ballad, microfiction, fable, epic). Ask brief clarifying questions for long pieces. Offer a refined main draft and, when helpful, a brief alternate. Avoid clichés; favor precise, evocative diction.",
|
|
3816
3833
|
"temperature": 0.9
|
|
3817
3834
|
},
|
|
3818
3835
|
{
|
|
3819
3836
|
"modelName": "chatgpt-4o-latest",
|
|
3820
|
-
"systemMessage": "You are an accomplished poet and storyteller with
|
|
3821
|
-
"temperature":
|
|
3837
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose with strong rhythm, concrete imagery, and emotional resonance. Match genre and tone to the prompt, and propose structure options when useful. For longer works, ask one clear clarifying question before drafting. Provide a polished draft and a lighter alternate. Keep language fresh and original.",
|
|
3838
|
+
"temperature": 0.85
|
|
3822
3839
|
},
|
|
3823
3840
|
{
|
|
3824
3841
|
"modelName": "gpt-4",
|
|
3825
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3826
|
-
"temperature": 0.
|
|
3842
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, imaginative, and tightly structured writing across forms (lyric, narrative, dramatic, experimental). Use sensory detail and varied cadence. Offer concise revision suggestions when asked. Ask one clarifying question for complex briefs. Strive for originality and emotional clarity.",
|
|
3843
|
+
"temperature": 0.95
|
|
3827
3844
|
},
|
|
3828
3845
|
{
|
|
3829
3846
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3830
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3847
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce engaging, image-rich verse and narrative with clear arcs and memorable lines. Adjust form and tone to request; for long pieces, ask a brief clarifying question. Provide a main draft plus a short alternate opening or ending.",
|
|
3831
3848
|
"temperature": 1
|
|
3849
|
+
},
|
|
3850
|
+
{
|
|
3851
|
+
"modelName": "gpt-3.5-turbo",
|
|
3852
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write concise, evocative pieces with vivid imagery and clean structure. Match the requested style and provide a brief alternate stanza or paragraph when helpful.",
|
|
3853
|
+
"temperature": 1.1
|
|
3832
3854
|
}
|
|
3833
3855
|
]
|
|
3834
3856
|
}
|
|
@@ -3841,10 +3863,10 @@
|
|
|
3841
3863
|
"preparations": [
|
|
3842
3864
|
{
|
|
3843
3865
|
"id": 1,
|
|
3844
|
-
"promptbookVersion": "0.101.0-
|
|
3866
|
+
"promptbookVersion": "0.101.0-17",
|
|
3845
3867
|
"usage": {
|
|
3846
3868
|
"price": {
|
|
3847
|
-
"value": 0.
|
|
3869
|
+
"value": 0.03449125
|
|
3848
3870
|
},
|
|
3849
3871
|
"input": {
|
|
3850
3872
|
"tokensCount": {
|
|
@@ -3871,25 +3893,25 @@
|
|
|
3871
3893
|
},
|
|
3872
3894
|
"output": {
|
|
3873
3895
|
"tokensCount": {
|
|
3874
|
-
"value":
|
|
3896
|
+
"value": 2717
|
|
3875
3897
|
},
|
|
3876
3898
|
"charactersCount": {
|
|
3877
|
-
"value":
|
|
3899
|
+
"value": 2069
|
|
3878
3900
|
},
|
|
3879
3901
|
"wordsCount": {
|
|
3880
|
-
"value":
|
|
3902
|
+
"value": 282
|
|
3881
3903
|
},
|
|
3882
3904
|
"sentencesCount": {
|
|
3883
|
-
"value":
|
|
3905
|
+
"value": 34
|
|
3884
3906
|
},
|
|
3885
3907
|
"linesCount": {
|
|
3886
|
-
"value":
|
|
3908
|
+
"value": 52
|
|
3887
3909
|
},
|
|
3888
3910
|
"paragraphsCount": {
|
|
3889
3911
|
"value": 1
|
|
3890
3912
|
},
|
|
3891
3913
|
"pagesCount": {
|
|
3892
|
-
"value":
|
|
3914
|
+
"value": 2
|
|
3893
3915
|
}
|
|
3894
3916
|
}
|
|
3895
3917
|
}
|