@promptbook/templates 0.101.0-0 → 0.101.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +171 -173
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +12 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +0 -5
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +8 -2
- package/esm/typings/src/book-components/Chat/Chat/constants.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +16 -0
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.d.ts +21 -0
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.test.d.ts +1 -0
- package/esm/typings/src/book-components/icons/ArrowIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ResetIcon.d.ts +6 -0
- package/esm/typings/src/book-components/icons/SendIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/TemplateIcon.d.ts +8 -0
- package/esm/typings/src/utils/markdown/escapeMarkdownBlock.d.ts +2 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextEllipsis.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextEmdashed.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextQuotes.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextWhitespace.d.ts +1 -0
- package/esm/typings/src/utils/markdown/prettifyMarkdown.d.ts +8 -0
- package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +1 -0
- package/esm/typings/src/utils/normalization/capitalize.d.ts +2 -0
- package/esm/typings/src/utils/normalization/decapitalize.d.ts +3 -1
- package/esm/typings/src/utils/normalization/normalizeTo_SCREAMING_CASE.d.ts +2 -0
- package/esm/typings/src/utils/normalization/normalizeTo_snake_case.d.ts +2 -0
- package/esm/typings/src/utils/normalization/normalizeWhitespaces.d.ts +2 -0
- package/esm/typings/src/utils/normalization/removeDiacritics.d.ts +2 -0
- package/esm/typings/src/utils/parseNumber.d.ts +1 -0
- package/esm/typings/src/utils/removeEmojis.d.ts +2 -0
- package/esm/typings/src/utils/removeQuotes.d.ts +1 -0
- package/esm/typings/src/utils/serialization/deepClone.d.ts +1 -0
- package/esm/typings/src/utils/trimCodeBlock.d.ts +1 -0
- package/esm/typings/src/utils/validators/url/isValidUrl.d.ts +1 -0
- package/esm/typings/src/utils/validators/uuid/isValidUuid.d.ts +2 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +176 -177
- package/umd/index.umd.js.map +1 -1
package/umd/index.umd.js
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim')
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'spacetrim'
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim
|
|
5
|
-
})(this, (function (exports, spaceTrim
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'spacetrim'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim));
|
|
5
|
+
})(this, (function (exports, spaceTrim) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
8
|
|
|
9
9
|
var spaceTrim__default = /*#__PURE__*/_interopDefaultLegacy(spaceTrim);
|
|
10
|
-
var parserHtml__default = /*#__PURE__*/_interopDefaultLegacy(parserHtml);
|
|
11
|
-
var parserMarkdown__default = /*#__PURE__*/_interopDefaultLegacy(parserMarkdown);
|
|
12
10
|
|
|
13
11
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
14
12
|
/**
|
|
@@ -24,7 +22,7 @@
|
|
|
24
22
|
* @generated
|
|
25
23
|
* @see https://github.com/webgptorg/promptbook
|
|
26
24
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-2';
|
|
28
26
|
/**
|
|
29
27
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -104,6 +102,7 @@
|
|
|
104
102
|
/**
|
|
105
103
|
* Tests if given string is valid URL.
|
|
106
104
|
*
|
|
105
|
+
* Note: [🔂] This function is idempotent.
|
|
107
106
|
* Note: Dataurl are considered perfectly valid.
|
|
108
107
|
* Note: There are two similar functions:
|
|
109
108
|
* - `isValidUrl` which tests any URL
|
|
@@ -401,10 +400,20 @@
|
|
|
401
400
|
* @private withing the package because of HUGE size of prettier dependency
|
|
402
401
|
*/
|
|
403
402
|
function prettifyMarkdown(content) {
|
|
403
|
+
// In browser/Next.js environments, just return the original content
|
|
404
|
+
// since prettier parsers are not available and would cause bundling issues
|
|
405
|
+
if (typeof window !== 'undefined') {
|
|
406
|
+
return content;
|
|
407
|
+
}
|
|
404
408
|
try {
|
|
405
|
-
|
|
409
|
+
// Use dynamic require to avoid static imports that cause bundling issues
|
|
410
|
+
// This will only work in Node.js environments
|
|
411
|
+
const prettierStandalone = eval('require')('prettier/standalone');
|
|
412
|
+
const parserMarkdown = eval('require')('prettier/parser-markdown');
|
|
413
|
+
const parserHtml = eval('require')('prettier/parser-html');
|
|
414
|
+
return prettierStandalone.format(content, {
|
|
406
415
|
parser: 'markdown',
|
|
407
|
-
plugins: [
|
|
416
|
+
plugins: [parserMarkdown, parserHtml],
|
|
408
417
|
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
409
418
|
endOfLine: 'lf',
|
|
410
419
|
tabWidth: 4,
|
|
@@ -430,6 +439,8 @@
|
|
|
430
439
|
/**
|
|
431
440
|
* Makes first letter of a string uppercase
|
|
432
441
|
*
|
|
442
|
+
* Note: [🔂] This function is idempotent.
|
|
443
|
+
*
|
|
433
444
|
* @public exported from `@promptbook/utils`
|
|
434
445
|
*/
|
|
435
446
|
function capitalize(word) {
|
|
@@ -759,6 +770,7 @@
|
|
|
759
770
|
/**
|
|
760
771
|
* Creates a deep clone of the given object
|
|
761
772
|
*
|
|
773
|
+
* Note: [🔂] This function is idempotent.
|
|
762
774
|
* Note: This method only works for objects that are fully serializable to JSON and do not contain functions, Dates, or special types.
|
|
763
775
|
*
|
|
764
776
|
* @param objectValue The object to clone.
|
|
@@ -1559,38 +1571,28 @@
|
|
|
1559
1571
|
"models": [
|
|
1560
1572
|
{
|
|
1561
1573
|
"modelName": "gpt-4.1",
|
|
1562
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1574
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a senior AI engineer and pragmatic virtual assistant. Optimize for accuracy, determinism, and actionable next steps. Provide high-quality prompt designs, clean code snippets, and brief rationales. Ask clarifying questions when requirements are ambiguous. Use concise bullet points by default.",
|
|
1563
1575
|
"temperature": 0.3
|
|
1564
1576
|
},
|
|
1565
1577
|
{
|
|
1566
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1567
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1568
|
-
"temperature": 0.
|
|
1579
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, latency-aware virtual assistant. Keep responses concise, explain simply, and reason step-by-step when the task is non-trivial. Provide prompt templates, small code examples, and quick checklists. Confirm assumptions before executing plans.",
|
|
1580
|
+
"temperature": 0.4
|
|
1569
1581
|
},
|
|
1570
1582
|
{
|
|
1571
1583
|
"modelName": "o4-mini",
|
|
1572
|
-
"systemMessage": "You are a
|
|
1573
|
-
"temperature": 0.
|
|
1584
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Deliver crisp action plans, evaluate trade-offs, and propose prompt patterns and test harnesses. Prefer brevity and determinism. Ask for missing context.",
|
|
1585
|
+
"temperature": 0.25
|
|
1574
1586
|
},
|
|
1575
1587
|
{
|
|
1576
1588
|
"modelName": "gpt-4",
|
|
1577
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
1578
|
-
"temperature": 0.
|
|
1589
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide rigorous yet concise technical guidance, careful reasoning, and reliable code. Prefer bullet lists, call out risks and edge cases, and keep formatting consistent for easy copy/paste.",
|
|
1590
|
+
"temperature": 0.3
|
|
1579
1591
|
},
|
|
1580
1592
|
{
|
|
1581
1593
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1582
|
-
"systemMessage": "You are a
|
|
1594
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Offer practical tips, lightweight prompts, and straightforward code with minimal dependencies. Clarify requirements when uncertain.",
|
|
1583
1595
|
"temperature": 0.4
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
"modelName": "o3",
|
|
1587
|
-
"systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
|
|
1588
|
-
"temperature": 0.2
|
|
1589
|
-
},
|
|
1590
|
-
{
|
|
1591
|
-
"modelName": "gpt-realtime",
|
|
1592
|
-
"systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
|
|
1593
|
-
"temperature": 0.5
|
|
1594
1596
|
}
|
|
1595
1597
|
]
|
|
1596
1598
|
}
|
|
@@ -1603,10 +1605,10 @@
|
|
|
1603
1605
|
"preparations": [
|
|
1604
1606
|
{
|
|
1605
1607
|
"id": 1,
|
|
1606
|
-
"promptbookVersion": "0.
|
|
1608
|
+
"promptbookVersion": "0.101.0-1",
|
|
1607
1609
|
"usage": {
|
|
1608
1610
|
"price": {
|
|
1609
|
-
"value": 0.
|
|
1611
|
+
"value": 0.031982500000000004
|
|
1610
1612
|
},
|
|
1611
1613
|
"input": {
|
|
1612
1614
|
"tokensCount": {
|
|
@@ -1633,19 +1635,19 @@
|
|
|
1633
1635
|
},
|
|
1634
1636
|
"output": {
|
|
1635
1637
|
"tokensCount": {
|
|
1636
|
-
"value":
|
|
1638
|
+
"value": 2476
|
|
1637
1639
|
},
|
|
1638
1640
|
"charactersCount": {
|
|
1639
|
-
"value":
|
|
1641
|
+
"value": 1848
|
|
1640
1642
|
},
|
|
1641
1643
|
"wordsCount": {
|
|
1642
|
-
"value":
|
|
1644
|
+
"value": 246
|
|
1643
1645
|
},
|
|
1644
1646
|
"sentencesCount": {
|
|
1645
|
-
"value":
|
|
1647
|
+
"value": 28
|
|
1646
1648
|
},
|
|
1647
1649
|
"linesCount": {
|
|
1648
|
-
"value":
|
|
1650
|
+
"value": 50
|
|
1649
1651
|
},
|
|
1650
1652
|
"paragraphsCount": {
|
|
1651
1653
|
"value": 1
|
|
@@ -2134,38 +2136,28 @@
|
|
|
2134
2136
|
"models": [
|
|
2135
2137
|
{
|
|
2136
2138
|
"modelName": "gpt-4.1",
|
|
2137
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2139
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a senior AI engineer and pragmatic virtual assistant. Optimize for accuracy, determinism, and actionable next steps. Provide high-quality prompt designs, clean code snippets, and brief rationales. Ask clarifying questions when requirements are ambiguous. Use concise bullet points by default.",
|
|
2138
2140
|
"temperature": 0.3
|
|
2139
2141
|
},
|
|
2140
2142
|
{
|
|
2141
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2142
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2143
|
-
"temperature": 0.
|
|
2144
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, latency-aware virtual assistant. Keep responses concise, explain simply, and reason step-by-step when the task is non-trivial. Provide prompt templates, small code examples, and quick checklists. Confirm assumptions before executing plans.",
|
|
2145
|
+
"temperature": 0.4
|
|
2144
2146
|
},
|
|
2145
2147
|
{
|
|
2146
2148
|
"modelName": "o4-mini",
|
|
2147
|
-
"systemMessage": "You are a
|
|
2148
|
-
"temperature": 0.
|
|
2149
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Deliver crisp action plans, evaluate trade-offs, and propose prompt patterns and test harnesses. Prefer brevity and determinism. Ask for missing context.",
|
|
2150
|
+
"temperature": 0.25
|
|
2149
2151
|
},
|
|
2150
2152
|
{
|
|
2151
2153
|
"modelName": "gpt-4",
|
|
2152
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2153
|
-
"temperature": 0.
|
|
2154
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide rigorous yet concise technical guidance, careful reasoning, and reliable code. Prefer bullet lists, call out risks and edge cases, and keep formatting consistent for easy copy/paste.",
|
|
2155
|
+
"temperature": 0.3
|
|
2154
2156
|
},
|
|
2155
2157
|
{
|
|
2156
2158
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2157
|
-
"systemMessage": "You are a
|
|
2159
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Offer practical tips, lightweight prompts, and straightforward code with minimal dependencies. Clarify requirements when uncertain.",
|
|
2158
2160
|
"temperature": 0.4
|
|
2159
|
-
},
|
|
2160
|
-
{
|
|
2161
|
-
"modelName": "o3",
|
|
2162
|
-
"systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
|
|
2163
|
-
"temperature": 0.2
|
|
2164
|
-
},
|
|
2165
|
-
{
|
|
2166
|
-
"modelName": "gpt-realtime",
|
|
2167
|
-
"systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
|
|
2168
|
-
"temperature": 0.5
|
|
2169
2161
|
}
|
|
2170
2162
|
]
|
|
2171
2163
|
}
|
|
@@ -2178,10 +2170,10 @@
|
|
|
2178
2170
|
"preparations": [
|
|
2179
2171
|
{
|
|
2180
2172
|
"id": 1,
|
|
2181
|
-
"promptbookVersion": "0.
|
|
2173
|
+
"promptbookVersion": "0.101.0-1",
|
|
2182
2174
|
"usage": {
|
|
2183
2175
|
"price": {
|
|
2184
|
-
"value": 0.
|
|
2176
|
+
"value": 0.031982500000000004
|
|
2185
2177
|
},
|
|
2186
2178
|
"input": {
|
|
2187
2179
|
"tokensCount": {
|
|
@@ -2208,19 +2200,19 @@
|
|
|
2208
2200
|
},
|
|
2209
2201
|
"output": {
|
|
2210
2202
|
"tokensCount": {
|
|
2211
|
-
"value":
|
|
2203
|
+
"value": 2476
|
|
2212
2204
|
},
|
|
2213
2205
|
"charactersCount": {
|
|
2214
|
-
"value":
|
|
2206
|
+
"value": 1848
|
|
2215
2207
|
},
|
|
2216
2208
|
"wordsCount": {
|
|
2217
|
-
"value":
|
|
2209
|
+
"value": 246
|
|
2218
2210
|
},
|
|
2219
2211
|
"sentencesCount": {
|
|
2220
|
-
"value":
|
|
2212
|
+
"value": 28
|
|
2221
2213
|
},
|
|
2222
2214
|
"linesCount": {
|
|
2223
|
-
"value":
|
|
2215
|
+
"value": 50
|
|
2224
2216
|
},
|
|
2225
2217
|
"paragraphsCount": {
|
|
2226
2218
|
"value": 1
|
|
@@ -2850,27 +2842,22 @@
|
|
|
2850
2842
|
"models": [
|
|
2851
2843
|
{
|
|
2852
2844
|
"modelName": "gpt-4.1",
|
|
2853
|
-
"systemMessage": "You are a
|
|
2854
|
-
"temperature": 0.
|
|
2845
|
+
"systemMessage": "You are a linguist and Corrector. Act as a precise editor and copy‑chief:\n- Correct grammar, spelling, punctuation, and typography.\n- Preserve meaning, voice, and register; make minimal necessary edits.\n- Improve clarity and flow when helpful; prefer suggestions over rewrites.\n- Respect requested dialect (e.g., en‑US/en‑GB) and style guides (APA, Chicago, etc.).\n- Maintain formatting, code, and placeholders; never invent facts.\n- If the request is ambiguous, ask a brief clarifying question before editing.\n- Output two parts: 'Corrected' (final text) and 'Notes' (brief rationale for non‑obvious changes).",
|
|
2846
|
+
"temperature": 0.15
|
|
2855
2847
|
},
|
|
2856
2848
|
{
|
|
2857
|
-
"modelName": "
|
|
2858
|
-
"systemMessage": "You are a
|
|
2849
|
+
"modelName": "chatgpt-4o-latest",
|
|
2850
|
+
"systemMessage": "You are a linguist and Corrector. Be a concise, high‑accuracy editor:\n- Fix grammar, spelling, punctuation, and typography.\n- Keep the author’s voice; make minimal edits.\n- Offer brief explanations only for non‑obvious changes.\n- Honor requested dialects and style guides.\n- Maintain formatting and code; do not fabricate content.\n- Ask a short clarifying question if the task is ambiguous.\nReturn: 'Corrected' and 'Notes'.",
|
|
2859
2851
|
"temperature": 0.2
|
|
2860
2852
|
},
|
|
2861
2853
|
{
|
|
2862
|
-
"modelName": "
|
|
2863
|
-
"systemMessage": "You are a
|
|
2864
|
-
"temperature": 0.
|
|
2854
|
+
"modelName": "gpt-4",
|
|
2855
|
+
"systemMessage": "You are a linguist and Corrector. Provide meticulous, minimal‑change editing with preserved meaning and tone. Correct grammar, spelling, punctuation, and typography; improve clarity when beneficial. Respect dialect/style requests, maintain formatting/code, and avoid adding facts. If ambiguous, ask one clarifying question. Return 'Corrected' and 'Notes' (brief rationale).",
|
|
2856
|
+
"temperature": 0.15
|
|
2865
2857
|
},
|
|
2866
2858
|
{
|
|
2867
2859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2868
|
-
"systemMessage": "You are a
|
|
2869
|
-
"temperature": 0.2
|
|
2870
|
-
},
|
|
2871
|
-
{
|
|
2872
|
-
"modelName": "gpt-3.5-turbo",
|
|
2873
|
-
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2860
|
+
"systemMessage": "You are a linguist and Corrector. Perform minimal, high‑precision edits to fix grammar, spelling, punctuation, and typography while preserving voice and meaning. Honor dialect/style preferences, maintain formatting/code, avoid fabrications, and ask a brief clarifying question if needed. Output 'Corrected' and 'Notes'.",
|
|
2874
2861
|
"temperature": 0.2
|
|
2875
2862
|
}
|
|
2876
2863
|
]
|
|
@@ -2884,10 +2871,10 @@
|
|
|
2884
2871
|
"preparations": [
|
|
2885
2872
|
{
|
|
2886
2873
|
"id": 1,
|
|
2887
|
-
"promptbookVersion": "0.
|
|
2874
|
+
"promptbookVersion": "0.101.0-1",
|
|
2888
2875
|
"usage": {
|
|
2889
2876
|
"price": {
|
|
2890
|
-
"value": 0.
|
|
2877
|
+
"value": 0.026071250000000004
|
|
2891
2878
|
},
|
|
2892
2879
|
"input": {
|
|
2893
2880
|
"tokensCount": {
|
|
@@ -2914,19 +2901,19 @@
|
|
|
2914
2901
|
},
|
|
2915
2902
|
"output": {
|
|
2916
2903
|
"tokensCount": {
|
|
2917
|
-
"value":
|
|
2904
|
+
"value": 1885
|
|
2918
2905
|
},
|
|
2919
2906
|
"charactersCount": {
|
|
2920
|
-
"value":
|
|
2907
|
+
"value": 2159
|
|
2921
2908
|
},
|
|
2922
2909
|
"wordsCount": {
|
|
2923
|
-
"value":
|
|
2910
|
+
"value": 299
|
|
2924
2911
|
},
|
|
2925
2912
|
"sentencesCount": {
|
|
2926
|
-
"value":
|
|
2913
|
+
"value": 36
|
|
2927
2914
|
},
|
|
2928
2915
|
"linesCount": {
|
|
2929
|
-
"value":
|
|
2916
|
+
"value": 52
|
|
2930
2917
|
},
|
|
2931
2918
|
"paragraphsCount": {
|
|
2932
2919
|
"value": 1
|
|
@@ -2998,23 +2985,23 @@
|
|
|
2998
2985
|
"models": [
|
|
2999
2986
|
{
|
|
3000
2987
|
"modelName": "gpt-4.1",
|
|
3001
|
-
"systemMessage": "You are a skilled e-commerce copywriter for
|
|
3002
|
-
"temperature": 0.
|
|
2988
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2989
|
+
"temperature": 0.6
|
|
3003
2990
|
},
|
|
3004
2991
|
{
|
|
3005
2992
|
"modelName": "chatgpt-4o-latest",
|
|
3006
|
-
"systemMessage": "You are a skilled e-commerce copywriter
|
|
3007
|
-
"temperature": 0.
|
|
2993
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2994
|
+
"temperature": 0.7
|
|
3008
2995
|
},
|
|
3009
2996
|
{
|
|
3010
2997
|
"modelName": "gpt-4",
|
|
3011
|
-
"systemMessage": "You are
|
|
2998
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
3012
2999
|
"temperature": 0.7
|
|
3013
3000
|
},
|
|
3014
3001
|
{
|
|
3015
3002
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3016
|
-
"systemMessage": "You are a skilled e-commerce copywriter
|
|
3017
|
-
"temperature": 0.
|
|
3003
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
3004
|
+
"temperature": 0.8
|
|
3018
3005
|
}
|
|
3019
3006
|
]
|
|
3020
3007
|
}
|
|
@@ -3027,10 +3014,10 @@
|
|
|
3027
3014
|
"preparations": [
|
|
3028
3015
|
{
|
|
3029
3016
|
"id": 1,
|
|
3030
|
-
"promptbookVersion": "0.
|
|
3017
|
+
"promptbookVersion": "0.101.0-1",
|
|
3031
3018
|
"usage": {
|
|
3032
3019
|
"price": {
|
|
3033
|
-
"value": 0.
|
|
3020
|
+
"value": 0.04109125
|
|
3034
3021
|
},
|
|
3035
3022
|
"input": {
|
|
3036
3023
|
"tokensCount": {
|
|
@@ -3057,25 +3044,25 @@
|
|
|
3057
3044
|
},
|
|
3058
3045
|
"output": {
|
|
3059
3046
|
"tokensCount": {
|
|
3060
|
-
"value":
|
|
3047
|
+
"value": 3387
|
|
3061
3048
|
},
|
|
3062
3049
|
"charactersCount": {
|
|
3063
|
-
"value":
|
|
3050
|
+
"value": 5102
|
|
3064
3051
|
},
|
|
3065
3052
|
"wordsCount": {
|
|
3066
|
-
"value":
|
|
3053
|
+
"value": 678
|
|
3067
3054
|
},
|
|
3068
3055
|
"sentencesCount": {
|
|
3069
|
-
"value":
|
|
3056
|
+
"value": 47
|
|
3070
3057
|
},
|
|
3071
3058
|
"linesCount": {
|
|
3072
|
-
"value":
|
|
3059
|
+
"value": 96
|
|
3073
3060
|
},
|
|
3074
3061
|
"paragraphsCount": {
|
|
3075
3062
|
"value": 1
|
|
3076
3063
|
},
|
|
3077
3064
|
"pagesCount": {
|
|
3078
|
-
"value":
|
|
3065
|
+
"value": 3
|
|
3079
3066
|
}
|
|
3080
3067
|
}
|
|
3081
3068
|
}
|
|
@@ -3123,7 +3110,7 @@
|
|
|
3123
3110
|
"preparations": [
|
|
3124
3111
|
{
|
|
3125
3112
|
"id": 1,
|
|
3126
|
-
"promptbookVersion": "0.
|
|
3113
|
+
"promptbookVersion": "0.101.0-1",
|
|
3127
3114
|
"usage": {
|
|
3128
3115
|
"price": {
|
|
3129
3116
|
"value": 0
|
|
@@ -3232,28 +3219,28 @@
|
|
|
3232
3219
|
"models": [
|
|
3233
3220
|
{
|
|
3234
3221
|
"modelName": "gpt-4.1",
|
|
3235
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3236
|
-
"temperature": 0.
|
|
3222
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice with clear reasoning. Ask concise clarifying questions when needed, state assumptions, and offer structured plans (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT), budgets, timelines, and measurable KPIs/ROI. Be concise by default and adapt tone to the user's industry and audience.",
|
|
3223
|
+
"temperature": 0.3
|
|
3237
3224
|
},
|
|
3238
3225
|
{
|
|
3239
3226
|
"modelName": "chatgpt-4o-latest",
|
|
3240
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3241
|
-
"temperature": 0.
|
|
3227
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Balance creativity with rigor: generate compelling messaging and campaign concepts, then convert them into step-by-step plans with budgets, channels, and KPIs. Ask brief clarifying questions when needed, tailor outputs to the user's market, and keep recommendations practical and ROI-focused.",
|
|
3228
|
+
"temperature": 0.45
|
|
3242
3229
|
},
|
|
3243
3230
|
{
|
|
3244
3231
|
"modelName": "gpt-4",
|
|
3245
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3246
|
-
"temperature": 0.
|
|
3232
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, structured, and pragmatic guidance. When relevant, apply frameworks (STP, 4Ps/7Ps, AIDA, BCG, SWOT) and provide channel plans, testing roadmaps, and KPI targets. Be concise, note assumptions, and prioritize ROI and risk mitigation.",
|
|
3233
|
+
"temperature": 0.35
|
|
3247
3234
|
},
|
|
3248
3235
|
{
|
|
3249
|
-
"modelName": "
|
|
3250
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3251
|
-
"temperature": 0.
|
|
3236
|
+
"modelName": "o4-mini",
|
|
3237
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Focus on analytical tasks: market sizing, segmentation, pricing scenarios, CAC/LTV modeling, and forecasting. State assumptions, show calculations, and provide recommendations with sensitivity analysis and clear next steps.",
|
|
3238
|
+
"temperature": 0.25
|
|
3252
3239
|
},
|
|
3253
3240
|
{
|
|
3254
|
-
"modelName": "gpt-3.5-turbo-
|
|
3255
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3256
|
-
"temperature": 0.
|
|
3241
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3242
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide lean, actionable guidance using standard marketing and business frameworks, with practical next steps and KPIs. Keep outputs concise and clarify assumptions.",
|
|
3243
|
+
"temperature": 0.45
|
|
3257
3244
|
}
|
|
3258
3245
|
]
|
|
3259
3246
|
}
|
|
@@ -3266,10 +3253,10 @@
|
|
|
3266
3253
|
"preparations": [
|
|
3267
3254
|
{
|
|
3268
3255
|
"id": 1,
|
|
3269
|
-
"promptbookVersion": "0.
|
|
3256
|
+
"promptbookVersion": "0.101.0-1",
|
|
3270
3257
|
"usage": {
|
|
3271
3258
|
"price": {
|
|
3272
|
-
"value": 0.
|
|
3259
|
+
"value": 0.026731250000000005
|
|
3273
3260
|
},
|
|
3274
3261
|
"input": {
|
|
3275
3262
|
"tokensCount": {
|
|
@@ -3296,25 +3283,25 @@
|
|
|
3296
3283
|
},
|
|
3297
3284
|
"output": {
|
|
3298
3285
|
"tokensCount": {
|
|
3299
|
-
"value":
|
|
3286
|
+
"value": 1951
|
|
3300
3287
|
},
|
|
3301
3288
|
"charactersCount": {
|
|
3302
|
-
"value":
|
|
3289
|
+
"value": 2100
|
|
3303
3290
|
},
|
|
3304
3291
|
"wordsCount": {
|
|
3305
|
-
"value":
|
|
3292
|
+
"value": 272
|
|
3306
3293
|
},
|
|
3307
3294
|
"sentencesCount": {
|
|
3308
|
-
"value":
|
|
3295
|
+
"value": 27
|
|
3309
3296
|
},
|
|
3310
3297
|
"linesCount": {
|
|
3311
|
-
"value":
|
|
3298
|
+
"value": 55
|
|
3312
3299
|
},
|
|
3313
3300
|
"paragraphsCount": {
|
|
3314
3301
|
"value": 1
|
|
3315
3302
|
},
|
|
3316
3303
|
"pagesCount": {
|
|
3317
|
-
"value":
|
|
3304
|
+
"value": 2
|
|
3318
3305
|
}
|
|
3319
3306
|
}
|
|
3320
3307
|
}
|
|
@@ -3384,32 +3371,34 @@
|
|
|
3384
3371
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3385
3372
|
"modelsRequirements": [
|
|
3386
3373
|
{
|
|
3387
|
-
"
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3374
|
+
"modelVariant": "CHAT",
|
|
3375
|
+
"models": [
|
|
3376
|
+
{
|
|
3377
|
+
"modelName": "gpt-4.1",
|
|
3378
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3379
|
+
"temperature": 0.4
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
"modelName": "chatgpt-4o-latest",
|
|
3383
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3384
|
+
"temperature": 0.5
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"modelName": "gpt-4",
|
|
3388
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3389
|
+
"temperature": 0.4
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
"modelName": "o4-mini",
|
|
3393
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3394
|
+
"temperature": 0.4
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3398
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3399
|
+
"temperature": 0.5
|
|
3400
|
+
}
|
|
3401
|
+
]
|
|
3413
3402
|
}
|
|
3414
3403
|
],
|
|
3415
3404
|
"preparationIds": [
|
|
@@ -3420,10 +3409,10 @@
|
|
|
3420
3409
|
"preparations": [
|
|
3421
3410
|
{
|
|
3422
3411
|
"id": 1,
|
|
3423
|
-
"promptbookVersion": "0.
|
|
3412
|
+
"promptbookVersion": "0.101.0-1",
|
|
3424
3413
|
"usage": {
|
|
3425
3414
|
"price": {
|
|
3426
|
-
"value": 0.
|
|
3415
|
+
"value": 0.032656250000000005
|
|
3427
3416
|
},
|
|
3428
3417
|
"input": {
|
|
3429
3418
|
"tokensCount": {
|
|
@@ -3450,25 +3439,25 @@
|
|
|
3450
3439
|
},
|
|
3451
3440
|
"output": {
|
|
3452
3441
|
"tokensCount": {
|
|
3453
|
-
"value":
|
|
3442
|
+
"value": 2543
|
|
3454
3443
|
},
|
|
3455
3444
|
"charactersCount": {
|
|
3456
|
-
"value":
|
|
3445
|
+
"value": 3848
|
|
3457
3446
|
},
|
|
3458
3447
|
"wordsCount": {
|
|
3459
|
-
"value":
|
|
3448
|
+
"value": 536
|
|
3460
3449
|
},
|
|
3461
3450
|
"sentencesCount": {
|
|
3462
|
-
"value":
|
|
3451
|
+
"value": 23
|
|
3463
3452
|
},
|
|
3464
3453
|
"linesCount": {
|
|
3465
|
-
"value":
|
|
3454
|
+
"value": 79
|
|
3466
3455
|
},
|
|
3467
3456
|
"paragraphsCount": {
|
|
3468
3457
|
"value": 1
|
|
3469
3458
|
},
|
|
3470
3459
|
"pagesCount": {
|
|
3471
|
-
"value":
|
|
3460
|
+
"value": 2
|
|
3472
3461
|
}
|
|
3473
3462
|
}
|
|
3474
3463
|
}
|
|
@@ -3719,27 +3708,32 @@
|
|
|
3719
3708
|
"models": [
|
|
3720
3709
|
{
|
|
3721
3710
|
"modelName": "gpt-4.1",
|
|
3722
|
-
"systemMessage": "You are a linguist and Esperantist. Provide
|
|
3711
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3723
3712
|
"temperature": 0.4
|
|
3724
3713
|
},
|
|
3725
3714
|
{
|
|
3726
3715
|
"modelName": "chatgpt-4o-latest",
|
|
3727
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3716
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3728
3717
|
"temperature": 0.5
|
|
3729
3718
|
},
|
|
3730
3719
|
{
|
|
3731
3720
|
"modelName": "gpt-4",
|
|
3732
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3721
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3733
3722
|
"temperature": 0.4
|
|
3734
3723
|
},
|
|
3735
3724
|
{
|
|
3736
3725
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3737
|
-
"systemMessage": "You are a linguist and Esperantist. Provide
|
|
3726
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3738
3727
|
"temperature": 0.5
|
|
3739
3728
|
},
|
|
3729
|
+
{
|
|
3730
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3731
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3732
|
+
"temperature": 0.6
|
|
3733
|
+
},
|
|
3740
3734
|
{
|
|
3741
3735
|
"modelName": "gpt-3.5-turbo",
|
|
3742
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3736
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3743
3737
|
"temperature": 0.6
|
|
3744
3738
|
}
|
|
3745
3739
|
]
|
|
@@ -3753,10 +3747,10 @@
|
|
|
3753
3747
|
"preparations": [
|
|
3754
3748
|
{
|
|
3755
3749
|
"id": 1,
|
|
3756
|
-
"promptbookVersion": "0.
|
|
3750
|
+
"promptbookVersion": "0.101.0-1",
|
|
3757
3751
|
"usage": {
|
|
3758
3752
|
"price": {
|
|
3759
|
-
"value": 0.
|
|
3753
|
+
"value": 0.041661250000000004
|
|
3760
3754
|
},
|
|
3761
3755
|
"input": {
|
|
3762
3756
|
"tokensCount": {
|
|
@@ -3783,19 +3777,19 @@
|
|
|
3783
3777
|
},
|
|
3784
3778
|
"output": {
|
|
3785
3779
|
"tokensCount": {
|
|
3786
|
-
"value":
|
|
3780
|
+
"value": 3444
|
|
3787
3781
|
},
|
|
3788
3782
|
"charactersCount": {
|
|
3789
|
-
"value":
|
|
3783
|
+
"value": 3427
|
|
3790
3784
|
},
|
|
3791
3785
|
"wordsCount": {
|
|
3792
|
-
"value":
|
|
3786
|
+
"value": 461
|
|
3793
3787
|
},
|
|
3794
3788
|
"sentencesCount": {
|
|
3795
|
-
"value":
|
|
3789
|
+
"value": 47
|
|
3796
3790
|
},
|
|
3797
3791
|
"linesCount": {
|
|
3798
|
-
"value":
|
|
3792
|
+
"value": 76
|
|
3799
3793
|
},
|
|
3800
3794
|
"paragraphsCount": {
|
|
3801
3795
|
"value": 1
|
|
@@ -3866,22 +3860,27 @@
|
|
|
3866
3860
|
"models": [
|
|
3867
3861
|
{
|
|
3868
3862
|
"modelName": "gpt-4.1",
|
|
3869
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3870
|
-
"temperature": 0.
|
|
3863
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid sensory imagery, fresh metaphors, musical cadence, and emotional resonance. Adapt form and voice to the brief (poetry or prose), balance lyricism with clarity, avoid clichés, and keep narrative arcs coherent. Ask one concise clarifying question if needed.",
|
|
3864
|
+
"temperature": 0.9
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"modelName": "chatgpt-4o-latest",
|
|
3868
|
+
"systemMessage": "You are an accomplished poet and storyteller with a warm, imaginative voice. Craft evocative scenes, precise diction, and varied rhythms; use original imagery and avoid clichés. Match the user’s tone and constraints, and ask one brief clarifying question when helpful.",
|
|
3869
|
+
"temperature": 1
|
|
3871
3870
|
},
|
|
3872
3871
|
{
|
|
3873
3872
|
"modelName": "gpt-4",
|
|
3874
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3873
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce lyrical, image-rich writing with strong voice and clean structure. Favor specificity over abstraction, fresh metaphors over stock phrases, and rhythm that serves meaning. Adapt to user constraints and ask a single clarifying question if needed.",
|
|
3875
3874
|
"temperature": 0.9
|
|
3876
3875
|
},
|
|
3877
3876
|
{
|
|
3878
|
-
"modelName": "
|
|
3879
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3880
|
-
"temperature":
|
|
3877
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3878
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use concrete detail, fresh imagery, and a clear arc; avoid clichés and filler. Follow the requested form and tone, and ask one short clarifying question when helpful.",
|
|
3879
|
+
"temperature": 1
|
|
3881
3880
|
},
|
|
3882
3881
|
{
|
|
3883
|
-
"modelName": "gpt-3.5-turbo
|
|
3884
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3882
|
+
"modelName": "gpt-3.5-turbo",
|
|
3883
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery and concise, musical language; keep the narrative coherent and avoid clichés. Follow the user’s style and form constraints.",
|
|
3885
3884
|
"temperature": 1
|
|
3886
3885
|
}
|
|
3887
3886
|
]
|
|
@@ -3895,10 +3894,10 @@
|
|
|
3895
3894
|
"preparations": [
|
|
3896
3895
|
{
|
|
3897
3896
|
"id": 1,
|
|
3898
|
-
"promptbookVersion": "0.
|
|
3897
|
+
"promptbookVersion": "0.101.0-1",
|
|
3899
3898
|
"usage": {
|
|
3900
3899
|
"price": {
|
|
3901
|
-
"value": 0.
|
|
3900
|
+
"value": 0.03198
|
|
3902
3901
|
},
|
|
3903
3902
|
"input": {
|
|
3904
3903
|
"tokensCount": {
|
|
@@ -3925,25 +3924,25 @@
|
|
|
3925
3924
|
},
|
|
3926
3925
|
"output": {
|
|
3927
3926
|
"tokensCount": {
|
|
3928
|
-
"value":
|
|
3927
|
+
"value": 2476
|
|
3929
3928
|
},
|
|
3930
3929
|
"charactersCount": {
|
|
3931
|
-
"value":
|
|
3930
|
+
"value": 1809
|
|
3932
3931
|
},
|
|
3933
3932
|
"wordsCount": {
|
|
3934
|
-
"value":
|
|
3933
|
+
"value": 249
|
|
3935
3934
|
},
|
|
3936
3935
|
"sentencesCount": {
|
|
3937
|
-
"value":
|
|
3936
|
+
"value": 26
|
|
3938
3937
|
},
|
|
3939
3938
|
"linesCount": {
|
|
3940
|
-
"value":
|
|
3939
|
+
"value": 49
|
|
3941
3940
|
},
|
|
3942
3941
|
"paragraphsCount": {
|
|
3943
3942
|
"value": 1
|
|
3944
3943
|
},
|
|
3945
3944
|
"pagesCount": {
|
|
3946
|
-
"value":
|
|
3945
|
+
"value": 2
|
|
3947
3946
|
}
|
|
3948
3947
|
}
|
|
3949
3948
|
}
|