@promptbook/templates 0.102.0-7 → 0.102.0-9
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 +147 -186
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatMessageItem.d.ts +5 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +5 -0
- package/esm/typings/src/utils/markdown/prettifyMarkdown.d.ts +2 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +147 -186
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/utils/markdown/prettifyMarkdown.test.d.ts +0 -1
package/esm/index.es.js
CHANGED
|
@@ -14,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
14
14
|
* @generated
|
|
15
15
|
* @see https://github.com/webgptorg/promptbook
|
|
16
16
|
*/
|
|
17
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-9';
|
|
18
18
|
/**
|
|
19
19
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
20
20
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -390,42 +390,10 @@ function validatePipelineString(pipelineString) {
|
|
|
390
390
|
* @param content raw html code
|
|
391
391
|
* @returns formatted html code
|
|
392
392
|
* @private withing the package because of HUGE size of prettier dependency
|
|
393
|
+
* @deprecated Prettier removed from Promptbook due to package size
|
|
393
394
|
*/
|
|
394
395
|
function prettifyMarkdown(content) {
|
|
395
|
-
|
|
396
|
-
// since prettier parsers are not available and would cause bundling issues
|
|
397
|
-
if (typeof window !== 'undefined') {
|
|
398
|
-
return content;
|
|
399
|
-
}
|
|
400
|
-
try {
|
|
401
|
-
// Use dynamic require to avoid static imports that cause bundling issues
|
|
402
|
-
// This will only work in Node.js environments
|
|
403
|
-
const prettierStandalone = eval('require')('prettier/standalone');
|
|
404
|
-
const parserMarkdown = eval('require')('prettier/parser-markdown');
|
|
405
|
-
const parserHtml = eval('require')('prettier/parser-html');
|
|
406
|
-
return prettierStandalone.format(content, {
|
|
407
|
-
parser: 'markdown',
|
|
408
|
-
plugins: [parserMarkdown, parserHtml],
|
|
409
|
-
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
410
|
-
endOfLine: 'lf',
|
|
411
|
-
tabWidth: 4,
|
|
412
|
-
singleQuote: true,
|
|
413
|
-
trailingComma: 'all',
|
|
414
|
-
arrowParens: 'always',
|
|
415
|
-
printWidth: 120,
|
|
416
|
-
htmlWhitespaceSensitivity: 'ignore',
|
|
417
|
-
jsxBracketSameLine: false,
|
|
418
|
-
bracketSpacing: true,
|
|
419
|
-
});
|
|
420
|
-
}
|
|
421
|
-
catch (error) {
|
|
422
|
-
// TODO: [🟥] Detect browser / node and make it colorful
|
|
423
|
-
console.error('There was an error with prettifying the markdown, using the original as the fallback', {
|
|
424
|
-
error,
|
|
425
|
-
html: content,
|
|
426
|
-
});
|
|
427
|
-
return content;
|
|
428
|
-
}
|
|
396
|
+
return (content + `\n\n<!-- Note: Prettier removed from Promptbook -->`);
|
|
429
397
|
}
|
|
430
398
|
|
|
431
399
|
/**
|
|
@@ -1561,35 +1529,30 @@ function getTemplatesPipelineCollection() {
|
|
|
1561
1529
|
{
|
|
1562
1530
|
"modelVariant": "CHAT",
|
|
1563
1531
|
"models": [
|
|
1564
|
-
{
|
|
1565
|
-
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Provide precise, implementation-ready help: prompt design, tool/function-calling schemas, and clean code (TypeScript/Python). Prefer deterministic, testable outputs and strictly valid JSON/YAML when requested. Be concise, cite assumptions, and ask clarifying questions if specs are ambiguous.",
|
|
1567
|
-
"temperature": 0.25
|
|
1568
|
-
},
|
|
1569
1532
|
{
|
|
1570
1533
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a
|
|
1572
|
-
"temperature": 0.
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
"modelName": "o4-mini",
|
|
1576
|
-
"systemMessage": "You are a reasoning-focused copilot for a Promptbook Project developer. Tackle planning, refactors, schema design, and debugging with stepwise, verifiable conclusions. Keep explanations brief and provide final, actionable outputs (code, prompts, or JSON).",
|
|
1577
|
-
"temperature": 0.2
|
|
1534
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1535
|
+
"temperature": 0.3
|
|
1578
1536
|
},
|
|
1579
1537
|
{
|
|
1580
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are
|
|
1582
|
-
"temperature": 0.
|
|
1538
|
+
"modelName": "gpt-4.1",
|
|
1539
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1540
|
+
"temperature": 0.25
|
|
1583
1541
|
},
|
|
1584
1542
|
{
|
|
1585
1543
|
"modelName": "gpt-4",
|
|
1586
|
-
"systemMessage": "You are a
|
|
1544
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1587
1545
|
"temperature": 0.3
|
|
1588
1546
|
},
|
|
1589
1547
|
{
|
|
1590
1548
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1591
|
-
"systemMessage": "You are a
|
|
1592
|
-
"temperature": 0.
|
|
1549
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1550
|
+
"temperature": 0.4
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"modelName": "o4-mini",
|
|
1554
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
1555
|
+
"temperature": 0.2
|
|
1593
1556
|
}
|
|
1594
1557
|
]
|
|
1595
1558
|
}
|
|
@@ -1602,10 +1565,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1602
1565
|
"preparations": [
|
|
1603
1566
|
{
|
|
1604
1567
|
"id": 1,
|
|
1605
|
-
"promptbookVersion": "0.102.0-
|
|
1568
|
+
"promptbookVersion": "0.102.0-8",
|
|
1606
1569
|
"usage": {
|
|
1607
1570
|
"price": {
|
|
1608
|
-
"value": 0.
|
|
1571
|
+
"value": 0.0355725
|
|
1609
1572
|
},
|
|
1610
1573
|
"input": {
|
|
1611
1574
|
"tokensCount": {
|
|
@@ -1632,19 +1595,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1632
1595
|
},
|
|
1633
1596
|
"output": {
|
|
1634
1597
|
"tokensCount": {
|
|
1635
|
-
"value":
|
|
1598
|
+
"value": 2788
|
|
1636
1599
|
},
|
|
1637
1600
|
"charactersCount": {
|
|
1638
|
-
"value":
|
|
1601
|
+
"value": 3604
|
|
1639
1602
|
},
|
|
1640
1603
|
"wordsCount": {
|
|
1641
|
-
"value":
|
|
1604
|
+
"value": 466
|
|
1642
1605
|
},
|
|
1643
1606
|
"sentencesCount": {
|
|
1644
|
-
"value":
|
|
1607
|
+
"value": 48
|
|
1645
1608
|
},
|
|
1646
1609
|
"linesCount": {
|
|
1647
|
-
"value":
|
|
1610
|
+
"value": 79
|
|
1648
1611
|
},
|
|
1649
1612
|
"paragraphsCount": {
|
|
1650
1613
|
"value": 1
|
|
@@ -2131,35 +2094,30 @@ function getTemplatesPipelineCollection() {
|
|
|
2131
2094
|
{
|
|
2132
2095
|
"modelVariant": "CHAT",
|
|
2133
2096
|
"models": [
|
|
2134
|
-
{
|
|
2135
|
-
"modelName": "gpt-4.1",
|
|
2136
|
-
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Provide precise, implementation-ready help: prompt design, tool/function-calling schemas, and clean code (TypeScript/Python). Prefer deterministic, testable outputs and strictly valid JSON/YAML when requested. Be concise, cite assumptions, and ask clarifying questions if specs are ambiguous.",
|
|
2137
|
-
"temperature": 0.25
|
|
2138
|
-
},
|
|
2139
2097
|
{
|
|
2140
2098
|
"modelName": "chatgpt-4o-latest",
|
|
2141
|
-
"systemMessage": "You are a
|
|
2142
|
-
"temperature": 0.
|
|
2143
|
-
},
|
|
2144
|
-
{
|
|
2145
|
-
"modelName": "o4-mini",
|
|
2146
|
-
"systemMessage": "You are a reasoning-focused copilot for a Promptbook Project developer. Tackle planning, refactors, schema design, and debugging with stepwise, verifiable conclusions. Keep explanations brief and provide final, actionable outputs (code, prompts, or JSON).",
|
|
2147
|
-
"temperature": 0.2
|
|
2099
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2100
|
+
"temperature": 0.3
|
|
2148
2101
|
},
|
|
2149
2102
|
{
|
|
2150
|
-
"modelName": "
|
|
2151
|
-
"systemMessage": "You are
|
|
2152
|
-
"temperature": 0.
|
|
2103
|
+
"modelName": "gpt-4.1",
|
|
2104
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2105
|
+
"temperature": 0.25
|
|
2153
2106
|
},
|
|
2154
2107
|
{
|
|
2155
2108
|
"modelName": "gpt-4",
|
|
2156
|
-
"systemMessage": "You are a
|
|
2109
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2157
2110
|
"temperature": 0.3
|
|
2158
2111
|
},
|
|
2159
2112
|
{
|
|
2160
2113
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2161
|
-
"systemMessage": "You are a
|
|
2162
|
-
"temperature": 0.
|
|
2114
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2115
|
+
"temperature": 0.4
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"modelName": "o4-mini",
|
|
2119
|
+
"systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
|
|
2120
|
+
"temperature": 0.2
|
|
2163
2121
|
}
|
|
2164
2122
|
]
|
|
2165
2123
|
}
|
|
@@ -2172,10 +2130,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2172
2130
|
"preparations": [
|
|
2173
2131
|
{
|
|
2174
2132
|
"id": 1,
|
|
2175
|
-
"promptbookVersion": "0.102.0-
|
|
2133
|
+
"promptbookVersion": "0.102.0-8",
|
|
2176
2134
|
"usage": {
|
|
2177
2135
|
"price": {
|
|
2178
|
-
"value": 0.
|
|
2136
|
+
"value": 0.0355725
|
|
2179
2137
|
},
|
|
2180
2138
|
"input": {
|
|
2181
2139
|
"tokensCount": {
|
|
@@ -2202,19 +2160,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2202
2160
|
},
|
|
2203
2161
|
"output": {
|
|
2204
2162
|
"tokensCount": {
|
|
2205
|
-
"value":
|
|
2163
|
+
"value": 2788
|
|
2206
2164
|
},
|
|
2207
2165
|
"charactersCount": {
|
|
2208
|
-
"value":
|
|
2166
|
+
"value": 3604
|
|
2209
2167
|
},
|
|
2210
2168
|
"wordsCount": {
|
|
2211
|
-
"value":
|
|
2169
|
+
"value": 466
|
|
2212
2170
|
},
|
|
2213
2171
|
"sentencesCount": {
|
|
2214
|
-
"value":
|
|
2172
|
+
"value": 48
|
|
2215
2173
|
},
|
|
2216
2174
|
"linesCount": {
|
|
2217
|
-
"value":
|
|
2175
|
+
"value": 79
|
|
2218
2176
|
},
|
|
2219
2177
|
"paragraphsCount": {
|
|
2220
2178
|
"value": 1
|
|
@@ -2844,22 +2802,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2844
2802
|
"models": [
|
|
2845
2803
|
{
|
|
2846
2804
|
"modelName": "gpt-4.1",
|
|
2847
|
-
"systemMessage": "You are an expert linguist and
|
|
2848
|
-
"temperature": 0.
|
|
2805
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2806
|
+
"temperature": 0.15
|
|
2849
2807
|
},
|
|
2850
2808
|
{
|
|
2851
|
-
"modelName": "
|
|
2852
|
-
"systemMessage": "You are an expert linguist and
|
|
2853
|
-
"temperature": 0.
|
|
2809
|
+
"modelName": "gpt-4",
|
|
2810
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2811
|
+
"temperature": 0.2
|
|
2854
2812
|
},
|
|
2855
2813
|
{
|
|
2856
|
-
"modelName": "
|
|
2857
|
-
"systemMessage": "You are an expert linguist and
|
|
2814
|
+
"modelName": "chatgpt-4o-latest",
|
|
2815
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2858
2816
|
"temperature": 0.2
|
|
2859
2817
|
},
|
|
2860
2818
|
{
|
|
2861
2819
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2862
|
-
"systemMessage": "You are an expert linguist and
|
|
2820
|
+
"systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
|
|
2863
2821
|
"temperature": 0.2
|
|
2864
2822
|
}
|
|
2865
2823
|
]
|
|
@@ -2873,10 +2831,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2873
2831
|
"preparations": [
|
|
2874
2832
|
{
|
|
2875
2833
|
"id": 1,
|
|
2876
|
-
"promptbookVersion": "0.102.0-
|
|
2834
|
+
"promptbookVersion": "0.102.0-8",
|
|
2877
2835
|
"usage": {
|
|
2878
2836
|
"price": {
|
|
2879
|
-
"value": 0.
|
|
2837
|
+
"value": 0.039041250000000007
|
|
2880
2838
|
},
|
|
2881
2839
|
"input": {
|
|
2882
2840
|
"tokensCount": {
|
|
@@ -2903,19 +2861,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2903
2861
|
},
|
|
2904
2862
|
"output": {
|
|
2905
2863
|
"tokensCount": {
|
|
2906
|
-
"value":
|
|
2864
|
+
"value": 3135
|
|
2907
2865
|
},
|
|
2908
2866
|
"charactersCount": {
|
|
2909
|
-
"value":
|
|
2867
|
+
"value": 2871
|
|
2910
2868
|
},
|
|
2911
2869
|
"wordsCount": {
|
|
2912
|
-
"value":
|
|
2870
|
+
"value": 410
|
|
2913
2871
|
},
|
|
2914
2872
|
"sentencesCount": {
|
|
2915
|
-
"value":
|
|
2873
|
+
"value": 39
|
|
2916
2874
|
},
|
|
2917
2875
|
"linesCount": {
|
|
2918
|
-
"value":
|
|
2876
|
+
"value": 64
|
|
2919
2877
|
},
|
|
2920
2878
|
"paragraphsCount": {
|
|
2921
2879
|
"value": 1
|
|
@@ -2987,22 +2945,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2987
2945
|
"models": [
|
|
2988
2946
|
{
|
|
2989
2947
|
"modelName": "gpt-4.1",
|
|
2990
|
-
"systemMessage": "You are a skilled e
|
|
2948
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
2991
2949
|
"temperature": 0.7
|
|
2992
2950
|
},
|
|
2993
2951
|
{
|
|
2994
2952
|
"modelName": "chatgpt-4o-latest",
|
|
2995
|
-
"systemMessage": "You are a skilled e
|
|
2953
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
2996
2954
|
"temperature": 0.7
|
|
2997
2955
|
},
|
|
2998
2956
|
{
|
|
2999
2957
|
"modelName": "gpt-4",
|
|
3000
|
-
"systemMessage": "You are a skilled e
|
|
2958
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
3001
2959
|
"temperature": 0.65
|
|
3002
2960
|
},
|
|
3003
2961
|
{
|
|
3004
|
-
"modelName": "gpt-3.5-turbo-
|
|
3005
|
-
"systemMessage": "You are a skilled e
|
|
2962
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2963
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
|
|
3006
2964
|
"temperature": 0.6
|
|
3007
2965
|
}
|
|
3008
2966
|
]
|
|
@@ -3016,10 +2974,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3016
2974
|
"preparations": [
|
|
3017
2975
|
{
|
|
3018
2976
|
"id": 1,
|
|
3019
|
-
"promptbookVersion": "0.102.0-
|
|
2977
|
+
"promptbookVersion": "0.102.0-8",
|
|
3020
2978
|
"usage": {
|
|
3021
2979
|
"price": {
|
|
3022
|
-
"value": 0.
|
|
2980
|
+
"value": 0.032961250000000004
|
|
3023
2981
|
},
|
|
3024
2982
|
"input": {
|
|
3025
2983
|
"tokensCount": {
|
|
@@ -3046,19 +3004,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3046
3004
|
},
|
|
3047
3005
|
"output": {
|
|
3048
3006
|
"tokensCount": {
|
|
3049
|
-
"value":
|
|
3007
|
+
"value": 2527
|
|
3050
3008
|
},
|
|
3051
3009
|
"charactersCount": {
|
|
3052
|
-
"value":
|
|
3010
|
+
"value": 2759
|
|
3053
3011
|
},
|
|
3054
3012
|
"wordsCount": {
|
|
3055
|
-
"value":
|
|
3013
|
+
"value": 378
|
|
3056
3014
|
},
|
|
3057
3015
|
"sentencesCount": {
|
|
3058
|
-
"value":
|
|
3016
|
+
"value": 35
|
|
3059
3017
|
},
|
|
3060
3018
|
"linesCount": {
|
|
3061
|
-
"value":
|
|
3019
|
+
"value": 60
|
|
3062
3020
|
},
|
|
3063
3021
|
"paragraphsCount": {
|
|
3064
3022
|
"value": 1
|
|
@@ -3112,7 +3070,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3112
3070
|
"preparations": [
|
|
3113
3071
|
{
|
|
3114
3072
|
"id": 1,
|
|
3115
|
-
"promptbookVersion": "0.102.0-
|
|
3073
|
+
"promptbookVersion": "0.102.0-8",
|
|
3116
3074
|
"usage": {
|
|
3117
3075
|
"price": {
|
|
3118
3076
|
"value": 0
|
|
@@ -3217,34 +3175,32 @@ function getTemplatesPipelineCollection() {
|
|
|
3217
3175
|
"description": "experienced marketing specialist and business consultant",
|
|
3218
3176
|
"modelsRequirements": [
|
|
3219
3177
|
{
|
|
3220
|
-
"
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
}
|
|
3247
|
-
]
|
|
3178
|
+
"0": {
|
|
3179
|
+
"modelName": "gpt-4.1",
|
|
3180
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, actionable, data-driven guidance. Use structured frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT), quantify assumptions, KPIs, and expected ROI, and outline step-by-step plans with timelines. Ask concise clarifying questions when context is missing. Keep tone professional, concise, and executive-ready.",
|
|
3181
|
+
"temperature": 0.4
|
|
3182
|
+
},
|
|
3183
|
+
"1": {
|
|
3184
|
+
"modelName": "chatgpt-4o-latest",
|
|
3185
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide pragmatic, audience-tailored advice with a friendly, engaging tone. Use recognizable frameworks, examples, and checklists. Suggest KPIs, experiments, and iterations, and offer persuasive copy when helpful. Ask brief clarifying questions if needed.",
|
|
3186
|
+
"temperature": 0.6
|
|
3187
|
+
},
|
|
3188
|
+
"2": {
|
|
3189
|
+
"modelName": "gpt-4",
|
|
3190
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, evidence-based recommendations, prioritize clarity, and include implementation steps, risks, and mitigation. Use business frameworks and quantify impact where possible.",
|
|
3191
|
+
"temperature": 0.4
|
|
3192
|
+
},
|
|
3193
|
+
"3": {
|
|
3194
|
+
"modelName": "o4-mini",
|
|
3195
|
+
"systemMessage": "You are a marketing analytics strategist and business consultant. Perform rigorous reasoning and calculations (e.g., CAC, LTV, payback, cohort/funnel analysis, scenario forecasts). State assumptions, show formulas briefly, and summarize executive takeaways with recommended actions.",
|
|
3196
|
+
"temperature": 0.2
|
|
3197
|
+
},
|
|
3198
|
+
"4": {
|
|
3199
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3200
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, concise guidance with clear steps, examples, and KPIs. Keep jargon minimal and focus on actionable outcomes.",
|
|
3201
|
+
"temperature": 0.5
|
|
3202
|
+
},
|
|
3203
|
+
"modelVariant": "CHAT"
|
|
3248
3204
|
}
|
|
3249
3205
|
],
|
|
3250
3206
|
"preparationIds": [
|
|
@@ -3255,10 +3211,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3255
3211
|
"preparations": [
|
|
3256
3212
|
{
|
|
3257
3213
|
"id": 1,
|
|
3258
|
-
"promptbookVersion": "0.102.0-
|
|
3214
|
+
"promptbookVersion": "0.102.0-8",
|
|
3259
3215
|
"usage": {
|
|
3260
3216
|
"price": {
|
|
3261
|
-
"value": 0.
|
|
3217
|
+
"value": 0.02887125
|
|
3262
3218
|
},
|
|
3263
3219
|
"input": {
|
|
3264
3220
|
"tokensCount": {
|
|
@@ -3285,19 +3241,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3285
3241
|
},
|
|
3286
3242
|
"output": {
|
|
3287
3243
|
"tokensCount": {
|
|
3288
|
-
"value":
|
|
3244
|
+
"value": 2118
|
|
3289
3245
|
},
|
|
3290
3246
|
"charactersCount": {
|
|
3291
|
-
"value":
|
|
3247
|
+
"value": 1918
|
|
3292
3248
|
},
|
|
3293
3249
|
"wordsCount": {
|
|
3294
|
-
"value":
|
|
3250
|
+
"value": 246
|
|
3295
3251
|
},
|
|
3296
3252
|
"sentencesCount": {
|
|
3297
|
-
"value":
|
|
3253
|
+
"value": 31
|
|
3298
3254
|
},
|
|
3299
3255
|
"linesCount": {
|
|
3300
|
-
"value":
|
|
3256
|
+
"value": 49
|
|
3301
3257
|
},
|
|
3302
3258
|
"paragraphsCount": {
|
|
3303
3259
|
"value": 1
|
|
@@ -3377,22 +3333,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3377
3333
|
"models": [
|
|
3378
3334
|
{
|
|
3379
3335
|
"modelName": "gpt-4.1",
|
|
3380
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3336
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be friendly, concise, and solution‑oriented. Tasks: 1) Resolve customer issues about orders, shipping, returns, sizing, billing, and product details. 2) Write persuasive, brand‑aligned, SEO‑friendly copy (product pages, emails, social posts, FAQs). Guidelines: ask for missing details (order ID, email, SKU) before proceeding; follow store policies and do not invent facts; summarize next steps clearly; use the customer’s locale, currency, and units when known; avoid requesting sensitive data (never ask for full card numbers); keep responses accurate and empathetic. For copywriting, focus on benefits, clarity, and skimmability; provide optional alternatives or variants when helpful; use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
|
|
3381
3337
|
"temperature": 0.4
|
|
3382
3338
|
},
|
|
3383
3339
|
{
|
|
3384
3340
|
"modelName": "chatgpt-4o-latest",
|
|
3385
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3341
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Provide warm, efficient support for orders, shipping, returns, sizing, and product info. Write concise, persuasive, brand‑aligned, SEO‑friendly copy when asked. Ask clarifying questions if details are missing; follow store policies; do not guess. Offer clear options and next steps; use the customer’s locale, currency, and units when known; protect sensitive data. For copy, emphasize benefits and clarity, and include 2–3 concise variants if useful. Use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
|
|
3386
3342
|
"temperature": 0.5
|
|
3387
3343
|
},
|
|
3388
3344
|
{
|
|
3389
3345
|
"modelName": "gpt-4",
|
|
3390
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3346
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be empathetic, accurate, and concise. Handle customer inquiries about orders, returns, shipping, sizing, and product details. Ask for required info (order ID, email, SKU) before acting; follow policies; avoid speculation; summarize next steps. For copywriting, create persuasive, brand‑consistent, SEO‑friendly text with clear benefits and calls‑to‑action; provide alternate variants on request. Use short paragraphs and light bullet lists; avoid heavy formatting unless requested; respect locale, currency, and units.",
|
|
3391
3347
|
"temperature": 0.5
|
|
3392
3348
|
},
|
|
3393
3349
|
{
|
|
3394
3350
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3395
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3351
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Provide friendly, accurate support on orders, shipping, returns, sizing, and product questions. Ask for missing details (order ID, email, SKU) and follow store policies; don’t invent information. Summarize actions and next steps clearly, using the customer’s locale and currency when known. For copywriting, produce persuasive, brand‑aligned, SEO‑friendly copy with clear benefits and optional variants. Keep messages concise; use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
|
|
3396
3352
|
"temperature": 0.6
|
|
3397
3353
|
}
|
|
3398
3354
|
]
|
|
@@ -3406,10 +3362,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3406
3362
|
"preparations": [
|
|
3407
3363
|
{
|
|
3408
3364
|
"id": 1,
|
|
3409
|
-
"promptbookVersion": "0.102.0-
|
|
3365
|
+
"promptbookVersion": "0.102.0-8",
|
|
3410
3366
|
"usage": {
|
|
3411
3367
|
"price": {
|
|
3412
|
-
"value": 0.
|
|
3368
|
+
"value": 0.03241625
|
|
3413
3369
|
},
|
|
3414
3370
|
"input": {
|
|
3415
3371
|
"tokensCount": {
|
|
@@ -3436,19 +3392,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3436
3392
|
},
|
|
3437
3393
|
"output": {
|
|
3438
3394
|
"tokensCount": {
|
|
3439
|
-
"value":
|
|
3395
|
+
"value": 2472
|
|
3440
3396
|
},
|
|
3441
3397
|
"charactersCount": {
|
|
3442
|
-
"value":
|
|
3398
|
+
"value": 3099
|
|
3443
3399
|
},
|
|
3444
3400
|
"wordsCount": {
|
|
3445
|
-
"value":
|
|
3401
|
+
"value": 427
|
|
3446
3402
|
},
|
|
3447
3403
|
"sentencesCount": {
|
|
3448
|
-
"value":
|
|
3404
|
+
"value": 32
|
|
3449
3405
|
},
|
|
3450
3406
|
"linesCount": {
|
|
3451
|
-
"value":
|
|
3407
|
+
"value": 66
|
|
3452
3408
|
},
|
|
3453
3409
|
"paragraphsCount": {
|
|
3454
3410
|
"value": 1
|
|
@@ -3705,23 +3661,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3705
3661
|
"models": [
|
|
3706
3662
|
{
|
|
3707
3663
|
"modelName": "gpt-4.1",
|
|
3708
|
-
"systemMessage": "You are a
|
|
3709
|
-
"temperature": 0.
|
|
3664
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3665
|
+
"temperature": 0.3
|
|
3710
3666
|
},
|
|
3711
3667
|
{
|
|
3712
3668
|
"modelName": "chatgpt-4o-latest",
|
|
3713
|
-
"systemMessage": "You are a
|
|
3714
|
-
"temperature": 0.
|
|
3669
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3670
|
+
"temperature": 0.4
|
|
3715
3671
|
},
|
|
3716
3672
|
{
|
|
3717
3673
|
"modelName": "gpt-4",
|
|
3718
|
-
"systemMessage": "You are a
|
|
3719
|
-
"temperature": 0.
|
|
3674
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3675
|
+
"temperature": 0.3
|
|
3720
3676
|
},
|
|
3721
3677
|
{
|
|
3722
3678
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3723
|
-
"systemMessage": "You are a
|
|
3724
|
-
"temperature": 0.
|
|
3679
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
|
|
3680
|
+
"temperature": 0.2
|
|
3725
3681
|
}
|
|
3726
3682
|
]
|
|
3727
3683
|
}
|
|
@@ -3734,10 +3690,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3734
3690
|
"preparations": [
|
|
3735
3691
|
{
|
|
3736
3692
|
"id": 1,
|
|
3737
|
-
"promptbookVersion": "0.102.0-
|
|
3693
|
+
"promptbookVersion": "0.102.0-8",
|
|
3738
3694
|
"usage": {
|
|
3739
3695
|
"price": {
|
|
3740
|
-
"value": 0.
|
|
3696
|
+
"value": 0.02812125
|
|
3741
3697
|
},
|
|
3742
3698
|
"input": {
|
|
3743
3699
|
"tokensCount": {
|
|
@@ -3764,19 +3720,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3764
3720
|
},
|
|
3765
3721
|
"output": {
|
|
3766
3722
|
"tokensCount": {
|
|
3767
|
-
"value":
|
|
3723
|
+
"value": 2043
|
|
3768
3724
|
},
|
|
3769
3725
|
"charactersCount": {
|
|
3770
|
-
"value":
|
|
3726
|
+
"value": 2186
|
|
3771
3727
|
},
|
|
3772
3728
|
"wordsCount": {
|
|
3773
|
-
"value":
|
|
3729
|
+
"value": 286
|
|
3774
3730
|
},
|
|
3775
3731
|
"sentencesCount": {
|
|
3776
|
-
"value":
|
|
3732
|
+
"value": 27
|
|
3777
3733
|
},
|
|
3778
3734
|
"linesCount": {
|
|
3779
|
-
"value":
|
|
3735
|
+
"value": 52
|
|
3780
3736
|
},
|
|
3781
3737
|
"paragraphsCount": {
|
|
3782
3738
|
"value": 1
|
|
@@ -3845,24 +3801,29 @@ function getTemplatesPipelineCollection() {
|
|
|
3845
3801
|
{
|
|
3846
3802
|
"modelVariant": "CHAT",
|
|
3847
3803
|
"models": [
|
|
3804
|
+
{
|
|
3805
|
+
"modelName": "gpt-5",
|
|
3806
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose award-caliber poems and narratives with vivid imagery, musical language, and a clear emotional arc. Adapt to requested forms and genres (e.g., sonnet, free verse, ballad, mythic fantasy, microfiction). Avoid clichés, favor fresh metaphors, and maintain voice and coherence. For longer works, propose a brief outline first unless the user specifies otherwise. Ask one concise clarifying question when key details are missing.",
|
|
3807
|
+
"temperature": 0.95
|
|
3808
|
+
},
|
|
3848
3809
|
{
|
|
3849
3810
|
"modelName": "gpt-4.1",
|
|
3850
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3811
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with evocative imagery, strong voice, and rhythm. Match requested forms and constraints precisely (meter, rhyme, word count, point of view). Keep language fresh, concrete, and original. Offer a short outline for long pieces unless the user declines. Ask one brief clarifying question if essential details are ambiguous.",
|
|
3851
3812
|
"temperature": 0.9
|
|
3852
3813
|
},
|
|
3853
3814
|
{
|
|
3854
3815
|
"modelName": "chatgpt-4o-latest",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3856
|
-
"temperature":
|
|
3816
|
+
"systemMessage": "You are an accomplished poet and storyteller. Create vivid, emotionally resonant poetry and narrative in varied styles and forms. Use sensory detail, metaphor, and cadence; avoid clichés. Tailor tone and structure to the user’s brief, and suggest alternatives when helpful. For longer pieces, propose a quick outline unless told otherwise. Ask one concise clarifying question if needed.",
|
|
3817
|
+
"temperature": 0.9
|
|
3857
3818
|
},
|
|
3858
3819
|
{
|
|
3859
3820
|
"modelName": "gpt-4",
|
|
3860
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3821
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft original, image-rich verse and narrative with clear voice, rhythm, and momentum. Respect requested forms and constraints, minimize clichés, and prioritize clarity and emotional impact. Offer a brief outline for longer works unless the user opts out. Ask one concise clarifying question when key details are missing.",
|
|
3861
3822
|
"temperature": 0.85
|
|
3862
3823
|
},
|
|
3863
3824
|
{
|
|
3864
3825
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3826
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce vivid, original poems and stories with strong imagery and cadence, adapting to specified forms and constraints. Keep language fresh and clear, suggest a brief outline for longer pieces unless the user declines, and ask one concise clarifying question when needed.",
|
|
3866
3827
|
"temperature": 0.8
|
|
3867
3828
|
}
|
|
3868
3829
|
]
|
|
@@ -3876,10 +3837,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3876
3837
|
"preparations": [
|
|
3877
3838
|
{
|
|
3878
3839
|
"id": 1,
|
|
3879
|
-
"promptbookVersion": "0.102.0-
|
|
3840
|
+
"promptbookVersion": "0.102.0-8",
|
|
3880
3841
|
"usage": {
|
|
3881
3842
|
"price": {
|
|
3882
|
-
"value": 0.
|
|
3843
|
+
"value": 0.031030000000000002
|
|
3883
3844
|
},
|
|
3884
3845
|
"input": {
|
|
3885
3846
|
"tokensCount": {
|
|
@@ -3906,19 +3867,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3906
3867
|
},
|
|
3907
3868
|
"output": {
|
|
3908
3869
|
"tokensCount": {
|
|
3909
|
-
"value":
|
|
3870
|
+
"value": 2334
|
|
3910
3871
|
},
|
|
3911
3872
|
"charactersCount": {
|
|
3912
|
-
"value":
|
|
3873
|
+
"value": 2432
|
|
3913
3874
|
},
|
|
3914
3875
|
"wordsCount": {
|
|
3915
|
-
"value":
|
|
3876
|
+
"value": 338
|
|
3916
3877
|
},
|
|
3917
3878
|
"sentencesCount": {
|
|
3918
|
-
"value":
|
|
3879
|
+
"value": 36
|
|
3919
3880
|
},
|
|
3920
3881
|
"linesCount": {
|
|
3921
|
-
"value":
|
|
3882
|
+
"value": 59
|
|
3922
3883
|
},
|
|
3923
3884
|
"paragraphsCount": {
|
|
3924
3885
|
"value": 1
|