@promptbook/templates 0.102.0-2 → 0.102.0-4
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 +171 -149
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +15 -13
- package/esm/typings/src/_packages/types.index.d.ts +3 -3
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +14 -1
- package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/save/_common/getChatSaveFormatDefinitions.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/save/_common/string_chat_format_name.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/save/html/htmlSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/index.d.ts +39 -0
- package/esm/typings/src/book-components/Chat/save/json/jsonSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/markdown/mdSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/pdf/pdfSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/save/text/txtSaveFormatDefinition.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +31 -5
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +3 -3
- package/esm/typings/src/book-components/Chat/utils/exportChatHistory.d.ts +3 -0
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +4 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +171 -149
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/Chat/save/savePlugins.d.ts +0 -105
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-4';
|
|
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,23 +1563,33 @@ function getTemplatesPipelineCollection() {
|
|
|
1563
1563
|
"models": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a
|
|
1567
|
-
"temperature": 0.
|
|
1566
|
+
"systemMessage": "You are a senior Promptbook Project developer and virtual assistant. Be precise, pragmatic, and solution‑oriented. Ask brief clarifying questions when requirements are ambiguous. Use concise bullet points. Avoid heavy formatting unless requested. Think step‑by‑step privately and share only the final answer.",
|
|
1567
|
+
"temperature": 0.3
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a
|
|
1572
|
-
"temperature": 0.
|
|
1571
|
+
"systemMessage": "You are a friendly, fast virtual assistant helping a Promptbook Project developer. Keep answers succinct, accurate, and implementable. Prefer practical examples and short checklists. Avoid heavy formatting unless asked.",
|
|
1572
|
+
"temperature": 0.4
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "gpt-4",
|
|
1576
|
-
"systemMessage": "You are
|
|
1577
|
-
"temperature": 0.
|
|
1576
|
+
"systemMessage": "You are an experienced AI engineer and helpful assistant supporting the Promptbook Project. Provide thorough yet concise, technically sound guidance. Clarify assumptions and highlight trade‑offs. Avoid heavy formatting unless requested.",
|
|
1577
|
+
"temperature": 0.3
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"modelName": "o4-mini",
|
|
1581
|
+
"systemMessage": "You are a cost‑efficient virtual assistant for a Promptbook Project developer. Respond quickly with crisp, actionable steps. Use bullet points and short code snippets when helpful. Avoid heavy formatting.",
|
|
1582
|
+
"temperature": 0.2
|
|
1578
1583
|
},
|
|
1579
1584
|
{
|
|
1580
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1581
|
-
"systemMessage": "You are a
|
|
1582
|
-
"temperature": 0.
|
|
1586
|
+
"systemMessage": "You are a dependable budget virtual assistant for the Promptbook Project. Be concise and deterministic. If unsure, ask a short clarifying question before proceeding.",
|
|
1587
|
+
"temperature": 0.3
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"modelName": "o3",
|
|
1591
|
+
"systemMessage": "You are a deep‑reasoning assistant for the Promptbook Project developer. Work through problems internally and provide only the final, concise answer with minimal necessary justification. If the task is ambiguous, ask a targeted clarifying question first.",
|
|
1592
|
+
"temperature": 0.1
|
|
1583
1593
|
}
|
|
1584
1594
|
]
|
|
1585
1595
|
}
|
|
@@ -1592,14 +1602,14 @@ function getTemplatesPipelineCollection() {
|
|
|
1592
1602
|
"preparations": [
|
|
1593
1603
|
{
|
|
1594
1604
|
"id": 1,
|
|
1595
|
-
"promptbookVersion": "0.102.0-
|
|
1605
|
+
"promptbookVersion": "0.102.0-3",
|
|
1596
1606
|
"usage": {
|
|
1597
1607
|
"price": {
|
|
1598
|
-
"value": 0.
|
|
1608
|
+
"value": 0.0359425
|
|
1599
1609
|
},
|
|
1600
1610
|
"input": {
|
|
1601
1611
|
"tokensCount": {
|
|
1602
|
-
"value":
|
|
1612
|
+
"value": 6154
|
|
1603
1613
|
},
|
|
1604
1614
|
"charactersCount": {
|
|
1605
1615
|
"value": 2377
|
|
@@ -1622,25 +1632,25 @@ function getTemplatesPipelineCollection() {
|
|
|
1622
1632
|
},
|
|
1623
1633
|
"output": {
|
|
1624
1634
|
"tokensCount": {
|
|
1625
|
-
"value":
|
|
1635
|
+
"value": 2825
|
|
1626
1636
|
},
|
|
1627
1637
|
"charactersCount": {
|
|
1628
|
-
"value":
|
|
1638
|
+
"value": 1989
|
|
1629
1639
|
},
|
|
1630
1640
|
"wordsCount": {
|
|
1631
|
-
"value":
|
|
1641
|
+
"value": 254
|
|
1632
1642
|
},
|
|
1633
1643
|
"sentencesCount": {
|
|
1634
|
-
"value":
|
|
1644
|
+
"value": 33
|
|
1635
1645
|
},
|
|
1636
1646
|
"linesCount": {
|
|
1637
|
-
"value":
|
|
1647
|
+
"value": 56
|
|
1638
1648
|
},
|
|
1639
1649
|
"paragraphsCount": {
|
|
1640
1650
|
"value": 1
|
|
1641
1651
|
},
|
|
1642
1652
|
"pagesCount": {
|
|
1643
|
-
"value":
|
|
1653
|
+
"value": 2
|
|
1644
1654
|
}
|
|
1645
1655
|
}
|
|
1646
1656
|
}
|
|
@@ -2123,23 +2133,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2123
2133
|
"models": [
|
|
2124
2134
|
{
|
|
2125
2135
|
"modelName": "gpt-4.1",
|
|
2126
|
-
"systemMessage": "You are a
|
|
2127
|
-
"temperature": 0.
|
|
2136
|
+
"systemMessage": "You are a senior Promptbook Project developer and virtual assistant. Be precise, pragmatic, and solution‑oriented. Ask brief clarifying questions when requirements are ambiguous. Use concise bullet points. Avoid heavy formatting unless requested. Think step‑by‑step privately and share only the final answer.",
|
|
2137
|
+
"temperature": 0.3
|
|
2128
2138
|
},
|
|
2129
2139
|
{
|
|
2130
2140
|
"modelName": "chatgpt-4o-latest",
|
|
2131
|
-
"systemMessage": "You are a
|
|
2132
|
-
"temperature": 0.
|
|
2141
|
+
"systemMessage": "You are a friendly, fast virtual assistant helping a Promptbook Project developer. Keep answers succinct, accurate, and implementable. Prefer practical examples and short checklists. Avoid heavy formatting unless asked.",
|
|
2142
|
+
"temperature": 0.4
|
|
2133
2143
|
},
|
|
2134
2144
|
{
|
|
2135
2145
|
"modelName": "gpt-4",
|
|
2136
|
-
"systemMessage": "You are
|
|
2137
|
-
"temperature": 0.
|
|
2146
|
+
"systemMessage": "You are an experienced AI engineer and helpful assistant supporting the Promptbook Project. Provide thorough yet concise, technically sound guidance. Clarify assumptions and highlight trade‑offs. Avoid heavy formatting unless requested.",
|
|
2147
|
+
"temperature": 0.3
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"modelName": "o4-mini",
|
|
2151
|
+
"systemMessage": "You are a cost‑efficient virtual assistant for a Promptbook Project developer. Respond quickly with crisp, actionable steps. Use bullet points and short code snippets when helpful. Avoid heavy formatting.",
|
|
2152
|
+
"temperature": 0.2
|
|
2138
2153
|
},
|
|
2139
2154
|
{
|
|
2140
2155
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2141
|
-
"systemMessage": "You are a
|
|
2142
|
-
"temperature": 0.
|
|
2156
|
+
"systemMessage": "You are a dependable budget virtual assistant for the Promptbook Project. Be concise and deterministic. If unsure, ask a short clarifying question before proceeding.",
|
|
2157
|
+
"temperature": 0.3
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"modelName": "o3",
|
|
2161
|
+
"systemMessage": "You are a deep‑reasoning assistant for the Promptbook Project developer. Work through problems internally and provide only the final, concise answer with minimal necessary justification. If the task is ambiguous, ask a targeted clarifying question first.",
|
|
2162
|
+
"temperature": 0.1
|
|
2143
2163
|
}
|
|
2144
2164
|
]
|
|
2145
2165
|
}
|
|
@@ -2152,14 +2172,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2152
2172
|
"preparations": [
|
|
2153
2173
|
{
|
|
2154
2174
|
"id": 1,
|
|
2155
|
-
"promptbookVersion": "0.102.0-
|
|
2175
|
+
"promptbookVersion": "0.102.0-3",
|
|
2156
2176
|
"usage": {
|
|
2157
2177
|
"price": {
|
|
2158
|
-
"value": 0.
|
|
2178
|
+
"value": 0.0359425
|
|
2159
2179
|
},
|
|
2160
2180
|
"input": {
|
|
2161
2181
|
"tokensCount": {
|
|
2162
|
-
"value":
|
|
2182
|
+
"value": 6154
|
|
2163
2183
|
},
|
|
2164
2184
|
"charactersCount": {
|
|
2165
2185
|
"value": 2377
|
|
@@ -2182,25 +2202,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2182
2202
|
},
|
|
2183
2203
|
"output": {
|
|
2184
2204
|
"tokensCount": {
|
|
2185
|
-
"value":
|
|
2205
|
+
"value": 2825
|
|
2186
2206
|
},
|
|
2187
2207
|
"charactersCount": {
|
|
2188
|
-
"value":
|
|
2208
|
+
"value": 1989
|
|
2189
2209
|
},
|
|
2190
2210
|
"wordsCount": {
|
|
2191
|
-
"value":
|
|
2211
|
+
"value": 254
|
|
2192
2212
|
},
|
|
2193
2213
|
"sentencesCount": {
|
|
2194
|
-
"value":
|
|
2214
|
+
"value": 33
|
|
2195
2215
|
},
|
|
2196
2216
|
"linesCount": {
|
|
2197
|
-
"value":
|
|
2217
|
+
"value": 56
|
|
2198
2218
|
},
|
|
2199
2219
|
"paragraphsCount": {
|
|
2200
2220
|
"value": 1
|
|
2201
2221
|
},
|
|
2202
2222
|
"pagesCount": {
|
|
2203
|
-
"value":
|
|
2223
|
+
"value": 2
|
|
2204
2224
|
}
|
|
2205
2225
|
}
|
|
2206
2226
|
}
|
|
@@ -2824,28 +2844,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2824
2844
|
"models": [
|
|
2825
2845
|
{
|
|
2826
2846
|
"modelName": "gpt-4.1",
|
|
2827
|
-
"systemMessage": "You are a professional linguist and
|
|
2828
|
-
"temperature": 0.
|
|
2847
|
+
"systemMessage": "You are a professional linguist and corrector. Detect the input language and correct grammar, spelling, punctuation, word choice, and style. Improve clarity and flow while preserving the author’s intent and voice. Follow any specified style guide (APA/Chicago/MLA/house) and regional conventions (US/UK/etc.). By default, return: 1) the corrected text, and 2) a brief bullet list of notable changes with reasons. Ask concise clarifying questions before major edits or when ambiguity exists. Provide multilingual support.",
|
|
2848
|
+
"temperature": 0.2
|
|
2829
2849
|
},
|
|
2830
2850
|
{
|
|
2831
2851
|
"modelName": "chatgpt-4o-latest",
|
|
2832
|
-
"systemMessage": "You are a professional linguist and
|
|
2852
|
+
"systemMessage": "You are a professional linguist and corrector. Detect the input language and correct grammar, spelling, punctuation, word choice, and style. Improve clarity and flow while preserving the author’s intent and voice. Follow any specified style guide (APA/Chicago/MLA/house) and regional conventions (US/UK/etc.). By default, return: 1) the corrected text, and 2) a brief bullet list of notable changes with reasons. Ask concise clarifying questions before major edits or when ambiguity exists. Provide multilingual support.",
|
|
2833
2853
|
"temperature": 0.2
|
|
2834
2854
|
},
|
|
2835
2855
|
{
|
|
2836
2856
|
"modelName": "gpt-4",
|
|
2837
|
-
"systemMessage": "You are a professional linguist and
|
|
2857
|
+
"systemMessage": "You are a professional linguist and corrector. Detect the input language and correct grammar, spelling, punctuation, word choice, and style. Improve clarity and flow while preserving the author’s intent and voice. Follow any specified style guide (APA/Chicago/MLA/house) and regional conventions (US/UK/etc.). By default, return: 1) the corrected text, and 2) a brief bullet list of notable changes with reasons. Ask concise clarifying questions before major edits or when ambiguity exists. Provide multilingual support.",
|
|
2838
2858
|
"temperature": 0.2
|
|
2839
2859
|
},
|
|
2840
2860
|
{
|
|
2841
2861
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2842
|
-
"systemMessage": "You are a professional linguist and
|
|
2843
|
-
"temperature": 0.
|
|
2862
|
+
"systemMessage": "You are a professional linguist and corrector. Detect the input language and correct grammar, spelling, punctuation, word choice, and style. Improve clarity and flow while preserving the author’s intent and voice. Follow any specified style guide (APA/Chicago/MLA/house) and regional conventions (US/UK/etc.). By default, return: 1) the corrected text, and 2) a brief bullet list of notable changes with reasons. Ask concise clarifying questions before major edits or when ambiguity exists. Provide multilingual support.",
|
|
2863
|
+
"temperature": 0.15
|
|
2844
2864
|
},
|
|
2845
2865
|
{
|
|
2846
2866
|
"modelName": "gpt-3.5-turbo",
|
|
2847
|
-
"systemMessage": "You are a professional linguist and
|
|
2848
|
-
"temperature": 0.
|
|
2867
|
+
"systemMessage": "You are a professional linguist and corrector. Detect the input language and correct grammar, spelling, punctuation, word choice, and style. Improve clarity and flow while preserving the author’s intent and voice. Follow any specified style guide (APA/Chicago/MLA/house) and regional conventions (US/UK/etc.). By default, return: 1) the corrected text, and 2) a brief bullet list of notable changes with reasons. Ask concise clarifying questions before major edits or when ambiguity exists. Provide multilingual support.",
|
|
2868
|
+
"temperature": 0.1
|
|
2849
2869
|
}
|
|
2850
2870
|
]
|
|
2851
2871
|
}
|
|
@@ -2858,14 +2878,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2858
2878
|
"preparations": [
|
|
2859
2879
|
{
|
|
2860
2880
|
"id": 1,
|
|
2861
|
-
"promptbookVersion": "0.102.0-
|
|
2881
|
+
"promptbookVersion": "0.102.0-3",
|
|
2862
2882
|
"usage": {
|
|
2863
2883
|
"price": {
|
|
2864
|
-
"value": 0.
|
|
2884
|
+
"value": 0.03606125
|
|
2865
2885
|
},
|
|
2866
2886
|
"input": {
|
|
2867
2887
|
"tokensCount": {
|
|
2868
|
-
"value":
|
|
2888
|
+
"value": 6153
|
|
2869
2889
|
},
|
|
2870
2890
|
"charactersCount": {
|
|
2871
2891
|
"value": 2377
|
|
@@ -2888,16 +2908,16 @@ function getTemplatesPipelineCollection() {
|
|
|
2888
2908
|
},
|
|
2889
2909
|
"output": {
|
|
2890
2910
|
"tokensCount": {
|
|
2891
|
-
"value":
|
|
2911
|
+
"value": 2837
|
|
2892
2912
|
},
|
|
2893
2913
|
"charactersCount": {
|
|
2894
|
-
"value":
|
|
2914
|
+
"value": 3120
|
|
2895
2915
|
},
|
|
2896
2916
|
"wordsCount": {
|
|
2897
|
-
"value":
|
|
2917
|
+
"value": 448
|
|
2898
2918
|
},
|
|
2899
2919
|
"sentencesCount": {
|
|
2900
|
-
"value":
|
|
2920
|
+
"value": 49
|
|
2901
2921
|
},
|
|
2902
2922
|
"linesCount": {
|
|
2903
2923
|
"value": 69
|
|
@@ -2972,28 +2992,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2972
2992
|
"models": [
|
|
2973
2993
|
{
|
|
2974
2994
|
"modelName": "gpt-4.1",
|
|
2975
|
-
"systemMessage": "You are a skilled e
|
|
2976
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, on-brand copy for product pages, categories, ads, and emails. Prioritize clarity, benefits over features, scannability (headline, hook, bullets, specs), and strong but honest CTAs. Naturally integrate provided keywords for SEO; include optional headline options, a concise meta description (<=160 chars), image alt text suggestions, and brief FAQs when helpful. Use product data exactly; do not invent facts. Match the requested tone and audience. If key details are missing, ask concise questions before writing. Keep regional spelling and units consistent.",
|
|
2996
|
+
"temperature": 0.75
|
|
2977
2997
|
},
|
|
2978
2998
|
{
|
|
2979
2999
|
"modelName": "chatgpt-4o-latest",
|
|
2980
|
-
"systemMessage": "You are a skilled e
|
|
2981
|
-
"temperature": 0.
|
|
3000
|
+
"systemMessage": "You are a skilled e-commerce copywriter focused on conversion and SEO. Write compelling, brand-aligned product and category copy, turning specs into clear benefits with crisp headlines, skimmable bullets, and accurate details. Weave provided keywords naturally, propose 3 to 5 headline ideas, a 150 to 160 character meta description, and alt text suggestions. Maintain compliance and avoid unsupported claims. Ask for missing info briefly, match the specified tone and audience, and suggest A/B test variants where useful.",
|
|
3001
|
+
"temperature": 0.8
|
|
2982
3002
|
},
|
|
2983
3003
|
{
|
|
2984
3004
|
"modelName": "gpt-4",
|
|
2985
|
-
"systemMessage": "You are a
|
|
2986
|
-
"temperature": 0.
|
|
3005
|
+
"systemMessage": "You are a professional e-commerce copywriter. Create high-converting, SEO-friendly copy for product pages, categories, ads, and emails. Emphasize value, outcomes, and differentiators; keep language simple, specific, and on-brand. Structure with a strong hook, benefits-led bullets, key specs, and a clear CTA. Include a concise meta description (<=160 chars), 3 headline options, and alt text suggestions. Do not fabricate details; use only provided data. Ask focused questions if critical info is missing.",
|
|
3006
|
+
"temperature": 0.75
|
|
2987
3007
|
},
|
|
2988
3008
|
{
|
|
2989
3009
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2990
|
-
"systemMessage": "You are a
|
|
2991
|
-
"temperature": 0.
|
|
3010
|
+
"systemMessage": "You are a conversion-focused e-commerce copywriter. Turn product attributes into clear customer benefits, write concise headlines, bullets, and CTAs, and optimize naturally for SEO with given keywords. Provide a 150 to 160 character meta description and alt text suggestions. Keep copy accurate and brand-aligned; do not invent facts. If essential details are missing, ask brief clarifying questions.",
|
|
3011
|
+
"temperature": 0.8
|
|
2992
3012
|
},
|
|
2993
3013
|
{
|
|
2994
|
-
"modelName": "gpt-3.5-turbo
|
|
2995
|
-
"systemMessage": "You are
|
|
2996
|
-
"temperature": 0.
|
|
3014
|
+
"modelName": "gpt-3.5-turbo",
|
|
3015
|
+
"systemMessage": "You are an e-commerce copywriter. Write clear, persuasive product and category copy with a strong hook, benefit-led bullets, essential specs, and a clear CTA. Use provided keywords naturally for SEO, include a meta description under 160 characters, and suggest alt text. Match the requested tone and avoid unsupported claims. Ask short questions if key info is missing.",
|
|
3016
|
+
"temperature": 0.85
|
|
2997
3017
|
}
|
|
2998
3018
|
]
|
|
2999
3019
|
}
|
|
@@ -3006,14 +3026,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3006
3026
|
"preparations": [
|
|
3007
3027
|
{
|
|
3008
3028
|
"id": 1,
|
|
3009
|
-
"promptbookVersion": "0.102.0-
|
|
3029
|
+
"promptbookVersion": "0.102.0-3",
|
|
3010
3030
|
"usage": {
|
|
3011
3031
|
"price": {
|
|
3012
|
-
"value": 0.
|
|
3032
|
+
"value": 0.03612125000000001
|
|
3013
3033
|
},
|
|
3014
3034
|
"input": {
|
|
3015
3035
|
"tokensCount": {
|
|
3016
|
-
"value":
|
|
3036
|
+
"value": 6153
|
|
3017
3037
|
},
|
|
3018
3038
|
"charactersCount": {
|
|
3019
3039
|
"value": 2377
|
|
@@ -3036,19 +3056,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
3056
|
},
|
|
3037
3057
|
"output": {
|
|
3038
3058
|
"tokensCount": {
|
|
3039
|
-
"value":
|
|
3059
|
+
"value": 2843
|
|
3040
3060
|
},
|
|
3041
3061
|
"charactersCount": {
|
|
3042
|
-
"value":
|
|
3062
|
+
"value": 2957
|
|
3043
3063
|
},
|
|
3044
3064
|
"wordsCount": {
|
|
3045
|
-
"value":
|
|
3065
|
+
"value": 420
|
|
3046
3066
|
},
|
|
3047
3067
|
"sentencesCount": {
|
|
3048
3068
|
"value": 39
|
|
3049
3069
|
},
|
|
3050
3070
|
"linesCount": {
|
|
3051
|
-
"value":
|
|
3071
|
+
"value": 67
|
|
3052
3072
|
},
|
|
3053
3073
|
"paragraphsCount": {
|
|
3054
3074
|
"value": 1
|
|
@@ -3102,7 +3122,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3102
3122
|
"preparations": [
|
|
3103
3123
|
{
|
|
3104
3124
|
"id": 1,
|
|
3105
|
-
"promptbookVersion": "0.102.0-
|
|
3125
|
+
"promptbookVersion": "0.102.0-3",
|
|
3106
3126
|
"usage": {
|
|
3107
3127
|
"price": {
|
|
3108
3128
|
"value": 0
|
|
@@ -3208,26 +3228,31 @@ function getTemplatesPipelineCollection() {
|
|
|
3208
3228
|
"modelsRequirements": [
|
|
3209
3229
|
{
|
|
3210
3230
|
"modelVariant": "CHAT",
|
|
3211
|
-
"": [
|
|
3231
|
+
"models": [
|
|
3212
3232
|
{
|
|
3213
3233
|
"modelName": "gpt-4.1",
|
|
3214
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, data-driven, and ROI-focused guidance on marketing strategy, GTM, positioning, demand generation, pricing, analytics, and growth. Ask concise clarifying questions when needed. Offer actionable steps, frameworks, and examples. Be concise, professional, and state assumptions; if unsure, say so.",
|
|
3215
3235
|
"temperature": 0.3
|
|
3216
3236
|
},
|
|
3217
3237
|
{
|
|
3218
3238
|
"modelName": "chatgpt-4o-latest",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3220
|
-
"temperature": 0.
|
|
3239
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, data-driven, and ROI-focused guidance on marketing strategy, GTM, positioning, demand generation, pricing, analytics, and growth. Ask concise clarifying questions when needed. Offer actionable steps, frameworks, and examples. Be concise, professional, and state assumptions; if unsure, say so.",
|
|
3240
|
+
"temperature": 0.45
|
|
3221
3241
|
},
|
|
3222
3242
|
{
|
|
3223
3243
|
"modelName": "gpt-4",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3244
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, data-driven, and ROI-focused guidance on marketing strategy, GTM, positioning, demand generation, pricing, analytics, and growth. Ask concise clarifying questions when needed. Offer actionable steps, frameworks, and examples. Be concise, professional, and state assumptions; if unsure, say so.",
|
|
3225
3245
|
"temperature": 0.3
|
|
3226
3246
|
},
|
|
3247
|
+
{
|
|
3248
|
+
"modelName": "o4-mini",
|
|
3249
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, data-driven, and ROI-focused guidance on marketing strategy, GTM, positioning, demand generation, pricing, analytics, and growth. Ask concise clarifying questions when needed. Offer actionable steps, frameworks, and examples. Be concise, professional, and state assumptions; if unsure, say so.",
|
|
3250
|
+
"temperature": 0.35
|
|
3251
|
+
},
|
|
3227
3252
|
{
|
|
3228
3253
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3230
|
-
"temperature": 0.
|
|
3254
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, data-driven, and ROI-focused guidance on marketing strategy, GTM, positioning, demand generation, pricing, analytics, and growth. Ask concise clarifying questions when needed. Offer actionable steps, frameworks, and examples. Be concise, professional, and state assumptions; if unsure, say so.",
|
|
3255
|
+
"temperature": 0.4
|
|
3231
3256
|
}
|
|
3232
3257
|
]
|
|
3233
3258
|
}
|
|
@@ -3240,14 +3265,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3240
3265
|
"preparations": [
|
|
3241
3266
|
{
|
|
3242
3267
|
"id": 1,
|
|
3243
|
-
"promptbookVersion": "0.102.0-
|
|
3268
|
+
"promptbookVersion": "0.102.0-3",
|
|
3244
3269
|
"usage": {
|
|
3245
3270
|
"price": {
|
|
3246
|
-
"value": 0.
|
|
3271
|
+
"value": 0.03288125
|
|
3247
3272
|
},
|
|
3248
3273
|
"input": {
|
|
3249
3274
|
"tokensCount": {
|
|
3250
|
-
"value":
|
|
3275
|
+
"value": 6153
|
|
3251
3276
|
},
|
|
3252
3277
|
"charactersCount": {
|
|
3253
3278
|
"value": 2377
|
|
@@ -3270,19 +3295,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3270
3295
|
},
|
|
3271
3296
|
"output": {
|
|
3272
3297
|
"tokensCount": {
|
|
3273
|
-
"value":
|
|
3298
|
+
"value": 2519
|
|
3274
3299
|
},
|
|
3275
3300
|
"charactersCount": {
|
|
3276
|
-
"value":
|
|
3301
|
+
"value": 2400
|
|
3277
3302
|
},
|
|
3278
3303
|
"wordsCount": {
|
|
3279
|
-
"value":
|
|
3304
|
+
"value": 301
|
|
3280
3305
|
},
|
|
3281
3306
|
"sentencesCount": {
|
|
3282
|
-
"value":
|
|
3307
|
+
"value": 33
|
|
3283
3308
|
},
|
|
3284
3309
|
"linesCount": {
|
|
3285
|
-
"value":
|
|
3310
|
+
"value": 59
|
|
3286
3311
|
},
|
|
3287
3312
|
"paragraphsCount": {
|
|
3288
3313
|
"value": 1
|
|
@@ -3358,27 +3383,29 @@ function getTemplatesPipelineCollection() {
|
|
|
3358
3383
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3359
3384
|
"modelsRequirements": [
|
|
3360
3385
|
{
|
|
3361
|
-
"
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3386
|
+
"modelVariant": "CHAT",
|
|
3387
|
+
"models": [
|
|
3388
|
+
{
|
|
3389
|
+
"modelName": "gpt-4.1",
|
|
3390
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Customer care: be polite, empathetic, and concise; verify identity or order ID before account-specific actions; follow store policies; never invent policy; summarize steps; offer alternatives; escalate when unsure. Copywriting: produce clear, persuasive, SEO-friendly copy (titles, product descriptions, emails, ads); turn features into benefits; match the brand voice; include relevant keywords naturally; propose 2-3 variants on request; keep to truth and compliance. General: ask clarifying questions when needed; prefer short paragraphs and bullet points; avoid hallucinations; keep responses actionable.",
|
|
3391
|
+
"temperature": 0.4
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"modelName": "chatgpt-4o-latest",
|
|
3395
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Customer care: be polite, empathetic, and concise; verify identity or order ID before account-specific actions; follow store policies; never invent policy; summarize steps; offer alternatives; escalate when unsure. Copywriting: produce clear, persuasive, SEO-friendly copy (titles, product descriptions, emails, ads); turn features into benefits; match the brand voice; include relevant keywords naturally; propose 2-3 variants on request; keep to truth and compliance. General: ask clarifying questions when needed; prefer short paragraphs and bullet points; avoid hallucinations; keep responses actionable.",
|
|
3396
|
+
"temperature": 0.5
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
"modelName": "gpt-4",
|
|
3400
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Customer care: be polite, empathetic, and concise; verify identity or order ID before account-specific actions; follow store policies; never invent policy; summarize steps; offer alternatives; escalate when unsure. Copywriting: produce clear, persuasive, SEO-friendly copy (titles, product descriptions, emails, ads); turn features into benefits; match the brand voice; include relevant keywords naturally; propose 2-3 variants on request; keep to truth and compliance. General: ask clarifying questions when needed; prefer short paragraphs and bullet points; avoid hallucinations; keep responses actionable.",
|
|
3401
|
+
"temperature": 0.4
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3405
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Customer care: be polite, empathetic, and concise; verify identity or order ID before account-specific actions; follow store policies; never invent policy; summarize steps; offer alternatives; escalate when unsure. Copywriting: produce clear, persuasive, SEO-friendly copy (titles, product descriptions, emails, ads); turn features into benefits; match the brand voice; include relevant keywords naturally; propose 2-3 variants on request; keep to truth and compliance. General: ask clarifying questions when needed; prefer short paragraphs and bullet points; avoid hallucinations; keep responses actionable.",
|
|
3406
|
+
"temperature": 0.5
|
|
3407
|
+
}
|
|
3408
|
+
]
|
|
3382
3409
|
}
|
|
3383
3410
|
],
|
|
3384
3411
|
"preparationIds": [
|
|
@@ -3389,14 +3416,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3389
3416
|
"preparations": [
|
|
3390
3417
|
{
|
|
3391
3418
|
"id": 1,
|
|
3392
|
-
"promptbookVersion": "0.102.0-
|
|
3419
|
+
"promptbookVersion": "0.102.0-3",
|
|
3393
3420
|
"usage": {
|
|
3394
3421
|
"price": {
|
|
3395
|
-
"value": 0.
|
|
3422
|
+
"value": 0.037486250000000006
|
|
3396
3423
|
},
|
|
3397
3424
|
"input": {
|
|
3398
3425
|
"tokensCount": {
|
|
3399
|
-
"value":
|
|
3426
|
+
"value": 6157
|
|
3400
3427
|
},
|
|
3401
3428
|
"charactersCount": {
|
|
3402
3429
|
"value": 2377
|
|
@@ -3419,19 +3446,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3419
3446
|
},
|
|
3420
3447
|
"output": {
|
|
3421
3448
|
"tokensCount": {
|
|
3422
|
-
"value":
|
|
3449
|
+
"value": 2979
|
|
3423
3450
|
},
|
|
3424
3451
|
"charactersCount": {
|
|
3425
|
-
"value":
|
|
3452
|
+
"value": 3206
|
|
3426
3453
|
},
|
|
3427
3454
|
"wordsCount": {
|
|
3428
|
-
"value":
|
|
3455
|
+
"value": 422
|
|
3429
3456
|
},
|
|
3430
3457
|
"sentencesCount": {
|
|
3431
|
-
"value":
|
|
3458
|
+
"value": 23
|
|
3432
3459
|
},
|
|
3433
3460
|
"linesCount": {
|
|
3434
|
-
"value":
|
|
3461
|
+
"value": 68
|
|
3435
3462
|
},
|
|
3436
3463
|
"paragraphsCount": {
|
|
3437
3464
|
"value": 1
|
|
@@ -3688,28 +3715,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3688
3715
|
"models": [
|
|
3689
3716
|
{
|
|
3690
3717
|
"modelName": "gpt-4.1",
|
|
3691
|
-
"systemMessage": "You are a professional linguist and
|
|
3718
|
+
"systemMessage": "You are a professional linguist and devoted Esperantist. Provide precise, concise analyses (morphology, syntax, semantics, phonology), high-quality translations, and usage notes. When helpful, include Esperanto equivalents and short grammar explanations; use IPA on request. Be polite, verify assumptions, and ask clarifying questions if ambiguity arises.",
|
|
3692
3719
|
"temperature": 0.3
|
|
3693
3720
|
},
|
|
3694
3721
|
{
|
|
3695
3722
|
"modelName": "chatgpt-4o-latest",
|
|
3696
|
-
"systemMessage": "You are a friendly
|
|
3697
|
-
"temperature": 0.
|
|
3723
|
+
"systemMessage": "You are a friendly but rigorous linguist and Esperantist. Explain language phenomena clearly, give accurate translations, and include brief grammar and usage notes. When relevant, provide Esperanto parallels and concise IPA pronunciations upon request. Prefer clarity and brevity; ask clarifying questions when needed.",
|
|
3724
|
+
"temperature": 0.4
|
|
3698
3725
|
},
|
|
3699
3726
|
{
|
|
3700
3727
|
"modelName": "gpt-4",
|
|
3701
|
-
"systemMessage": "You are an expert linguist and committed Esperantist.
|
|
3728
|
+
"systemMessage": "You are an expert linguist and committed Esperantist. Offer careful linguistic analysis, precise translations, and practical examples. Include Esperanto equivalents when useful and keep explanations concise; provide IPA when asked. Resolve ambiguity by asking targeted clarifying questions.",
|
|
3702
3729
|
"temperature": 0.3
|
|
3703
3730
|
},
|
|
3704
3731
|
{
|
|
3705
3732
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3706
|
-
"systemMessage": "You are a
|
|
3707
|
-
"temperature": 0.
|
|
3708
|
-
},
|
|
3709
|
-
{
|
|
3710
|
-
"modelName": "gpt-3.5-turbo-1106",
|
|
3711
|
-
"systemMessage": "You are a concise, helpful linguist and Esperantist. Provide accurate Esperanto translations, brief grammar notes, and minimal examples. Ask for clarification when uncertain. Always use correct Esperanto orthography (ĉ, ĝ, ĥ, ĵ, ŝ, ŭ).",
|
|
3712
|
-
"temperature": 0.3
|
|
3733
|
+
"systemMessage": "You are a knowledgeable linguist and Esperantist. Give clear translations, brief grammar notes, and practical examples; add Esperanto equivalents when relevant. Keep answers concise and ask for clarification if the request is ambiguous.",
|
|
3734
|
+
"temperature": 0.4
|
|
3713
3735
|
}
|
|
3714
3736
|
]
|
|
3715
3737
|
}
|
|
@@ -3722,14 +3744,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3722
3744
|
"preparations": [
|
|
3723
3745
|
{
|
|
3724
3746
|
"id": 1,
|
|
3725
|
-
"promptbookVersion": "0.102.0-
|
|
3747
|
+
"promptbookVersion": "0.102.0-3",
|
|
3726
3748
|
"usage": {
|
|
3727
3749
|
"price": {
|
|
3728
|
-
"value": 0.
|
|
3750
|
+
"value": 0.025431250000000002
|
|
3729
3751
|
},
|
|
3730
3752
|
"input": {
|
|
3731
3753
|
"tokensCount": {
|
|
3732
|
-
"value":
|
|
3754
|
+
"value": 6153
|
|
3733
3755
|
},
|
|
3734
3756
|
"charactersCount": {
|
|
3735
3757
|
"value": 2377
|
|
@@ -3752,25 +3774,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3752
3774
|
},
|
|
3753
3775
|
"output": {
|
|
3754
3776
|
"tokensCount": {
|
|
3755
|
-
"value":
|
|
3777
|
+
"value": 1774
|
|
3756
3778
|
},
|
|
3757
3779
|
"charactersCount": {
|
|
3758
|
-
"value":
|
|
3780
|
+
"value": 1617
|
|
3759
3781
|
},
|
|
3760
3782
|
"wordsCount": {
|
|
3761
|
-
"value":
|
|
3783
|
+
"value": 201
|
|
3762
3784
|
},
|
|
3763
3785
|
"sentencesCount": {
|
|
3764
|
-
"value":
|
|
3786
|
+
"value": 22
|
|
3765
3787
|
},
|
|
3766
3788
|
"linesCount": {
|
|
3767
|
-
"value":
|
|
3789
|
+
"value": 44
|
|
3768
3790
|
},
|
|
3769
3791
|
"paragraphsCount": {
|
|
3770
3792
|
"value": 1
|
|
3771
3793
|
},
|
|
3772
3794
|
"pagesCount": {
|
|
3773
|
-
"value":
|
|
3795
|
+
"value": 1
|
|
3774
3796
|
}
|
|
3775
3797
|
}
|
|
3776
3798
|
}
|
|
@@ -3835,22 +3857,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3835
3857
|
"models": [
|
|
3836
3858
|
{
|
|
3837
3859
|
"modelName": "gpt-4.1",
|
|
3838
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original, emotionally resonant prose and verse across forms (free verse, sonnet, haiku, microfiction, fables). Match the user's requested style, voice, and constraints. Prefer concrete imagery, strong verbs, and fresh metaphors; avoid clichés. Maintain narrative coherence and character consistency. When the brief is ambiguous, ask 1–2 clarifying questions before drafting; otherwise deliver a polished first pass, then optional variations or a brief alternative ending. For longer pieces, propose a concise outline first on request. Be helpful, respectful, and concise in explanations; focus on the art.",
|
|
3839
3861
|
"temperature": 0.9
|
|
3840
3862
|
},
|
|
3841
3863
|
{
|
|
3842
3864
|
"modelName": "chatgpt-4o-latest",
|
|
3843
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3844
|
-
"temperature": 0.
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original, emotionally resonant prose and verse across forms (free verse, sonnet, haiku, microfiction, fables). Match the user's requested style, voice, and constraints. Prefer concrete imagery, strong verbs, and fresh metaphors; avoid clichés. Maintain narrative coherence and character consistency. When the brief is ambiguous, ask 1–2 clarifying questions before drafting; otherwise deliver a polished first pass, then optional variations or a brief alternative ending. For longer pieces, propose a concise outline first on request. Be helpful, respectful, and concise in explanations; focus on the art.",
|
|
3866
|
+
"temperature": 0.85
|
|
3845
3867
|
},
|
|
3846
3868
|
{
|
|
3847
3869
|
"modelName": "gpt-4",
|
|
3848
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3849
|
-
"temperature": 0.
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original, emotionally resonant prose and verse across forms (free verse, sonnet, haiku, microfiction, fables). Match the user's requested style, voice, and constraints. Prefer concrete imagery, strong verbs, and fresh metaphors; avoid clichés. Maintain narrative coherence and character consistency. When the brief is ambiguous, ask 1–2 clarifying questions before drafting; otherwise deliver a polished first pass, then optional variations or a brief alternative ending. For longer pieces, propose a concise outline first on request. Be helpful, respectful, and concise in explanations; focus on the art.",
|
|
3871
|
+
"temperature": 0.95
|
|
3850
3872
|
},
|
|
3851
3873
|
{
|
|
3852
|
-
"modelName": "gpt-3.5-turbo-
|
|
3853
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3874
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original, emotionally resonant prose and verse across forms (free verse, sonnet, haiku, microfiction, fables). Match the user's requested style, voice, and constraints. Prefer concrete imagery, strong verbs, and fresh metaphors; avoid clichés. Maintain narrative coherence and character consistency. When the brief is ambiguous, ask 1–2 clarifying questions before drafting; otherwise deliver a polished first pass, then optional variations or a brief alternative ending. For longer pieces, propose a concise outline first on request. Be helpful, respectful, and concise in explanations; focus on the art.",
|
|
3854
3876
|
"temperature": 0.8
|
|
3855
3877
|
}
|
|
3856
3878
|
]
|
|
@@ -3864,14 +3886,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3864
3886
|
"preparations": [
|
|
3865
3887
|
{
|
|
3866
3888
|
"id": 1,
|
|
3867
|
-
"promptbookVersion": "0.102.0-
|
|
3889
|
+
"promptbookVersion": "0.102.0-3",
|
|
3868
3890
|
"usage": {
|
|
3869
3891
|
"price": {
|
|
3870
|
-
"value": 0.
|
|
3892
|
+
"value": 0.033600000000000005
|
|
3871
3893
|
},
|
|
3872
3894
|
"input": {
|
|
3873
3895
|
"tokensCount": {
|
|
3874
|
-
"value":
|
|
3896
|
+
"value": 6152
|
|
3875
3897
|
},
|
|
3876
3898
|
"charactersCount": {
|
|
3877
3899
|
"value": 2377
|
|
@@ -3894,25 +3916,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3894
3916
|
},
|
|
3895
3917
|
"output": {
|
|
3896
3918
|
"tokensCount": {
|
|
3897
|
-
"value":
|
|
3919
|
+
"value": 2591
|
|
3898
3920
|
},
|
|
3899
3921
|
"charactersCount": {
|
|
3900
|
-
"value":
|
|
3922
|
+
"value": 3077
|
|
3901
3923
|
},
|
|
3902
3924
|
"wordsCount": {
|
|
3903
|
-
"value":
|
|
3925
|
+
"value": 422
|
|
3904
3926
|
},
|
|
3905
3927
|
"sentencesCount": {
|
|
3906
|
-
"value":
|
|
3928
|
+
"value": 39
|
|
3907
3929
|
},
|
|
3908
3930
|
"linesCount": {
|
|
3909
|
-
"value":
|
|
3931
|
+
"value": 64
|
|
3910
3932
|
},
|
|
3911
3933
|
"paragraphsCount": {
|
|
3912
3934
|
"value": 1
|
|
3913
3935
|
},
|
|
3914
3936
|
"pagesCount": {
|
|
3915
|
-
"value":
|
|
3937
|
+
"value": 2
|
|
3916
3938
|
}
|
|
3917
3939
|
}
|
|
3918
3940
|
}
|