@promptbook/templates 0.100.0-6 → 0.100.0-64
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/README.md +7 -10
- package/esm/index.es.js +336 -286
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/color.index.d.ts +50 -0
- package/esm/typings/src/_packages/components.index.d.ts +36 -0
- package/esm/typings/src/_packages/core.index.d.ts +30 -0
- package/esm/typings/src/_packages/types.index.d.ts +38 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +30 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.test.d.ts +1 -0
- package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +26 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +56 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +49 -0
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +52 -0
- package/esm/typings/src/book-2.0/commitments/_base/BookCommitment.d.ts +5 -0
- package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +48 -0
- package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +22 -0
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +19 -0
- package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +37 -0
- package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +18 -0
- package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +22 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirements.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirementsWithCommitments.d.ts +36 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createCommitmentRegex.d.ts +20 -0
- package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +24 -0
- package/esm/typings/src/book-2.0/commitments/_misc/removeCommentsFromSystemMessage.d.ts +11 -0
- package/esm/typings/src/book-2.0/commitments/index.d.ts +56 -0
- package/esm/typings/src/book-2.0/utils/profileImageUtils.d.ts +39 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +35 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChipFromSource.d.ts +21 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/index.d.ts +2 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +26 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileFromSource.d.ts +19 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +35 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/config.d.ts +10 -0
- package/esm/typings/src/book-components/BookEditor/injectCssModuleIntoShadowRoot.d.ts +11 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +20 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +110 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChat.d.ts +14 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChat.test.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +24 -0
- package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +16 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +32 -0
- package/esm/typings/src/book-components/Chat/utils/ChatPersistence.d.ts +25 -0
- package/esm/typings/src/book-components/Chat/utils/ExportFormat.d.ts +4 -0
- package/esm/typings/src/book-components/Chat/utils/addUtmParamsToUrl.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/createShortLinkForChat.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/downloadFile.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/utils/exportChatHistory.d.ts +9 -0
- package/esm/typings/src/book-components/Chat/utils/generatePdfContent.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/generateQrDataUrl.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/getPromptbookBranding.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToHtml.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToJson.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToMarkdown.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToText.d.ts +8 -0
- package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +7 -0
- package/esm/typings/src/book-components/_common/react-utils/collectCssTextsForClass.d.ts +7 -0
- package/esm/typings/src/book-components/_common/react-utils/escapeHtml.d.ts +6 -0
- package/esm/typings/src/book-components/_common/react-utils/escapeRegex.d.ts +6 -0
- package/esm/typings/src/config.d.ts +19 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +27 -1
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +8 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +6 -1
- package/esm/typings/src/llm-providers/_common/filterModels.d.ts +0 -3
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +81 -0
- package/esm/typings/src/llm-providers/_common/profiles/test/llmProviderProfiles.test.d.ts +1 -0
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +5 -0
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +5 -5
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/deepseek/deepseek-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +5 -0
- package/esm/typings/src/llm-providers/ollama/ollama-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +8 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +5 -0
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -0
- package/esm/typings/src/pipeline/book-notation.d.ts +2 -1
- package/esm/typings/src/playground/permanent/error-handling-playground.d.ts +5 -0
- package/esm/typings/src/types/ModelRequirements.d.ts +0 -2
- package/esm/typings/src/types/typeAliases.d.ts +6 -0
- package/esm/typings/src/utils/color/$randomColor.d.ts +11 -0
- package/esm/typings/src/utils/color/Color.d.ts +180 -0
- package/esm/typings/src/utils/color/css-colors.d.ts +159 -0
- package/esm/typings/src/utils/color/internal-utils/checkChannelValue.d.ts +14 -0
- package/esm/typings/src/utils/color/internal-utils/hslToRgb.d.ts +17 -0
- package/esm/typings/src/utils/color/internal-utils/rgbToHsl.d.ts +17 -0
- package/esm/typings/src/utils/color/operators/ColorTransformer.d.ts +5 -0
- package/esm/typings/src/utils/color/operators/darken.d.ts +9 -0
- package/esm/typings/src/utils/color/operators/furthest.d.ts +16 -0
- package/esm/typings/src/utils/color/operators/grayscale.d.ts +9 -0
- package/esm/typings/src/utils/color/operators/lighten.d.ts +12 -0
- package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +11 -0
- package/esm/typings/src/utils/color/operators/nearest.d.ts +10 -0
- package/esm/typings/src/utils/color/operators/negative.d.ts +7 -0
- package/esm/typings/src/utils/color/operators/negativeLightness.d.ts +7 -0
- package/esm/typings/src/utils/color/operators/withAlpha.d.ts +9 -0
- package/esm/typings/src/utils/color/utils/areColorsEqual.d.ts +14 -0
- package/esm/typings/src/utils/color/utils/colorDistance.d.ts +21 -0
- package/esm/typings/src/utils/color/utils/colorHue.d.ts +11 -0
- package/esm/typings/src/utils/color/utils/colorHueDistance.d.ts +11 -0
- package/esm/typings/src/utils/color/utils/colorHueDistance.test.d.ts +1 -0
- package/esm/typings/src/utils/color/utils/colorLuminance.d.ts +9 -0
- package/esm/typings/src/utils/color/utils/colorSatulightion.d.ts +7 -0
- package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +9 -0
- package/esm/typings/src/utils/color/utils/colorToDataUrl.d.ts +10 -0
- package/esm/typings/src/utils/color/utils/mixColors.d.ts +11 -0
- package/esm/typings/src/utils/organization/preserve.d.ts +21 -0
- package/esm/typings/src/utils/take/classes/TakeChain.d.ts +11 -0
- package/esm/typings/src/utils/take/interfaces/ITakeChain.d.ts +12 -0
- package/esm/typings/src/utils/take/interfaces/Takeable.d.ts +7 -0
- package/esm/typings/src/utils/take/take.d.ts +12 -0
- package/esm/typings/src/utils/take/take.test.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -3
- package/umd/index.umd.js +340 -290
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/scripting/javascript/utils/preserve.d.ts +0 -14
package/umd/index.umd.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier'), require('prettier/parser-
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier', 'prettier/parser-
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.
|
|
5
|
-
})(this, (function (exports, spaceTrim,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier/parser-html'), require('prettier/parser-markdown'), require('prettier/standalone')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier/parser-html', 'prettier/parser-markdown', 'prettier/standalone'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.parserHtml, global.parserMarkdown, global.standalone));
|
|
5
|
+
})(this, (function (exports, spaceTrim, parserHtml, parserMarkdown, standalone) { '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
10
|
var parserHtml__default = /*#__PURE__*/_interopDefaultLegacy(parserHtml);
|
|
11
|
+
var parserMarkdown__default = /*#__PURE__*/_interopDefaultLegacy(parserMarkdown);
|
|
11
12
|
|
|
12
13
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
13
14
|
/**
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
* @generated
|
|
24
25
|
* @see https://github.com/webgptorg/promptbook
|
|
25
26
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-64';
|
|
27
28
|
/**
|
|
28
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -197,6 +198,13 @@
|
|
|
197
198
|
newline: '\n',
|
|
198
199
|
skipEmptyLines: true,
|
|
199
200
|
});
|
|
201
|
+
/**
|
|
202
|
+
* API request timeout in milliseconds
|
|
203
|
+
* Can be overridden via API_REQUEST_TIMEOUT environment variable
|
|
204
|
+
*
|
|
205
|
+
* @public exported from `@promptbook/core`
|
|
206
|
+
*/
|
|
207
|
+
parseInt(process.env.API_REQUEST_TIMEOUT || '90000');
|
|
200
208
|
/**
|
|
201
209
|
* Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
|
|
202
210
|
*
|
|
@@ -387,9 +395,9 @@
|
|
|
387
395
|
*/
|
|
388
396
|
function prettifyMarkdown(content) {
|
|
389
397
|
try {
|
|
390
|
-
return
|
|
398
|
+
return standalone.format(content, {
|
|
391
399
|
parser: 'markdown',
|
|
392
|
-
plugins: [parserHtml__default["default"]],
|
|
400
|
+
plugins: [parserMarkdown__default["default"], parserHtml__default["default"]],
|
|
393
401
|
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
394
402
|
endOfLine: 'lf',
|
|
395
403
|
tabWidth: 4,
|
|
@@ -1541,21 +1549,33 @@
|
|
|
1541
1549
|
"modelsRequirements": [
|
|
1542
1550
|
{
|
|
1543
1551
|
"modelVariant": "CHAT",
|
|
1544
|
-
"
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1552
|
+
"models": [
|
|
1553
|
+
{
|
|
1554
|
+
"modelName": "gpt-4.1",
|
|
1555
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and pragmatic assistant. Be concise, structured, and evidence-based. For every task: clarify requirements if ambiguous, list assumptions, propose a minimal, robust solution first, then optional improvements. Write correct, well-documented code and prompt templates that are reproducible and testable. Prefer determinism; avoid speculation—if unsure, say you don’t know. Do not reveal chain-of-thought; provide only results and key steps.",
|
|
1556
|
+
"temperature": 0.3
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"modelName": "chatgpt-4o-latest",
|
|
1560
|
+
"systemMessage": "You are a friendly, fast assistant for a developer of the Promptbook Project. Communicate crisply; prioritize practical guidance, small runnable examples, and clear trade-offs. Optimize for developer productivity and high-quality prompt design. Ask a brief clarifying question when needed. Do not expose chain-of-thought; provide concise conclusions with minimal justification.",
|
|
1561
|
+
"temperature": 0.4
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"modelName": "o4-mini",
|
|
1565
|
+
"systemMessage": "You are an analytical coding copilot for a developer of the Promptbook Project. Tackle tricky reasoning and debugging tasks with precision. Provide concise final answers, short bullet justifications, and concrete code or prompt snippets. Verify logic, check edge cases, and flag risks or unknowns. Do not disclose chain-of-thought.",
|
|
1566
|
+
"temperature": 0.2
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"modelName": "gpt-4",
|
|
1570
|
+
"systemMessage": "You are an experienced AI engineer assisting a developer of the Promptbook Project. Deliver accurate, concise explanations, high-quality code, and robust prompt patterns. Clarify ambiguous requirements, state assumptions, and avoid fabrications. Provide minimal working examples and actionable next steps. Do not reveal chain-of-thought.",
|
|
1571
|
+
"temperature": 0.3
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1575
|
+
"systemMessage": "You are a cost-efficient assistant for a developer of the Promptbook Project. Be concise and practical. Prefer simple, reliable solutions with minimal examples. Escalate uncertainty and ask clarifying questions when needed. Do not reveal chain-of-thought.",
|
|
1576
|
+
"temperature": 0.2
|
|
1577
|
+
}
|
|
1578
|
+
]
|
|
1559
1579
|
}
|
|
1560
1580
|
],
|
|
1561
1581
|
"preparationIds": [
|
|
@@ -1566,55 +1586,55 @@
|
|
|
1566
1586
|
"preparations": [
|
|
1567
1587
|
{
|
|
1568
1588
|
"id": 1,
|
|
1569
|
-
"promptbookVersion": "0.100.0-
|
|
1589
|
+
"promptbookVersion": "0.100.0-63",
|
|
1570
1590
|
"usage": {
|
|
1571
1591
|
"price": {
|
|
1572
|
-
"value": 0.
|
|
1592
|
+
"value": 0.0367825
|
|
1573
1593
|
},
|
|
1574
1594
|
"input": {
|
|
1575
1595
|
"tokensCount": {
|
|
1576
|
-
"value":
|
|
1596
|
+
"value": 5778
|
|
1577
1597
|
},
|
|
1578
1598
|
"charactersCount": {
|
|
1579
|
-
"value":
|
|
1599
|
+
"value": 2377
|
|
1580
1600
|
},
|
|
1581
1601
|
"wordsCount": {
|
|
1582
|
-
"value":
|
|
1602
|
+
"value": 348
|
|
1583
1603
|
},
|
|
1584
1604
|
"sentencesCount": {
|
|
1585
|
-
"value":
|
|
1605
|
+
"value": 22
|
|
1586
1606
|
},
|
|
1587
1607
|
"linesCount": {
|
|
1588
|
-
"value":
|
|
1608
|
+
"value": 65
|
|
1589
1609
|
},
|
|
1590
1610
|
"paragraphsCount": {
|
|
1591
1611
|
"value": 20
|
|
1592
1612
|
},
|
|
1593
1613
|
"pagesCount": {
|
|
1594
|
-
"value":
|
|
1614
|
+
"value": 2
|
|
1595
1615
|
}
|
|
1596
1616
|
},
|
|
1597
1617
|
"output": {
|
|
1598
1618
|
"tokensCount": {
|
|
1599
|
-
"value":
|
|
1619
|
+
"value": 2956
|
|
1600
1620
|
},
|
|
1601
1621
|
"charactersCount": {
|
|
1602
|
-
"value":
|
|
1622
|
+
"value": 2331
|
|
1603
1623
|
},
|
|
1604
1624
|
"wordsCount": {
|
|
1605
|
-
"value":
|
|
1625
|
+
"value": 315
|
|
1606
1626
|
},
|
|
1607
1627
|
"sentencesCount": {
|
|
1608
|
-
"value":
|
|
1628
|
+
"value": 35
|
|
1609
1629
|
},
|
|
1610
1630
|
"linesCount": {
|
|
1611
|
-
"value":
|
|
1631
|
+
"value": 57
|
|
1612
1632
|
},
|
|
1613
1633
|
"paragraphsCount": {
|
|
1614
|
-
"value":
|
|
1634
|
+
"value": 1
|
|
1615
1635
|
},
|
|
1616
1636
|
"pagesCount": {
|
|
1617
|
-
"value":
|
|
1637
|
+
"value": 2
|
|
1618
1638
|
}
|
|
1619
1639
|
}
|
|
1620
1640
|
}
|
|
@@ -2094,21 +2114,33 @@
|
|
|
2094
2114
|
"modelsRequirements": [
|
|
2095
2115
|
{
|
|
2096
2116
|
"modelVariant": "CHAT",
|
|
2097
|
-
"
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2117
|
+
"models": [
|
|
2118
|
+
{
|
|
2119
|
+
"modelName": "gpt-4.1",
|
|
2120
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and pragmatic assistant. Be concise, structured, and evidence-based. For every task: clarify requirements if ambiguous, list assumptions, propose a minimal, robust solution first, then optional improvements. Write correct, well-documented code and prompt templates that are reproducible and testable. Prefer determinism; avoid speculation—if unsure, say you don’t know. Do not reveal chain-of-thought; provide only results and key steps.",
|
|
2121
|
+
"temperature": 0.3
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"modelName": "chatgpt-4o-latest",
|
|
2125
|
+
"systemMessage": "You are a friendly, fast assistant for a developer of the Promptbook Project. Communicate crisply; prioritize practical guidance, small runnable examples, and clear trade-offs. Optimize for developer productivity and high-quality prompt design. Ask a brief clarifying question when needed. Do not expose chain-of-thought; provide concise conclusions with minimal justification.",
|
|
2126
|
+
"temperature": 0.4
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"modelName": "o4-mini",
|
|
2130
|
+
"systemMessage": "You are an analytical coding copilot for a developer of the Promptbook Project. Tackle tricky reasoning and debugging tasks with precision. Provide concise final answers, short bullet justifications, and concrete code or prompt snippets. Verify logic, check edge cases, and flag risks or unknowns. Do not disclose chain-of-thought.",
|
|
2131
|
+
"temperature": 0.2
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"modelName": "gpt-4",
|
|
2135
|
+
"systemMessage": "You are an experienced AI engineer assisting a developer of the Promptbook Project. Deliver accurate, concise explanations, high-quality code, and robust prompt patterns. Clarify ambiguous requirements, state assumptions, and avoid fabrications. Provide minimal working examples and actionable next steps. Do not reveal chain-of-thought.",
|
|
2136
|
+
"temperature": 0.3
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2140
|
+
"systemMessage": "You are a cost-efficient assistant for a developer of the Promptbook Project. Be concise and practical. Prefer simple, reliable solutions with minimal examples. Escalate uncertainty and ask clarifying questions when needed. Do not reveal chain-of-thought.",
|
|
2141
|
+
"temperature": 0.2
|
|
2142
|
+
}
|
|
2143
|
+
]
|
|
2112
2144
|
}
|
|
2113
2145
|
],
|
|
2114
2146
|
"preparationIds": [
|
|
@@ -2119,55 +2151,55 @@
|
|
|
2119
2151
|
"preparations": [
|
|
2120
2152
|
{
|
|
2121
2153
|
"id": 1,
|
|
2122
|
-
"promptbookVersion": "0.100.0-
|
|
2154
|
+
"promptbookVersion": "0.100.0-63",
|
|
2123
2155
|
"usage": {
|
|
2124
2156
|
"price": {
|
|
2125
|
-
"value": 0.
|
|
2157
|
+
"value": 0.0367825
|
|
2126
2158
|
},
|
|
2127
2159
|
"input": {
|
|
2128
2160
|
"tokensCount": {
|
|
2129
|
-
"value":
|
|
2161
|
+
"value": 5778
|
|
2130
2162
|
},
|
|
2131
2163
|
"charactersCount": {
|
|
2132
|
-
"value":
|
|
2164
|
+
"value": 2377
|
|
2133
2165
|
},
|
|
2134
2166
|
"wordsCount": {
|
|
2135
|
-
"value":
|
|
2167
|
+
"value": 348
|
|
2136
2168
|
},
|
|
2137
2169
|
"sentencesCount": {
|
|
2138
|
-
"value":
|
|
2170
|
+
"value": 22
|
|
2139
2171
|
},
|
|
2140
2172
|
"linesCount": {
|
|
2141
|
-
"value":
|
|
2173
|
+
"value": 65
|
|
2142
2174
|
},
|
|
2143
2175
|
"paragraphsCount": {
|
|
2144
2176
|
"value": 20
|
|
2145
2177
|
},
|
|
2146
2178
|
"pagesCount": {
|
|
2147
|
-
"value":
|
|
2179
|
+
"value": 2
|
|
2148
2180
|
}
|
|
2149
2181
|
},
|
|
2150
2182
|
"output": {
|
|
2151
2183
|
"tokensCount": {
|
|
2152
|
-
"value":
|
|
2184
|
+
"value": 2956
|
|
2153
2185
|
},
|
|
2154
2186
|
"charactersCount": {
|
|
2155
|
-
"value":
|
|
2187
|
+
"value": 2331
|
|
2156
2188
|
},
|
|
2157
2189
|
"wordsCount": {
|
|
2158
|
-
"value":
|
|
2190
|
+
"value": 315
|
|
2159
2191
|
},
|
|
2160
2192
|
"sentencesCount": {
|
|
2161
|
-
"value":
|
|
2193
|
+
"value": 35
|
|
2162
2194
|
},
|
|
2163
2195
|
"linesCount": {
|
|
2164
|
-
"value":
|
|
2196
|
+
"value": 57
|
|
2165
2197
|
},
|
|
2166
2198
|
"paragraphsCount": {
|
|
2167
|
-
"value":
|
|
2199
|
+
"value": 1
|
|
2168
2200
|
},
|
|
2169
2201
|
"pagesCount": {
|
|
2170
|
-
"value":
|
|
2202
|
+
"value": 2
|
|
2171
2203
|
}
|
|
2172
2204
|
}
|
|
2173
2205
|
}
|
|
@@ -2788,27 +2820,28 @@
|
|
|
2788
2820
|
"modelsRequirements": [
|
|
2789
2821
|
{
|
|
2790
2822
|
"modelVariant": "CHAT",
|
|
2791
|
-
"
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2823
|
+
"models": [
|
|
2824
|
+
{
|
|
2825
|
+
"modelName": "gpt-4.1",
|
|
2826
|
+
"systemMessage": "You are a meticulous linguist and text corrector. Your priorities are accuracy, clarity, and preserving the author's intent. By default, return only the fully corrected text. When asked, also provide a brief rationale with key rules applied and a minimal list of notable changes. Handle multiple languages, dialects, and registers; confirm preferences (language/dialect, US vs UK spelling, formality, style guide such as Chicago/APA) if unclear. Apply consistent punctuation, spelling, and typography; fix grammar, syntax, agreement, tense, and word choice; improve flow without over-editing. If the request is ambiguous, ask one concise clarifying question before proceeding. Do not introduce new facts.",
|
|
2827
|
+
"temperature": 0.2
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"modelName": "gpt-4",
|
|
2831
|
+
"systemMessage": "You are a professional linguist and text corrector. Preserve meaning while correcting grammar, punctuation, spelling, style, and coherence. By default, output the corrected text only; provide explanations and change lists only when requested. Support multiple languages and dialects; confirm preferences (US/UK, tone, formality, style guide) if unspecified. Make minimal necessary edits, ensure consistency, and use proper typography. Ask a brief clarifying question when requirements are ambiguous. Avoid fabrications.",
|
|
2832
|
+
"temperature": 0.2
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"modelName": "chatgpt-4o-latest",
|
|
2836
|
+
"systemMessage": "You are a friendly yet rigorous linguist and copy editor. Correct grammar, spelling, punctuation, syntax, agreement, and style while preserving the author's voice. Default to returning only the corrected text. On request, add a concise explanation and bullet list of key edits. Confirm language/dialect, formality, and any style guide if unclear. Prefer minimal edits and consistent terminology. Ask one short clarifying question when needed. Do not add or invent facts.",
|
|
2837
|
+
"temperature": 0.25
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2841
|
+
"systemMessage": "You are a precise linguist and text corrector focused on clarity and correctness. Return the corrected text by default; include explanations or change summaries only if asked. Support multiple languages and dialects; confirm preferences (US/UK, formality, style guide) when unclear. Make minimal edits that preserve meaning, ensure consistency, and fix grammar, spelling, and punctuation. Ask a brief clarifying question when needed. Avoid adding new information.",
|
|
2842
|
+
"temperature": 0.2
|
|
2843
|
+
}
|
|
2844
|
+
]
|
|
2812
2845
|
}
|
|
2813
2846
|
],
|
|
2814
2847
|
"preparationIds": [
|
|
@@ -2819,55 +2852,55 @@
|
|
|
2819
2852
|
"preparations": [
|
|
2820
2853
|
{
|
|
2821
2854
|
"id": 1,
|
|
2822
|
-
"promptbookVersion": "0.100.0-
|
|
2855
|
+
"promptbookVersion": "0.100.0-63",
|
|
2823
2856
|
"usage": {
|
|
2824
2857
|
"price": {
|
|
2825
|
-
"value": 0.
|
|
2858
|
+
"value": 0.030171250000000004
|
|
2826
2859
|
},
|
|
2827
2860
|
"input": {
|
|
2828
2861
|
"tokensCount": {
|
|
2829
|
-
"value":
|
|
2862
|
+
"value": 5777
|
|
2830
2863
|
},
|
|
2831
2864
|
"charactersCount": {
|
|
2832
|
-
"value":
|
|
2865
|
+
"value": 2377
|
|
2833
2866
|
},
|
|
2834
2867
|
"wordsCount": {
|
|
2835
|
-
"value":
|
|
2868
|
+
"value": 348
|
|
2836
2869
|
},
|
|
2837
2870
|
"sentencesCount": {
|
|
2838
|
-
"value":
|
|
2871
|
+
"value": 22
|
|
2839
2872
|
},
|
|
2840
2873
|
"linesCount": {
|
|
2841
|
-
"value":
|
|
2874
|
+
"value": 65
|
|
2842
2875
|
},
|
|
2843
2876
|
"paragraphsCount": {
|
|
2844
2877
|
"value": 20
|
|
2845
2878
|
},
|
|
2846
2879
|
"pagesCount": {
|
|
2847
|
-
"value":
|
|
2880
|
+
"value": 2
|
|
2848
2881
|
}
|
|
2849
2882
|
},
|
|
2850
2883
|
"output": {
|
|
2851
2884
|
"tokensCount": {
|
|
2852
|
-
"value":
|
|
2885
|
+
"value": 2295
|
|
2853
2886
|
},
|
|
2854
2887
|
"charactersCount": {
|
|
2855
|
-
"value":
|
|
2888
|
+
"value": 2575
|
|
2856
2889
|
},
|
|
2857
2890
|
"wordsCount": {
|
|
2858
|
-
"value":
|
|
2891
|
+
"value": 353
|
|
2859
2892
|
},
|
|
2860
2893
|
"sentencesCount": {
|
|
2861
|
-
"value":
|
|
2894
|
+
"value": 36
|
|
2862
2895
|
},
|
|
2863
2896
|
"linesCount": {
|
|
2864
|
-
"value":
|
|
2897
|
+
"value": 57
|
|
2865
2898
|
},
|
|
2866
2899
|
"paragraphsCount": {
|
|
2867
|
-
"value":
|
|
2900
|
+
"value": 1
|
|
2868
2901
|
},
|
|
2869
2902
|
"pagesCount": {
|
|
2870
|
-
"value":
|
|
2903
|
+
"value": 2
|
|
2871
2904
|
}
|
|
2872
2905
|
}
|
|
2873
2906
|
}
|
|
@@ -2930,21 +2963,33 @@
|
|
|
2930
2963
|
"modelsRequirements": [
|
|
2931
2964
|
{
|
|
2932
2965
|
"modelVariant": "CHAT",
|
|
2933
|
-
"
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2966
|
+
"models": [
|
|
2967
|
+
{
|
|
2968
|
+
"modelName": "gpt-4.1",
|
|
2969
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, on-brand copy for product and category pages, ads, emails, and social posts. Emphasize benefits over features, build trust with specifics, and write clear headlines, scannable bullet points, and strong calls-to-action. Apply SEO best practices (natural keyword usage; meta titles <= 60 characters; meta descriptions <= 155 characters). Adapt tone and voice to the brief and target audience. When details are missing, ask concise, targeted questions before writing. Avoid unverified claims and comply with brand and legal guidelines. Use plain text; bullet lists are allowed; avoid heavy formatting. Write in the user’s requested language.",
|
|
2970
|
+
"temperature": 0.65
|
|
2971
|
+
},
|
|
2972
|
+
{
|
|
2973
|
+
"modelName": "chatgpt-4o-latest",
|
|
2974
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, on-brand copy for product and category pages, ads, emails, and social posts. Emphasize benefits over features, build trust with specifics, and write clear headlines, scannable bullet points, and strong calls-to-action. Apply SEO best practices (natural keyword usage; meta titles <= 60 characters; meta descriptions <= 155 characters). Adapt tone and voice to the brief and target audience. When details are missing, ask concise, targeted questions before writing. Avoid unverified claims and comply with brand and legal guidelines. Use plain text; bullet lists are allowed; avoid heavy formatting. Write in the user’s requested language.",
|
|
2975
|
+
"temperature": 0.7
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
"modelName": "gpt-4",
|
|
2979
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, on-brand copy for product and category pages, ads, emails, and social posts. Emphasize benefits over features, build trust with specifics, and write clear headlines, scannable bullet points, and strong calls-to-action. Apply SEO best practices (natural keyword usage; meta titles <= 60 characters; meta descriptions <= 155 characters). Adapt tone and voice to the brief and target audience. When details are missing, ask concise, targeted questions before writing. Avoid unverified claims and comply with brand and legal guidelines. Use plain text; bullet lists are allowed; avoid heavy formatting. Write in the user’s requested language.",
|
|
2980
|
+
"temperature": 0.65
|
|
2981
|
+
},
|
|
2982
|
+
{
|
|
2983
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2984
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, on-brand copy for product and category pages, ads, emails, and social posts. Emphasize benefits over features, build trust with specifics, and write clear headlines, scannable bullet points, and strong calls-to-action. Apply SEO best practices (natural keyword usage; meta titles <= 60 characters; meta descriptions <= 155 characters). Adapt tone and voice to the brief and target audience. When details are missing, ask concise, targeted questions before writing. Avoid unverified claims and comply with brand and legal guidelines. Use plain text; bullet lists are allowed; avoid heavy formatting. Write in the user’s requested language.",
|
|
2985
|
+
"temperature": 0.75
|
|
2986
|
+
},
|
|
2987
|
+
{
|
|
2988
|
+
"modelName": "gpt-3.5-turbo",
|
|
2989
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, on-brand copy for product and category pages, ads, emails, and social posts. Emphasize benefits over features, build trust with specifics, and write clear headlines, scannable bullet points, and strong calls-to-action. Apply SEO best practices (natural keyword usage; meta titles <= 60 characters; meta descriptions <= 155 characters). Adapt tone and voice to the brief and target audience. When details are missing, ask concise, targeted questions before writing. Avoid unverified claims and comply with brand and legal guidelines. Use plain text; bullet lists are allowed; avoid heavy formatting. Write in the user’s requested language.",
|
|
2990
|
+
"temperature": 0.75
|
|
2991
|
+
}
|
|
2992
|
+
]
|
|
2948
2993
|
}
|
|
2949
2994
|
],
|
|
2950
2995
|
"preparationIds": [
|
|
@@ -2955,55 +3000,55 @@
|
|
|
2955
3000
|
"preparations": [
|
|
2956
3001
|
{
|
|
2957
3002
|
"id": 1,
|
|
2958
|
-
"promptbookVersion": "0.100.0-
|
|
3003
|
+
"promptbookVersion": "0.100.0-63",
|
|
2959
3004
|
"usage": {
|
|
2960
3005
|
"price": {
|
|
2961
|
-
"value": 0.
|
|
3006
|
+
"value": 0.032171250000000005
|
|
2962
3007
|
},
|
|
2963
3008
|
"input": {
|
|
2964
3009
|
"tokensCount": {
|
|
2965
|
-
"value":
|
|
3010
|
+
"value": 5777
|
|
2966
3011
|
},
|
|
2967
3012
|
"charactersCount": {
|
|
2968
|
-
"value":
|
|
3013
|
+
"value": 2377
|
|
2969
3014
|
},
|
|
2970
3015
|
"wordsCount": {
|
|
2971
|
-
"value":
|
|
3016
|
+
"value": 348
|
|
2972
3017
|
},
|
|
2973
3018
|
"sentencesCount": {
|
|
2974
|
-
"value":
|
|
3019
|
+
"value": 22
|
|
2975
3020
|
},
|
|
2976
3021
|
"linesCount": {
|
|
2977
|
-
"value":
|
|
3022
|
+
"value": 65
|
|
2978
3023
|
},
|
|
2979
3024
|
"paragraphsCount": {
|
|
2980
3025
|
"value": 20
|
|
2981
3026
|
},
|
|
2982
3027
|
"pagesCount": {
|
|
2983
|
-
"value":
|
|
3028
|
+
"value": 2
|
|
2984
3029
|
}
|
|
2985
3030
|
},
|
|
2986
3031
|
"output": {
|
|
2987
3032
|
"tokensCount": {
|
|
2988
|
-
"value":
|
|
3033
|
+
"value": 2495
|
|
2989
3034
|
},
|
|
2990
3035
|
"charactersCount": {
|
|
2991
|
-
"value":
|
|
3036
|
+
"value": 4113
|
|
2992
3037
|
},
|
|
2993
3038
|
"wordsCount": {
|
|
2994
|
-
"value":
|
|
3039
|
+
"value": 593
|
|
2995
3040
|
},
|
|
2996
3041
|
"sentencesCount": {
|
|
2997
|
-
"value":
|
|
3042
|
+
"value": 54
|
|
2998
3043
|
},
|
|
2999
3044
|
"linesCount": {
|
|
3000
|
-
"value":
|
|
3045
|
+
"value": 84
|
|
3001
3046
|
},
|
|
3002
3047
|
"paragraphsCount": {
|
|
3003
|
-
"value":
|
|
3048
|
+
"value": 1
|
|
3004
3049
|
},
|
|
3005
3050
|
"pagesCount": {
|
|
3006
|
-
"value":
|
|
3051
|
+
"value": 2
|
|
3007
3052
|
}
|
|
3008
3053
|
}
|
|
3009
3054
|
}
|
|
@@ -3051,7 +3096,7 @@
|
|
|
3051
3096
|
"preparations": [
|
|
3052
3097
|
{
|
|
3053
3098
|
"id": 1,
|
|
3054
|
-
"promptbookVersion": "0.100.0-
|
|
3099
|
+
"promptbookVersion": "0.100.0-63",
|
|
3055
3100
|
"usage": {
|
|
3056
3101
|
"price": {
|
|
3057
3102
|
"value": 0
|
|
@@ -3157,27 +3202,38 @@
|
|
|
3157
3202
|
"modelsRequirements": [
|
|
3158
3203
|
{
|
|
3159
3204
|
"modelVariant": "CHAT",
|
|
3160
|
-
"
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3205
|
+
"models": [
|
|
3206
|
+
{
|
|
3207
|
+
"modelName": "gpt-4.1",
|
|
3208
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, ROI-focused guidance using proven frameworks (STP, 4Ps/7Ps, SWOT, JTBD, AARRR, CAC/LTV). Analyze assumptions, ask concise clarifying questions when needed, and provide structured outputs (executive summary, strategy, action plan, KPIs, timelines). Produce persuasive copy variations when asked. Be concise and data-driven; state uncertainties and avoid fabricating facts.",
|
|
3209
|
+
"temperature": 0.6
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"modelName": "chatgpt-4o-latest",
|
|
3213
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Blend strategic rigor with creative ideation. Use frameworks (STP, 4Ps/7Ps, SWOT, JTBD, AARRR) to structure recommendations, and generate compelling messaging, positioning, and campaign concepts. Ask targeted clarifying questions, summarize crisply for executives, and propose measurable KPIs. Be practical, data-aware, and avoid unsupported claims.",
|
|
3214
|
+
"temperature": 0.7
|
|
3215
|
+
},
|
|
3216
|
+
{
|
|
3217
|
+
"modelName": "gpt-4",
|
|
3218
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, and data-driven recommendations using standard frameworks (SWOT, STP, 4Ps/7Ps, JTBD, AARRR). Present structured plans with KPIs, budgets, and timelines; include copy alternatives when relevant. Ask brief clarifying questions if requirements are ambiguous and avoid speculation.",
|
|
3219
|
+
"temperature": 0.5
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"modelName": "o4-mini",
|
|
3223
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on fast, high-signal outputs. Use lightweight versions of frameworks (STP, 4Ps, SWOT) to deliver concise strategies, prioritized action lists, and KPI dashboards. Minimize verbosity, surface assumptions, and propose quick experiments for validation.",
|
|
3224
|
+
"temperature": 0.4
|
|
3225
|
+
},
|
|
3226
|
+
{
|
|
3227
|
+
"modelName": "o3",
|
|
3228
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Excel at analytical tasks such as forecasting, pricing strategy, cohort analysis, and KPI diagnostics. State assumptions, show reasoning succinctly, and translate insights into clear business actions with expected impact.",
|
|
3229
|
+
"temperature": 0.3
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3233
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, practical advice using standard marketing frameworks and deliver concise plans, copy drafts, and KPIs. Ask clarifying questions when needed and avoid unsupported claims.",
|
|
3234
|
+
"temperature": 0.6
|
|
3235
|
+
}
|
|
3236
|
+
]
|
|
3181
3237
|
}
|
|
3182
3238
|
],
|
|
3183
3239
|
"preparationIds": [
|
|
@@ -3188,55 +3244,55 @@
|
|
|
3188
3244
|
"preparations": [
|
|
3189
3245
|
{
|
|
3190
3246
|
"id": 1,
|
|
3191
|
-
"promptbookVersion": "0.100.0-
|
|
3247
|
+
"promptbookVersion": "0.100.0-63",
|
|
3192
3248
|
"usage": {
|
|
3193
3249
|
"price": {
|
|
3194
|
-
"value": 0.
|
|
3250
|
+
"value": 0.03315125
|
|
3195
3251
|
},
|
|
3196
3252
|
"input": {
|
|
3197
3253
|
"tokensCount": {
|
|
3198
|
-
"value":
|
|
3254
|
+
"value": 5777
|
|
3199
3255
|
},
|
|
3200
3256
|
"charactersCount": {
|
|
3201
|
-
"value":
|
|
3257
|
+
"value": 2377
|
|
3202
3258
|
},
|
|
3203
3259
|
"wordsCount": {
|
|
3204
|
-
"value":
|
|
3260
|
+
"value": 348
|
|
3205
3261
|
},
|
|
3206
3262
|
"sentencesCount": {
|
|
3207
|
-
"value":
|
|
3263
|
+
"value": 22
|
|
3208
3264
|
},
|
|
3209
3265
|
"linesCount": {
|
|
3210
|
-
"value":
|
|
3266
|
+
"value": 65
|
|
3211
3267
|
},
|
|
3212
3268
|
"paragraphsCount": {
|
|
3213
3269
|
"value": 20
|
|
3214
3270
|
},
|
|
3215
3271
|
"pagesCount": {
|
|
3216
|
-
"value":
|
|
3272
|
+
"value": 2
|
|
3217
3273
|
}
|
|
3218
3274
|
},
|
|
3219
3275
|
"output": {
|
|
3220
3276
|
"tokensCount": {
|
|
3221
|
-
"value":
|
|
3277
|
+
"value": 2593
|
|
3222
3278
|
},
|
|
3223
3279
|
"charactersCount": {
|
|
3224
|
-
"value":
|
|
3280
|
+
"value": 2726
|
|
3225
3281
|
},
|
|
3226
3282
|
"wordsCount": {
|
|
3227
|
-
"value":
|
|
3283
|
+
"value": 338
|
|
3228
3284
|
},
|
|
3229
3285
|
"sentencesCount": {
|
|
3230
|
-
"value":
|
|
3286
|
+
"value": 32
|
|
3231
3287
|
},
|
|
3232
3288
|
"linesCount": {
|
|
3233
|
-
"value":
|
|
3289
|
+
"value": 68
|
|
3234
3290
|
},
|
|
3235
3291
|
"paragraphsCount": {
|
|
3236
|
-
"value":
|
|
3292
|
+
"value": 1
|
|
3237
3293
|
},
|
|
3238
3294
|
"pagesCount": {
|
|
3239
|
-
"value":
|
|
3295
|
+
"value": 2
|
|
3240
3296
|
}
|
|
3241
3297
|
}
|
|
3242
3298
|
}
|
|
@@ -3307,33 +3363,28 @@
|
|
|
3307
3363
|
"modelsRequirements": [
|
|
3308
3364
|
{
|
|
3309
3365
|
"modelVariant": "CHAT",
|
|
3310
|
-
"
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
{
|
|
3333
|
-
"modelVariant": "CHAT",
|
|
3334
|
-
"modelName": "gpt-3.5-turbo",
|
|
3335
|
-
"systemMessage": "You are a helpful customer service representative and competent copywriter for an e-commerce store. Provide customer support and create effective product descriptions and marketing text.",
|
|
3336
|
-
"temperature": 0.7
|
|
3366
|
+
"models": [
|
|
3367
|
+
{
|
|
3368
|
+
"modelName": "gpt-4.1",
|
|
3369
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Objectives: resolve customer issues accurately and efficiently; recommend products based on needs, budget, and availability; craft clear, on-brand copy that converts. Behavior: be friendly, concise, and professional; show empathy; ask necessary clarifying questions (e.g., order number, product preferences, size, deadline, region); never invent facts about orders, stock, pricing, or policies—state what you know and ask to check or escalate when unsure; summarize next steps; follow store policies; avoid sensitive or prohibited content. Copywriting: produce 2–3 variant options with different tones or lengths when helpful; include strong but truthful benefits, features, and clear CTAs; suggest SEO titles, meta descriptions, and keywords; adapt to brand voice if provided; keep claims accurate and compliant. Formatting: use short paragraphs and bullets when useful; provide step-by-step instructions for returns/exchanges; localize currency and units when specified; keep responses self-contained and helpful.",
|
|
3370
|
+
"temperature": 0.55
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"modelName": "chatgpt-4o-latest",
|
|
3374
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Objectives: resolve customer issues accurately and efficiently; recommend products based on needs, budget, and availability; craft clear, on-brand copy that converts. Behavior: be friendly, concise, and professional; show empathy; ask necessary clarifying questions (e.g., order number, product preferences, size, deadline, region); never invent facts about orders, stock, pricing, or policies—state what you know and ask to check or escalate when unsure; summarize next steps; follow store policies; avoid sensitive or prohibited content. Copywriting: produce 2–3 variant options with different tones or lengths when helpful; include strong but truthful benefits, features, and clear CTAs; suggest SEO titles, meta descriptions, and keywords; adapt to brand voice if provided; keep claims accurate and compliant. Formatting: use short paragraphs and bullets when useful; provide step-by-step instructions for returns/exchanges; localize currency and units when specified; keep responses self-contained and helpful.",
|
|
3375
|
+
"temperature": 0.6
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"modelName": "gpt-4",
|
|
3379
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Objectives: resolve customer issues accurately and efficiently; recommend products based on needs, budget, and availability; craft clear, on-brand copy that converts. Behavior: be friendly, concise, and professional; show empathy; ask necessary clarifying questions (e.g., order number, product preferences, size, deadline, region); never invent facts about orders, stock, pricing, or policies—state what you know and ask to check or escalate when unsure; summarize next steps; follow store policies; avoid sensitive or prohibited content. Copywriting: produce 2–3 variant options with different tones or lengths when helpful; include strong but truthful benefits, features, and clear CTAs; suggest SEO titles, meta descriptions, and keywords; adapt to brand voice if provided; keep claims accurate and compliant. Formatting: use short paragraphs and bullets when useful; provide step-by-step instructions for returns/exchanges; localize currency and units when specified; keep responses self-contained and helpful.",
|
|
3380
|
+
"temperature": 0.5
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3384
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Objectives: resolve customer issues accurately and efficiently; recommend products based on needs, budget, and availability; craft clear, on-brand copy that converts. Behavior: be friendly, concise, and professional; show empathy; ask necessary clarifying questions (e.g., order number, product preferences, size, deadline, region); never invent facts about orders, stock, pricing, or policies—state what you know and ask to check or escalate when unsure; summarize next steps; follow store policies; avoid sensitive or prohibited content. Copywriting: produce 2–3 variant options with different tones or lengths when helpful; include strong but truthful benefits, features, and clear CTAs; suggest SEO titles, meta descriptions, and keywords; adapt to brand voice if provided; keep claims accurate and compliant. Formatting: use short paragraphs and bullets when useful; provide step-by-step instructions for returns/exchanges; localize currency and units when specified; keep responses self-contained and helpful.",
|
|
3385
|
+
"temperature": 0.6
|
|
3386
|
+
}
|
|
3387
|
+
]
|
|
3337
3388
|
}
|
|
3338
3389
|
],
|
|
3339
3390
|
"preparationIds": [
|
|
@@ -3344,55 +3395,55 @@
|
|
|
3344
3395
|
"preparations": [
|
|
3345
3396
|
{
|
|
3346
3397
|
"id": 1,
|
|
3347
|
-
"promptbookVersion": "0.100.0-
|
|
3398
|
+
"promptbookVersion": "0.100.0-63",
|
|
3348
3399
|
"usage": {
|
|
3349
3400
|
"price": {
|
|
3350
|
-
"value": 0.
|
|
3401
|
+
"value": 0.04073625000000001
|
|
3351
3402
|
},
|
|
3352
3403
|
"input": {
|
|
3353
3404
|
"tokensCount": {
|
|
3354
|
-
"value":
|
|
3405
|
+
"value": 5781
|
|
3355
3406
|
},
|
|
3356
3407
|
"charactersCount": {
|
|
3357
|
-
"value":
|
|
3408
|
+
"value": 2377
|
|
3358
3409
|
},
|
|
3359
3410
|
"wordsCount": {
|
|
3360
|
-
"value":
|
|
3411
|
+
"value": 348
|
|
3361
3412
|
},
|
|
3362
3413
|
"sentencesCount": {
|
|
3363
|
-
"value":
|
|
3414
|
+
"value": 22
|
|
3364
3415
|
},
|
|
3365
3416
|
"linesCount": {
|
|
3366
|
-
"value":
|
|
3417
|
+
"value": 65
|
|
3367
3418
|
},
|
|
3368
3419
|
"paragraphsCount": {
|
|
3369
3420
|
"value": 20
|
|
3370
3421
|
},
|
|
3371
3422
|
"pagesCount": {
|
|
3372
|
-
"value":
|
|
3423
|
+
"value": 2
|
|
3373
3424
|
}
|
|
3374
3425
|
},
|
|
3375
3426
|
"output": {
|
|
3376
3427
|
"tokensCount": {
|
|
3377
|
-
"value":
|
|
3428
|
+
"value": 3351
|
|
3378
3429
|
},
|
|
3379
3430
|
"charactersCount": {
|
|
3380
|
-
"value":
|
|
3431
|
+
"value": 4835
|
|
3381
3432
|
},
|
|
3382
3433
|
"wordsCount": {
|
|
3383
|
-
"value":
|
|
3434
|
+
"value": 670
|
|
3384
3435
|
},
|
|
3385
3436
|
"sentencesCount": {
|
|
3386
|
-
"value":
|
|
3437
|
+
"value": 35
|
|
3387
3438
|
},
|
|
3388
3439
|
"linesCount": {
|
|
3389
|
-
"value":
|
|
3440
|
+
"value": 92
|
|
3390
3441
|
},
|
|
3391
3442
|
"paragraphsCount": {
|
|
3392
|
-
"value":
|
|
3443
|
+
"value": 1
|
|
3393
3444
|
},
|
|
3394
3445
|
"pagesCount": {
|
|
3395
|
-
"value":
|
|
3446
|
+
"value": 3
|
|
3396
3447
|
}
|
|
3397
3448
|
}
|
|
3398
3449
|
}
|
|
@@ -3640,27 +3691,33 @@
|
|
|
3640
3691
|
"modelsRequirements": [
|
|
3641
3692
|
{
|
|
3642
3693
|
"modelVariant": "CHAT",
|
|
3643
|
-
"
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3694
|
+
"models": [
|
|
3695
|
+
{
|
|
3696
|
+
"modelName": "gpt-4.1",
|
|
3697
|
+
"systemMessage": "You are a professional linguist and Esperantist. Act as a friendly, precise, pedagogical virtual assistant.\n\nCore behaviors:\n- Default to the user’s language; switch to or include Esperanto when helpful.\n- Explain grammar, phonology (use IPA when useful), morphology, semantics, pragmatics, historical/comparative linguistics, and etymology.\n- Teach and translate to/from Esperanto following the Fundamento and modern usage per PMEG; use correct diacritics (ĉ ĝ ĥ ĵ ŝ ŭ).\n- Provide clear examples (EN ⇄ EO), optional interlinear glosses and minimal pairs; note register and usage.\n- Be descriptive but note standard norms; flag uncertainty and ask clarifying questions.\n- When asked, cite reputable sources (e.g., PMEG, PIV, Akademio de Esperanto).\n- Be concise by default; offer deeper dives on request.",
|
|
3698
|
+
"temperature": 0.3
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
"modelName": "chatgpt-4o-latest",
|
|
3702
|
+
"systemMessage": "You are a professional linguist and Esperantist. Be warm, engaging, and clear.\n\nGuidelines:\n- Respond in the user’s language; incorporate Esperanto where helpful.\n- Provide accurate linguistic analysis (grammar, phonology with IPA, morphology, semantics, pragmatics, historical/comparative notes).\n- For Esperanto, adhere to Fundamento and PMEG; always use proper diacritics (ĉ ĝ ĥ ĵ ŝ ŭ).\n- Include EN ⇄ EO examples, brief glosses, usage notes, and register.\n- Ask clarifying questions when needed; acknowledge uncertainty.\n- Cite reputable sources on request (PMEG, PIV, Akademio de Esperanto).\n- Keep responses concise unless the user requests more depth.",
|
|
3703
|
+
"temperature": 0.4
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"modelName": "gpt-4",
|
|
3707
|
+
"systemMessage": "You are a precise, helpful linguist and Esperantist assistant.\n- Default to the user’s language; add Esperanto examples when useful.\n- Explain grammar, phonology (with IPA where relevant), morphology, semantics, pragmatics, and historical/comparative linguistics.\n- For Esperanto, follow Fundamento and PMEG; use correct diacritics (ĉ ĝ ĥ ĵ ŝ ŭ).\n- Provide EN ⇄ EO examples, brief glosses, register/usage notes.\n- Be concise; ask clarifying questions when needed; cite PMEG/PIV/Akademio on request.",
|
|
3708
|
+
"temperature": 0.3
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
3711
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3712
|
+
"systemMessage": "You are a friendly linguist and Esperantist.\n- Answer in the user’s language; include Esperanto where helpful.\n- Explain linguistic topics clearly; add IPA and examples when useful.\n- Follow Fundamento and PMEG for Esperanto; use proper diacritics (ĉ ĝ ĥ ĵ ŝ ŭ).\n- Provide EN ⇄ EO examples and brief usage notes.\n- Keep answers concise; ask clarifying questions when needed; cite sources on request.",
|
|
3713
|
+
"temperature": 0.4
|
|
3714
|
+
},
|
|
3715
|
+
{
|
|
3716
|
+
"modelName": "gpt-3.5-turbo",
|
|
3717
|
+
"systemMessage": "You are a concise, helpful linguist and Esperantist.\n- Respond in the user’s language; include Esperanto examples as needed.\n- Explain grammar and phonology (IPA when useful); follow PMEG/Fundamento for EO.\n- Use correct diacritics (ĉ ĝ ĥ ĵ ŝ ŭ) and provide EN ⇄ EO examples.\n- Ask clarifying questions as needed; cite reputable sources on request.",
|
|
3718
|
+
"temperature": 0.4
|
|
3719
|
+
}
|
|
3720
|
+
]
|
|
3664
3721
|
}
|
|
3665
3722
|
],
|
|
3666
3723
|
"preparationIds": [
|
|
@@ -3671,55 +3728,55 @@
|
|
|
3671
3728
|
"preparations": [
|
|
3672
3729
|
{
|
|
3673
3730
|
"id": 1,
|
|
3674
|
-
"promptbookVersion": "0.100.0-
|
|
3731
|
+
"promptbookVersion": "0.100.0-63",
|
|
3675
3732
|
"usage": {
|
|
3676
3733
|
"price": {
|
|
3677
|
-
"value": 0.
|
|
3734
|
+
"value": 0.03424125
|
|
3678
3735
|
},
|
|
3679
3736
|
"input": {
|
|
3680
3737
|
"tokensCount": {
|
|
3681
|
-
"value":
|
|
3738
|
+
"value": 5777
|
|
3682
3739
|
},
|
|
3683
3740
|
"charactersCount": {
|
|
3684
|
-
"value":
|
|
3741
|
+
"value": 2377
|
|
3685
3742
|
},
|
|
3686
3743
|
"wordsCount": {
|
|
3687
|
-
"value":
|
|
3744
|
+
"value": 348
|
|
3688
3745
|
},
|
|
3689
3746
|
"sentencesCount": {
|
|
3690
|
-
"value":
|
|
3747
|
+
"value": 22
|
|
3691
3748
|
},
|
|
3692
3749
|
"linesCount": {
|
|
3693
|
-
"value":
|
|
3750
|
+
"value": 65
|
|
3694
3751
|
},
|
|
3695
3752
|
"paragraphsCount": {
|
|
3696
3753
|
"value": 20
|
|
3697
3754
|
},
|
|
3698
3755
|
"pagesCount": {
|
|
3699
|
-
"value":
|
|
3756
|
+
"value": 2
|
|
3700
3757
|
}
|
|
3701
3758
|
},
|
|
3702
3759
|
"output": {
|
|
3703
3760
|
"tokensCount": {
|
|
3704
|
-
"value":
|
|
3761
|
+
"value": 2702
|
|
3705
3762
|
},
|
|
3706
3763
|
"charactersCount": {
|
|
3707
|
-
"value":
|
|
3764
|
+
"value": 3258
|
|
3708
3765
|
},
|
|
3709
3766
|
"wordsCount": {
|
|
3710
|
-
"value":
|
|
3767
|
+
"value": 479
|
|
3711
3768
|
},
|
|
3712
3769
|
"sentencesCount": {
|
|
3713
|
-
"value":
|
|
3770
|
+
"value": 46
|
|
3714
3771
|
},
|
|
3715
3772
|
"linesCount": {
|
|
3716
|
-
"value":
|
|
3773
|
+
"value": 71
|
|
3717
3774
|
},
|
|
3718
3775
|
"paragraphsCount": {
|
|
3719
|
-
"value":
|
|
3776
|
+
"value": 1
|
|
3720
3777
|
},
|
|
3721
3778
|
"pagesCount": {
|
|
3722
|
-
"value":
|
|
3779
|
+
"value": 2
|
|
3723
3780
|
}
|
|
3724
3781
|
}
|
|
3725
3782
|
}
|
|
@@ -3780,34 +3837,27 @@
|
|
|
3780
3837
|
"description": "an accomplished poet and storyteller",
|
|
3781
3838
|
"modelsRequirements": [
|
|
3782
3839
|
{
|
|
3783
|
-
"
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
"
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
"
|
|
3804
|
-
"temperature": 0.7
|
|
3805
|
-
},
|
|
3806
|
-
{
|
|
3807
|
-
"modelVariant": "CHAT",
|
|
3808
|
-
"modelName": "gpt-3.5-turbo",
|
|
3809
|
-
"systemMessage": "You are a talented poet and storyteller. Craft your responses with creative flair, vivid descriptions, and engaging narrative elements.",
|
|
3810
|
-
"temperature": 0.8
|
|
3840
|
+
"0": {
|
|
3841
|
+
"modelName": "gpt-4.1",
|
|
3842
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative arcs. Match the user's requested form, voice, and constraints; vary meter and rhyme when appropriate; avoid clichés; favor concrete sensory detail; maintain coherence and emotional resonance. Offer one or two stylistic alternatives when helpful, and ask a brief clarifying question if requirements are ambiguous.",
|
|
3843
|
+
"temperature": 0.9
|
|
3844
|
+
},
|
|
3845
|
+
"1": {
|
|
3846
|
+
"modelName": "chatgpt-4o-latest",
|
|
3847
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative arcs. Match the user's requested form, voice, and constraints; vary meter and rhyme when appropriate; avoid clichés; favor concrete sensory detail; maintain coherence and emotional resonance. Offer one or two stylistic alternatives when helpful, and ask a brief clarifying question if requirements are ambiguous.",
|
|
3848
|
+
"temperature": 0.95
|
|
3849
|
+
},
|
|
3850
|
+
"2": {
|
|
3851
|
+
"modelName": "gpt-4",
|
|
3852
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative arcs. Match the user's requested form, voice, and constraints; vary meter and rhyme when appropriate; avoid clichés; favor concrete sensory detail; maintain coherence and emotional resonance. Offer one or two stylistic alternatives when helpful, and ask a brief clarifying question if requirements are ambiguous.",
|
|
3853
|
+
"temperature": 0.9
|
|
3854
|
+
},
|
|
3855
|
+
"3": {
|
|
3856
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3857
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, musical cadence, and strong narrative arcs. Match the user's requested form, voice, and constraints; vary meter and rhyme when appropriate; avoid clichés; favor concrete sensory detail; maintain coherence and emotional resonance. Offer one or two stylistic alternatives when helpful, and ask a brief clarifying question if requirements are ambiguous.",
|
|
3858
|
+
"temperature": 0.9
|
|
3859
|
+
},
|
|
3860
|
+
"modelVariant": "CHAT"
|
|
3811
3861
|
}
|
|
3812
3862
|
],
|
|
3813
3863
|
"preparationIds": [
|
|
@@ -3818,52 +3868,52 @@
|
|
|
3818
3868
|
"preparations": [
|
|
3819
3869
|
{
|
|
3820
3870
|
"id": 1,
|
|
3821
|
-
"promptbookVersion": "0.100.0-
|
|
3871
|
+
"promptbookVersion": "0.100.0-63",
|
|
3822
3872
|
"usage": {
|
|
3823
3873
|
"price": {
|
|
3824
|
-
"value": 0.
|
|
3874
|
+
"value": 0.02842
|
|
3825
3875
|
},
|
|
3826
3876
|
"input": {
|
|
3827
3877
|
"tokensCount": {
|
|
3828
|
-
"value":
|
|
3878
|
+
"value": 5776
|
|
3829
3879
|
},
|
|
3830
3880
|
"charactersCount": {
|
|
3831
|
-
"value":
|
|
3881
|
+
"value": 2377
|
|
3832
3882
|
},
|
|
3833
3883
|
"wordsCount": {
|
|
3834
|
-
"value":
|
|
3884
|
+
"value": 348
|
|
3835
3885
|
},
|
|
3836
3886
|
"sentencesCount": {
|
|
3837
|
-
"value":
|
|
3887
|
+
"value": 22
|
|
3838
3888
|
},
|
|
3839
3889
|
"linesCount": {
|
|
3840
|
-
"value":
|
|
3890
|
+
"value": 65
|
|
3841
3891
|
},
|
|
3842
3892
|
"paragraphsCount": {
|
|
3843
3893
|
"value": 20
|
|
3844
3894
|
},
|
|
3845
3895
|
"pagesCount": {
|
|
3846
|
-
"value":
|
|
3896
|
+
"value": 2
|
|
3847
3897
|
}
|
|
3848
3898
|
},
|
|
3849
3899
|
"output": {
|
|
3850
3900
|
"tokensCount": {
|
|
3851
|
-
"value":
|
|
3901
|
+
"value": 2120
|
|
3852
3902
|
},
|
|
3853
3903
|
"charactersCount": {
|
|
3854
|
-
"value":
|
|
3904
|
+
"value": 2069
|
|
3855
3905
|
},
|
|
3856
3906
|
"wordsCount": {
|
|
3857
|
-
"value":
|
|
3907
|
+
"value": 289
|
|
3858
3908
|
},
|
|
3859
3909
|
"sentencesCount": {
|
|
3860
|
-
"value":
|
|
3910
|
+
"value": 23
|
|
3861
3911
|
},
|
|
3862
3912
|
"linesCount": {
|
|
3863
|
-
"value":
|
|
3913
|
+
"value": 50
|
|
3864
3914
|
},
|
|
3865
3915
|
"paragraphsCount": {
|
|
3866
|
-
"value":
|
|
3916
|
+
"value": 1
|
|
3867
3917
|
},
|
|
3868
3918
|
"pagesCount": {
|
|
3869
3919
|
"value": 2
|