@promptbook/templates 0.100.0 → 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 +170 -137
- 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/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +4 -4
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +3 -6
- package/esm/typings/src/execution/utils/validatePromptResult.d.ts +4 -4
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +3 -4
- package/esm/typings/src/utils/color/Color.d.ts +1 -2
- 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 +170 -137
- 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
|
-
"modelName": "
|
|
1568
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1569
|
-
"temperature": 0.
|
|
1574
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
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
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
|
-
"modelName": "
|
|
2133
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2134
|
-
"temperature": 0.
|
|
2139
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
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
2193
|
"value": 27
|
|
2187
2194
|
},
|
|
2188
2195
|
"linesCount": {
|
|
2189
|
-
"value":
|
|
2196
|
+
"value": 48
|
|
2190
2197
|
},
|
|
2191
2198
|
"paragraphsCount": {
|
|
2192
2199
|
"value": 1
|
|
@@ -2813,7 +2820,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2813
2820
|
"modelsRequirements": [
|
|
2814
2821
|
{
|
|
2815
2822
|
"modelVariant": "CHAT",
|
|
2816
|
-
"
|
|
2823
|
+
"models": [
|
|
2824
|
+
{
|
|
2825
|
+
"modelName": "gpt-4.1",
|
|
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
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
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
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
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.",
|
|
2837
|
+
"temperature": 0.2
|
|
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
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
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
|
|
2848
|
+
}
|
|
2849
|
+
]
|
|
2817
2850
|
}
|
|
2818
2851
|
],
|
|
2819
2852
|
"preparationIds": [
|
|
@@ -2824,10 +2857,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2824
2857
|
"preparations": [
|
|
2825
2858
|
{
|
|
2826
2859
|
"id": 1,
|
|
2827
|
-
"promptbookVersion": "0.100.
|
|
2860
|
+
"promptbookVersion": "0.100.1",
|
|
2828
2861
|
"usage": {
|
|
2829
2862
|
"price": {
|
|
2830
|
-
"value": 0.
|
|
2863
|
+
"value": 0.036931250000000006
|
|
2831
2864
|
},
|
|
2832
2865
|
"input": {
|
|
2833
2866
|
"tokensCount": {
|
|
@@ -2854,25 +2887,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2854
2887
|
},
|
|
2855
2888
|
"output": {
|
|
2856
2889
|
"tokensCount": {
|
|
2857
|
-
"value":
|
|
2890
|
+
"value": 2971
|
|
2858
2891
|
},
|
|
2859
2892
|
"charactersCount": {
|
|
2860
|
-
"value":
|
|
2893
|
+
"value": 3611
|
|
2861
2894
|
},
|
|
2862
2895
|
"wordsCount": {
|
|
2863
|
-
"value":
|
|
2896
|
+
"value": 541
|
|
2864
2897
|
},
|
|
2865
2898
|
"sentencesCount": {
|
|
2866
|
-
"value":
|
|
2899
|
+
"value": 58
|
|
2867
2900
|
},
|
|
2868
2901
|
"linesCount": {
|
|
2869
|
-
"value":
|
|
2902
|
+
"value": 79
|
|
2870
2903
|
},
|
|
2871
2904
|
"paragraphsCount": {
|
|
2872
2905
|
"value": 1
|
|
2873
2906
|
},
|
|
2874
2907
|
"pagesCount": {
|
|
2875
|
-
"value":
|
|
2908
|
+
"value": 2
|
|
2876
2909
|
}
|
|
2877
2910
|
}
|
|
2878
2911
|
}
|
|
@@ -2938,22 +2971,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2938
2971
|
"models": [
|
|
2939
2972
|
{
|
|
2940
2973
|
"modelName": "gpt-4.1",
|
|
2941
|
-
"systemMessage": "You are a
|
|
2942
|
-
"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
|
|
2943
2976
|
},
|
|
2944
2977
|
{
|
|
2945
2978
|
"modelName": "chatgpt-4o-latest",
|
|
2946
|
-
"systemMessage": "You are
|
|
2947
|
-
"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
|
|
2948
2981
|
},
|
|
2949
2982
|
{
|
|
2950
2983
|
"modelName": "gpt-4",
|
|
2951
|
-
"systemMessage": "You are a
|
|
2952
|
-
"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
|
|
2953
2986
|
},
|
|
2954
2987
|
{
|
|
2955
2988
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2956
|
-
"systemMessage": "You are a cost
|
|
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.",
|
|
2957
2990
|
"temperature": 0.7
|
|
2958
2991
|
}
|
|
2959
2992
|
]
|
|
@@ -2967,10 +3000,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2967
3000
|
"preparations": [
|
|
2968
3001
|
{
|
|
2969
3002
|
"id": 1,
|
|
2970
|
-
"promptbookVersion": "0.100.
|
|
3003
|
+
"promptbookVersion": "0.100.1",
|
|
2971
3004
|
"usage": {
|
|
2972
3005
|
"price": {
|
|
2973
|
-
"value": 0.
|
|
3006
|
+
"value": 0.03275125
|
|
2974
3007
|
},
|
|
2975
3008
|
"input": {
|
|
2976
3009
|
"tokensCount": {
|
|
@@ -2997,19 +3030,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2997
3030
|
},
|
|
2998
3031
|
"output": {
|
|
2999
3032
|
"tokensCount": {
|
|
3000
|
-
"value":
|
|
3033
|
+
"value": 2553
|
|
3001
3034
|
},
|
|
3002
3035
|
"charactersCount": {
|
|
3003
|
-
"value":
|
|
3036
|
+
"value": 2563
|
|
3004
3037
|
},
|
|
3005
3038
|
"wordsCount": {
|
|
3006
|
-
"value":
|
|
3039
|
+
"value": 353
|
|
3007
3040
|
},
|
|
3008
3041
|
"sentencesCount": {
|
|
3009
|
-
"value":
|
|
3042
|
+
"value": 35
|
|
3010
3043
|
},
|
|
3011
3044
|
"linesCount": {
|
|
3012
|
-
"value":
|
|
3045
|
+
"value": 58
|
|
3013
3046
|
},
|
|
3014
3047
|
"paragraphsCount": {
|
|
3015
3048
|
"value": 1
|
|
@@ -3063,7 +3096,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3063
3096
|
"preparations": [
|
|
3064
3097
|
{
|
|
3065
3098
|
"id": 1,
|
|
3066
|
-
"promptbookVersion": "0.100.
|
|
3099
|
+
"promptbookVersion": "0.100.1",
|
|
3067
3100
|
"usage": {
|
|
3068
3101
|
"price": {
|
|
3069
3102
|
"value": 0
|
|
@@ -3169,31 +3202,31 @@ function getTemplatesPipelineCollection() {
|
|
|
3169
3202
|
"modelsRequirements": [
|
|
3170
3203
|
{
|
|
3171
3204
|
"modelVariant": "CHAT",
|
|
3172
|
-
"
|
|
3205
|
+
"result": [
|
|
3206
|
+
{
|
|
3207
|
+
"modelName": "chatgpt-4o-latest",
|
|
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
|
|
3210
|
+
},
|
|
3173
3211
|
{
|
|
3174
3212
|
"modelName": "gpt-4.1",
|
|
3175
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3176
|
-
"temperature": 0.
|
|
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
|
|
3177
3215
|
},
|
|
3178
3216
|
{
|
|
3179
|
-
"modelName": "
|
|
3180
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3181
|
-
"temperature": 0.
|
|
3217
|
+
"modelName": "o4-mini",
|
|
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
|
|
3182
3220
|
},
|
|
3183
3221
|
{
|
|
3184
3222
|
"modelName": "gpt-4",
|
|
3185
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3186
|
-
"temperature": 0.
|
|
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
|
|
3187
3225
|
},
|
|
3188
3226
|
{
|
|
3189
3227
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3190
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3191
|
-
"temperature": 0.
|
|
3192
|
-
},
|
|
3193
|
-
{
|
|
3194
|
-
"modelName": "gpt-3.5-turbo",
|
|
3195
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, data-informed advice across go-to-market, positioning, messaging, channel strategy, pricing, growth, and ROI analysis. Use simple frameworks (SWOT, STP, 4Ps, AIDA, AARRR), state assumptions, define success metrics, and deliver step-by-step plans with actionable checklists. Ask concise clarifying questions when needed. Prefer bullet lists over long paragraphs; avoid heavy formatting. Keep a professional, friendly tone and aim for clarity and measurable outcomes. If uncertain, note limitations and suggest ways to validate.",
|
|
3196
|
-
"temperature": 0.6
|
|
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
|
|
3197
3230
|
}
|
|
3198
3231
|
]
|
|
3199
3232
|
}
|
|
@@ -3206,10 +3239,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3206
3239
|
"preparations": [
|
|
3207
3240
|
{
|
|
3208
3241
|
"id": 1,
|
|
3209
|
-
"promptbookVersion": "0.100.
|
|
3242
|
+
"promptbookVersion": "0.100.1",
|
|
3210
3243
|
"usage": {
|
|
3211
3244
|
"price": {
|
|
3212
|
-
"value": 0.
|
|
3245
|
+
"value": 0.03970125
|
|
3213
3246
|
},
|
|
3214
3247
|
"input": {
|
|
3215
3248
|
"tokensCount": {
|
|
@@ -3236,19 +3269,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3236
3269
|
},
|
|
3237
3270
|
"output": {
|
|
3238
3271
|
"tokensCount": {
|
|
3239
|
-
"value":
|
|
3272
|
+
"value": 3248
|
|
3240
3273
|
},
|
|
3241
3274
|
"charactersCount": {
|
|
3242
|
-
"value":
|
|
3275
|
+
"value": 3913
|
|
3243
3276
|
},
|
|
3244
3277
|
"wordsCount": {
|
|
3245
|
-
"value":
|
|
3278
|
+
"value": 536
|
|
3246
3279
|
},
|
|
3247
3280
|
"sentencesCount": {
|
|
3248
|
-
"value":
|
|
3281
|
+
"value": 68
|
|
3249
3282
|
},
|
|
3250
3283
|
"linesCount": {
|
|
3251
|
-
"value":
|
|
3284
|
+
"value": 84
|
|
3252
3285
|
},
|
|
3253
3286
|
"paragraphsCount": {
|
|
3254
3287
|
"value": 1
|
|
@@ -3325,26 +3358,26 @@ function getTemplatesPipelineCollection() {
|
|
|
3325
3358
|
"modelsRequirements": [
|
|
3326
3359
|
{
|
|
3327
3360
|
"modelVariant": "CHAT",
|
|
3328
|
-
"
|
|
3361
|
+
"results": [
|
|
3329
3362
|
{
|
|
3330
3363
|
"modelName": "gpt-4.1",
|
|
3331
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3332
|
-
"temperature": 0.
|
|
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.",
|
|
3365
|
+
"temperature": 0.5
|
|
3333
3366
|
},
|
|
3334
3367
|
{
|
|
3335
3368
|
"modelName": "chatgpt-4o-latest",
|
|
3336
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
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.",
|
|
3337
3370
|
"temperature": 0.6
|
|
3338
3371
|
},
|
|
3339
3372
|
{
|
|
3340
3373
|
"modelName": "gpt-4",
|
|
3341
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3342
|
-
"temperature": 0.
|
|
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.",
|
|
3375
|
+
"temperature": 0.5
|
|
3343
3376
|
},
|
|
3344
3377
|
{
|
|
3345
3378
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3346
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3347
|
-
"temperature": 0.
|
|
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
|
|
3348
3381
|
}
|
|
3349
3382
|
]
|
|
3350
3383
|
}
|
|
@@ -3357,10 +3390,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3357
3390
|
"preparations": [
|
|
3358
3391
|
{
|
|
3359
3392
|
"id": 1,
|
|
3360
|
-
"promptbookVersion": "0.100.
|
|
3393
|
+
"promptbookVersion": "0.100.1",
|
|
3361
3394
|
"usage": {
|
|
3362
3395
|
"price": {
|
|
3363
|
-
"value": 0.
|
|
3396
|
+
"value": 0.04001625
|
|
3364
3397
|
},
|
|
3365
3398
|
"input": {
|
|
3366
3399
|
"tokensCount": {
|
|
@@ -3387,25 +3420,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3387
3420
|
},
|
|
3388
3421
|
"output": {
|
|
3389
3422
|
"tokensCount": {
|
|
3390
|
-
"value":
|
|
3423
|
+
"value": 3279
|
|
3391
3424
|
},
|
|
3392
3425
|
"charactersCount": {
|
|
3393
|
-
"value":
|
|
3426
|
+
"value": 4627
|
|
3394
3427
|
},
|
|
3395
3428
|
"wordsCount": {
|
|
3396
|
-
"value":
|
|
3429
|
+
"value": 630
|
|
3397
3430
|
},
|
|
3398
3431
|
"sentencesCount": {
|
|
3399
|
-
"value":
|
|
3432
|
+
"value": 31
|
|
3400
3433
|
},
|
|
3401
3434
|
"linesCount": {
|
|
3402
|
-
"value":
|
|
3435
|
+
"value": 92
|
|
3403
3436
|
},
|
|
3404
3437
|
"paragraphsCount": {
|
|
3405
3438
|
"value": 1
|
|
3406
3439
|
},
|
|
3407
3440
|
"pagesCount": {
|
|
3408
|
-
"value":
|
|
3441
|
+
"value": 3
|
|
3409
3442
|
}
|
|
3410
3443
|
}
|
|
3411
3444
|
}
|
|
@@ -3656,28 +3689,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3656
3689
|
"models": [
|
|
3657
3690
|
{
|
|
3658
3691
|
"modelName": "gpt-4.1",
|
|
3659
|
-
"systemMessage": "You are a professional linguist and
|
|
3660
|
-
"temperature": 0.
|
|
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.",
|
|
3693
|
+
"temperature": 0.4
|
|
3661
3694
|
},
|
|
3662
3695
|
{
|
|
3663
3696
|
"modelName": "chatgpt-4o-latest",
|
|
3664
|
-
"systemMessage": "You are a
|
|
3665
|
-
"temperature": 0.
|
|
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.",
|
|
3698
|
+
"temperature": 0.5
|
|
3666
3699
|
},
|
|
3667
3700
|
{
|
|
3668
3701
|
"modelName": "gpt-4",
|
|
3669
|
-
"systemMessage": "You are a
|
|
3670
|
-
"temperature": 0.
|
|
3671
|
-
},
|
|
3672
|
-
{
|
|
3673
|
-
"modelName": "o4-mini",
|
|
3674
|
-
"systemMessage": "You are a rigorous linguist and expert Esperantist. Work step by step on formal analyses (phonological rules, morphological paradigms, syntactic trees), checking consistency. Provide IPA, interlinear glosses, and translations where useful. Default to English; switch to Esperanto on request. Ask for clarification when needed.",
|
|
3675
|
-
"temperature": 0.2
|
|
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.",
|
|
3703
|
+
"temperature": 0.4
|
|
3676
3704
|
},
|
|
3677
3705
|
{
|
|
3678
3706
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3679
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3680
3708
|
"temperature": 0.5
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
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.",
|
|
3713
|
+
"temperature": 0.3
|
|
3681
3714
|
}
|
|
3682
3715
|
]
|
|
3683
3716
|
}
|
|
@@ -3690,10 +3723,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3690
3723
|
"preparations": [
|
|
3691
3724
|
{
|
|
3692
3725
|
"id": 1,
|
|
3693
|
-
"promptbookVersion": "0.100.
|
|
3726
|
+
"promptbookVersion": "0.100.1",
|
|
3694
3727
|
"usage": {
|
|
3695
3728
|
"price": {
|
|
3696
|
-
"value": 0.
|
|
3729
|
+
"value": 0.04079125
|
|
3697
3730
|
},
|
|
3698
3731
|
"input": {
|
|
3699
3732
|
"tokensCount": {
|
|
@@ -3720,19 +3753,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3720
3753
|
},
|
|
3721
3754
|
"output": {
|
|
3722
3755
|
"tokensCount": {
|
|
3723
|
-
"value":
|
|
3756
|
+
"value": 3357
|
|
3724
3757
|
},
|
|
3725
3758
|
"charactersCount": {
|
|
3726
|
-
"value":
|
|
3759
|
+
"value": 4038
|
|
3727
3760
|
},
|
|
3728
3761
|
"wordsCount": {
|
|
3729
|
-
"value":
|
|
3762
|
+
"value": 526
|
|
3730
3763
|
},
|
|
3731
3764
|
"sentencesCount": {
|
|
3732
|
-
"value":
|
|
3765
|
+
"value": 58
|
|
3733
3766
|
},
|
|
3734
3767
|
"linesCount": {
|
|
3735
|
-
"value":
|
|
3768
|
+
"value": 84
|
|
3736
3769
|
},
|
|
3737
3770
|
"paragraphsCount": {
|
|
3738
3771
|
"value": 1
|
|
@@ -3803,22 +3836,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3803
3836
|
"models": [
|
|
3804
3837
|
{
|
|
3805
3838
|
"modelName": "gpt-4.1",
|
|
3806
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
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.",
|
|
3807
3840
|
"temperature": 0.9
|
|
3808
3841
|
},
|
|
3809
3842
|
{
|
|
3810
3843
|
"modelName": "chatgpt-4o-latest",
|
|
3811
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
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.",
|
|
3812
3845
|
"temperature": 0.9
|
|
3813
3846
|
},
|
|
3814
3847
|
{
|
|
3815
3848
|
"modelName": "gpt-4",
|
|
3816
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3817
|
-
"temperature": 0.
|
|
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.",
|
|
3850
|
+
"temperature": 0.9
|
|
3818
3851
|
},
|
|
3819
3852
|
{
|
|
3820
3853
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3821
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
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.",
|
|
3822
3855
|
"temperature": 0.8
|
|
3823
3856
|
}
|
|
3824
3857
|
]
|
|
@@ -3832,10 +3865,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3832
3865
|
"preparations": [
|
|
3833
3866
|
{
|
|
3834
3867
|
"id": 1,
|
|
3835
|
-
"promptbookVersion": "0.100.
|
|
3868
|
+
"promptbookVersion": "0.100.1",
|
|
3836
3869
|
"usage": {
|
|
3837
3870
|
"price": {
|
|
3838
|
-
"value": 0.
|
|
3871
|
+
"value": 0.02909
|
|
3839
3872
|
},
|
|
3840
3873
|
"input": {
|
|
3841
3874
|
"tokensCount": {
|
|
@@ -3862,25 +3895,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3862
3895
|
},
|
|
3863
3896
|
"output": {
|
|
3864
3897
|
"tokensCount": {
|
|
3865
|
-
"value":
|
|
3898
|
+
"value": 2187
|
|
3866
3899
|
},
|
|
3867
3900
|
"charactersCount": {
|
|
3868
|
-
"value":
|
|
3901
|
+
"value": 1930
|
|
3869
3902
|
},
|
|
3870
3903
|
"wordsCount": {
|
|
3871
|
-
"value":
|
|
3904
|
+
"value": 278
|
|
3872
3905
|
},
|
|
3873
3906
|
"sentencesCount": {
|
|
3874
|
-
"value":
|
|
3907
|
+
"value": 35
|
|
3875
3908
|
},
|
|
3876
3909
|
"linesCount": {
|
|
3877
|
-
"value":
|
|
3910
|
+
"value": 48
|
|
3878
3911
|
},
|
|
3879
3912
|
"paragraphsCount": {
|
|
3880
3913
|
"value": 1
|
|
3881
3914
|
},
|
|
3882
3915
|
"pagesCount": {
|
|
3883
|
-
"value":
|
|
3916
|
+
"value": 2
|
|
3884
3917
|
}
|
|
3885
3918
|
}
|
|
3886
3919
|
}
|