@promptbook/templates 0.101.0-0 → 0.101.0-10
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 +168 -185
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +18 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +6 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +41 -3
- package/esm/typings/src/book-2.0/agent-source/parseParameters.d.ts +13 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +59 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +47 -0
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/index.d.ts +7 -3
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +46 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/index.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +10 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +3 -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 +28 -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 +2 -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 +173 -189
- 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-10';
|
|
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
|
|
1563
|
-
"temperature": 0.
|
|
1574
|
+
"systemMessage": "You are a senior Promptbook Project developer and helpful assistant. Design and audit prompts, assistant flows, and tool/function schemas using Promptbook conventions (clear roles, typed variables, steps, and eval hooks). Be precise, concise, and implementation-focused. Prefer deterministic outputs with runnable code and tests. Ask targeted clarifying questions when requirements are ambiguous. Keep internal reasoning private; provide brief summaries of conclusions.",
|
|
1575
|
+
"temperature": 0.2
|
|
1564
1576
|
},
|
|
1565
1577
|
{
|
|
1566
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1567
|
-
"systemMessage": "You are a
|
|
1568
|
-
"temperature": 0.
|
|
1579
|
+
"systemMessage": "You are a Promptbook Project developer focused on building fast, reliable virtual assistants. Produce concise, actionable answers with code snippets and prompt templates. Follow Promptbook structure for roles, variables, and validation. Optimize for low latency and clarity. Keep internal reasoning private; provide short justifications only when needed.",
|
|
1580
|
+
"temperature": 0.3
|
|
1569
1581
|
},
|
|
1570
1582
|
{
|
|
1571
1583
|
"modelName": "o4-mini",
|
|
1572
|
-
"systemMessage": "You are a Promptbook
|
|
1573
|
-
"temperature": 0.
|
|
1584
|
+
"systemMessage": "You are a Promptbook developer specializing in cost-efficient reasoning for virtual assistants. Tackle nontrivial logic, planning, and data-wrangling tasks with high accuracy. Present compact plans and final outputs suitable for integration into Promptbook flows. Keep internal reasoning private; return only essential steps and results.",
|
|
1585
|
+
"temperature": 0.2
|
|
1574
1586
|
},
|
|
1575
1587
|
{
|
|
1576
1588
|
"modelName": "gpt-4",
|
|
1577
|
-
"systemMessage": "You are a developer
|
|
1578
|
-
"temperature": 0.4
|
|
1579
|
-
},
|
|
1580
|
-
{
|
|
1581
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
1582
|
-
"systemMessage": "You are a cost-efficient Promptbook Project developer. Keep responses short and practical. Provide simple prompt templates, minimal function-call examples, and step-by-step implementation checklists. Confirm assumptions with one clarifying question when necessary.",
|
|
1583
|
-
"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.",
|
|
1589
|
+
"systemMessage": "You are a senior Promptbook developer and practical assistant. Provide reliable prompt designs, tool-calling schemas, and clean, tested code. Default to concise, deterministic outputs and ask for missing requirements early. Summarize reasoning briefly without exposing chain-of-thought.",
|
|
1588
1590
|
"temperature": 0.2
|
|
1589
1591
|
},
|
|
1590
1592
|
{
|
|
1591
|
-
"modelName": "gpt-
|
|
1592
|
-
"systemMessage": "You are a
|
|
1593
|
-
"temperature": 0.
|
|
1593
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1594
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Provide concise, implementation-ready answers, prompt templates, and minimal code examples. Ask brief clarifying questions when needed and avoid unnecessary verbosity or hidden reasoning.",
|
|
1595
|
+
"temperature": 0.3
|
|
1594
1596
|
}
|
|
1595
1597
|
]
|
|
1596
1598
|
}
|
|
@@ -1603,14 +1605,14 @@
|
|
|
1603
1605
|
"preparations": [
|
|
1604
1606
|
{
|
|
1605
1607
|
"id": 1,
|
|
1606
|
-
"promptbookVersion": "0.
|
|
1608
|
+
"promptbookVersion": "0.101.0-9",
|
|
1607
1609
|
"usage": {
|
|
1608
1610
|
"price": {
|
|
1609
|
-
"value": 0.
|
|
1611
|
+
"value": 0.03444375
|
|
1610
1612
|
},
|
|
1611
1613
|
"input": {
|
|
1612
1614
|
"tokensCount": {
|
|
1613
|
-
"value":
|
|
1615
|
+
"value": 5859
|
|
1614
1616
|
},
|
|
1615
1617
|
"charactersCount": {
|
|
1616
1618
|
"value": 2377
|
|
@@ -1633,19 +1635,19 @@
|
|
|
1633
1635
|
},
|
|
1634
1636
|
"output": {
|
|
1635
1637
|
"tokensCount": {
|
|
1636
|
-
"value":
|
|
1638
|
+
"value": 2712
|
|
1637
1639
|
},
|
|
1638
1640
|
"charactersCount": {
|
|
1639
|
-
"value":
|
|
1641
|
+
"value": 2203
|
|
1640
1642
|
},
|
|
1641
1643
|
"wordsCount": {
|
|
1642
|
-
"value":
|
|
1644
|
+
"value": 277
|
|
1643
1645
|
},
|
|
1644
1646
|
"sentencesCount": {
|
|
1645
|
-
"value":
|
|
1647
|
+
"value": 30
|
|
1646
1648
|
},
|
|
1647
1649
|
"linesCount": {
|
|
1648
|
-
"value":
|
|
1650
|
+
"value": 55
|
|
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
|
|
2138
|
-
"temperature": 0.
|
|
2139
|
+
"systemMessage": "You are a senior Promptbook Project developer and helpful assistant. Design and audit prompts, assistant flows, and tool/function schemas using Promptbook conventions (clear roles, typed variables, steps, and eval hooks). Be precise, concise, and implementation-focused. Prefer deterministic outputs with runnable code and tests. Ask targeted clarifying questions when requirements are ambiguous. Keep internal reasoning private; provide brief summaries of conclusions.",
|
|
2140
|
+
"temperature": 0.2
|
|
2139
2141
|
},
|
|
2140
2142
|
{
|
|
2141
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2142
|
-
"systemMessage": "You are a
|
|
2143
|
-
"temperature": 0.
|
|
2144
|
+
"systemMessage": "You are a Promptbook Project developer focused on building fast, reliable virtual assistants. Produce concise, actionable answers with code snippets and prompt templates. Follow Promptbook structure for roles, variables, and validation. Optimize for low latency and clarity. Keep internal reasoning private; provide short justifications only when needed.",
|
|
2145
|
+
"temperature": 0.3
|
|
2144
2146
|
},
|
|
2145
2147
|
{
|
|
2146
2148
|
"modelName": "o4-mini",
|
|
2147
|
-
"systemMessage": "You are a Promptbook
|
|
2148
|
-
"temperature": 0.
|
|
2149
|
+
"systemMessage": "You are a Promptbook developer specializing in cost-efficient reasoning for virtual assistants. Tackle nontrivial logic, planning, and data-wrangling tasks with high accuracy. Present compact plans and final outputs suitable for integration into Promptbook flows. Keep internal reasoning private; return only essential steps and results.",
|
|
2150
|
+
"temperature": 0.2
|
|
2149
2151
|
},
|
|
2150
2152
|
{
|
|
2151
2153
|
"modelName": "gpt-4",
|
|
2152
|
-
"systemMessage": "You are a developer
|
|
2153
|
-
"temperature": 0.4
|
|
2154
|
-
},
|
|
2155
|
-
{
|
|
2156
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
2157
|
-
"systemMessage": "You are a cost-efficient Promptbook Project developer. Keep responses short and practical. Provide simple prompt templates, minimal function-call examples, and step-by-step implementation checklists. Confirm assumptions with one clarifying question when necessary.",
|
|
2158
|
-
"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.",
|
|
2154
|
+
"systemMessage": "You are a senior Promptbook developer and practical assistant. Provide reliable prompt designs, tool-calling schemas, and clean, tested code. Default to concise, deterministic outputs and ask for missing requirements early. Summarize reasoning briefly without exposing chain-of-thought.",
|
|
2163
2155
|
"temperature": 0.2
|
|
2164
2156
|
},
|
|
2165
2157
|
{
|
|
2166
|
-
"modelName": "gpt-
|
|
2167
|
-
"systemMessage": "You are a
|
|
2168
|
-
"temperature": 0.
|
|
2158
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2159
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Provide concise, implementation-ready answers, prompt templates, and minimal code examples. Ask brief clarifying questions when needed and avoid unnecessary verbosity or hidden reasoning.",
|
|
2160
|
+
"temperature": 0.3
|
|
2169
2161
|
}
|
|
2170
2162
|
]
|
|
2171
2163
|
}
|
|
@@ -2178,14 +2170,14 @@
|
|
|
2178
2170
|
"preparations": [
|
|
2179
2171
|
{
|
|
2180
2172
|
"id": 1,
|
|
2181
|
-
"promptbookVersion": "0.
|
|
2173
|
+
"promptbookVersion": "0.101.0-9",
|
|
2182
2174
|
"usage": {
|
|
2183
2175
|
"price": {
|
|
2184
|
-
"value": 0.
|
|
2176
|
+
"value": 0.03444375
|
|
2185
2177
|
},
|
|
2186
2178
|
"input": {
|
|
2187
2179
|
"tokensCount": {
|
|
2188
|
-
"value":
|
|
2180
|
+
"value": 5859
|
|
2189
2181
|
},
|
|
2190
2182
|
"charactersCount": {
|
|
2191
2183
|
"value": 2377
|
|
@@ -2208,19 +2200,19 @@
|
|
|
2208
2200
|
},
|
|
2209
2201
|
"output": {
|
|
2210
2202
|
"tokensCount": {
|
|
2211
|
-
"value":
|
|
2203
|
+
"value": 2712
|
|
2212
2204
|
},
|
|
2213
2205
|
"charactersCount": {
|
|
2214
|
-
"value":
|
|
2206
|
+
"value": 2203
|
|
2215
2207
|
},
|
|
2216
2208
|
"wordsCount": {
|
|
2217
|
-
"value":
|
|
2209
|
+
"value": 277
|
|
2218
2210
|
},
|
|
2219
2211
|
"sentencesCount": {
|
|
2220
|
-
"value":
|
|
2212
|
+
"value": 30
|
|
2221
2213
|
},
|
|
2222
2214
|
"linesCount": {
|
|
2223
|
-
"value":
|
|
2215
|
+
"value": 55
|
|
2224
2216
|
},
|
|
2225
2217
|
"paragraphsCount": {
|
|
2226
2218
|
"value": 1
|
|
@@ -2850,28 +2842,23 @@
|
|
|
2850
2842
|
"models": [
|
|
2851
2843
|
{
|
|
2852
2844
|
"modelName": "gpt-4.1",
|
|
2853
|
-
"systemMessage": "You are a professional linguist
|
|
2845
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Your job is to: \n- Correct grammar, spelling, punctuation, syntax, and usage while preserving meaning and authorial voice.\n- Improve clarity and tone only when necessary; keep edits minimal and precise.\n- Provide two outputs: (1) Corrected text, (2) Brief change notes (bullet points, only for non-obvious edits).\n- Ask for target language, dialect, tone, and audience if ambiguous; default to American English.\n- Respect formatting, quotes, code blocks, math, and URLs—do not modify code or links.\n- If no corrections are needed, say \"No changes needed\" and optionally offer small style suggestions.",
|
|
2854
2846
|
"temperature": 0.2
|
|
2855
2847
|
},
|
|
2856
2848
|
{
|
|
2857
2849
|
"modelName": "gpt-4",
|
|
2858
|
-
"systemMessage": "You are a professional linguist
|
|
2850
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Focus on accurate, minimal edits to grammar, spelling, punctuation, and usage while preserving the writer’s intent and voice. Provide: (1) Corrected text and (2) brief notes for non-obvious changes. Ask clarifying questions about target dialect, tone, and audience when unclear (default to American English). Do not alter code blocks, math, or URLs. If a passage is already correct, respond with \"No changes needed\" and optional minor suggestions.",
|
|
2859
2851
|
"temperature": 0.2
|
|
2860
2852
|
},
|
|
2861
2853
|
{
|
|
2862
2854
|
"modelName": "chatgpt-4o-latest",
|
|
2863
|
-
"systemMessage": "You are a
|
|
2864
|
-
"temperature": 0.
|
|
2855
|
+
"systemMessage": "You are a linguist and careful text corrector. Make precise, minimally invasive edits for correctness and clarity, keep the author’s voice, and provide corrected text plus brief notes for non-obvious changes. Ask for target language/dialect/tone if unclear (default American English). Do not modify code, math, or links. If already correct, say \"No changes needed\" and optionally suggest refinements.",
|
|
2856
|
+
"temperature": 0.25
|
|
2865
2857
|
},
|
|
2866
2858
|
{
|
|
2867
2859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2868
|
-
"systemMessage": "You are a
|
|
2869
|
-
"temperature": 0.
|
|
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.",
|
|
2874
|
-
"temperature": 0.2
|
|
2860
|
+
"systemMessage": "You are a linguist and text corrector. Perform minimal, accurate corrections to grammar, spelling, punctuation, and usage while preserving meaning and voice. Output corrected text and short notes for non-obvious changes. Clarify target dialect/tone when ambiguous; default to American English. Do not change code blocks, math, or URLs. If no edits are needed, say \"No changes needed\" and add optional minor suggestions.",
|
|
2861
|
+
"temperature": 0.1
|
|
2875
2862
|
}
|
|
2876
2863
|
]
|
|
2877
2864
|
}
|
|
@@ -2884,14 +2871,14 @@
|
|
|
2884
2871
|
"preparations": [
|
|
2885
2872
|
{
|
|
2886
2873
|
"id": 1,
|
|
2887
|
-
"promptbookVersion": "0.
|
|
2874
|
+
"promptbookVersion": "0.101.0-9",
|
|
2888
2875
|
"usage": {
|
|
2889
2876
|
"price": {
|
|
2890
|
-
"value": 0.
|
|
2877
|
+
"value": 0.0309725
|
|
2891
2878
|
},
|
|
2892
2879
|
"input": {
|
|
2893
2880
|
"tokensCount": {
|
|
2894
|
-
"value":
|
|
2881
|
+
"value": 5858
|
|
2895
2882
|
},
|
|
2896
2883
|
"charactersCount": {
|
|
2897
2884
|
"value": 2377
|
|
@@ -2914,19 +2901,19 @@
|
|
|
2914
2901
|
},
|
|
2915
2902
|
"output": {
|
|
2916
2903
|
"tokensCount": {
|
|
2917
|
-
"value":
|
|
2904
|
+
"value": 2365
|
|
2918
2905
|
},
|
|
2919
2906
|
"charactersCount": {
|
|
2920
|
-
"value":
|
|
2907
|
+
"value": 2425
|
|
2921
2908
|
},
|
|
2922
2909
|
"wordsCount": {
|
|
2923
|
-
"value":
|
|
2910
|
+
"value": 350
|
|
2924
2911
|
},
|
|
2925
2912
|
"sentencesCount": {
|
|
2926
|
-
"value":
|
|
2913
|
+
"value": 31
|
|
2927
2914
|
},
|
|
2928
2915
|
"linesCount": {
|
|
2929
|
-
"value":
|
|
2916
|
+
"value": 56
|
|
2930
2917
|
},
|
|
2931
2918
|
"paragraphsCount": {
|
|
2932
2919
|
"value": 1
|
|
@@ -2998,23 +2985,28 @@
|
|
|
2998
2985
|
"models": [
|
|
2999
2986
|
{
|
|
3000
2987
|
"modelName": "gpt-4.1",
|
|
3001
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3002
|
-
"temperature": 0.
|
|
2988
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
2989
|
+
"temperature": 0.7
|
|
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 for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
2994
|
+
"temperature": 0.75
|
|
3008
2995
|
},
|
|
3009
2996
|
{
|
|
3010
2997
|
"modelName": "gpt-4",
|
|
3011
|
-
"systemMessage": "You are
|
|
2998
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
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 for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
3004
|
+
"temperature": 0.8
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
"modelName": "gpt-3.5-turbo",
|
|
3008
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Objectives:\n- Produce persuasive, on-brand product titles, bullets, and descriptions that emphasize benefits, use cases, and outcomes.\n- Keep language clear and concise (Grade 6–8), scannable, and SEO-aware (primary keyword in title, first 160 chars, and one subheading; natural usage; no stuffing).\n- Provide structure when not specified: Title; 5 Bullets; Description (120–200 words); Key Specs; SEO Keywords; Meta Title (<=60 chars); Meta Description (<=155 chars); 3 CTA options; 2 headline variants (A/B).\n- Ask for missing info; never invent specs. If info is unavailable, use clearly marked placeholders and note assumptions.\n- Follow brand voice and locale if given (spelling, units, tone). Be compliant and factual; avoid medical/financial claims and over-promises.\n- Optimize for conversions: social proof, objections handled, differentiators, and clear CTAs.",
|
|
3009
|
+
"temperature": 0.85
|
|
3018
3010
|
}
|
|
3019
3011
|
]
|
|
3020
3012
|
}
|
|
@@ -3027,14 +3019,14 @@
|
|
|
3027
3019
|
"preparations": [
|
|
3028
3020
|
{
|
|
3029
3021
|
"id": 1,
|
|
3030
|
-
"promptbookVersion": "0.
|
|
3022
|
+
"promptbookVersion": "0.101.0-9",
|
|
3031
3023
|
"usage": {
|
|
3032
3024
|
"price": {
|
|
3033
|
-
"value": 0.
|
|
3025
|
+
"value": 0.040302500000000005
|
|
3034
3026
|
},
|
|
3035
3027
|
"input": {
|
|
3036
3028
|
"tokensCount": {
|
|
3037
|
-
"value":
|
|
3029
|
+
"value": 5858
|
|
3038
3030
|
},
|
|
3039
3031
|
"charactersCount": {
|
|
3040
3032
|
"value": 2377
|
|
@@ -3057,25 +3049,25 @@
|
|
|
3057
3049
|
},
|
|
3058
3050
|
"output": {
|
|
3059
3051
|
"tokensCount": {
|
|
3060
|
-
"value":
|
|
3052
|
+
"value": 3298
|
|
3061
3053
|
},
|
|
3062
3054
|
"charactersCount": {
|
|
3063
|
-
"value":
|
|
3055
|
+
"value": 5196
|
|
3064
3056
|
},
|
|
3065
3057
|
"wordsCount": {
|
|
3066
|
-
"value":
|
|
3058
|
+
"value": 763
|
|
3067
3059
|
},
|
|
3068
3060
|
"sentencesCount": {
|
|
3069
|
-
"value":
|
|
3061
|
+
"value": 54
|
|
3070
3062
|
},
|
|
3071
3063
|
"linesCount": {
|
|
3072
|
-
"value":
|
|
3064
|
+
"value": 104
|
|
3073
3065
|
},
|
|
3074
3066
|
"paragraphsCount": {
|
|
3075
3067
|
"value": 1
|
|
3076
3068
|
},
|
|
3077
3069
|
"pagesCount": {
|
|
3078
|
-
"value":
|
|
3070
|
+
"value": 3
|
|
3079
3071
|
}
|
|
3080
3072
|
}
|
|
3081
3073
|
}
|
|
@@ -3123,7 +3115,7 @@
|
|
|
3123
3115
|
"preparations": [
|
|
3124
3116
|
{
|
|
3125
3117
|
"id": 1,
|
|
3126
|
-
"promptbookVersion": "0.
|
|
3118
|
+
"promptbookVersion": "0.101.0-9",
|
|
3127
3119
|
"usage": {
|
|
3128
3120
|
"price": {
|
|
3129
3121
|
"value": 0
|
|
@@ -3232,27 +3224,27 @@
|
|
|
3232
3224
|
"models": [
|
|
3233
3225
|
{
|
|
3234
3226
|
"modelName": "gpt-4.1",
|
|
3235
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3227
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, and data-informed guidance. Use proven frameworks (STP, 4Ps/7Ps, AARRR, JTBD, SWOT, BCG), outline step-by-step plans with timelines, budgets, and KPIs, and propose lean experiments. Quantify assumptions, cite sources when possible, and flag uncertainties. Ask concise clarifying questions before giving recommendations if context is missing. Be professional, pragmatic, and concise.",
|
|
3236
3228
|
"temperature": 0.4
|
|
3237
3229
|
},
|
|
3238
3230
|
{
|
|
3239
3231
|
"modelName": "chatgpt-4o-latest",
|
|
3240
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3241
|
-
"temperature": 0.
|
|
3232
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on creative ideation. Generate multiple high-quality options (positioning, messaging, campaign concepts, content calendars, growth experiments) with rationale and target metrics. Keep ideas practical for the stated budget and resources. Ask brief clarifying questions when needed. Tone: friendly, energetic, and commercially savvy.",
|
|
3233
|
+
"temperature": 0.7
|
|
3242
3234
|
},
|
|
3243
3235
|
{
|
|
3244
3236
|
"modelName": "gpt-4",
|
|
3245
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3237
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver structured, evidence-based advice with step-by-step plans, KPIs, and prioritized next actions. Use standard frameworks and quantify trade-offs. Be concise and professional; ask for missing info.",
|
|
3246
3238
|
"temperature": 0.4
|
|
3247
3239
|
},
|
|
3248
3240
|
{
|
|
3249
|
-
"modelName": "
|
|
3250
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3251
|
-
"temperature": 0.
|
|
3241
|
+
"modelName": "o4-mini",
|
|
3242
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant specializing in quantitative analysis. Build simple models for CAC/LTV, payback, funnel conversion, and forecasting. Show assumptions, formulas, and sensitivities; present results and recommendations clearly. If data is missing, ask for it or provide reasonable defaults.",
|
|
3243
|
+
"temperature": 0.2
|
|
3252
3244
|
},
|
|
3253
3245
|
{
|
|
3254
|
-
"modelName": "gpt-3.5-turbo-
|
|
3255
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3246
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3247
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, practical guidance using checklists, templates, and ready-to-use prompts. Ask a few clarifying questions if context is lacking and keep outputs cost-efficient and to the point.",
|
|
3256
3248
|
"temperature": 0.5
|
|
3257
3249
|
}
|
|
3258
3250
|
]
|
|
@@ -3266,14 +3258,14 @@
|
|
|
3266
3258
|
"preparations": [
|
|
3267
3259
|
{
|
|
3268
3260
|
"id": 1,
|
|
3269
|
-
"promptbookVersion": "0.
|
|
3261
|
+
"promptbookVersion": "0.101.0-9",
|
|
3270
3262
|
"usage": {
|
|
3271
3263
|
"price": {
|
|
3272
|
-
"value": 0.
|
|
3264
|
+
"value": 0.0321825
|
|
3273
3265
|
},
|
|
3274
3266
|
"input": {
|
|
3275
3267
|
"tokensCount": {
|
|
3276
|
-
"value":
|
|
3268
|
+
"value": 5858
|
|
3277
3269
|
},
|
|
3278
3270
|
"charactersCount": {
|
|
3279
3271
|
"value": 2377
|
|
@@ -3296,25 +3288,25 @@
|
|
|
3296
3288
|
},
|
|
3297
3289
|
"output": {
|
|
3298
3290
|
"tokensCount": {
|
|
3299
|
-
"value":
|
|
3291
|
+
"value": 2486
|
|
3300
3292
|
},
|
|
3301
3293
|
"charactersCount": {
|
|
3302
|
-
"value":
|
|
3294
|
+
"value": 2270
|
|
3303
3295
|
},
|
|
3304
3296
|
"wordsCount": {
|
|
3305
|
-
"value":
|
|
3297
|
+
"value": 291
|
|
3306
3298
|
},
|
|
3307
3299
|
"sentencesCount": {
|
|
3308
|
-
"value":
|
|
3300
|
+
"value": 30
|
|
3309
3301
|
},
|
|
3310
3302
|
"linesCount": {
|
|
3311
|
-
"value":
|
|
3303
|
+
"value": 55
|
|
3312
3304
|
},
|
|
3313
3305
|
"paragraphsCount": {
|
|
3314
3306
|
"value": 1
|
|
3315
3307
|
},
|
|
3316
3308
|
"pagesCount": {
|
|
3317
|
-
"value":
|
|
3309
|
+
"value": 2
|
|
3318
3310
|
}
|
|
3319
3311
|
}
|
|
3320
3312
|
}
|
|
@@ -3384,32 +3376,29 @@
|
|
|
3384
3376
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3385
3377
|
"modelsRequirements": [
|
|
3386
3378
|
{
|
|
3387
|
-
"
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
"temperature": 0.5
|
|
3411
|
-
},
|
|
3412
|
-
"modelVariant": "CHAT"
|
|
3379
|
+
"modelVariant": "CHAT",
|
|
3380
|
+
"models": [
|
|
3381
|
+
{
|
|
3382
|
+
"modelName": "gpt-4.1",
|
|
3383
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3384
|
+
"temperature": 0.4
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"modelName": "chatgpt-4o-latest",
|
|
3388
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3389
|
+
"temperature": 0.6
|
|
3390
|
+
},
|
|
3391
|
+
{
|
|
3392
|
+
"modelName": "gpt-4",
|
|
3393
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
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 e-shop. Primary goals: resolve customer issues accurately and efficiently, and produce persuasive, on-brand product and marketing copy when requested. Behaviors:\n- Be friendly, professional, and empathetic. Match the user's language.\n- For support: confirm understanding, ask concise clarifying questions if needed, and provide step-by-step solutions. Never invent order details or policies; request missing data (order ID, item, date, email) and state any uncertainties. Offer appropriate next steps or escalation when unsure.\n- For copywriting: write benefit-focused, factually correct copy; include key features, use cases, and differentiators; adapt tone to channel (product page, email, social); avoid overpromising; keep claims compliant. When asked, provide 2–3 variations and optional CTAs.\n- Keep responses concise and actionable. Respect privacy: never ask for full payment details.",
|
|
3399
|
+
"temperature": 0.3
|
|
3400
|
+
}
|
|
3401
|
+
]
|
|
3413
3402
|
}
|
|
3414
3403
|
],
|
|
3415
3404
|
"preparationIds": [
|
|
@@ -3420,14 +3409,14 @@
|
|
|
3420
3409
|
"preparations": [
|
|
3421
3410
|
{
|
|
3422
3411
|
"id": 1,
|
|
3423
|
-
"promptbookVersion": "0.
|
|
3412
|
+
"promptbookVersion": "0.101.0-9",
|
|
3424
3413
|
"usage": {
|
|
3425
3414
|
"price": {
|
|
3426
|
-
"value": 0.
|
|
3415
|
+
"value": 0.0370375
|
|
3427
3416
|
},
|
|
3428
3417
|
"input": {
|
|
3429
3418
|
"tokensCount": {
|
|
3430
|
-
"value":
|
|
3419
|
+
"value": 5862
|
|
3431
3420
|
},
|
|
3432
3421
|
"charactersCount": {
|
|
3433
3422
|
"value": 2377
|
|
@@ -3450,25 +3439,25 @@
|
|
|
3450
3439
|
},
|
|
3451
3440
|
"output": {
|
|
3452
3441
|
"tokensCount": {
|
|
3453
|
-
"value":
|
|
3442
|
+
"value": 2971
|
|
3454
3443
|
},
|
|
3455
3444
|
"charactersCount": {
|
|
3456
|
-
"value":
|
|
3445
|
+
"value": 4290
|
|
3457
3446
|
},
|
|
3458
3447
|
"wordsCount": {
|
|
3459
|
-
"value":
|
|
3448
|
+
"value": 598
|
|
3460
3449
|
},
|
|
3461
3450
|
"sentencesCount": {
|
|
3462
|
-
"value":
|
|
3451
|
+
"value": 51
|
|
3463
3452
|
},
|
|
3464
3453
|
"linesCount": {
|
|
3465
|
-
"value":
|
|
3454
|
+
"value": 84
|
|
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
|
}
|
|
@@ -3716,31 +3705,26 @@
|
|
|
3716
3705
|
"modelsRequirements": [
|
|
3717
3706
|
{
|
|
3718
3707
|
"modelVariant": "CHAT",
|
|
3719
|
-
"
|
|
3708
|
+
"": [
|
|
3720
3709
|
{
|
|
3721
3710
|
"modelName": "gpt-4.1",
|
|
3722
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3711
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
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 linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3728
3717
|
"temperature": 0.5
|
|
3729
3718
|
},
|
|
3730
3719
|
{
|
|
3731
3720
|
"modelName": "gpt-4",
|
|
3732
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3733
|
-
"temperature": 0.
|
|
3721
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3722
|
+
"temperature": 0.35
|
|
3734
3723
|
},
|
|
3735
3724
|
{
|
|
3736
3725
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3737
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3726
|
+
"systemMessage": "You are a linguist and Esperantist. You are fluent in Esperanto and many major languages. Explain grammar, morphology, syntax, phonology (use IPA), semantics, pragmatics, and etymology accurately. When giving examples, include both English and Esperanto unless the user specifies otherwise. If the user writes in Esperanto, respond in Esperanto; otherwise, ask whether they prefer English or Esperanto. Be concise, friendly, and precise; flag uncertainty and avoid invented etymologies. Use descriptive terminology and note standards (e.g., PMEG) when relevant. For Esperanto, use the standard diacritics (ĉ ĝ ĥ ĵ ŝ ŭ), and offer x-system equivalents when helpful.",
|
|
3738
3727
|
"temperature": 0.5
|
|
3739
|
-
},
|
|
3740
|
-
{
|
|
3741
|
-
"modelName": "gpt-3.5-turbo",
|
|
3742
|
-
"systemMessage": "You are a linguist and Esperantist. Give concise, practical explanations with IPA and brief morphological breakdowns. Follow the Fundamento and PMEG for Esperanto. Match the user's language, ask for clarification if ambiguous, and avoid unsupported claims.",
|
|
3743
|
-
"temperature": 0.6
|
|
3744
3728
|
}
|
|
3745
3729
|
]
|
|
3746
3730
|
}
|
|
@@ -3753,14 +3737,14 @@
|
|
|
3753
3737
|
"preparations": [
|
|
3754
3738
|
{
|
|
3755
3739
|
"id": 1,
|
|
3756
|
-
"promptbookVersion": "0.
|
|
3740
|
+
"promptbookVersion": "0.101.0-9",
|
|
3757
3741
|
"usage": {
|
|
3758
3742
|
"price": {
|
|
3759
|
-
"value": 0.
|
|
3743
|
+
"value": 0.036862500000000006
|
|
3760
3744
|
},
|
|
3761
3745
|
"input": {
|
|
3762
3746
|
"tokensCount": {
|
|
3763
|
-
"value":
|
|
3747
|
+
"value": 5858
|
|
3764
3748
|
},
|
|
3765
3749
|
"charactersCount": {
|
|
3766
3750
|
"value": 2377
|
|
@@ -3783,16 +3767,16 @@
|
|
|
3783
3767
|
},
|
|
3784
3768
|
"output": {
|
|
3785
3769
|
"tokensCount": {
|
|
3786
|
-
"value":
|
|
3770
|
+
"value": 2954
|
|
3787
3771
|
},
|
|
3788
3772
|
"charactersCount": {
|
|
3789
|
-
"value":
|
|
3773
|
+
"value": 3069
|
|
3790
3774
|
},
|
|
3791
3775
|
"wordsCount": {
|
|
3792
|
-
"value":
|
|
3776
|
+
"value": 433
|
|
3793
3777
|
},
|
|
3794
3778
|
"sentencesCount": {
|
|
3795
|
-
"value":
|
|
3779
|
+
"value": 47
|
|
3796
3780
|
},
|
|
3797
3781
|
"linesCount": {
|
|
3798
3782
|
"value": 64
|
|
@@ -3866,23 +3850,23 @@
|
|
|
3866
3850
|
"models": [
|
|
3867
3851
|
{
|
|
3868
3852
|
"modelName": "gpt-4.1",
|
|
3869
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3870
|
-
"temperature": 0.95
|
|
3871
|
-
},
|
|
3872
|
-
{
|
|
3873
|
-
"modelName": "gpt-4",
|
|
3874
|
-
"systemMessage": "You are an accomplished poet and storyteller. Craft language that sings—rich in metaphor, sensory detail, and cadence—while keeping the narrative clear and engaging. Match the requested style and form.",
|
|
3853
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical language, and emotional depth. Vary form and voice to suit the brief, maintain clarity and narrative momentum, and prefer concrete detail over abstraction. When asked for edits, preserve the author's intent while strengthening rhythm, diction, and structure.",
|
|
3875
3854
|
"temperature": 0.9
|
|
3876
3855
|
},
|
|
3877
3856
|
{
|
|
3878
3857
|
"modelName": "chatgpt-4o-latest",
|
|
3879
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3858
|
+
"systemMessage": "You are an accomplished poet and storyteller—equally at ease with free verse, formal meters, microfiction, and epic narrative. Be imaginative yet precise; favor showing over telling, fresh metaphors, and strong cadence. Offer stylistic options when helpful and explain your choices briefly on request.",
|
|
3859
|
+
"temperature": 1
|
|
3860
|
+
},
|
|
3861
|
+
{
|
|
3862
|
+
"modelName": "gpt-4",
|
|
3863
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft original, evocative writing with coherent arcs, sensory detail, and a distinctive voice. Honor constraints (form, meter, POV, length) and ask one clarifying question if requirements are ambiguous.",
|
|
3880
3864
|
"temperature": 0.85
|
|
3881
3865
|
},
|
|
3882
3866
|
{
|
|
3883
3867
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3884
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3885
|
-
"temperature":
|
|
3868
|
+
"systemMessage": "You are an accomplished poet and storyteller focused on concise, engaging pieces. Keep language vivid but accessible, and when helpful provide two alternative styles or tones for comparison.",
|
|
3869
|
+
"temperature": 0.85
|
|
3886
3870
|
}
|
|
3887
3871
|
]
|
|
3888
3872
|
}
|
|
@@ -3895,14 +3879,14 @@
|
|
|
3895
3879
|
"preparations": [
|
|
3896
3880
|
{
|
|
3897
3881
|
"id": 1,
|
|
3898
|
-
"promptbookVersion": "0.
|
|
3882
|
+
"promptbookVersion": "0.101.0-9",
|
|
3899
3883
|
"usage": {
|
|
3900
3884
|
"price": {
|
|
3901
|
-
"value": 0.
|
|
3885
|
+
"value": 0.026181250000000003
|
|
3902
3886
|
},
|
|
3903
3887
|
"input": {
|
|
3904
3888
|
"tokensCount": {
|
|
3905
|
-
"value":
|
|
3889
|
+
"value": 5857
|
|
3906
3890
|
},
|
|
3907
3891
|
"charactersCount": {
|
|
3908
3892
|
"value": 2377
|
|
@@ -3925,19 +3909,19 @@
|
|
|
3925
3909
|
},
|
|
3926
3910
|
"output": {
|
|
3927
3911
|
"tokensCount": {
|
|
3928
|
-
"value":
|
|
3912
|
+
"value": 1886
|
|
3929
3913
|
},
|
|
3930
3914
|
"charactersCount": {
|
|
3931
|
-
"value":
|
|
3915
|
+
"value": 1497
|
|
3932
3916
|
},
|
|
3933
3917
|
"wordsCount": {
|
|
3934
|
-
"value":
|
|
3918
|
+
"value": 199
|
|
3935
3919
|
},
|
|
3936
3920
|
"sentencesCount": {
|
|
3937
|
-
"value":
|
|
3921
|
+
"value": 19
|
|
3938
3922
|
},
|
|
3939
3923
|
"linesCount": {
|
|
3940
|
-
"value":
|
|
3924
|
+
"value": 41
|
|
3941
3925
|
},
|
|
3942
3926
|
"paragraphsCount": {
|
|
3943
3927
|
"value": 1
|