@promptbook/templates 0.101.0-0 → 0.101.0-2
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 -173
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +0 -5
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +8 -2
- package/esm/typings/src/book-components/Chat/Chat/constants.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +16 -0
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.d.ts +21 -0
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.test.d.ts +1 -0
- package/esm/typings/src/book-components/icons/ArrowIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ResetIcon.d.ts +6 -0
- package/esm/typings/src/book-components/icons/SendIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/TemplateIcon.d.ts +8 -0
- package/esm/typings/src/utils/markdown/escapeMarkdownBlock.d.ts +2 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextEllipsis.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextEmdashed.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextQuotes.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextWhitespace.d.ts +1 -0
- package/esm/typings/src/utils/markdown/prettifyMarkdown.d.ts +8 -0
- package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +1 -0
- package/esm/typings/src/utils/normalization/capitalize.d.ts +2 -0
- package/esm/typings/src/utils/normalization/decapitalize.d.ts +3 -1
- package/esm/typings/src/utils/normalization/normalizeTo_SCREAMING_CASE.d.ts +2 -0
- package/esm/typings/src/utils/normalization/normalizeTo_snake_case.d.ts +2 -0
- package/esm/typings/src/utils/normalization/normalizeWhitespaces.d.ts +2 -0
- package/esm/typings/src/utils/normalization/removeDiacritics.d.ts +2 -0
- package/esm/typings/src/utils/parseNumber.d.ts +1 -0
- package/esm/typings/src/utils/removeEmojis.d.ts +2 -0
- package/esm/typings/src/utils/removeQuotes.d.ts +1 -0
- package/esm/typings/src/utils/serialization/deepClone.d.ts +1 -0
- package/esm/typings/src/utils/trimCodeBlock.d.ts +1 -0
- package/esm/typings/src/utils/validators/url/isValidUrl.d.ts +1 -0
- package/esm/typings/src/utils/validators/uuid/isValidUuid.d.ts +2 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +176 -177
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import spaceTrim, { spaceTrim as spaceTrim$1 } from 'spacetrim';
|
|
2
|
-
import parserHtml from 'prettier/parser-html';
|
|
3
|
-
import parserMarkdown from 'prettier/parser-markdown';
|
|
4
|
-
import { format } from 'prettier/standalone';
|
|
5
2
|
|
|
6
3
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
7
4
|
/**
|
|
@@ -17,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
17
14
|
* @generated
|
|
18
15
|
* @see https://github.com/webgptorg/promptbook
|
|
19
16
|
*/
|
|
20
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-2';
|
|
21
18
|
/**
|
|
22
19
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
23
20
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -97,6 +94,7 @@ function isValidFilePath(filename) {
|
|
|
97
94
|
/**
|
|
98
95
|
* Tests if given string is valid URL.
|
|
99
96
|
*
|
|
97
|
+
* Note: [🔂] This function is idempotent.
|
|
100
98
|
* Note: Dataurl are considered perfectly valid.
|
|
101
99
|
* Note: There are two similar functions:
|
|
102
100
|
* - `isValidUrl` which tests any URL
|
|
@@ -394,8 +392,18 @@ function validatePipelineString(pipelineString) {
|
|
|
394
392
|
* @private withing the package because of HUGE size of prettier dependency
|
|
395
393
|
*/
|
|
396
394
|
function prettifyMarkdown(content) {
|
|
395
|
+
// In browser/Next.js environments, just return the original content
|
|
396
|
+
// since prettier parsers are not available and would cause bundling issues
|
|
397
|
+
if (typeof window !== 'undefined') {
|
|
398
|
+
return content;
|
|
399
|
+
}
|
|
397
400
|
try {
|
|
398
|
-
|
|
401
|
+
// Use dynamic require to avoid static imports that cause bundling issues
|
|
402
|
+
// This will only work in Node.js environments
|
|
403
|
+
const prettierStandalone = eval('require')('prettier/standalone');
|
|
404
|
+
const parserMarkdown = eval('require')('prettier/parser-markdown');
|
|
405
|
+
const parserHtml = eval('require')('prettier/parser-html');
|
|
406
|
+
return prettierStandalone.format(content, {
|
|
399
407
|
parser: 'markdown',
|
|
400
408
|
plugins: [parserMarkdown, parserHtml],
|
|
401
409
|
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
@@ -423,6 +431,8 @@ function prettifyMarkdown(content) {
|
|
|
423
431
|
/**
|
|
424
432
|
* Makes first letter of a string uppercase
|
|
425
433
|
*
|
|
434
|
+
* Note: [🔂] This function is idempotent.
|
|
435
|
+
*
|
|
426
436
|
* @public exported from `@promptbook/utils`
|
|
427
437
|
*/
|
|
428
438
|
function capitalize(word) {
|
|
@@ -752,6 +762,7 @@ function checkSerializableAsJson(options) {
|
|
|
752
762
|
/**
|
|
753
763
|
* Creates a deep clone of the given object
|
|
754
764
|
*
|
|
765
|
+
* Note: [🔂] This function is idempotent.
|
|
755
766
|
* Note: This method only works for objects that are fully serializable to JSON and do not contain functions, Dates, or special types.
|
|
756
767
|
*
|
|
757
768
|
* @param objectValue The object to clone.
|
|
@@ -1552,38 +1563,28 @@ function getTemplatesPipelineCollection() {
|
|
|
1552
1563
|
"models": [
|
|
1553
1564
|
{
|
|
1554
1565
|
"modelName": "gpt-4.1",
|
|
1555
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1566
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a senior AI engineer and pragmatic virtual assistant. Optimize for accuracy, determinism, and actionable next steps. Provide high-quality prompt designs, clean code snippets, and brief rationales. Ask clarifying questions when requirements are ambiguous. Use concise bullet points by default.",
|
|
1556
1567
|
"temperature": 0.3
|
|
1557
1568
|
},
|
|
1558
1569
|
{
|
|
1559
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1560
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1561
|
-
"temperature": 0.
|
|
1571
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, latency-aware virtual assistant. Keep responses concise, explain simply, and reason step-by-step when the task is non-trivial. Provide prompt templates, small code examples, and quick checklists. Confirm assumptions before executing plans.",
|
|
1572
|
+
"temperature": 0.4
|
|
1562
1573
|
},
|
|
1563
1574
|
{
|
|
1564
1575
|
"modelName": "o4-mini",
|
|
1565
|
-
"systemMessage": "You are a
|
|
1566
|
-
"temperature": 0.
|
|
1576
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Deliver crisp action plans, evaluate trade-offs, and propose prompt patterns and test harnesses. Prefer brevity and determinism. Ask for missing context.",
|
|
1577
|
+
"temperature": 0.25
|
|
1567
1578
|
},
|
|
1568
1579
|
{
|
|
1569
1580
|
"modelName": "gpt-4",
|
|
1570
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
1571
|
-
"temperature": 0.
|
|
1581
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide rigorous yet concise technical guidance, careful reasoning, and reliable code. Prefer bullet lists, call out risks and edge cases, and keep formatting consistent for easy copy/paste.",
|
|
1582
|
+
"temperature": 0.3
|
|
1572
1583
|
},
|
|
1573
1584
|
{
|
|
1574
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1575
|
-
"systemMessage": "You are a
|
|
1586
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Offer practical tips, lightweight prompts, and straightforward code with minimal dependencies. Clarify requirements when uncertain.",
|
|
1576
1587
|
"temperature": 0.4
|
|
1577
|
-
},
|
|
1578
|
-
{
|
|
1579
|
-
"modelName": "o3",
|
|
1580
|
-
"systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
|
|
1581
|
-
"temperature": 0.2
|
|
1582
|
-
},
|
|
1583
|
-
{
|
|
1584
|
-
"modelName": "gpt-realtime",
|
|
1585
|
-
"systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
|
|
1586
|
-
"temperature": 0.5
|
|
1587
1588
|
}
|
|
1588
1589
|
]
|
|
1589
1590
|
}
|
|
@@ -1596,10 +1597,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1596
1597
|
"preparations": [
|
|
1597
1598
|
{
|
|
1598
1599
|
"id": 1,
|
|
1599
|
-
"promptbookVersion": "0.
|
|
1600
|
+
"promptbookVersion": "0.101.0-1",
|
|
1600
1601
|
"usage": {
|
|
1601
1602
|
"price": {
|
|
1602
|
-
"value": 0.
|
|
1603
|
+
"value": 0.031982500000000004
|
|
1603
1604
|
},
|
|
1604
1605
|
"input": {
|
|
1605
1606
|
"tokensCount": {
|
|
@@ -1626,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1626
1627
|
},
|
|
1627
1628
|
"output": {
|
|
1628
1629
|
"tokensCount": {
|
|
1629
|
-
"value":
|
|
1630
|
+
"value": 2476
|
|
1630
1631
|
},
|
|
1631
1632
|
"charactersCount": {
|
|
1632
|
-
"value":
|
|
1633
|
+
"value": 1848
|
|
1633
1634
|
},
|
|
1634
1635
|
"wordsCount": {
|
|
1635
|
-
"value":
|
|
1636
|
+
"value": 246
|
|
1636
1637
|
},
|
|
1637
1638
|
"sentencesCount": {
|
|
1638
|
-
"value":
|
|
1639
|
+
"value": 28
|
|
1639
1640
|
},
|
|
1640
1641
|
"linesCount": {
|
|
1641
|
-
"value":
|
|
1642
|
+
"value": 50
|
|
1642
1643
|
},
|
|
1643
1644
|
"paragraphsCount": {
|
|
1644
1645
|
"value": 1
|
|
@@ -2127,38 +2128,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2127
2128
|
"models": [
|
|
2128
2129
|
{
|
|
2129
2130
|
"modelName": "gpt-4.1",
|
|
2130
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2131
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a senior AI engineer and pragmatic virtual assistant. Optimize for accuracy, determinism, and actionable next steps. Provide high-quality prompt designs, clean code snippets, and brief rationales. Ask clarifying questions when requirements are ambiguous. Use concise bullet points by default.",
|
|
2131
2132
|
"temperature": 0.3
|
|
2132
2133
|
},
|
|
2133
2134
|
{
|
|
2134
2135
|
"modelName": "chatgpt-4o-latest",
|
|
2135
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2136
|
-
"temperature": 0.
|
|
2136
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, latency-aware virtual assistant. Keep responses concise, explain simply, and reason step-by-step when the task is non-trivial. Provide prompt templates, small code examples, and quick checklists. Confirm assumptions before executing plans.",
|
|
2137
|
+
"temperature": 0.4
|
|
2137
2138
|
},
|
|
2138
2139
|
{
|
|
2139
2140
|
"modelName": "o4-mini",
|
|
2140
|
-
"systemMessage": "You are a
|
|
2141
|
-
"temperature": 0.
|
|
2141
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Deliver crisp action plans, evaluate trade-offs, and propose prompt patterns and test harnesses. Prefer brevity and determinism. Ask for missing context.",
|
|
2142
|
+
"temperature": 0.25
|
|
2142
2143
|
},
|
|
2143
2144
|
{
|
|
2144
2145
|
"modelName": "gpt-4",
|
|
2145
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2146
|
-
"temperature": 0.
|
|
2146
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide rigorous yet concise technical guidance, careful reasoning, and reliable code. Prefer bullet lists, call out risks and edge cases, and keep formatting consistent for easy copy/paste.",
|
|
2147
|
+
"temperature": 0.3
|
|
2147
2148
|
},
|
|
2148
2149
|
{
|
|
2149
2150
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2150
|
-
"systemMessage": "You are a
|
|
2151
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Offer practical tips, lightweight prompts, and straightforward code with minimal dependencies. Clarify requirements when uncertain.",
|
|
2151
2152
|
"temperature": 0.4
|
|
2152
|
-
},
|
|
2153
|
-
{
|
|
2154
|
-
"modelName": "o3",
|
|
2155
|
-
"systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
|
|
2156
|
-
"temperature": 0.2
|
|
2157
|
-
},
|
|
2158
|
-
{
|
|
2159
|
-
"modelName": "gpt-realtime",
|
|
2160
|
-
"systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
|
|
2161
|
-
"temperature": 0.5
|
|
2162
2153
|
}
|
|
2163
2154
|
]
|
|
2164
2155
|
}
|
|
@@ -2171,10 +2162,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2171
2162
|
"preparations": [
|
|
2172
2163
|
{
|
|
2173
2164
|
"id": 1,
|
|
2174
|
-
"promptbookVersion": "0.
|
|
2165
|
+
"promptbookVersion": "0.101.0-1",
|
|
2175
2166
|
"usage": {
|
|
2176
2167
|
"price": {
|
|
2177
|
-
"value": 0.
|
|
2168
|
+
"value": 0.031982500000000004
|
|
2178
2169
|
},
|
|
2179
2170
|
"input": {
|
|
2180
2171
|
"tokensCount": {
|
|
@@ -2201,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2201
2192
|
},
|
|
2202
2193
|
"output": {
|
|
2203
2194
|
"tokensCount": {
|
|
2204
|
-
"value":
|
|
2195
|
+
"value": 2476
|
|
2205
2196
|
},
|
|
2206
2197
|
"charactersCount": {
|
|
2207
|
-
"value":
|
|
2198
|
+
"value": 1848
|
|
2208
2199
|
},
|
|
2209
2200
|
"wordsCount": {
|
|
2210
|
-
"value":
|
|
2201
|
+
"value": 246
|
|
2211
2202
|
},
|
|
2212
2203
|
"sentencesCount": {
|
|
2213
|
-
"value":
|
|
2204
|
+
"value": 28
|
|
2214
2205
|
},
|
|
2215
2206
|
"linesCount": {
|
|
2216
|
-
"value":
|
|
2207
|
+
"value": 50
|
|
2217
2208
|
},
|
|
2218
2209
|
"paragraphsCount": {
|
|
2219
2210
|
"value": 1
|
|
@@ -2843,27 +2834,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2843
2834
|
"models": [
|
|
2844
2835
|
{
|
|
2845
2836
|
"modelName": "gpt-4.1",
|
|
2846
|
-
"systemMessage": "You are a
|
|
2847
|
-
"temperature": 0.
|
|
2837
|
+
"systemMessage": "You are a linguist and Corrector. Act as a precise editor and copy‑chief:\n- Correct grammar, spelling, punctuation, and typography.\n- Preserve meaning, voice, and register; make minimal necessary edits.\n- Improve clarity and flow when helpful; prefer suggestions over rewrites.\n- Respect requested dialect (e.g., en‑US/en‑GB) and style guides (APA, Chicago, etc.).\n- Maintain formatting, code, and placeholders; never invent facts.\n- If the request is ambiguous, ask a brief clarifying question before editing.\n- Output two parts: 'Corrected' (final text) and 'Notes' (brief rationale for non‑obvious changes).",
|
|
2838
|
+
"temperature": 0.15
|
|
2848
2839
|
},
|
|
2849
2840
|
{
|
|
2850
|
-
"modelName": "
|
|
2851
|
-
"systemMessage": "You are a
|
|
2841
|
+
"modelName": "chatgpt-4o-latest",
|
|
2842
|
+
"systemMessage": "You are a linguist and Corrector. Be a concise, high‑accuracy editor:\n- Fix grammar, spelling, punctuation, and typography.\n- Keep the author’s voice; make minimal edits.\n- Offer brief explanations only for non‑obvious changes.\n- Honor requested dialects and style guides.\n- Maintain formatting and code; do not fabricate content.\n- Ask a short clarifying question if the task is ambiguous.\nReturn: 'Corrected' and 'Notes'.",
|
|
2852
2843
|
"temperature": 0.2
|
|
2853
2844
|
},
|
|
2854
2845
|
{
|
|
2855
|
-
"modelName": "
|
|
2856
|
-
"systemMessage": "You are a
|
|
2857
|
-
"temperature": 0.
|
|
2846
|
+
"modelName": "gpt-4",
|
|
2847
|
+
"systemMessage": "You are a linguist and Corrector. Provide meticulous, minimal‑change editing with preserved meaning and tone. Correct grammar, spelling, punctuation, and typography; improve clarity when beneficial. Respect dialect/style requests, maintain formatting/code, and avoid adding facts. If ambiguous, ask one clarifying question. Return 'Corrected' and 'Notes' (brief rationale).",
|
|
2848
|
+
"temperature": 0.15
|
|
2858
2849
|
},
|
|
2859
2850
|
{
|
|
2860
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2861
|
-
"systemMessage": "You are a
|
|
2862
|
-
"temperature": 0.2
|
|
2863
|
-
},
|
|
2864
|
-
{
|
|
2865
|
-
"modelName": "gpt-3.5-turbo",
|
|
2866
|
-
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2852
|
+
"systemMessage": "You are a linguist and Corrector. Perform minimal, high‑precision edits to fix grammar, spelling, punctuation, and typography while preserving voice and meaning. Honor dialect/style preferences, maintain formatting/code, avoid fabrications, and ask a brief clarifying question if needed. Output 'Corrected' and 'Notes'.",
|
|
2867
2853
|
"temperature": 0.2
|
|
2868
2854
|
}
|
|
2869
2855
|
]
|
|
@@ -2877,10 +2863,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2877
2863
|
"preparations": [
|
|
2878
2864
|
{
|
|
2879
2865
|
"id": 1,
|
|
2880
|
-
"promptbookVersion": "0.
|
|
2866
|
+
"promptbookVersion": "0.101.0-1",
|
|
2881
2867
|
"usage": {
|
|
2882
2868
|
"price": {
|
|
2883
|
-
"value": 0.
|
|
2869
|
+
"value": 0.026071250000000004
|
|
2884
2870
|
},
|
|
2885
2871
|
"input": {
|
|
2886
2872
|
"tokensCount": {
|
|
@@ -2907,19 +2893,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2907
2893
|
},
|
|
2908
2894
|
"output": {
|
|
2909
2895
|
"tokensCount": {
|
|
2910
|
-
"value":
|
|
2896
|
+
"value": 1885
|
|
2911
2897
|
},
|
|
2912
2898
|
"charactersCount": {
|
|
2913
|
-
"value":
|
|
2899
|
+
"value": 2159
|
|
2914
2900
|
},
|
|
2915
2901
|
"wordsCount": {
|
|
2916
|
-
"value":
|
|
2902
|
+
"value": 299
|
|
2917
2903
|
},
|
|
2918
2904
|
"sentencesCount": {
|
|
2919
|
-
"value":
|
|
2905
|
+
"value": 36
|
|
2920
2906
|
},
|
|
2921
2907
|
"linesCount": {
|
|
2922
|
-
"value":
|
|
2908
|
+
"value": 52
|
|
2923
2909
|
},
|
|
2924
2910
|
"paragraphsCount": {
|
|
2925
2911
|
"value": 1
|
|
@@ -2991,23 +2977,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2991
2977
|
"models": [
|
|
2992
2978
|
{
|
|
2993
2979
|
"modelName": "gpt-4.1",
|
|
2994
|
-
"systemMessage": "You are a skilled e-commerce copywriter for
|
|
2995
|
-
"temperature": 0.
|
|
2980
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2981
|
+
"temperature": 0.6
|
|
2996
2982
|
},
|
|
2997
2983
|
{
|
|
2998
2984
|
"modelName": "chatgpt-4o-latest",
|
|
2999
|
-
"systemMessage": "You are a skilled e-commerce copywriter
|
|
3000
|
-
"temperature": 0.
|
|
2985
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2986
|
+
"temperature": 0.7
|
|
3001
2987
|
},
|
|
3002
2988
|
{
|
|
3003
2989
|
"modelName": "gpt-4",
|
|
3004
|
-
"systemMessage": "You are
|
|
2990
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
3005
2991
|
"temperature": 0.7
|
|
3006
2992
|
},
|
|
3007
2993
|
{
|
|
3008
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3009
|
-
"systemMessage": "You are a skilled e-commerce copywriter
|
|
3010
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2996
|
+
"temperature": 0.8
|
|
3011
2997
|
}
|
|
3012
2998
|
]
|
|
3013
2999
|
}
|
|
@@ -3020,10 +3006,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3020
3006
|
"preparations": [
|
|
3021
3007
|
{
|
|
3022
3008
|
"id": 1,
|
|
3023
|
-
"promptbookVersion": "0.
|
|
3009
|
+
"promptbookVersion": "0.101.0-1",
|
|
3024
3010
|
"usage": {
|
|
3025
3011
|
"price": {
|
|
3026
|
-
"value": 0.
|
|
3012
|
+
"value": 0.04109125
|
|
3027
3013
|
},
|
|
3028
3014
|
"input": {
|
|
3029
3015
|
"tokensCount": {
|
|
@@ -3050,25 +3036,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3050
3036
|
},
|
|
3051
3037
|
"output": {
|
|
3052
3038
|
"tokensCount": {
|
|
3053
|
-
"value":
|
|
3039
|
+
"value": 3387
|
|
3054
3040
|
},
|
|
3055
3041
|
"charactersCount": {
|
|
3056
|
-
"value":
|
|
3042
|
+
"value": 5102
|
|
3057
3043
|
},
|
|
3058
3044
|
"wordsCount": {
|
|
3059
|
-
"value":
|
|
3045
|
+
"value": 678
|
|
3060
3046
|
},
|
|
3061
3047
|
"sentencesCount": {
|
|
3062
|
-
"value":
|
|
3048
|
+
"value": 47
|
|
3063
3049
|
},
|
|
3064
3050
|
"linesCount": {
|
|
3065
|
-
"value":
|
|
3051
|
+
"value": 96
|
|
3066
3052
|
},
|
|
3067
3053
|
"paragraphsCount": {
|
|
3068
3054
|
"value": 1
|
|
3069
3055
|
},
|
|
3070
3056
|
"pagesCount": {
|
|
3071
|
-
"value":
|
|
3057
|
+
"value": 3
|
|
3072
3058
|
}
|
|
3073
3059
|
}
|
|
3074
3060
|
}
|
|
@@ -3116,7 +3102,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3116
3102
|
"preparations": [
|
|
3117
3103
|
{
|
|
3118
3104
|
"id": 1,
|
|
3119
|
-
"promptbookVersion": "0.
|
|
3105
|
+
"promptbookVersion": "0.101.0-1",
|
|
3120
3106
|
"usage": {
|
|
3121
3107
|
"price": {
|
|
3122
3108
|
"value": 0
|
|
@@ -3225,28 +3211,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3225
3211
|
"models": [
|
|
3226
3212
|
{
|
|
3227
3213
|
"modelName": "gpt-4.1",
|
|
3228
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3229
|
-
"temperature": 0.
|
|
3214
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice with clear reasoning. Ask concise clarifying questions when needed, state assumptions, and offer structured plans (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT), budgets, timelines, and measurable KPIs/ROI. Be concise by default and adapt tone to the user's industry and audience.",
|
|
3215
|
+
"temperature": 0.3
|
|
3230
3216
|
},
|
|
3231
3217
|
{
|
|
3232
3218
|
"modelName": "chatgpt-4o-latest",
|
|
3233
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3234
|
-
"temperature": 0.
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Balance creativity with rigor: generate compelling messaging and campaign concepts, then convert them into step-by-step plans with budgets, channels, and KPIs. Ask brief clarifying questions when needed, tailor outputs to the user's market, and keep recommendations practical and ROI-focused.",
|
|
3220
|
+
"temperature": 0.45
|
|
3235
3221
|
},
|
|
3236
3222
|
{
|
|
3237
3223
|
"modelName": "gpt-4",
|
|
3238
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3239
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, structured, and pragmatic guidance. When relevant, apply frameworks (STP, 4Ps/7Ps, AIDA, BCG, SWOT) and provide channel plans, testing roadmaps, and KPI targets. Be concise, note assumptions, and prioritize ROI and risk mitigation.",
|
|
3225
|
+
"temperature": 0.35
|
|
3240
3226
|
},
|
|
3241
3227
|
{
|
|
3242
|
-
"modelName": "
|
|
3243
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3244
|
-
"temperature": 0.
|
|
3228
|
+
"modelName": "o4-mini",
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Focus on analytical tasks: market sizing, segmentation, pricing scenarios, CAC/LTV modeling, and forecasting. State assumptions, show calculations, and provide recommendations with sensitivity analysis and clear next steps.",
|
|
3230
|
+
"temperature": 0.25
|
|
3245
3231
|
},
|
|
3246
3232
|
{
|
|
3247
|
-
"modelName": "gpt-3.5-turbo-
|
|
3248
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3249
|
-
"temperature": 0.
|
|
3233
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide lean, actionable guidance using standard marketing and business frameworks, with practical next steps and KPIs. Keep outputs concise and clarify assumptions.",
|
|
3235
|
+
"temperature": 0.45
|
|
3250
3236
|
}
|
|
3251
3237
|
]
|
|
3252
3238
|
}
|
|
@@ -3259,10 +3245,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3259
3245
|
"preparations": [
|
|
3260
3246
|
{
|
|
3261
3247
|
"id": 1,
|
|
3262
|
-
"promptbookVersion": "0.
|
|
3248
|
+
"promptbookVersion": "0.101.0-1",
|
|
3263
3249
|
"usage": {
|
|
3264
3250
|
"price": {
|
|
3265
|
-
"value": 0.
|
|
3251
|
+
"value": 0.026731250000000005
|
|
3266
3252
|
},
|
|
3267
3253
|
"input": {
|
|
3268
3254
|
"tokensCount": {
|
|
@@ -3289,25 +3275,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3289
3275
|
},
|
|
3290
3276
|
"output": {
|
|
3291
3277
|
"tokensCount": {
|
|
3292
|
-
"value":
|
|
3278
|
+
"value": 1951
|
|
3293
3279
|
},
|
|
3294
3280
|
"charactersCount": {
|
|
3295
|
-
"value":
|
|
3281
|
+
"value": 2100
|
|
3296
3282
|
},
|
|
3297
3283
|
"wordsCount": {
|
|
3298
|
-
"value":
|
|
3284
|
+
"value": 272
|
|
3299
3285
|
},
|
|
3300
3286
|
"sentencesCount": {
|
|
3301
|
-
"value":
|
|
3287
|
+
"value": 27
|
|
3302
3288
|
},
|
|
3303
3289
|
"linesCount": {
|
|
3304
|
-
"value":
|
|
3290
|
+
"value": 55
|
|
3305
3291
|
},
|
|
3306
3292
|
"paragraphsCount": {
|
|
3307
3293
|
"value": 1
|
|
3308
3294
|
},
|
|
3309
3295
|
"pagesCount": {
|
|
3310
|
-
"value":
|
|
3296
|
+
"value": 2
|
|
3311
3297
|
}
|
|
3312
3298
|
}
|
|
3313
3299
|
}
|
|
@@ -3377,32 +3363,34 @@ function getTemplatesPipelineCollection() {
|
|
|
3377
3363
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3378
3364
|
"modelsRequirements": [
|
|
3379
3365
|
{
|
|
3380
|
-
"
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3366
|
+
"modelVariant": "CHAT",
|
|
3367
|
+
"models": [
|
|
3368
|
+
{
|
|
3369
|
+
"modelName": "gpt-4.1",
|
|
3370
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3371
|
+
"temperature": 0.4
|
|
3372
|
+
},
|
|
3373
|
+
{
|
|
3374
|
+
"modelName": "chatgpt-4o-latest",
|
|
3375
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3376
|
+
"temperature": 0.5
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"modelName": "gpt-4",
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3381
|
+
"temperature": 0.4
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
"modelName": "o4-mini",
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3386
|
+
"temperature": 0.4
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3390
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3391
|
+
"temperature": 0.5
|
|
3392
|
+
}
|
|
3393
|
+
]
|
|
3406
3394
|
}
|
|
3407
3395
|
],
|
|
3408
3396
|
"preparationIds": [
|
|
@@ -3413,10 +3401,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3413
3401
|
"preparations": [
|
|
3414
3402
|
{
|
|
3415
3403
|
"id": 1,
|
|
3416
|
-
"promptbookVersion": "0.
|
|
3404
|
+
"promptbookVersion": "0.101.0-1",
|
|
3417
3405
|
"usage": {
|
|
3418
3406
|
"price": {
|
|
3419
|
-
"value": 0.
|
|
3407
|
+
"value": 0.032656250000000005
|
|
3420
3408
|
},
|
|
3421
3409
|
"input": {
|
|
3422
3410
|
"tokensCount": {
|
|
@@ -3443,25 +3431,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3443
3431
|
},
|
|
3444
3432
|
"output": {
|
|
3445
3433
|
"tokensCount": {
|
|
3446
|
-
"value":
|
|
3434
|
+
"value": 2543
|
|
3447
3435
|
},
|
|
3448
3436
|
"charactersCount": {
|
|
3449
|
-
"value":
|
|
3437
|
+
"value": 3848
|
|
3450
3438
|
},
|
|
3451
3439
|
"wordsCount": {
|
|
3452
|
-
"value":
|
|
3440
|
+
"value": 536
|
|
3453
3441
|
},
|
|
3454
3442
|
"sentencesCount": {
|
|
3455
|
-
"value":
|
|
3443
|
+
"value": 23
|
|
3456
3444
|
},
|
|
3457
3445
|
"linesCount": {
|
|
3458
|
-
"value":
|
|
3446
|
+
"value": 79
|
|
3459
3447
|
},
|
|
3460
3448
|
"paragraphsCount": {
|
|
3461
3449
|
"value": 1
|
|
3462
3450
|
},
|
|
3463
3451
|
"pagesCount": {
|
|
3464
|
-
"value":
|
|
3452
|
+
"value": 2
|
|
3465
3453
|
}
|
|
3466
3454
|
}
|
|
3467
3455
|
}
|
|
@@ -3712,27 +3700,32 @@ function getTemplatesPipelineCollection() {
|
|
|
3712
3700
|
"models": [
|
|
3713
3701
|
{
|
|
3714
3702
|
"modelName": "gpt-4.1",
|
|
3715
|
-
"systemMessage": "You are a linguist and Esperantist. Provide
|
|
3703
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3716
3704
|
"temperature": 0.4
|
|
3717
3705
|
},
|
|
3718
3706
|
{
|
|
3719
3707
|
"modelName": "chatgpt-4o-latest",
|
|
3720
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3708
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3721
3709
|
"temperature": 0.5
|
|
3722
3710
|
},
|
|
3723
3711
|
{
|
|
3724
3712
|
"modelName": "gpt-4",
|
|
3725
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3713
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3726
3714
|
"temperature": 0.4
|
|
3727
3715
|
},
|
|
3728
3716
|
{
|
|
3729
3717
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3730
|
-
"systemMessage": "You are a linguist and Esperantist. Provide
|
|
3718
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3731
3719
|
"temperature": 0.5
|
|
3732
3720
|
},
|
|
3721
|
+
{
|
|
3722
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3723
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3724
|
+
"temperature": 0.6
|
|
3725
|
+
},
|
|
3733
3726
|
{
|
|
3734
3727
|
"modelName": "gpt-3.5-turbo",
|
|
3735
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3728
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3736
3729
|
"temperature": 0.6
|
|
3737
3730
|
}
|
|
3738
3731
|
]
|
|
@@ -3746,10 +3739,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3746
3739
|
"preparations": [
|
|
3747
3740
|
{
|
|
3748
3741
|
"id": 1,
|
|
3749
|
-
"promptbookVersion": "0.
|
|
3742
|
+
"promptbookVersion": "0.101.0-1",
|
|
3750
3743
|
"usage": {
|
|
3751
3744
|
"price": {
|
|
3752
|
-
"value": 0.
|
|
3745
|
+
"value": 0.041661250000000004
|
|
3753
3746
|
},
|
|
3754
3747
|
"input": {
|
|
3755
3748
|
"tokensCount": {
|
|
@@ -3776,19 +3769,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3776
3769
|
},
|
|
3777
3770
|
"output": {
|
|
3778
3771
|
"tokensCount": {
|
|
3779
|
-
"value":
|
|
3772
|
+
"value": 3444
|
|
3780
3773
|
},
|
|
3781
3774
|
"charactersCount": {
|
|
3782
|
-
"value":
|
|
3775
|
+
"value": 3427
|
|
3783
3776
|
},
|
|
3784
3777
|
"wordsCount": {
|
|
3785
|
-
"value":
|
|
3778
|
+
"value": 461
|
|
3786
3779
|
},
|
|
3787
3780
|
"sentencesCount": {
|
|
3788
|
-
"value":
|
|
3781
|
+
"value": 47
|
|
3789
3782
|
},
|
|
3790
3783
|
"linesCount": {
|
|
3791
|
-
"value":
|
|
3784
|
+
"value": 76
|
|
3792
3785
|
},
|
|
3793
3786
|
"paragraphsCount": {
|
|
3794
3787
|
"value": 1
|
|
@@ -3859,22 +3852,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3859
3852
|
"models": [
|
|
3860
3853
|
{
|
|
3861
3854
|
"modelName": "gpt-4.1",
|
|
3862
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3863
|
-
"temperature": 0.
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid sensory imagery, fresh metaphors, musical cadence, and emotional resonance. Adapt form and voice to the brief (poetry or prose), balance lyricism with clarity, avoid clichés, and keep narrative arcs coherent. Ask one concise clarifying question if needed.",
|
|
3856
|
+
"temperature": 0.9
|
|
3857
|
+
},
|
|
3858
|
+
{
|
|
3859
|
+
"modelName": "chatgpt-4o-latest",
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller with a warm, imaginative voice. Craft evocative scenes, precise diction, and varied rhythms; use original imagery and avoid clichés. Match the user’s tone and constraints, and ask one brief clarifying question when helpful.",
|
|
3861
|
+
"temperature": 1
|
|
3864
3862
|
},
|
|
3865
3863
|
{
|
|
3866
3864
|
"modelName": "gpt-4",
|
|
3867
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce lyrical, image-rich writing with strong voice and clean structure. Favor specificity over abstraction, fresh metaphors over stock phrases, and rhythm that serves meaning. Adapt to user constraints and ask a single clarifying question if needed.",
|
|
3868
3866
|
"temperature": 0.9
|
|
3869
3867
|
},
|
|
3870
3868
|
{
|
|
3871
|
-
"modelName": "
|
|
3872
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3873
|
-
"temperature":
|
|
3869
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use concrete detail, fresh imagery, and a clear arc; avoid clichés and filler. Follow the requested form and tone, and ask one short clarifying question when helpful.",
|
|
3871
|
+
"temperature": 1
|
|
3874
3872
|
},
|
|
3875
3873
|
{
|
|
3876
|
-
"modelName": "gpt-3.5-turbo
|
|
3877
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3874
|
+
"modelName": "gpt-3.5-turbo",
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery and concise, musical language; keep the narrative coherent and avoid clichés. Follow the user’s style and form constraints.",
|
|
3878
3876
|
"temperature": 1
|
|
3879
3877
|
}
|
|
3880
3878
|
]
|
|
@@ -3888,10 +3886,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3888
3886
|
"preparations": [
|
|
3889
3887
|
{
|
|
3890
3888
|
"id": 1,
|
|
3891
|
-
"promptbookVersion": "0.
|
|
3889
|
+
"promptbookVersion": "0.101.0-1",
|
|
3892
3890
|
"usage": {
|
|
3893
3891
|
"price": {
|
|
3894
|
-
"value": 0.
|
|
3892
|
+
"value": 0.03198
|
|
3895
3893
|
},
|
|
3896
3894
|
"input": {
|
|
3897
3895
|
"tokensCount": {
|
|
@@ -3918,25 +3916,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3918
3916
|
},
|
|
3919
3917
|
"output": {
|
|
3920
3918
|
"tokensCount": {
|
|
3921
|
-
"value":
|
|
3919
|
+
"value": 2476
|
|
3922
3920
|
},
|
|
3923
3921
|
"charactersCount": {
|
|
3924
|
-
"value":
|
|
3922
|
+
"value": 1809
|
|
3925
3923
|
},
|
|
3926
3924
|
"wordsCount": {
|
|
3927
|
-
"value":
|
|
3925
|
+
"value": 249
|
|
3928
3926
|
},
|
|
3929
3927
|
"sentencesCount": {
|
|
3930
|
-
"value":
|
|
3928
|
+
"value": 26
|
|
3931
3929
|
},
|
|
3932
3930
|
"linesCount": {
|
|
3933
|
-
"value":
|
|
3931
|
+
"value": 49
|
|
3934
3932
|
},
|
|
3935
3933
|
"paragraphsCount": {
|
|
3936
3934
|
"value": 1
|
|
3937
3935
|
},
|
|
3938
3936
|
"pagesCount": {
|
|
3939
|
-
"value":
|
|
3937
|
+
"value": 2
|
|
3940
3938
|
}
|
|
3941
3939
|
}
|
|
3942
3940
|
}
|