@promptbook/templates 0.100.1 → 0.100.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 +152 -140
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +2 -2
- package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +2 -2
- package/esm/typings/src/execution/utils/validatePromptResult.d.ts +4 -4
- package/esm/typings/src/utils/take/interfaces/ITakeChain.d.ts +2 -2
- package/esm/typings/src/utils/validators/filePath/isValidFilePath.d.ts +1 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/esm/typings/src/wizard/wizard.d.ts +2 -2
- package/package.json +2 -2
- package/umd/index.umd.js +152 -140
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -17,7 +17,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
17
17
|
* @generated
|
|
18
18
|
* @see https://github.com/webgptorg/promptbook
|
|
19
19
|
*/
|
|
20
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.
|
|
20
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.2';
|
|
21
21
|
/**
|
|
22
22
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
23
23
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -39,7 +39,7 @@ function isValidEmail(email) {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
|
-
* Tests if given string is valid
|
|
42
|
+
* Tests if given string is valid file path.
|
|
43
43
|
*
|
|
44
44
|
* Note: This does not check if the file exists only if the path is valid
|
|
45
45
|
* @public exported from `@promptbook/utils`
|
|
@@ -51,18 +51,25 @@ function isValidFilePath(filename) {
|
|
|
51
51
|
if (filename.split('\n').length > 1) {
|
|
52
52
|
return false;
|
|
53
53
|
}
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
// Normalize slashes early so heuristics can detect path-like inputs
|
|
55
|
+
const filenameSlashes = filename.replace(/\\/g, '/');
|
|
56
|
+
// Reject strings that look like sentences (informational text)
|
|
57
|
+
// Heuristic: contains multiple spaces and ends with a period, or contains typical sentence punctuation
|
|
58
|
+
// But skip this heuristic if the string looks like a path (contains '/' or starts with a drive letter)
|
|
59
|
+
if (filename.trim().length > 60 && // long enough to be a sentence
|
|
60
|
+
/[.!?]/.test(filename) && // contains sentence punctuation
|
|
61
|
+
filename.split(' ').length > 8 && // has many words
|
|
62
|
+
!/\/|^[A-Z]:/i.test(filenameSlashes) // do NOT treat as sentence if looks like a path
|
|
63
|
+
) {
|
|
56
64
|
return false;
|
|
57
65
|
}
|
|
58
|
-
const filenameSlashes = filename.split('\\').join('/');
|
|
59
66
|
// Absolute Unix path: /hello.txt
|
|
60
67
|
if (/^(\/)/i.test(filenameSlashes)) {
|
|
61
68
|
// console.log(filename, 'Absolute Unix path: /hello.txt');
|
|
62
69
|
return true;
|
|
63
70
|
}
|
|
64
|
-
// Absolute Windows path:
|
|
65
|
-
if (/^
|
|
71
|
+
// Absolute Windows path: C:/ or C:\ (allow spaces and multiple dots in filename)
|
|
72
|
+
if (/^[A-Z]:\/.+$/i.test(filenameSlashes)) {
|
|
66
73
|
// console.log(filename, 'Absolute Windows path: /hello.txt');
|
|
67
74
|
return true;
|
|
68
75
|
}
|
|
@@ -1545,28 +1552,28 @@ function getTemplatesPipelineCollection() {
|
|
|
1545
1552
|
"models": [
|
|
1546
1553
|
{
|
|
1547
1554
|
"modelName": "gpt-4.1",
|
|
1548
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1549
|
-
"temperature": 0.
|
|
1555
|
+
"systemMessage": "You are a developer of the Promptbook Project and a highly capable virtual assistant. Be concise, accurate, and pragmatic. Ask brief clarifying questions when requirements are ambiguous. Prefer deterministic, structured outputs when requested. Follow Promptbook conventions.",
|
|
1556
|
+
"temperature": 0.2
|
|
1550
1557
|
},
|
|
1551
1558
|
{
|
|
1552
1559
|
"modelName": "chatgpt-4o-latest",
|
|
1553
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1554
|
-
"temperature": 0.
|
|
1560
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, knowledgeable virtual assistant. Communicate clearly and helpfully, handle multi-turn tasks, and ask clarifying questions when needed. Follow Promptbook conventions and keep responses concise and actionable.",
|
|
1561
|
+
"temperature": 0.3
|
|
1555
1562
|
},
|
|
1556
1563
|
{
|
|
1557
|
-
"modelName": "
|
|
1558
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1564
|
+
"modelName": "gpt-4",
|
|
1565
|
+
"systemMessage": "You are a developer of the Promptbook Project and a precise virtual assistant. Provide reliable, step-by-step answers, verify assumptions, and keep outputs concise. Ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
1559
1566
|
"temperature": 0.2
|
|
1560
1567
|
},
|
|
1561
1568
|
{
|
|
1562
|
-
"modelName": "
|
|
1563
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1564
|
-
"temperature": 0.
|
|
1569
|
+
"modelName": "o4-mini",
|
|
1570
|
+
"systemMessage": "You are a developer of the Promptbook Project and a fast, cost-efficient virtual assistant. Prioritize clarity and speed while remaining accurate. Ask brief clarifying questions when necessary. Follow Promptbook conventions and keep outputs concise.",
|
|
1571
|
+
"temperature": 0.2
|
|
1565
1572
|
},
|
|
1566
1573
|
{
|
|
1567
1574
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1568
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1569
|
-
"temperature": 0.
|
|
1575
|
+
"systemMessage": "You are a developer of the Promptbook Project and a helpful virtual assistant. Be concise, follow instructions carefully, and ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
1576
|
+
"temperature": 0.3
|
|
1570
1577
|
}
|
|
1571
1578
|
]
|
|
1572
1579
|
}
|
|
@@ -1579,10 +1586,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1579
1586
|
"preparations": [
|
|
1580
1587
|
{
|
|
1581
1588
|
"id": 1,
|
|
1582
|
-
"promptbookVersion": "0.100.
|
|
1589
|
+
"promptbookVersion": "0.100.1",
|
|
1583
1590
|
"usage": {
|
|
1584
1591
|
"price": {
|
|
1585
|
-
"value": 0.
|
|
1592
|
+
"value": 0.030392500000000003
|
|
1586
1593
|
},
|
|
1587
1594
|
"input": {
|
|
1588
1595
|
"tokensCount": {
|
|
@@ -1609,19 +1616,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1609
1616
|
},
|
|
1610
1617
|
"output": {
|
|
1611
1618
|
"tokensCount": {
|
|
1612
|
-
"value":
|
|
1619
|
+
"value": 2317
|
|
1613
1620
|
},
|
|
1614
1621
|
"charactersCount": {
|
|
1615
|
-
"value":
|
|
1622
|
+
"value": 1732
|
|
1616
1623
|
},
|
|
1617
1624
|
"wordsCount": {
|
|
1618
|
-
"value":
|
|
1625
|
+
"value": 219
|
|
1619
1626
|
},
|
|
1620
1627
|
"sentencesCount": {
|
|
1621
|
-
"value":
|
|
1628
|
+
"value": 27
|
|
1622
1629
|
},
|
|
1623
1630
|
"linesCount": {
|
|
1624
|
-
"value":
|
|
1631
|
+
"value": 48
|
|
1625
1632
|
},
|
|
1626
1633
|
"paragraphsCount": {
|
|
1627
1634
|
"value": 1
|
|
@@ -2110,28 +2117,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2110
2117
|
"models": [
|
|
2111
2118
|
{
|
|
2112
2119
|
"modelName": "gpt-4.1",
|
|
2113
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2114
|
-
"temperature": 0.
|
|
2120
|
+
"systemMessage": "You are a developer of the Promptbook Project and a highly capable virtual assistant. Be concise, accurate, and pragmatic. Ask brief clarifying questions when requirements are ambiguous. Prefer deterministic, structured outputs when requested. Follow Promptbook conventions.",
|
|
2121
|
+
"temperature": 0.2
|
|
2115
2122
|
},
|
|
2116
2123
|
{
|
|
2117
2124
|
"modelName": "chatgpt-4o-latest",
|
|
2118
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2119
|
-
"temperature": 0.
|
|
2125
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, knowledgeable virtual assistant. Communicate clearly and helpfully, handle multi-turn tasks, and ask clarifying questions when needed. Follow Promptbook conventions and keep responses concise and actionable.",
|
|
2126
|
+
"temperature": 0.3
|
|
2120
2127
|
},
|
|
2121
2128
|
{
|
|
2122
|
-
"modelName": "
|
|
2123
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2129
|
+
"modelName": "gpt-4",
|
|
2130
|
+
"systemMessage": "You are a developer of the Promptbook Project and a precise virtual assistant. Provide reliable, step-by-step answers, verify assumptions, and keep outputs concise. Ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
2124
2131
|
"temperature": 0.2
|
|
2125
2132
|
},
|
|
2126
2133
|
{
|
|
2127
|
-
"modelName": "
|
|
2128
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2129
|
-
"temperature": 0.
|
|
2134
|
+
"modelName": "o4-mini",
|
|
2135
|
+
"systemMessage": "You are a developer of the Promptbook Project and a fast, cost-efficient virtual assistant. Prioritize clarity and speed while remaining accurate. Ask brief clarifying questions when necessary. Follow Promptbook conventions and keep outputs concise.",
|
|
2136
|
+
"temperature": 0.2
|
|
2130
2137
|
},
|
|
2131
2138
|
{
|
|
2132
2139
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2133
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2134
|
-
"temperature": 0.
|
|
2140
|
+
"systemMessage": "You are a developer of the Promptbook Project and a helpful virtual assistant. Be concise, follow instructions carefully, and ask clarifying questions when needed. Follow Promptbook conventions.",
|
|
2141
|
+
"temperature": 0.3
|
|
2135
2142
|
}
|
|
2136
2143
|
]
|
|
2137
2144
|
}
|
|
@@ -2144,10 +2151,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2144
2151
|
"preparations": [
|
|
2145
2152
|
{
|
|
2146
2153
|
"id": 1,
|
|
2147
|
-
"promptbookVersion": "0.100.
|
|
2154
|
+
"promptbookVersion": "0.100.1",
|
|
2148
2155
|
"usage": {
|
|
2149
2156
|
"price": {
|
|
2150
|
-
"value": 0.
|
|
2157
|
+
"value": 0.030392500000000003
|
|
2151
2158
|
},
|
|
2152
2159
|
"input": {
|
|
2153
2160
|
"tokensCount": {
|
|
@@ -2174,19 +2181,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2174
2181
|
},
|
|
2175
2182
|
"output": {
|
|
2176
2183
|
"tokensCount": {
|
|
2177
|
-
"value":
|
|
2184
|
+
"value": 2317
|
|
2178
2185
|
},
|
|
2179
2186
|
"charactersCount": {
|
|
2180
|
-
"value":
|
|
2187
|
+
"value": 1732
|
|
2181
2188
|
},
|
|
2182
2189
|
"wordsCount": {
|
|
2183
|
-
"value":
|
|
2190
|
+
"value": 219
|
|
2184
2191
|
},
|
|
2185
2192
|
"sentencesCount": {
|
|
2186
|
-
"value":
|
|
2193
|
+
"value": 27
|
|
2187
2194
|
},
|
|
2188
2195
|
"linesCount": {
|
|
2189
|
-
"value":
|
|
2196
|
+
"value": 48
|
|
2190
2197
|
},
|
|
2191
2198
|
"paragraphsCount": {
|
|
2192
2199
|
"value": 1
|
|
@@ -2816,23 +2823,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2816
2823
|
"models": [
|
|
2817
2824
|
{
|
|
2818
2825
|
"modelName": "gpt-4.1",
|
|
2819
|
-
"systemMessage": "You are
|
|
2820
|
-
"temperature": 0.
|
|
2826
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2827
|
+
"temperature": 0.15
|
|
2821
2828
|
},
|
|
2822
2829
|
{
|
|
2823
|
-
"modelName": "
|
|
2824
|
-
"systemMessage": "You are
|
|
2825
|
-
"temperature": 0.
|
|
2830
|
+
"modelName": "gpt-4",
|
|
2831
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2832
|
+
"temperature": 0.15
|
|
2826
2833
|
},
|
|
2827
2834
|
{
|
|
2828
|
-
"modelName": "
|
|
2829
|
-
"systemMessage": "You are
|
|
2835
|
+
"modelName": "chatgpt-4o-latest",
|
|
2836
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2830
2837
|
"temperature": 0.2
|
|
2831
2838
|
},
|
|
2839
|
+
{
|
|
2840
|
+
"modelName": "o4-mini",
|
|
2841
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2842
|
+
"temperature": 0.15
|
|
2843
|
+
},
|
|
2832
2844
|
{
|
|
2833
2845
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2834
|
-
"systemMessage": "You are
|
|
2835
|
-
"temperature": 0.
|
|
2846
|
+
"systemMessage": "You are an expert linguist and meticulous text corrector. Your job is to identify and fix grammar, spelling, punctuation, syntax, agreement, and word-choice issues while preserving meaning and the author’s voice. Improve clarity, concision, and flow without unnecessary rewriting. Respect the input language and locale; if unspecified, maintain the original variety (e.g., US vs UK). Do not translate unless asked. Handle multilingual and code-switched text. By default, output only the corrected text. If the user asks to explain or track changes, provide a brief bullet list of key edits or mark changes as requested.",
|
|
2847
|
+
"temperature": 0.1
|
|
2836
2848
|
}
|
|
2837
2849
|
]
|
|
2838
2850
|
}
|
|
@@ -2845,10 +2857,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2845
2857
|
"preparations": [
|
|
2846
2858
|
{
|
|
2847
2859
|
"id": 1,
|
|
2848
|
-
"promptbookVersion": "0.100.
|
|
2860
|
+
"promptbookVersion": "0.100.1",
|
|
2849
2861
|
"usage": {
|
|
2850
2862
|
"price": {
|
|
2851
|
-
"value": 0.
|
|
2863
|
+
"value": 0.036931250000000006
|
|
2852
2864
|
},
|
|
2853
2865
|
"input": {
|
|
2854
2866
|
"tokensCount": {
|
|
@@ -2875,19 +2887,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2875
2887
|
},
|
|
2876
2888
|
"output": {
|
|
2877
2889
|
"tokensCount": {
|
|
2878
|
-
"value":
|
|
2890
|
+
"value": 2971
|
|
2879
2891
|
},
|
|
2880
2892
|
"charactersCount": {
|
|
2881
|
-
"value":
|
|
2893
|
+
"value": 3611
|
|
2882
2894
|
},
|
|
2883
2895
|
"wordsCount": {
|
|
2884
|
-
"value":
|
|
2896
|
+
"value": 541
|
|
2885
2897
|
},
|
|
2886
2898
|
"sentencesCount": {
|
|
2887
|
-
"value":
|
|
2899
|
+
"value": 58
|
|
2888
2900
|
},
|
|
2889
2901
|
"linesCount": {
|
|
2890
|
-
"value":
|
|
2902
|
+
"value": 79
|
|
2891
2903
|
},
|
|
2892
2904
|
"paragraphsCount": {
|
|
2893
2905
|
"value": 1
|
|
@@ -2959,23 +2971,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2959
2971
|
"models": [
|
|
2960
2972
|
{
|
|
2961
2973
|
"modelName": "gpt-4.1",
|
|
2962
|
-
"systemMessage": "You are a skilled e
|
|
2963
|
-
"temperature": 0.
|
|
2974
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for online stores. Write persuasive, conversion-focused copy for product and category pages, landing pages, ads, and emails. Use benefits-first messaging, highlight key features and social proof, reduce friction, and include strong, specific calls to action. Match the provided brand voice and target audience. Optimize for SEO with natural keywords, compelling H1/H2s, meta titles/descriptions, and concise bullet points. Provide 3–5 headline options and 2–3 description variants when asked. Keep tone clear, trustworthy, and impactful. Ask clarifying questions if requirements are incomplete.",
|
|
2975
|
+
"temperature": 0.6
|
|
2964
2976
|
},
|
|
2965
2977
|
{
|
|
2966
2978
|
"modelName": "chatgpt-4o-latest",
|
|
2967
|
-
"systemMessage": "You are a skilled e
|
|
2968
|
-
"temperature": 0.
|
|
2979
|
+
"systemMessage": "You are a skilled e‑commerce copywriter for online stores. Create compelling, brand-aligned product descriptions, category copy, ads, and emails that drive conversions. Lead with benefits, support with features and social proof, and end with concise, specific CTAs. Keep language scannable with bullets and short paragraphs. Apply SEO best practices: natural keyword usage, strong titles, meta descriptions, and structured headings. Offer multiple headline/tagline options and A/B test variations on request. Ask for missing details (audience, tone, USP, keywords) before writing.",
|
|
2980
|
+
"temperature": 0.65
|
|
2969
2981
|
},
|
|
2970
2982
|
{
|
|
2971
2983
|
"modelName": "gpt-4",
|
|
2972
|
-
"systemMessage": "You are a skilled e
|
|
2973
|
-
"temperature": 0.
|
|
2984
|
+
"systemMessage": "You are a skilled e‑commerce copywriter. Produce persuasive, conversion-oriented copy for product pages, categories, landing pages, ads, and email. Emphasize benefits over features, handle objections, add social proof, and include clear CTAs. Follow the provided brand voice and audience. Optimize for SEO with natural keywords, strong headings, and concise meta tags. Provide 2–3 compelling variations when asked and note suggested keywords/FAQs. Ask clarifying questions if inputs are incomplete.",
|
|
2985
|
+
"temperature": 0.65
|
|
2974
2986
|
},
|
|
2975
2987
|
{
|
|
2976
2988
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2977
|
-
"systemMessage": "You are a
|
|
2978
|
-
"temperature": 0.
|
|
2989
|
+
"systemMessage": "You are a cost‑efficient e‑commerce copywriter. Write concise, persuasive product and category copy with clear benefits, features, and a strong CTA. Keep it scannable with short sentences and bullets. Match the given brand voice and include natural SEO keywords, headings, and meta descriptions. When requested, provide two alternative versions and headline options. Ask brief clarifying questions if essential details are missing.",
|
|
2990
|
+
"temperature": 0.7
|
|
2979
2991
|
}
|
|
2980
2992
|
]
|
|
2981
2993
|
}
|
|
@@ -2988,10 +3000,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2988
3000
|
"preparations": [
|
|
2989
3001
|
{
|
|
2990
3002
|
"id": 1,
|
|
2991
|
-
"promptbookVersion": "0.100.
|
|
3003
|
+
"promptbookVersion": "0.100.1",
|
|
2992
3004
|
"usage": {
|
|
2993
3005
|
"price": {
|
|
2994
|
-
"value": 0.
|
|
3006
|
+
"value": 0.03275125
|
|
2995
3007
|
},
|
|
2996
3008
|
"input": {
|
|
2997
3009
|
"tokensCount": {
|
|
@@ -3018,19 +3030,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3018
3030
|
},
|
|
3019
3031
|
"output": {
|
|
3020
3032
|
"tokensCount": {
|
|
3021
|
-
"value":
|
|
3033
|
+
"value": 2553
|
|
3022
3034
|
},
|
|
3023
3035
|
"charactersCount": {
|
|
3024
|
-
"value":
|
|
3036
|
+
"value": 2563
|
|
3025
3037
|
},
|
|
3026
3038
|
"wordsCount": {
|
|
3027
|
-
"value":
|
|
3039
|
+
"value": 353
|
|
3028
3040
|
},
|
|
3029
3041
|
"sentencesCount": {
|
|
3030
3042
|
"value": 35
|
|
3031
3043
|
},
|
|
3032
3044
|
"linesCount": {
|
|
3033
|
-
"value":
|
|
3045
|
+
"value": 58
|
|
3034
3046
|
},
|
|
3035
3047
|
"paragraphsCount": {
|
|
3036
3048
|
"value": 1
|
|
@@ -3084,7 +3096,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3084
3096
|
"preparations": [
|
|
3085
3097
|
{
|
|
3086
3098
|
"id": 1,
|
|
3087
|
-
"promptbookVersion": "0.100.
|
|
3099
|
+
"promptbookVersion": "0.100.1",
|
|
3088
3100
|
"usage": {
|
|
3089
3101
|
"price": {
|
|
3090
3102
|
"value": 0
|
|
@@ -3190,31 +3202,31 @@ function getTemplatesPipelineCollection() {
|
|
|
3190
3202
|
"modelsRequirements": [
|
|
3191
3203
|
{
|
|
3192
3204
|
"modelVariant": "CHAT",
|
|
3193
|
-
"
|
|
3194
|
-
{
|
|
3195
|
-
"modelName": "gpt-4.1",
|
|
3196
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Diagnose problems with structured, data-driven thinking. Provide concise, actionable recommendations with step-by-step plans, estimated impact, and clear KPIs. Ask targeted clarifying questions when needed. Tailor advice to the user's industry, audience, budget, and timeline. Be pragmatic, prioritize ROI, and state key assumptions and risks. Use a professional yet approachable tone.",
|
|
3197
|
-
"temperature": 0.3
|
|
3198
|
-
},
|
|
3205
|
+
"result": [
|
|
3199
3206
|
{
|
|
3200
3207
|
"modelName": "chatgpt-4o-latest",
|
|
3201
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3202
|
-
"temperature": 0.
|
|
3208
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3209
|
+
"temperature": 0.5
|
|
3203
3210
|
},
|
|
3204
3211
|
{
|
|
3205
|
-
"modelName": "gpt-4",
|
|
3206
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3207
|
-
"temperature": 0.
|
|
3212
|
+
"modelName": "gpt-4.1",
|
|
3213
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3214
|
+
"temperature": 0.4
|
|
3208
3215
|
},
|
|
3209
3216
|
{
|
|
3210
3217
|
"modelName": "o4-mini",
|
|
3211
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3212
|
-
"temperature": 0.
|
|
3218
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3219
|
+
"temperature": 0.4
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"modelName": "gpt-4",
|
|
3223
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3224
|
+
"temperature": 0.4
|
|
3213
3225
|
},
|
|
3214
3226
|
{
|
|
3215
3227
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3216
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3217
|
-
"temperature": 0.
|
|
3228
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable, ROI-focused advice. Use bullet points, clear structure, and plain language. When requirements are unclear, ask up to three clarifying questions. Apply classic frameworks (STP, AIDA, 4Ps, JTBD, SWOT, OKRs, RICE/ICE). Propose experiments with hypotheses, KPIs, budgets, and timelines. Prioritize by impact vs effort. State assumptions, note risks, and avoid speculation; cite sources or label estimates. Avoid heavy formatting like tables unless asked. Provide sample copy or templates only when requested. Adapt to the user's brand voice. Be professional, practical, and data-driven.",
|
|
3229
|
+
"temperature": 0.4
|
|
3218
3230
|
}
|
|
3219
3231
|
]
|
|
3220
3232
|
}
|
|
@@ -3227,10 +3239,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3227
3239
|
"preparations": [
|
|
3228
3240
|
{
|
|
3229
3241
|
"id": 1,
|
|
3230
|
-
"promptbookVersion": "0.100.
|
|
3242
|
+
"promptbookVersion": "0.100.1",
|
|
3231
3243
|
"usage": {
|
|
3232
3244
|
"price": {
|
|
3233
|
-
"value": 0.
|
|
3245
|
+
"value": 0.03970125
|
|
3234
3246
|
},
|
|
3235
3247
|
"input": {
|
|
3236
3248
|
"tokensCount": {
|
|
@@ -3257,19 +3269,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3257
3269
|
},
|
|
3258
3270
|
"output": {
|
|
3259
3271
|
"tokensCount": {
|
|
3260
|
-
"value":
|
|
3272
|
+
"value": 3248
|
|
3261
3273
|
},
|
|
3262
3274
|
"charactersCount": {
|
|
3263
|
-
"value":
|
|
3275
|
+
"value": 3913
|
|
3264
3276
|
},
|
|
3265
3277
|
"wordsCount": {
|
|
3266
|
-
"value":
|
|
3278
|
+
"value": 536
|
|
3267
3279
|
},
|
|
3268
3280
|
"sentencesCount": {
|
|
3269
|
-
"value":
|
|
3281
|
+
"value": 68
|
|
3270
3282
|
},
|
|
3271
3283
|
"linesCount": {
|
|
3272
|
-
"value":
|
|
3284
|
+
"value": 84
|
|
3273
3285
|
},
|
|
3274
3286
|
"paragraphsCount": {
|
|
3275
3287
|
"value": 1
|
|
@@ -3346,26 +3358,26 @@ function getTemplatesPipelineCollection() {
|
|
|
3346
3358
|
"modelsRequirements": [
|
|
3347
3359
|
{
|
|
3348
3360
|
"modelVariant": "CHAT",
|
|
3349
|
-
"
|
|
3361
|
+
"results": [
|
|
3350
3362
|
{
|
|
3351
3363
|
"modelName": "gpt-4.1",
|
|
3352
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3364
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3353
3365
|
"temperature": 0.5
|
|
3354
3366
|
},
|
|
3355
3367
|
{
|
|
3356
3368
|
"modelName": "chatgpt-4o-latest",
|
|
3357
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3369
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3358
3370
|
"temperature": 0.6
|
|
3359
3371
|
},
|
|
3360
3372
|
{
|
|
3361
3373
|
"modelName": "gpt-4",
|
|
3362
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3374
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3363
3375
|
"temperature": 0.5
|
|
3364
3376
|
},
|
|
3365
3377
|
{
|
|
3366
|
-
"modelName": "gpt-3.5-turbo-
|
|
3367
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e
|
|
3368
|
-
"temperature": 0.
|
|
3378
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3379
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Objectives: resolve issues accurately, empathetically, and efficiently while following store policies; provide clear product guidance and honest recommendations; and produce concise, conversion‑focused copy (product descriptions, headlines, emails, ads, UX microcopy) aligned with the brand voice. Behavior: be friendly, professional, and concise; use brief bullets and actionable next steps; ask targeted clarifying questions when details are missing (e.g., order ID, SKU, size, platform, deadlines); never invent policies or unavailable inventory—state uncertainties and how to verify; offer relevant, value‑based cross‑sells/upsells only when truly helpful; personalize to the user’s locale (currency, units, spelling) when known; protect privacy and never reveal internal notes or tools. Output: for service—summarize the issue, resolution/next steps, and timelines; for copy—include variations if requested, with tone options and character/word limits when specified.",
|
|
3380
|
+
"temperature": 0.6
|
|
3369
3381
|
}
|
|
3370
3382
|
]
|
|
3371
3383
|
}
|
|
@@ -3378,10 +3390,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3378
3390
|
"preparations": [
|
|
3379
3391
|
{
|
|
3380
3392
|
"id": 1,
|
|
3381
|
-
"promptbookVersion": "0.100.
|
|
3393
|
+
"promptbookVersion": "0.100.1",
|
|
3382
3394
|
"usage": {
|
|
3383
3395
|
"price": {
|
|
3384
|
-
"value": 0.
|
|
3396
|
+
"value": 0.04001625
|
|
3385
3397
|
},
|
|
3386
3398
|
"input": {
|
|
3387
3399
|
"tokensCount": {
|
|
@@ -3408,25 +3420,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3408
3420
|
},
|
|
3409
3421
|
"output": {
|
|
3410
3422
|
"tokensCount": {
|
|
3411
|
-
"value":
|
|
3423
|
+
"value": 3279
|
|
3412
3424
|
},
|
|
3413
3425
|
"charactersCount": {
|
|
3414
|
-
"value":
|
|
3426
|
+
"value": 4627
|
|
3415
3427
|
},
|
|
3416
3428
|
"wordsCount": {
|
|
3417
|
-
"value":
|
|
3429
|
+
"value": 630
|
|
3418
3430
|
},
|
|
3419
3431
|
"sentencesCount": {
|
|
3420
|
-
"value":
|
|
3432
|
+
"value": 31
|
|
3421
3433
|
},
|
|
3422
3434
|
"linesCount": {
|
|
3423
|
-
"value":
|
|
3435
|
+
"value": 92
|
|
3424
3436
|
},
|
|
3425
3437
|
"paragraphsCount": {
|
|
3426
3438
|
"value": 1
|
|
3427
3439
|
},
|
|
3428
3440
|
"pagesCount": {
|
|
3429
|
-
"value":
|
|
3441
|
+
"value": 3
|
|
3430
3442
|
}
|
|
3431
3443
|
}
|
|
3432
3444
|
}
|
|
@@ -3677,27 +3689,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3677
3689
|
"models": [
|
|
3678
3690
|
{
|
|
3679
3691
|
"modelName": "gpt-4.1",
|
|
3680
|
-
"systemMessage": "You are a professional linguist and
|
|
3692
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3681
3693
|
"temperature": 0.4
|
|
3682
3694
|
},
|
|
3683
3695
|
{
|
|
3684
3696
|
"modelName": "chatgpt-4o-latest",
|
|
3685
|
-
"systemMessage": "You are a
|
|
3697
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3686
3698
|
"temperature": 0.5
|
|
3687
3699
|
},
|
|
3688
3700
|
{
|
|
3689
3701
|
"modelName": "gpt-4",
|
|
3690
|
-
"systemMessage": "You are a professional linguist and
|
|
3702
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3691
3703
|
"temperature": 0.4
|
|
3692
3704
|
},
|
|
3693
3705
|
{
|
|
3694
|
-
"modelName": "
|
|
3695
|
-
"systemMessage": "You are a
|
|
3696
|
-
"temperature": 0.
|
|
3706
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3707
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3708
|
+
"temperature": 0.5
|
|
3697
3709
|
},
|
|
3698
3710
|
{
|
|
3699
|
-
"modelName": "
|
|
3700
|
-
"systemMessage": "You are a
|
|
3711
|
+
"modelName": "o4-mini",
|
|
3712
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Explain languages clearly and accurately; analyze phonetics/phonology, morphology, syntax, semantics, pragmatics, typology, and historical change. Use IPA for pronunciation; in Esperanto use standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and note penultimate stress. Provide interlinear glosses (Leipzig style) and morpheme breakdowns when helpful, especially Esperanto affixes. For translations, give both literal and idiomatic versions with brief usage notes. Prefer established references (e.g., PMEG, Fundamento) and state uncertainty when unsure. Ask clarifying questions if a request is ambiguous. Be friendly, concise, and avoid unnecessary formatting.",
|
|
3701
3713
|
"temperature": 0.3
|
|
3702
3714
|
}
|
|
3703
3715
|
]
|
|
@@ -3711,10 +3723,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3711
3723
|
"preparations": [
|
|
3712
3724
|
{
|
|
3713
3725
|
"id": 1,
|
|
3714
|
-
"promptbookVersion": "0.100.
|
|
3726
|
+
"promptbookVersion": "0.100.1",
|
|
3715
3727
|
"usage": {
|
|
3716
3728
|
"price": {
|
|
3717
|
-
"value": 0.
|
|
3729
|
+
"value": 0.04079125
|
|
3718
3730
|
},
|
|
3719
3731
|
"input": {
|
|
3720
3732
|
"tokensCount": {
|
|
@@ -3741,19 +3753,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3741
3753
|
},
|
|
3742
3754
|
"output": {
|
|
3743
3755
|
"tokensCount": {
|
|
3744
|
-
"value":
|
|
3756
|
+
"value": 3357
|
|
3745
3757
|
},
|
|
3746
3758
|
"charactersCount": {
|
|
3747
|
-
"value":
|
|
3759
|
+
"value": 4038
|
|
3748
3760
|
},
|
|
3749
3761
|
"wordsCount": {
|
|
3750
|
-
"value":
|
|
3762
|
+
"value": 526
|
|
3751
3763
|
},
|
|
3752
3764
|
"sentencesCount": {
|
|
3753
|
-
"value":
|
|
3765
|
+
"value": 58
|
|
3754
3766
|
},
|
|
3755
3767
|
"linesCount": {
|
|
3756
|
-
"value":
|
|
3768
|
+
"value": 84
|
|
3757
3769
|
},
|
|
3758
3770
|
"paragraphsCount": {
|
|
3759
3771
|
"value": 1
|
|
@@ -3824,23 +3836,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3824
3836
|
"models": [
|
|
3825
3837
|
{
|
|
3826
3838
|
"modelName": "gpt-4.1",
|
|
3827
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3828
|
-
"temperature": 0.
|
|
3839
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3840
|
+
"temperature": 0.9
|
|
3829
3841
|
},
|
|
3830
3842
|
{
|
|
3831
|
-
"modelName": "
|
|
3832
|
-
"systemMessage": "You are an accomplished poet and storyteller. Compose with strong imagery, rhythm, and voice. Adapt form and tone to the
|
|
3843
|
+
"modelName": "chatgpt-4o-latest",
|
|
3844
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3833
3845
|
"temperature": 0.9
|
|
3834
3846
|
},
|
|
3835
3847
|
{
|
|
3836
|
-
"modelName": "
|
|
3837
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3848
|
+
"modelName": "gpt-4",
|
|
3849
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3838
3850
|
"temperature": 0.9
|
|
3839
3851
|
},
|
|
3840
3852
|
{
|
|
3841
3853
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3842
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3843
|
-
"temperature": 0.
|
|
3854
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original work with strong imagery, rhythm, and voice. Adapt form and tone to the user's request (e.g., free verse, sonnet, ballad, micro-fiction, epic). Maintain coherence and a clear narrative arc; avoid clichés; favor concrete sensory detail. Ask one brief clarifying question if style or constraints are ambiguous.",
|
|
3855
|
+
"temperature": 0.8
|
|
3844
3856
|
}
|
|
3845
3857
|
]
|
|
3846
3858
|
}
|
|
@@ -3853,10 +3865,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3853
3865
|
"preparations": [
|
|
3854
3866
|
{
|
|
3855
3867
|
"id": 1,
|
|
3856
|
-
"promptbookVersion": "0.100.
|
|
3868
|
+
"promptbookVersion": "0.100.1",
|
|
3857
3869
|
"usage": {
|
|
3858
3870
|
"price": {
|
|
3859
|
-
"value": 0.
|
|
3871
|
+
"value": 0.02909
|
|
3860
3872
|
},
|
|
3861
3873
|
"input": {
|
|
3862
3874
|
"tokensCount": {
|
|
@@ -3883,19 +3895,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3883
3895
|
},
|
|
3884
3896
|
"output": {
|
|
3885
3897
|
"tokensCount": {
|
|
3886
|
-
"value":
|
|
3898
|
+
"value": 2187
|
|
3887
3899
|
},
|
|
3888
3900
|
"charactersCount": {
|
|
3889
|
-
"value":
|
|
3901
|
+
"value": 1930
|
|
3890
3902
|
},
|
|
3891
3903
|
"wordsCount": {
|
|
3892
|
-
"value":
|
|
3904
|
+
"value": 278
|
|
3893
3905
|
},
|
|
3894
3906
|
"sentencesCount": {
|
|
3895
3907
|
"value": 35
|
|
3896
3908
|
},
|
|
3897
3909
|
"linesCount": {
|
|
3898
|
-
"value":
|
|
3910
|
+
"value": 48
|
|
3899
3911
|
},
|
|
3900
3912
|
"paragraphsCount": {
|
|
3901
3913
|
"value": 1
|