@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/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.2';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
* Tests if given string is valid
|
|
49
|
+
* Tests if given string is valid file path.
|
|
50
50
|
*
|
|
51
51
|
* Note: This does not check if the file exists only if the path is valid
|
|
52
52
|
* @public exported from `@promptbook/utils`
|
|
@@ -58,18 +58,25 @@
|
|
|
58
58
|
if (filename.split('\n').length > 1) {
|
|
59
59
|
return false;
|
|
60
60
|
}
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
// Normalize slashes early so heuristics can detect path-like inputs
|
|
62
|
+
const filenameSlashes = filename.replace(/\\/g, '/');
|
|
63
|
+
// Reject strings that look like sentences (informational text)
|
|
64
|
+
// Heuristic: contains multiple spaces and ends with a period, or contains typical sentence punctuation
|
|
65
|
+
// But skip this heuristic if the string looks like a path (contains '/' or starts with a drive letter)
|
|
66
|
+
if (filename.trim().length > 60 && // long enough to be a sentence
|
|
67
|
+
/[.!?]/.test(filename) && // contains sentence punctuation
|
|
68
|
+
filename.split(' ').length > 8 && // has many words
|
|
69
|
+
!/\/|^[A-Z]:/i.test(filenameSlashes) // do NOT treat as sentence if looks like a path
|
|
70
|
+
) {
|
|
63
71
|
return false;
|
|
64
72
|
}
|
|
65
|
-
const filenameSlashes = filename.split('\\').join('/');
|
|
66
73
|
// Absolute Unix path: /hello.txt
|
|
67
74
|
if (/^(\/)/i.test(filenameSlashes)) {
|
|
68
75
|
// console.log(filename, 'Absolute Unix path: /hello.txt');
|
|
69
76
|
return true;
|
|
70
77
|
}
|
|
71
|
-
// Absolute Windows path:
|
|
72
|
-
if (/^
|
|
78
|
+
// Absolute Windows path: C:/ or C:\ (allow spaces and multiple dots in filename)
|
|
79
|
+
if (/^[A-Z]:\/.+$/i.test(filenameSlashes)) {
|
|
73
80
|
// console.log(filename, 'Absolute Windows path: /hello.txt');
|
|
74
81
|
return true;
|
|
75
82
|
}
|
|
@@ -1552,28 +1559,28 @@
|
|
|
1552
1559
|
"models": [
|
|
1553
1560
|
{
|
|
1554
1561
|
"modelName": "gpt-4.1",
|
|
1555
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1556
|
-
"temperature": 0.
|
|
1562
|
+
"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.",
|
|
1563
|
+
"temperature": 0.2
|
|
1557
1564
|
},
|
|
1558
1565
|
{
|
|
1559
1566
|
"modelName": "chatgpt-4o-latest",
|
|
1560
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1561
|
-
"temperature": 0.
|
|
1567
|
+
"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.",
|
|
1568
|
+
"temperature": 0.3
|
|
1562
1569
|
},
|
|
1563
1570
|
{
|
|
1564
|
-
"modelName": "
|
|
1565
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1571
|
+
"modelName": "gpt-4",
|
|
1572
|
+
"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.",
|
|
1566
1573
|
"temperature": 0.2
|
|
1567
1574
|
},
|
|
1568
1575
|
{
|
|
1569
|
-
"modelName": "
|
|
1570
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1571
|
-
"temperature": 0.
|
|
1576
|
+
"modelName": "o4-mini",
|
|
1577
|
+
"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.",
|
|
1578
|
+
"temperature": 0.2
|
|
1572
1579
|
},
|
|
1573
1580
|
{
|
|
1574
|
-
"modelName": "
|
|
1575
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1576
|
-
"temperature": 0.
|
|
1581
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1582
|
+
"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.",
|
|
1583
|
+
"temperature": 0.3
|
|
1577
1584
|
}
|
|
1578
1585
|
]
|
|
1579
1586
|
}
|
|
@@ -1586,10 +1593,10 @@
|
|
|
1586
1593
|
"preparations": [
|
|
1587
1594
|
{
|
|
1588
1595
|
"id": 1,
|
|
1589
|
-
"promptbookVersion": "0.100.
|
|
1596
|
+
"promptbookVersion": "0.100.1",
|
|
1590
1597
|
"usage": {
|
|
1591
1598
|
"price": {
|
|
1592
|
-
"value": 0.
|
|
1599
|
+
"value": 0.030392500000000003
|
|
1593
1600
|
},
|
|
1594
1601
|
"input": {
|
|
1595
1602
|
"tokensCount": {
|
|
@@ -1616,19 +1623,19 @@
|
|
|
1616
1623
|
},
|
|
1617
1624
|
"output": {
|
|
1618
1625
|
"tokensCount": {
|
|
1619
|
-
"value":
|
|
1626
|
+
"value": 2317
|
|
1620
1627
|
},
|
|
1621
1628
|
"charactersCount": {
|
|
1622
|
-
"value":
|
|
1629
|
+
"value": 1732
|
|
1623
1630
|
},
|
|
1624
1631
|
"wordsCount": {
|
|
1625
|
-
"value":
|
|
1632
|
+
"value": 219
|
|
1626
1633
|
},
|
|
1627
1634
|
"sentencesCount": {
|
|
1628
1635
|
"value": 27
|
|
1629
1636
|
},
|
|
1630
1637
|
"linesCount": {
|
|
1631
|
-
"value":
|
|
1638
|
+
"value": 48
|
|
1632
1639
|
},
|
|
1633
1640
|
"paragraphsCount": {
|
|
1634
1641
|
"value": 1
|
|
@@ -2117,28 +2124,28 @@
|
|
|
2117
2124
|
"models": [
|
|
2118
2125
|
{
|
|
2119
2126
|
"modelName": "gpt-4.1",
|
|
2120
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2121
|
-
"temperature": 0.
|
|
2127
|
+
"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.",
|
|
2128
|
+
"temperature": 0.2
|
|
2122
2129
|
},
|
|
2123
2130
|
{
|
|
2124
2131
|
"modelName": "chatgpt-4o-latest",
|
|
2125
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2126
|
-
"temperature": 0.
|
|
2132
|
+
"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.",
|
|
2133
|
+
"temperature": 0.3
|
|
2127
2134
|
},
|
|
2128
2135
|
{
|
|
2129
|
-
"modelName": "
|
|
2130
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2136
|
+
"modelName": "gpt-4",
|
|
2137
|
+
"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.",
|
|
2131
2138
|
"temperature": 0.2
|
|
2132
2139
|
},
|
|
2133
2140
|
{
|
|
2134
|
-
"modelName": "
|
|
2135
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2136
|
-
"temperature": 0.
|
|
2141
|
+
"modelName": "o4-mini",
|
|
2142
|
+
"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.",
|
|
2143
|
+
"temperature": 0.2
|
|
2137
2144
|
},
|
|
2138
2145
|
{
|
|
2139
|
-
"modelName": "
|
|
2140
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2141
|
-
"temperature": 0.
|
|
2146
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2147
|
+
"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.",
|
|
2148
|
+
"temperature": 0.3
|
|
2142
2149
|
}
|
|
2143
2150
|
]
|
|
2144
2151
|
}
|
|
@@ -2151,10 +2158,10 @@
|
|
|
2151
2158
|
"preparations": [
|
|
2152
2159
|
{
|
|
2153
2160
|
"id": 1,
|
|
2154
|
-
"promptbookVersion": "0.100.
|
|
2161
|
+
"promptbookVersion": "0.100.1",
|
|
2155
2162
|
"usage": {
|
|
2156
2163
|
"price": {
|
|
2157
|
-
"value": 0.
|
|
2164
|
+
"value": 0.030392500000000003
|
|
2158
2165
|
},
|
|
2159
2166
|
"input": {
|
|
2160
2167
|
"tokensCount": {
|
|
@@ -2181,19 +2188,19 @@
|
|
|
2181
2188
|
},
|
|
2182
2189
|
"output": {
|
|
2183
2190
|
"tokensCount": {
|
|
2184
|
-
"value":
|
|
2191
|
+
"value": 2317
|
|
2185
2192
|
},
|
|
2186
2193
|
"charactersCount": {
|
|
2187
|
-
"value":
|
|
2194
|
+
"value": 1732
|
|
2188
2195
|
},
|
|
2189
2196
|
"wordsCount": {
|
|
2190
|
-
"value":
|
|
2197
|
+
"value": 219
|
|
2191
2198
|
},
|
|
2192
2199
|
"sentencesCount": {
|
|
2193
2200
|
"value": 27
|
|
2194
2201
|
},
|
|
2195
2202
|
"linesCount": {
|
|
2196
|
-
"value":
|
|
2203
|
+
"value": 48
|
|
2197
2204
|
},
|
|
2198
2205
|
"paragraphsCount": {
|
|
2199
2206
|
"value": 1
|
|
@@ -2820,7 +2827,33 @@
|
|
|
2820
2827
|
"modelsRequirements": [
|
|
2821
2828
|
{
|
|
2822
2829
|
"modelVariant": "CHAT",
|
|
2823
|
-
"
|
|
2830
|
+
"models": [
|
|
2831
|
+
{
|
|
2832
|
+
"modelName": "gpt-4.1",
|
|
2833
|
+
"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.",
|
|
2834
|
+
"temperature": 0.15
|
|
2835
|
+
},
|
|
2836
|
+
{
|
|
2837
|
+
"modelName": "gpt-4",
|
|
2838
|
+
"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.",
|
|
2839
|
+
"temperature": 0.15
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
"modelName": "chatgpt-4o-latest",
|
|
2843
|
+
"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.",
|
|
2844
|
+
"temperature": 0.2
|
|
2845
|
+
},
|
|
2846
|
+
{
|
|
2847
|
+
"modelName": "o4-mini",
|
|
2848
|
+
"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.",
|
|
2849
|
+
"temperature": 0.15
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2853
|
+
"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.",
|
|
2854
|
+
"temperature": 0.1
|
|
2855
|
+
}
|
|
2856
|
+
]
|
|
2824
2857
|
}
|
|
2825
2858
|
],
|
|
2826
2859
|
"preparationIds": [
|
|
@@ -2831,10 +2864,10 @@
|
|
|
2831
2864
|
"preparations": [
|
|
2832
2865
|
{
|
|
2833
2866
|
"id": 1,
|
|
2834
|
-
"promptbookVersion": "0.100.
|
|
2867
|
+
"promptbookVersion": "0.100.1",
|
|
2835
2868
|
"usage": {
|
|
2836
2869
|
"price": {
|
|
2837
|
-
"value": 0.
|
|
2870
|
+
"value": 0.036931250000000006
|
|
2838
2871
|
},
|
|
2839
2872
|
"input": {
|
|
2840
2873
|
"tokensCount": {
|
|
@@ -2861,25 +2894,25 @@
|
|
|
2861
2894
|
},
|
|
2862
2895
|
"output": {
|
|
2863
2896
|
"tokensCount": {
|
|
2864
|
-
"value":
|
|
2897
|
+
"value": 2971
|
|
2865
2898
|
},
|
|
2866
2899
|
"charactersCount": {
|
|
2867
|
-
"value":
|
|
2900
|
+
"value": 3611
|
|
2868
2901
|
},
|
|
2869
2902
|
"wordsCount": {
|
|
2870
|
-
"value":
|
|
2903
|
+
"value": 541
|
|
2871
2904
|
},
|
|
2872
2905
|
"sentencesCount": {
|
|
2873
|
-
"value":
|
|
2906
|
+
"value": 58
|
|
2874
2907
|
},
|
|
2875
2908
|
"linesCount": {
|
|
2876
|
-
"value":
|
|
2909
|
+
"value": 79
|
|
2877
2910
|
},
|
|
2878
2911
|
"paragraphsCount": {
|
|
2879
2912
|
"value": 1
|
|
2880
2913
|
},
|
|
2881
2914
|
"pagesCount": {
|
|
2882
|
-
"value":
|
|
2915
|
+
"value": 2
|
|
2883
2916
|
}
|
|
2884
2917
|
}
|
|
2885
2918
|
}
|
|
@@ -2945,22 +2978,22 @@
|
|
|
2945
2978
|
"models": [
|
|
2946
2979
|
{
|
|
2947
2980
|
"modelName": "gpt-4.1",
|
|
2948
|
-
"systemMessage": "You are a
|
|
2949
|
-
"temperature": 0.
|
|
2981
|
+
"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.",
|
|
2982
|
+
"temperature": 0.6
|
|
2950
2983
|
},
|
|
2951
2984
|
{
|
|
2952
2985
|
"modelName": "chatgpt-4o-latest",
|
|
2953
|
-
"systemMessage": "You are
|
|
2954
|
-
"temperature": 0.
|
|
2986
|
+
"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.",
|
|
2987
|
+
"temperature": 0.65
|
|
2955
2988
|
},
|
|
2956
2989
|
{
|
|
2957
2990
|
"modelName": "gpt-4",
|
|
2958
|
-
"systemMessage": "You are a
|
|
2959
|
-
"temperature": 0.
|
|
2991
|
+
"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.",
|
|
2992
|
+
"temperature": 0.65
|
|
2960
2993
|
},
|
|
2961
2994
|
{
|
|
2962
2995
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2963
|
-
"systemMessage": "You are a cost
|
|
2996
|
+
"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.",
|
|
2964
2997
|
"temperature": 0.7
|
|
2965
2998
|
}
|
|
2966
2999
|
]
|
|
@@ -2974,10 +3007,10 @@
|
|
|
2974
3007
|
"preparations": [
|
|
2975
3008
|
{
|
|
2976
3009
|
"id": 1,
|
|
2977
|
-
"promptbookVersion": "0.100.
|
|
3010
|
+
"promptbookVersion": "0.100.1",
|
|
2978
3011
|
"usage": {
|
|
2979
3012
|
"price": {
|
|
2980
|
-
"value": 0.
|
|
3013
|
+
"value": 0.03275125
|
|
2981
3014
|
},
|
|
2982
3015
|
"input": {
|
|
2983
3016
|
"tokensCount": {
|
|
@@ -3004,19 +3037,19 @@
|
|
|
3004
3037
|
},
|
|
3005
3038
|
"output": {
|
|
3006
3039
|
"tokensCount": {
|
|
3007
|
-
"value":
|
|
3040
|
+
"value": 2553
|
|
3008
3041
|
},
|
|
3009
3042
|
"charactersCount": {
|
|
3010
|
-
"value":
|
|
3043
|
+
"value": 2563
|
|
3011
3044
|
},
|
|
3012
3045
|
"wordsCount": {
|
|
3013
|
-
"value":
|
|
3046
|
+
"value": 353
|
|
3014
3047
|
},
|
|
3015
3048
|
"sentencesCount": {
|
|
3016
|
-
"value":
|
|
3049
|
+
"value": 35
|
|
3017
3050
|
},
|
|
3018
3051
|
"linesCount": {
|
|
3019
|
-
"value":
|
|
3052
|
+
"value": 58
|
|
3020
3053
|
},
|
|
3021
3054
|
"paragraphsCount": {
|
|
3022
3055
|
"value": 1
|
|
@@ -3070,7 +3103,7 @@
|
|
|
3070
3103
|
"preparations": [
|
|
3071
3104
|
{
|
|
3072
3105
|
"id": 1,
|
|
3073
|
-
"promptbookVersion": "0.100.
|
|
3106
|
+
"promptbookVersion": "0.100.1",
|
|
3074
3107
|
"usage": {
|
|
3075
3108
|
"price": {
|
|
3076
3109
|
"value": 0
|
|
@@ -3176,31 +3209,31 @@
|
|
|
3176
3209
|
"modelsRequirements": [
|
|
3177
3210
|
{
|
|
3178
3211
|
"modelVariant": "CHAT",
|
|
3179
|
-
"
|
|
3212
|
+
"result": [
|
|
3213
|
+
{
|
|
3214
|
+
"modelName": "chatgpt-4o-latest",
|
|
3215
|
+
"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.",
|
|
3216
|
+
"temperature": 0.5
|
|
3217
|
+
},
|
|
3180
3218
|
{
|
|
3181
3219
|
"modelName": "gpt-4.1",
|
|
3182
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3183
|
-
"temperature": 0.
|
|
3220
|
+
"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.",
|
|
3221
|
+
"temperature": 0.4
|
|
3184
3222
|
},
|
|
3185
3223
|
{
|
|
3186
|
-
"modelName": "
|
|
3187
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3188
|
-
"temperature": 0.
|
|
3224
|
+
"modelName": "o4-mini",
|
|
3225
|
+
"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.",
|
|
3226
|
+
"temperature": 0.4
|
|
3189
3227
|
},
|
|
3190
3228
|
{
|
|
3191
3229
|
"modelName": "gpt-4",
|
|
3192
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3193
|
-
"temperature": 0.
|
|
3230
|
+
"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.",
|
|
3231
|
+
"temperature": 0.4
|
|
3194
3232
|
},
|
|
3195
3233
|
{
|
|
3196
3234
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3197
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3198
|
-
"temperature": 0.
|
|
3199
|
-
},
|
|
3200
|
-
{
|
|
3201
|
-
"modelName": "gpt-3.5-turbo",
|
|
3202
|
-
"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.",
|
|
3203
|
-
"temperature": 0.6
|
|
3235
|
+
"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.",
|
|
3236
|
+
"temperature": 0.4
|
|
3204
3237
|
}
|
|
3205
3238
|
]
|
|
3206
3239
|
}
|
|
@@ -3213,10 +3246,10 @@
|
|
|
3213
3246
|
"preparations": [
|
|
3214
3247
|
{
|
|
3215
3248
|
"id": 1,
|
|
3216
|
-
"promptbookVersion": "0.100.
|
|
3249
|
+
"promptbookVersion": "0.100.1",
|
|
3217
3250
|
"usage": {
|
|
3218
3251
|
"price": {
|
|
3219
|
-
"value": 0.
|
|
3252
|
+
"value": 0.03970125
|
|
3220
3253
|
},
|
|
3221
3254
|
"input": {
|
|
3222
3255
|
"tokensCount": {
|
|
@@ -3243,19 +3276,19 @@
|
|
|
3243
3276
|
},
|
|
3244
3277
|
"output": {
|
|
3245
3278
|
"tokensCount": {
|
|
3246
|
-
"value":
|
|
3279
|
+
"value": 3248
|
|
3247
3280
|
},
|
|
3248
3281
|
"charactersCount": {
|
|
3249
|
-
"value":
|
|
3282
|
+
"value": 3913
|
|
3250
3283
|
},
|
|
3251
3284
|
"wordsCount": {
|
|
3252
|
-
"value":
|
|
3285
|
+
"value": 536
|
|
3253
3286
|
},
|
|
3254
3287
|
"sentencesCount": {
|
|
3255
|
-
"value":
|
|
3288
|
+
"value": 68
|
|
3256
3289
|
},
|
|
3257
3290
|
"linesCount": {
|
|
3258
|
-
"value":
|
|
3291
|
+
"value": 84
|
|
3259
3292
|
},
|
|
3260
3293
|
"paragraphsCount": {
|
|
3261
3294
|
"value": 1
|
|
@@ -3332,26 +3365,26 @@
|
|
|
3332
3365
|
"modelsRequirements": [
|
|
3333
3366
|
{
|
|
3334
3367
|
"modelVariant": "CHAT",
|
|
3335
|
-
"
|
|
3368
|
+
"results": [
|
|
3336
3369
|
{
|
|
3337
3370
|
"modelName": "gpt-4.1",
|
|
3338
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3339
|
-
"temperature": 0.
|
|
3371
|
+
"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.",
|
|
3372
|
+
"temperature": 0.5
|
|
3340
3373
|
},
|
|
3341
3374
|
{
|
|
3342
3375
|
"modelName": "chatgpt-4o-latest",
|
|
3343
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3376
|
+
"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.",
|
|
3344
3377
|
"temperature": 0.6
|
|
3345
3378
|
},
|
|
3346
3379
|
{
|
|
3347
3380
|
"modelName": "gpt-4",
|
|
3348
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3349
|
-
"temperature": 0.
|
|
3381
|
+
"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.",
|
|
3382
|
+
"temperature": 0.5
|
|
3350
3383
|
},
|
|
3351
3384
|
{
|
|
3352
3385
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3353
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3354
|
-
"temperature": 0.
|
|
3386
|
+
"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.",
|
|
3387
|
+
"temperature": 0.6
|
|
3355
3388
|
}
|
|
3356
3389
|
]
|
|
3357
3390
|
}
|
|
@@ -3364,10 +3397,10 @@
|
|
|
3364
3397
|
"preparations": [
|
|
3365
3398
|
{
|
|
3366
3399
|
"id": 1,
|
|
3367
|
-
"promptbookVersion": "0.100.
|
|
3400
|
+
"promptbookVersion": "0.100.1",
|
|
3368
3401
|
"usage": {
|
|
3369
3402
|
"price": {
|
|
3370
|
-
"value": 0.
|
|
3403
|
+
"value": 0.04001625
|
|
3371
3404
|
},
|
|
3372
3405
|
"input": {
|
|
3373
3406
|
"tokensCount": {
|
|
@@ -3394,25 +3427,25 @@
|
|
|
3394
3427
|
},
|
|
3395
3428
|
"output": {
|
|
3396
3429
|
"tokensCount": {
|
|
3397
|
-
"value":
|
|
3430
|
+
"value": 3279
|
|
3398
3431
|
},
|
|
3399
3432
|
"charactersCount": {
|
|
3400
|
-
"value":
|
|
3433
|
+
"value": 4627
|
|
3401
3434
|
},
|
|
3402
3435
|
"wordsCount": {
|
|
3403
|
-
"value":
|
|
3436
|
+
"value": 630
|
|
3404
3437
|
},
|
|
3405
3438
|
"sentencesCount": {
|
|
3406
|
-
"value":
|
|
3439
|
+
"value": 31
|
|
3407
3440
|
},
|
|
3408
3441
|
"linesCount": {
|
|
3409
|
-
"value":
|
|
3442
|
+
"value": 92
|
|
3410
3443
|
},
|
|
3411
3444
|
"paragraphsCount": {
|
|
3412
3445
|
"value": 1
|
|
3413
3446
|
},
|
|
3414
3447
|
"pagesCount": {
|
|
3415
|
-
"value":
|
|
3448
|
+
"value": 3
|
|
3416
3449
|
}
|
|
3417
3450
|
}
|
|
3418
3451
|
}
|
|
@@ -3663,28 +3696,28 @@
|
|
|
3663
3696
|
"models": [
|
|
3664
3697
|
{
|
|
3665
3698
|
"modelName": "gpt-4.1",
|
|
3666
|
-
"systemMessage": "You are a professional linguist and
|
|
3667
|
-
"temperature": 0.
|
|
3699
|
+
"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.",
|
|
3700
|
+
"temperature": 0.4
|
|
3668
3701
|
},
|
|
3669
3702
|
{
|
|
3670
3703
|
"modelName": "chatgpt-4o-latest",
|
|
3671
|
-
"systemMessage": "You are a
|
|
3672
|
-
"temperature": 0.
|
|
3704
|
+
"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.",
|
|
3705
|
+
"temperature": 0.5
|
|
3673
3706
|
},
|
|
3674
3707
|
{
|
|
3675
3708
|
"modelName": "gpt-4",
|
|
3676
|
-
"systemMessage": "You are a
|
|
3677
|
-
"temperature": 0.
|
|
3678
|
-
},
|
|
3679
|
-
{
|
|
3680
|
-
"modelName": "o4-mini",
|
|
3681
|
-
"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.",
|
|
3682
|
-
"temperature": 0.2
|
|
3709
|
+
"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.",
|
|
3710
|
+
"temperature": 0.4
|
|
3683
3711
|
},
|
|
3684
3712
|
{
|
|
3685
3713
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3686
|
-
"systemMessage": "You are a
|
|
3714
|
+
"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.",
|
|
3687
3715
|
"temperature": 0.5
|
|
3716
|
+
},
|
|
3717
|
+
{
|
|
3718
|
+
"modelName": "o4-mini",
|
|
3719
|
+
"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.",
|
|
3720
|
+
"temperature": 0.3
|
|
3688
3721
|
}
|
|
3689
3722
|
]
|
|
3690
3723
|
}
|
|
@@ -3697,10 +3730,10 @@
|
|
|
3697
3730
|
"preparations": [
|
|
3698
3731
|
{
|
|
3699
3732
|
"id": 1,
|
|
3700
|
-
"promptbookVersion": "0.100.
|
|
3733
|
+
"promptbookVersion": "0.100.1",
|
|
3701
3734
|
"usage": {
|
|
3702
3735
|
"price": {
|
|
3703
|
-
"value": 0.
|
|
3736
|
+
"value": 0.04079125
|
|
3704
3737
|
},
|
|
3705
3738
|
"input": {
|
|
3706
3739
|
"tokensCount": {
|
|
@@ -3727,19 +3760,19 @@
|
|
|
3727
3760
|
},
|
|
3728
3761
|
"output": {
|
|
3729
3762
|
"tokensCount": {
|
|
3730
|
-
"value":
|
|
3763
|
+
"value": 3357
|
|
3731
3764
|
},
|
|
3732
3765
|
"charactersCount": {
|
|
3733
|
-
"value":
|
|
3766
|
+
"value": 4038
|
|
3734
3767
|
},
|
|
3735
3768
|
"wordsCount": {
|
|
3736
|
-
"value":
|
|
3769
|
+
"value": 526
|
|
3737
3770
|
},
|
|
3738
3771
|
"sentencesCount": {
|
|
3739
|
-
"value":
|
|
3772
|
+
"value": 58
|
|
3740
3773
|
},
|
|
3741
3774
|
"linesCount": {
|
|
3742
|
-
"value":
|
|
3775
|
+
"value": 84
|
|
3743
3776
|
},
|
|
3744
3777
|
"paragraphsCount": {
|
|
3745
3778
|
"value": 1
|
|
@@ -3810,22 +3843,22 @@
|
|
|
3810
3843
|
"models": [
|
|
3811
3844
|
{
|
|
3812
3845
|
"modelName": "gpt-4.1",
|
|
3813
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3846
|
+
"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.",
|
|
3814
3847
|
"temperature": 0.9
|
|
3815
3848
|
},
|
|
3816
3849
|
{
|
|
3817
3850
|
"modelName": "chatgpt-4o-latest",
|
|
3818
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3851
|
+
"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.",
|
|
3819
3852
|
"temperature": 0.9
|
|
3820
3853
|
},
|
|
3821
3854
|
{
|
|
3822
3855
|
"modelName": "gpt-4",
|
|
3823
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3824
|
-
"temperature": 0.
|
|
3856
|
+
"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.",
|
|
3857
|
+
"temperature": 0.9
|
|
3825
3858
|
},
|
|
3826
3859
|
{
|
|
3827
3860
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3828
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3861
|
+
"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.",
|
|
3829
3862
|
"temperature": 0.8
|
|
3830
3863
|
}
|
|
3831
3864
|
]
|
|
@@ -3839,10 +3872,10 @@
|
|
|
3839
3872
|
"preparations": [
|
|
3840
3873
|
{
|
|
3841
3874
|
"id": 1,
|
|
3842
|
-
"promptbookVersion": "0.100.
|
|
3875
|
+
"promptbookVersion": "0.100.1",
|
|
3843
3876
|
"usage": {
|
|
3844
3877
|
"price": {
|
|
3845
|
-
"value": 0.
|
|
3878
|
+
"value": 0.02909
|
|
3846
3879
|
},
|
|
3847
3880
|
"input": {
|
|
3848
3881
|
"tokensCount": {
|
|
@@ -3869,25 +3902,25 @@
|
|
|
3869
3902
|
},
|
|
3870
3903
|
"output": {
|
|
3871
3904
|
"tokensCount": {
|
|
3872
|
-
"value":
|
|
3905
|
+
"value": 2187
|
|
3873
3906
|
},
|
|
3874
3907
|
"charactersCount": {
|
|
3875
|
-
"value":
|
|
3908
|
+
"value": 1930
|
|
3876
3909
|
},
|
|
3877
3910
|
"wordsCount": {
|
|
3878
|
-
"value":
|
|
3911
|
+
"value": 278
|
|
3879
3912
|
},
|
|
3880
3913
|
"sentencesCount": {
|
|
3881
|
-
"value":
|
|
3914
|
+
"value": 35
|
|
3882
3915
|
},
|
|
3883
3916
|
"linesCount": {
|
|
3884
|
-
"value":
|
|
3917
|
+
"value": 48
|
|
3885
3918
|
},
|
|
3886
3919
|
"paragraphsCount": {
|
|
3887
3920
|
"value": 1
|
|
3888
3921
|
},
|
|
3889
3922
|
"pagesCount": {
|
|
3890
|
-
"value":
|
|
3923
|
+
"value": 2
|
|
3891
3924
|
}
|
|
3892
3925
|
}
|
|
3893
3926
|
}
|