@promptbook/templates 0.102.0-12 → 0.102.0-17
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 +157 -141
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +2 -0
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatMessageItem.d.ts +5 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +4 -0
- package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +43 -5
- package/esm/typings/src/book-components/Chat/save/html/htmlSaveFormatDefinition.d.ts +6 -2
- package/esm/typings/src/book-components/Chat/save/index.d.ts +38 -8
- package/esm/typings/src/book-components/Chat/save/json/jsonSaveFormatDefinition.d.ts +6 -2
- package/esm/typings/src/book-components/Chat/save/markdown/mdSaveFormatDefinition.d.ts +5 -1
- package/esm/typings/src/book-components/Chat/save/pdf/pdfSaveFormatDefinition.d.ts +6 -2
- package/esm/typings/src/book-components/Chat/save/react/reactSaveFormatDefinition.d.ts +16 -0
- package/esm/typings/src/book-components/Chat/save/text/txtSaveFormatDefinition.d.ts +5 -1
- package/esm/typings/src/utils/color/Color.d.ts +7 -0
- package/esm/typings/src/utils/serialization/serializeToPromptbookJavascript.d.ts +22 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +157 -141
- package/umd/index.umd.js.map +1 -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-17';
|
|
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
|
|
@@ -414,7 +414,7 @@ class Color {
|
|
|
414
414
|
return Color.fromString(CSS_COLORS[color]);
|
|
415
415
|
// -----
|
|
416
416
|
}
|
|
417
|
-
else if (
|
|
417
|
+
else if (Color.isHexColorString(color)) {
|
|
418
418
|
return Color.fromHex(color);
|
|
419
419
|
// -----
|
|
420
420
|
}
|
|
@@ -673,6 +673,15 @@ class Color {
|
|
|
673
673
|
}
|
|
674
674
|
return true;
|
|
675
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* Checks if the given value is a valid hex color string
|
|
678
|
+
*
|
|
679
|
+
* @param value - value to check
|
|
680
|
+
* @returns true if the value is a valid hex color string (e.g., `#009edd`, `#fff`, etc.)
|
|
681
|
+
*/
|
|
682
|
+
static isHexColorString(value) {
|
|
683
|
+
return typeof value === 'string' && /^#(?:[0-9a-fA-F]{3}){1,2}$/.test(value);
|
|
684
|
+
}
|
|
676
685
|
/**
|
|
677
686
|
* Creates new Color object
|
|
678
687
|
*
|
|
@@ -2437,33 +2446,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2437
2446
|
"models": [
|
|
2438
2447
|
{
|
|
2439
2448
|
"modelName": "gpt-4.1",
|
|
2440
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2441
|
-
"temperature": 0.
|
|
2449
|
+
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Your job is to design, audit, and optimize prompts, tool schemas, and assistant flows. Be precise, deterministic, and terse. Prefer clear bullet points, validated assumptions, and actionable steps. When code or templates are needed, produce minimal, production-ready snippets compatible with Promptbook. Ask targeted clarifying questions if requirements are ambiguous.",
|
|
2450
|
+
"temperature": 0.25
|
|
2442
2451
|
},
|
|
2443
2452
|
{
|
|
2444
2453
|
"modelName": "chatgpt-4o-latest",
|
|
2445
|
-
"systemMessage": "You are a developer of the Promptbook Project. Be
|
|
2446
|
-
"temperature": 0.
|
|
2454
|
+
"systemMessage": "You are a friendly yet rigorous virtual assistant for a developer of the Promptbook Project. Be responsive and pragmatic, help with day-to-day coding, documentation, and prompt edits. Keep answers concise, propose improvements, and maintain compatibility with Promptbook formats. Offer quick examples and explain trade-offs briefly.",
|
|
2455
|
+
"temperature": 0.35
|
|
2447
2456
|
},
|
|
2448
2457
|
{
|
|
2449
|
-
"modelName": "
|
|
2450
|
-
"systemMessage": "You are
|
|
2458
|
+
"modelName": "o3",
|
|
2459
|
+
"systemMessage": "You are the reasoning specialist for the Promptbook Project. Tackle complex design and debugging of prompt chains, function-calling schemas, and evaluation harnesses. Work methodically: enumerate constraints, consider edge cases, and verify with small tests or examples. Return concise conclusions and key justifications; avoid verbose chain-of-thought. Keep outputs ready to paste into Promptbook.",
|
|
2451
2460
|
"temperature": 0.2
|
|
2452
2461
|
},
|
|
2453
2462
|
{
|
|
2454
|
-
"modelName": "
|
|
2455
|
-
"systemMessage": "You are a
|
|
2456
|
-
"temperature": 0.
|
|
2463
|
+
"modelName": "o4-mini",
|
|
2464
|
+
"systemMessage": "You are a fast, cost-efficient assistant for the Promptbook Project developer. Prioritize speed and correctness, provide minimal but complete answers, and supply concise code or prompt templates that drop into Promptbook. Defer to clarification when uncertainty is high.",
|
|
2465
|
+
"temperature": 0.25
|
|
2457
2466
|
},
|
|
2458
2467
|
{
|
|
2459
|
-
"modelName": "
|
|
2460
|
-
"systemMessage": "You are a
|
|
2461
|
-
"temperature": 0.
|
|
2468
|
+
"modelName": "gpt-4",
|
|
2469
|
+
"systemMessage": "You are a reliable engineering assistant for the Promptbook Project. Provide accurate, well-structured answers, conservative wording, and production-ready examples. Keep responses succinct and align outputs with Promptbook conventions.",
|
|
2470
|
+
"temperature": 0.3
|
|
2462
2471
|
},
|
|
2463
2472
|
{
|
|
2464
2473
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2465
|
-
"systemMessage": "You are a
|
|
2466
|
-
"temperature": 0.
|
|
2474
|
+
"systemMessage": "You are a budget-friendly assistant for the Promptbook Project developer. Be concise, follow instructions strictly, and produce lightweight, copy-pastable snippets compatible with Promptbook. If a task may exceed your capability, state limits and propose a safe approach.",
|
|
2475
|
+
"temperature": 0.3
|
|
2467
2476
|
}
|
|
2468
2477
|
]
|
|
2469
2478
|
}
|
|
@@ -2476,10 +2485,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2476
2485
|
"preparations": [
|
|
2477
2486
|
{
|
|
2478
2487
|
"id": 1,
|
|
2479
|
-
"promptbookVersion": "0.102.0-
|
|
2488
|
+
"promptbookVersion": "0.102.0-16",
|
|
2480
2489
|
"usage": {
|
|
2481
2490
|
"price": {
|
|
2482
|
-
"value": 0.
|
|
2491
|
+
"value": 0.0433825
|
|
2483
2492
|
},
|
|
2484
2493
|
"input": {
|
|
2485
2494
|
"tokensCount": {
|
|
@@ -2506,19 +2515,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2506
2515
|
},
|
|
2507
2516
|
"output": {
|
|
2508
2517
|
"tokensCount": {
|
|
2509
|
-
"value":
|
|
2518
|
+
"value": 3569
|
|
2510
2519
|
},
|
|
2511
2520
|
"charactersCount": {
|
|
2512
|
-
"value":
|
|
2521
|
+
"value": 2555
|
|
2513
2522
|
},
|
|
2514
2523
|
"wordsCount": {
|
|
2515
|
-
"value":
|
|
2524
|
+
"value": 333
|
|
2516
2525
|
},
|
|
2517
2526
|
"sentencesCount": {
|
|
2518
2527
|
"value": 33
|
|
2519
2528
|
},
|
|
2520
2529
|
"linesCount": {
|
|
2521
|
-
"value":
|
|
2530
|
+
"value": 64
|
|
2522
2531
|
},
|
|
2523
2532
|
"paragraphsCount": {
|
|
2524
2533
|
"value": 1
|
|
@@ -2974,33 +2983,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2974
2983
|
"models": [
|
|
2975
2984
|
{
|
|
2976
2985
|
"modelName": "gpt-4.1",
|
|
2977
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2978
|
-
"temperature": 0.
|
|
2986
|
+
"systemMessage": "You are a senior AI engineer and core developer of the Promptbook Project. Your job is to design, audit, and optimize prompts, tool schemas, and assistant flows. Be precise, deterministic, and terse. Prefer clear bullet points, validated assumptions, and actionable steps. When code or templates are needed, produce minimal, production-ready snippets compatible with Promptbook. Ask targeted clarifying questions if requirements are ambiguous.",
|
|
2987
|
+
"temperature": 0.25
|
|
2979
2988
|
},
|
|
2980
2989
|
{
|
|
2981
2990
|
"modelName": "chatgpt-4o-latest",
|
|
2982
|
-
"systemMessage": "You are a developer of the Promptbook Project. Be
|
|
2983
|
-
"temperature": 0.
|
|
2991
|
+
"systemMessage": "You are a friendly yet rigorous virtual assistant for a developer of the Promptbook Project. Be responsive and pragmatic, help with day-to-day coding, documentation, and prompt edits. Keep answers concise, propose improvements, and maintain compatibility with Promptbook formats. Offer quick examples and explain trade-offs briefly.",
|
|
2992
|
+
"temperature": 0.35
|
|
2984
2993
|
},
|
|
2985
2994
|
{
|
|
2986
|
-
"modelName": "
|
|
2987
|
-
"systemMessage": "You are
|
|
2995
|
+
"modelName": "o3",
|
|
2996
|
+
"systemMessage": "You are the reasoning specialist for the Promptbook Project. Tackle complex design and debugging of prompt chains, function-calling schemas, and evaluation harnesses. Work methodically: enumerate constraints, consider edge cases, and verify with small tests or examples. Return concise conclusions and key justifications; avoid verbose chain-of-thought. Keep outputs ready to paste into Promptbook.",
|
|
2988
2997
|
"temperature": 0.2
|
|
2989
2998
|
},
|
|
2990
2999
|
{
|
|
2991
|
-
"modelName": "
|
|
2992
|
-
"systemMessage": "You are a
|
|
2993
|
-
"temperature": 0.
|
|
3000
|
+
"modelName": "o4-mini",
|
|
3001
|
+
"systemMessage": "You are a fast, cost-efficient assistant for the Promptbook Project developer. Prioritize speed and correctness, provide minimal but complete answers, and supply concise code or prompt templates that drop into Promptbook. Defer to clarification when uncertainty is high.",
|
|
3002
|
+
"temperature": 0.25
|
|
2994
3003
|
},
|
|
2995
3004
|
{
|
|
2996
|
-
"modelName": "
|
|
2997
|
-
"systemMessage": "You are a
|
|
2998
|
-
"temperature": 0.
|
|
3005
|
+
"modelName": "gpt-4",
|
|
3006
|
+
"systemMessage": "You are a reliable engineering assistant for the Promptbook Project. Provide accurate, well-structured answers, conservative wording, and production-ready examples. Keep responses succinct and align outputs with Promptbook conventions.",
|
|
3007
|
+
"temperature": 0.3
|
|
2999
3008
|
},
|
|
3000
3009
|
{
|
|
3001
3010
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3002
|
-
"systemMessage": "You are a
|
|
3003
|
-
"temperature": 0.
|
|
3011
|
+
"systemMessage": "You are a budget-friendly assistant for the Promptbook Project developer. Be concise, follow instructions strictly, and produce lightweight, copy-pastable snippets compatible with Promptbook. If a task may exceed your capability, state limits and propose a safe approach.",
|
|
3012
|
+
"temperature": 0.3
|
|
3004
3013
|
}
|
|
3005
3014
|
]
|
|
3006
3015
|
}
|
|
@@ -3013,10 +3022,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3013
3022
|
"preparations": [
|
|
3014
3023
|
{
|
|
3015
3024
|
"id": 1,
|
|
3016
|
-
"promptbookVersion": "0.102.0-
|
|
3025
|
+
"promptbookVersion": "0.102.0-16",
|
|
3017
3026
|
"usage": {
|
|
3018
3027
|
"price": {
|
|
3019
|
-
"value": 0.
|
|
3028
|
+
"value": 0.0433825
|
|
3020
3029
|
},
|
|
3021
3030
|
"input": {
|
|
3022
3031
|
"tokensCount": {
|
|
@@ -3043,19 +3052,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3043
3052
|
},
|
|
3044
3053
|
"output": {
|
|
3045
3054
|
"tokensCount": {
|
|
3046
|
-
"value":
|
|
3055
|
+
"value": 3569
|
|
3047
3056
|
},
|
|
3048
3057
|
"charactersCount": {
|
|
3049
|
-
"value":
|
|
3058
|
+
"value": 2555
|
|
3050
3059
|
},
|
|
3051
3060
|
"wordsCount": {
|
|
3052
|
-
"value":
|
|
3061
|
+
"value": 333
|
|
3053
3062
|
},
|
|
3054
3063
|
"sentencesCount": {
|
|
3055
3064
|
"value": 33
|
|
3056
3065
|
},
|
|
3057
3066
|
"linesCount": {
|
|
3058
|
-
"value":
|
|
3067
|
+
"value": 64
|
|
3059
3068
|
},
|
|
3060
3069
|
"paragraphsCount": {
|
|
3061
3070
|
"value": 1
|
|
@@ -3648,27 +3657,29 @@ function getTemplatesPipelineCollection() {
|
|
|
3648
3657
|
"description": "a linguist and Corrector",
|
|
3649
3658
|
"modelsRequirements": [
|
|
3650
3659
|
{
|
|
3651
|
-
"
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3660
|
+
"modelVariant": "CHAT",
|
|
3661
|
+
"models": [
|
|
3662
|
+
{
|
|
3663
|
+
"modelName": "gpt-4.1",
|
|
3664
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Tasks: 1) Detect and fix grammar, spelling, punctuation, agreement, and syntax issues. 2) Improve clarity, concision, tone, and flow while preserving the author’s intent and voice. 3) Respect user-specified dialects, style guides, and terminology; default to a standard variant when unspecified. 4) Maintain original meaning, facts, formatting, and any code/markup; do not invent content. 5) By default return two parts: 'Corrected text' and a concise bullet list of key changes with brief rationales. If the user requests 'just the corrections', return only the corrected text. 6) Ask brief clarifying questions when requirements are ambiguous. Support multilingual and mixed-language passages. Use minimal edits unless asked to rewrite; offer alternative phrasings on request.",
|
|
3665
|
+
"temperature": 0.2
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
"modelName": "chatgpt-4o-latest",
|
|
3669
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Tasks: 1) Detect and fix grammar, spelling, punctuation, agreement, and syntax issues. 2) Improve clarity, concision, tone, and flow while preserving the author’s intent and voice. 3) Respect user-specified dialects, style guides, and terminology; default to a standard variant when unspecified. 4) Maintain original meaning, facts, formatting, and any code/markup; do not invent content. 5) By default return two parts: 'Corrected text' and a concise bullet list of key changes with brief rationales. If the user requests 'just the corrections', return only the corrected text. 6) Ask brief clarifying questions when requirements are ambiguous. Support multilingual and mixed-language passages. Use minimal edits unless asked to rewrite; offer alternative phrasings on request.",
|
|
3670
|
+
"temperature": 0.3
|
|
3671
|
+
},
|
|
3672
|
+
{
|
|
3673
|
+
"modelName": "gpt-4",
|
|
3674
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Tasks: 1) Detect and fix grammar, spelling, punctuation, agreement, and syntax issues. 2) Improve clarity, concision, tone, and flow while preserving the author’s intent and voice. 3) Respect user-specified dialects, style guides, and terminology; default to a standard variant when unspecified. 4) Maintain original meaning, facts, formatting, and any code/markup; do not invent content. 5) By default return two parts: 'Corrected text' and a concise bullet list of key changes with brief rationales. If the user requests 'just the corrections', return only the corrected text. 6) Ask brief clarifying questions when requirements are ambiguous. Support multilingual and mixed-language passages. Use minimal edits unless asked to rewrite; offer alternative phrasings on request.",
|
|
3675
|
+
"temperature": 0.2
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3679
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Tasks: 1) Detect and fix grammar, spelling, punctuation, agreement, and syntax issues. 2) Improve clarity, concision, tone, and flow while preserving the author’s intent and voice. 3) Respect user-specified dialects, style guides, and terminology; default to a standard variant when unspecified. 4) Maintain original meaning, facts, formatting, and any code/markup; do not invent content. 5) By default return two parts: 'Corrected text' and a concise bullet list of key changes with brief rationales. If the user requests 'just the corrections', return only the corrected text. 6) Ask brief clarifying questions when requirements are ambiguous. Support multilingual and mixed-language passages. Use minimal edits unless asked to rewrite; offer alternative phrasings on request.",
|
|
3680
|
+
"temperature": 0.15
|
|
3681
|
+
}
|
|
3682
|
+
]
|
|
3672
3683
|
}
|
|
3673
3684
|
],
|
|
3674
3685
|
"preparationIds": [
|
|
@@ -3679,10 +3690,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3679
3690
|
"preparations": [
|
|
3680
3691
|
{
|
|
3681
3692
|
"id": 1,
|
|
3682
|
-
"promptbookVersion": "0.102.0-
|
|
3693
|
+
"promptbookVersion": "0.102.0-16",
|
|
3683
3694
|
"usage": {
|
|
3684
3695
|
"price": {
|
|
3685
|
-
"value": 0.
|
|
3696
|
+
"value": 0.03936125000000001
|
|
3686
3697
|
},
|
|
3687
3698
|
"input": {
|
|
3688
3699
|
"tokensCount": {
|
|
@@ -3709,19 +3720,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3709
3720
|
},
|
|
3710
3721
|
"output": {
|
|
3711
3722
|
"tokensCount": {
|
|
3712
|
-
"value":
|
|
3723
|
+
"value": 3167
|
|
3713
3724
|
},
|
|
3714
3725
|
"charactersCount": {
|
|
3715
|
-
"value":
|
|
3726
|
+
"value": 3783
|
|
3716
3727
|
},
|
|
3717
3728
|
"wordsCount": {
|
|
3718
|
-
"value":
|
|
3729
|
+
"value": 538
|
|
3719
3730
|
},
|
|
3720
3731
|
"sentencesCount": {
|
|
3721
|
-
"value":
|
|
3732
|
+
"value": 47
|
|
3722
3733
|
},
|
|
3723
3734
|
"linesCount": {
|
|
3724
|
-
"value":
|
|
3735
|
+
"value": 76
|
|
3725
3736
|
},
|
|
3726
3737
|
"paragraphsCount": {
|
|
3727
3738
|
"value": 1
|
|
@@ -3793,23 +3804,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3793
3804
|
"models": [
|
|
3794
3805
|
{
|
|
3795
3806
|
"modelName": "gpt-4.1",
|
|
3796
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3807
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, benefit-led product descriptions, headlines, ads, emails, and microcopy. Match brand voice, address customer pain points and outcomes, and write scannable copy with clear structure and bullet benefits. Weave SEO keywords naturally and provide metadata when useful (page title, H1, meta description, URL slug, image alt text). Include strong but honest calls to action, follow regional spelling and legal/compliance rules, and avoid unverifiable claims. Offer 2–3 high-quality variations and A/B test ideas when appropriate. Ask concise clarifying questions if requirements are ambiguous. Default to clean plain text; provide HTML on request.",
|
|
3797
3808
|
"temperature": 0.7
|
|
3798
3809
|
},
|
|
3799
3810
|
{
|
|
3800
3811
|
"modelName": "chatgpt-4o-latest",
|
|
3801
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3812
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, benefit-led product descriptions, headlines, ads, emails, and microcopy. Match brand voice, address customer pain points and outcomes, and write scannable copy with clear structure and bullet benefits. Weave SEO keywords naturally and provide metadata when useful (page title, H1, meta description, URL slug, image alt text). Include strong but honest calls to action, follow regional spelling and legal/compliance rules, and avoid unverifiable claims. Offer 2–3 high-quality variations and A/B test ideas when appropriate. Ask concise clarifying questions if requirements are ambiguous. Default to clean plain text; provide HTML on request.",
|
|
3802
3813
|
"temperature": 0.7
|
|
3803
3814
|
},
|
|
3804
3815
|
{
|
|
3805
3816
|
"modelName": "gpt-4",
|
|
3806
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3807
|
-
"temperature": 0.
|
|
3817
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, benefit-led product descriptions, headlines, ads, emails, and microcopy. Match brand voice, address customer pain points and outcomes, and write scannable copy with clear structure and bullet benefits. Weave SEO keywords naturally and provide metadata when useful (page title, H1, meta description, URL slug, image alt text). Include strong but honest calls to action, follow regional spelling and legal/compliance rules, and avoid unverifiable claims. Offer 2–3 high-quality variations and A/B test ideas when appropriate. Ask concise clarifying questions if requirements are ambiguous. Default to clean plain text; provide HTML on request.",
|
|
3818
|
+
"temperature": 0.7
|
|
3808
3819
|
},
|
|
3809
3820
|
{
|
|
3810
|
-
"modelName": "gpt-3.5-turbo-
|
|
3811
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3812
|
-
"temperature": 0.
|
|
3821
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3822
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, benefit-led product descriptions, headlines, ads, emails, and microcopy. Match brand voice, address customer pain points and outcomes, and write scannable copy with clear structure and bullet benefits. Weave SEO keywords naturally and provide metadata when useful (page title, H1, meta description, URL slug, image alt text). Include strong but honest calls to action, follow regional spelling and legal/compliance rules, and avoid unverifiable claims. Offer 2–3 high-quality variations and A/B test ideas when appropriate. Ask concise clarifying questions if requirements are ambiguous. Default to clean plain text; provide HTML on request.",
|
|
3823
|
+
"temperature": 0.75
|
|
3813
3824
|
}
|
|
3814
3825
|
]
|
|
3815
3826
|
}
|
|
@@ -3822,10 +3833,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3822
3833
|
"preparations": [
|
|
3823
3834
|
{
|
|
3824
3835
|
"id": 1,
|
|
3825
|
-
"promptbookVersion": "0.102.0-
|
|
3836
|
+
"promptbookVersion": "0.102.0-16",
|
|
3826
3837
|
"usage": {
|
|
3827
3838
|
"price": {
|
|
3828
|
-
"value": 0.
|
|
3839
|
+
"value": 0.037921250000000004
|
|
3829
3840
|
},
|
|
3830
3841
|
"input": {
|
|
3831
3842
|
"tokensCount": {
|
|
@@ -3852,19 +3863,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3852
3863
|
},
|
|
3853
3864
|
"output": {
|
|
3854
3865
|
"tokensCount": {
|
|
3855
|
-
"value":
|
|
3866
|
+
"value": 3023
|
|
3856
3867
|
},
|
|
3857
3868
|
"charactersCount": {
|
|
3858
|
-
"value":
|
|
3869
|
+
"value": 3296
|
|
3859
3870
|
},
|
|
3860
3871
|
"wordsCount": {
|
|
3861
|
-
"value":
|
|
3872
|
+
"value": 474
|
|
3862
3873
|
},
|
|
3863
3874
|
"sentencesCount": {
|
|
3864
|
-
"value":
|
|
3875
|
+
"value": 39
|
|
3865
3876
|
},
|
|
3866
3877
|
"linesCount": {
|
|
3867
|
-
"value":
|
|
3878
|
+
"value": 68
|
|
3868
3879
|
},
|
|
3869
3880
|
"paragraphsCount": {
|
|
3870
3881
|
"value": 1
|
|
@@ -3918,7 +3929,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3918
3929
|
"preparations": [
|
|
3919
3930
|
{
|
|
3920
3931
|
"id": 1,
|
|
3921
|
-
"promptbookVersion": "0.102.0-
|
|
3932
|
+
"promptbookVersion": "0.102.0-16",
|
|
3922
3933
|
"usage": {
|
|
3923
3934
|
"price": {
|
|
3924
3935
|
"value": 0
|
|
@@ -4027,27 +4038,27 @@ function getTemplatesPipelineCollection() {
|
|
|
4027
4038
|
"models": [
|
|
4028
4039
|
{
|
|
4029
4040
|
"modelName": "gpt-4.1",
|
|
4030
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
4031
|
-
"temperature": 0.
|
|
4041
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, ROI-focused guidance across strategy, positioning, go-to-market, growth, performance marketing, product marketing, pricing, sales enablement, and operations. Use clear structure, quantify impact, state assumptions, and provide step-by-step plans with KPIs and timelines. Ask concise clarifying questions when needed. Be concise, data-driven, and tailor recommendations to the user’s industry and constraints.",
|
|
4042
|
+
"temperature": 0.3
|
|
4032
4043
|
},
|
|
4033
4044
|
{
|
|
4034
4045
|
"modelName": "chatgpt-4o-latest",
|
|
4035
|
-
"systemMessage": "You are
|
|
4036
|
-
"temperature": 0.
|
|
4046
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, ROI-focused guidance across strategy, positioning, go-to-market, growth, performance marketing, product marketing, pricing, sales enablement, and operations. Use clear structure, quantify impact, state assumptions, and provide step-by-step plans with KPIs and timelines. Ask concise clarifying questions when needed. Be concise, data-driven, and tailor recommendations to the user’s industry and constraints.",
|
|
4047
|
+
"temperature": 0.4
|
|
4037
4048
|
},
|
|
4038
4049
|
{
|
|
4039
4050
|
"modelName": "gpt-4",
|
|
4040
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
4041
|
-
"temperature": 0.
|
|
4051
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, ROI-focused guidance across strategy, positioning, go-to-market, growth, performance marketing, product marketing, pricing, sales enablement, and operations. Use clear structure, quantify impact, state assumptions, and provide step-by-step plans with KPIs and timelines. Ask concise clarifying questions when needed. Be concise, data-driven, and tailor recommendations to the user’s industry and constraints.",
|
|
4052
|
+
"temperature": 0.3
|
|
4042
4053
|
},
|
|
4043
4054
|
{
|
|
4044
4055
|
"modelName": "o4-mini",
|
|
4045
|
-
"systemMessage": "You are an experienced marketing
|
|
4046
|
-
"temperature": 0.
|
|
4056
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, ROI-focused guidance across strategy, positioning, go-to-market, growth, performance marketing, product marketing, pricing, sales enablement, and operations. Use clear structure, quantify impact, state assumptions, and provide step-by-step plans with KPIs and timelines. Ask concise clarifying questions when needed. Be concise, data-driven, and tailor recommendations to the user’s industry and constraints.",
|
|
4057
|
+
"temperature": 0.25
|
|
4047
4058
|
},
|
|
4048
4059
|
{
|
|
4049
4060
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4050
|
-
"systemMessage": "You are
|
|
4061
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, ROI-focused guidance across strategy, positioning, go-to-market, growth, performance marketing, product marketing, pricing, sales enablement, and operations. Use clear structure, quantify impact, state assumptions, and provide step-by-step plans with KPIs and timelines. Ask concise clarifying questions when needed. Be concise, data-driven, and tailor recommendations to the user’s industry and constraints.",
|
|
4051
4062
|
"temperature": 0.5
|
|
4052
4063
|
}
|
|
4053
4064
|
]
|
|
@@ -4061,10 +4072,10 @@ function getTemplatesPipelineCollection() {
|
|
|
4061
4072
|
"preparations": [
|
|
4062
4073
|
{
|
|
4063
4074
|
"id": 1,
|
|
4064
|
-
"promptbookVersion": "0.102.0-
|
|
4075
|
+
"promptbookVersion": "0.102.0-16",
|
|
4065
4076
|
"usage": {
|
|
4066
4077
|
"price": {
|
|
4067
|
-
"value": 0.
|
|
4078
|
+
"value": 0.031221250000000002
|
|
4068
4079
|
},
|
|
4069
4080
|
"input": {
|
|
4070
4081
|
"tokensCount": {
|
|
@@ -4091,19 +4102,19 @@ function getTemplatesPipelineCollection() {
|
|
|
4091
4102
|
},
|
|
4092
4103
|
"output": {
|
|
4093
4104
|
"tokensCount": {
|
|
4094
|
-
"value":
|
|
4105
|
+
"value": 2353
|
|
4095
4106
|
},
|
|
4096
4107
|
"charactersCount": {
|
|
4097
|
-
"value":
|
|
4108
|
+
"value": 2994
|
|
4098
4109
|
},
|
|
4099
4110
|
"wordsCount": {
|
|
4100
|
-
"value":
|
|
4111
|
+
"value": 386
|
|
4101
4112
|
},
|
|
4102
4113
|
"sentencesCount": {
|
|
4103
|
-
"value":
|
|
4114
|
+
"value": 33
|
|
4104
4115
|
},
|
|
4105
4116
|
"linesCount": {
|
|
4106
|
-
"value":
|
|
4117
|
+
"value": 69
|
|
4107
4118
|
},
|
|
4108
4119
|
"paragraphsCount": {
|
|
4109
4120
|
"value": 1
|
|
@@ -4183,23 +4194,28 @@ function getTemplatesPipelineCollection() {
|
|
|
4183
4194
|
"models": [
|
|
4184
4195
|
{
|
|
4185
4196
|
"modelName": "gpt-4.1",
|
|
4186
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
4187
|
-
"temperature": 0.
|
|
4197
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.\n\nGoals:\n- Resolve customer issues (orders, shipping, returns, sizing, product questions) promptly and politely.\n- Write clear, on-brand, conversion-focused copy (product descriptions, FAQs, emails, ads) with benefits and strong calls to action.\n\nGuidelines:\n- Be empathetic, concise, and proactive; ask clarifying questions when details are missing.\n- Reference store policies before committing; do not invent unavailable information.\n- Provide step-by-step solutions, summarize next steps, and confirm resolution.\n- Personalize recommendations; upsell/cross-sell only when genuinely helpful.\n- Protect customer privacy and follow regional compliance; avoid exposing internal notes.\n- Use short paragraphs and bullet points; include links/placeholders when appropriate; maintain consistent tone matching brand voice.",
|
|
4198
|
+
"temperature": 0.5
|
|
4188
4199
|
},
|
|
4189
4200
|
{
|
|
4190
4201
|
"modelName": "chatgpt-4o-latest",
|
|
4191
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
4202
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.\n\nPriorities:\n- Handle support requests with empathy and accuracy (orders, shipping, returns, product questions).\n- Create high-converting, on-brand copy for product pages, emails, ads, and social posts.\n\nBest practices:\n- Ask for missing details; never guess unavailable info; cite policies.\n- Provide clear steps and next actions; confirm satisfaction and summarize.\n- Make relevant, helpful product suggestions; avoid over-promising.\n- Keep PII private and follow compliance requirements.\n- Write in short paragraphs and bullets; adapt tone: professional for support, persuasive for marketing.",
|
|
4192
4203
|
"temperature": 0.6
|
|
4193
4204
|
},
|
|
4194
4205
|
{
|
|
4195
4206
|
"modelName": "gpt-4",
|
|
4196
|
-
"systemMessage": "You are a customer
|
|
4197
|
-
"temperature": 0.
|
|
4207
|
+
"systemMessage": "You are a customer support and copywriting specialist for an ecommerce shop.\n- Support: Resolve order, shipping, returns, and product questions politely and efficiently.\n- Copy: Write concise, on-brand, benefit-led copy with clear CTAs.\nGuidelines: Ask clarifying questions; cite policies; don’t fabricate; provide step-by-step solutions; summarize next steps; personalize recommendations; protect privacy; keep responses structured with bullets and short paragraphs.",
|
|
4208
|
+
"temperature": 0.5
|
|
4209
|
+
},
|
|
4210
|
+
{
|
|
4211
|
+
"modelName": "o4-mini",
|
|
4212
|
+
"systemMessage": "Act as a fast, reliable ecommerce customer service agent and copywriter.\n- Give accurate, empathetic support with actionable next steps.\n- Produce concise, persuasive, on-brand copy when requested.\n- Ask for missing details, reference store policies, never invent info, protect privacy, and use clear bullets/short paragraphs.",
|
|
4213
|
+
"temperature": 0.4
|
|
4198
4214
|
},
|
|
4199
4215
|
{
|
|
4200
4216
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4201
|
-
"systemMessage": "You are a customer service representative and
|
|
4202
|
-
"temperature": 0.
|
|
4217
|
+
"systemMessage": "You are a helpful ecommerce customer service representative and marketing copywriter.\n- Resolve customer issues clearly and politely; provide step-by-step actions and summaries.\n- Write on-brand, benefit-focused copy with strong CTAs.\n- Ask clarifying questions, follow store policies, avoid fabrications, suggest relevant products only, and keep PII secure. Use short paragraphs and bullet points.",
|
|
4218
|
+
"temperature": 0.6
|
|
4203
4219
|
}
|
|
4204
4220
|
]
|
|
4205
4221
|
}
|
|
@@ -4212,10 +4228,10 @@ function getTemplatesPipelineCollection() {
|
|
|
4212
4228
|
"preparations": [
|
|
4213
4229
|
{
|
|
4214
4230
|
"id": 1,
|
|
4215
|
-
"promptbookVersion": "0.102.0-
|
|
4231
|
+
"promptbookVersion": "0.102.0-16",
|
|
4216
4232
|
"usage": {
|
|
4217
4233
|
"price": {
|
|
4218
|
-
"value": 0.
|
|
4234
|
+
"value": 0.036146250000000005
|
|
4219
4235
|
},
|
|
4220
4236
|
"input": {
|
|
4221
4237
|
"tokensCount": {
|
|
@@ -4242,19 +4258,19 @@ function getTemplatesPipelineCollection() {
|
|
|
4242
4258
|
},
|
|
4243
4259
|
"output": {
|
|
4244
4260
|
"tokensCount": {
|
|
4245
|
-
"value":
|
|
4261
|
+
"value": 2845
|
|
4246
4262
|
},
|
|
4247
4263
|
"charactersCount": {
|
|
4248
|
-
"value":
|
|
4264
|
+
"value": 3317
|
|
4249
4265
|
},
|
|
4250
4266
|
"wordsCount": {
|
|
4251
|
-
"value":
|
|
4267
|
+
"value": 453
|
|
4252
4268
|
},
|
|
4253
4269
|
"sentencesCount": {
|
|
4254
|
-
"value":
|
|
4270
|
+
"value": 38
|
|
4255
4271
|
},
|
|
4256
4272
|
"linesCount": {
|
|
4257
|
-
"value":
|
|
4273
|
+
"value": 72
|
|
4258
4274
|
},
|
|
4259
4275
|
"paragraphsCount": {
|
|
4260
4276
|
"value": 1
|
|
@@ -4511,27 +4527,27 @@ function getTemplatesPipelineCollection() {
|
|
|
4511
4527
|
"models": [
|
|
4512
4528
|
{
|
|
4513
4529
|
"modelName": "gpt-4.1",
|
|
4514
|
-
"systemMessage": "You are a
|
|
4530
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Be friendly, precise, and evidence-based. Tasks: multilingual Q&A, translation, grammar explanations, etymology, phonology (use IPA), contrastive analysis, and teaching Esperanto. For Esperanto, follow PMEG and the Fundamento; explain affixes and word-building. Prefer descriptive linguistics; note prescriptive norms when relevant. Ask clarifying questions if a request is ambiguous. Keep answers concise with examples. Respond in the user's language unless they ask for Esperanto.",
|
|
4515
4531
|
"temperature": 0.4
|
|
4516
4532
|
},
|
|
4517
4533
|
{
|
|
4518
4534
|
"modelName": "chatgpt-4o-latest",
|
|
4519
|
-
"systemMessage": "You are a
|
|
4535
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Be friendly, precise, and evidence-based. Tasks: multilingual Q&A, translation, grammar explanations, etymology, phonology (use IPA), contrastive analysis, and teaching Esperanto. For Esperanto, follow PMEG and the Fundamento; explain affixes and word-building. Prefer descriptive linguistics; note prescriptive norms when relevant. Ask clarifying questions if a request is ambiguous. Keep answers concise with examples. Respond in the user's language unless they ask for Esperanto.",
|
|
4520
4536
|
"temperature": 0.5
|
|
4521
4537
|
},
|
|
4522
4538
|
{
|
|
4523
4539
|
"modelName": "gpt-4",
|
|
4524
|
-
"systemMessage": "You are a
|
|
4540
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Be friendly, precise, and evidence-based. Tasks: multilingual Q&A, translation, grammar explanations, etymology, phonology (use IPA), contrastive analysis, and teaching Esperanto. For Esperanto, follow PMEG and the Fundamento; explain affixes and word-building. Prefer descriptive linguistics; note prescriptive norms when relevant. Ask clarifying questions if a request is ambiguous. Keep answers concise with examples. Respond in the user's language unless they ask for Esperanto.",
|
|
4525
4541
|
"temperature": 0.4
|
|
4526
4542
|
},
|
|
4527
4543
|
{
|
|
4528
4544
|
"modelName": "o4-mini",
|
|
4529
|
-
"systemMessage": "You are a
|
|
4545
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Be friendly, precise, and evidence-based. Tasks: multilingual Q&A, translation, grammar explanations, etymology, phonology (use IPA), contrastive analysis, and teaching Esperanto. For Esperanto, follow PMEG and the Fundamento; explain affixes and word-building. Prefer descriptive linguistics; note prescriptive norms when relevant. Ask clarifying questions if a request is ambiguous. Keep answers concise with examples. Respond in the user's language unless they ask for Esperanto.",
|
|
4530
4546
|
"temperature": 0.4
|
|
4531
4547
|
},
|
|
4532
4548
|
{
|
|
4533
4549
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4534
|
-
"systemMessage": "You are a
|
|
4550
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Be friendly, precise, and evidence-based. Tasks: multilingual Q&A, translation, grammar explanations, etymology, phonology (use IPA), contrastive analysis, and teaching Esperanto. For Esperanto, follow PMEG and the Fundamento; explain affixes and word-building. Prefer descriptive linguistics; note prescriptive norms when relevant. Ask clarifying questions if a request is ambiguous. Keep answers concise with examples. Respond in the user's language unless they ask for Esperanto.",
|
|
4535
4551
|
"temperature": 0.5
|
|
4536
4552
|
}
|
|
4537
4553
|
]
|
|
@@ -4545,10 +4561,10 @@ function getTemplatesPipelineCollection() {
|
|
|
4545
4561
|
"preparations": [
|
|
4546
4562
|
{
|
|
4547
4563
|
"id": 1,
|
|
4548
|
-
"promptbookVersion": "0.102.0-
|
|
4564
|
+
"promptbookVersion": "0.102.0-16",
|
|
4549
4565
|
"usage": {
|
|
4550
4566
|
"price": {
|
|
4551
|
-
"value": 0.
|
|
4567
|
+
"value": 0.03916125000000001
|
|
4552
4568
|
},
|
|
4553
4569
|
"input": {
|
|
4554
4570
|
"tokensCount": {
|
|
@@ -4575,16 +4591,16 @@ function getTemplatesPipelineCollection() {
|
|
|
4575
4591
|
},
|
|
4576
4592
|
"output": {
|
|
4577
4593
|
"tokensCount": {
|
|
4578
|
-
"value":
|
|
4594
|
+
"value": 3147
|
|
4579
4595
|
},
|
|
4580
4596
|
"charactersCount": {
|
|
4581
|
-
"value":
|
|
4597
|
+
"value": 3193
|
|
4582
4598
|
},
|
|
4583
4599
|
"wordsCount": {
|
|
4584
|
-
"value":
|
|
4600
|
+
"value": 421
|
|
4585
4601
|
},
|
|
4586
4602
|
"sentencesCount": {
|
|
4587
|
-
"value":
|
|
4603
|
+
"value": 48
|
|
4588
4604
|
},
|
|
4589
4605
|
"linesCount": {
|
|
4590
4606
|
"value": 69
|
|
@@ -4658,23 +4674,23 @@ function getTemplatesPipelineCollection() {
|
|
|
4658
4674
|
"models": [
|
|
4659
4675
|
{
|
|
4660
4676
|
"modelName": "gpt-4.1",
|
|
4661
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
4662
|
-
"temperature":
|
|
4677
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid sensory imagery, musicality, and a strong narrative arc. Adapt voice and form to the user's request (e.g., free verse, sonnet, myth, microfiction). Show, don't tell; avoid clichés; favor precise, concrete detail. Maintain coherence and emotional truth; if asked for facts, keep them accurate. Ask one clarifying question if key details are missing.",
|
|
4678
|
+
"temperature": 0.95
|
|
4663
4679
|
},
|
|
4664
4680
|
{
|
|
4665
4681
|
"modelName": "chatgpt-4o-latest",
|
|
4666
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
4667
|
-
"temperature":
|
|
4682
|
+
"systemMessage": "You are an accomplished poet and storyteller. Your voice is versatile and evocative. Lean into rhythm, metaphor, and sensory detail while keeping the narrative clear and emotionally resonant. Match the requested form and tone, respect constraints, and avoid cliché. If crucial details are missing, ask a brief clarifying question before composing.",
|
|
4683
|
+
"temperature": 1
|
|
4668
4684
|
},
|
|
4669
4685
|
{
|
|
4670
4686
|
"modelName": "gpt-4",
|
|
4671
|
-
"systemMessage": "You are an accomplished poet
|
|
4672
|
-
"temperature": 0.
|
|
4687
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, image-rich language and compelling narrative arcs. Adapt style and form to the prompt; balance musicality with clarity; prefer concrete details over abstractions; avoid cliché. Keep factual elements accurate when required. If the brief is underspecified, ask one concise clarifying question.",
|
|
4688
|
+
"temperature": 0.9
|
|
4673
4689
|
},
|
|
4674
4690
|
{
|
|
4675
4691
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4676
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
4677
|
-
"temperature": 0.
|
|
4692
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, strong voice, and clear pacing. Show, don’t tell; avoid clichés; use precise, concrete details. Follow requested forms and constraints. Ask one short clarifying question if essential details are missing.",
|
|
4693
|
+
"temperature": 0.85
|
|
4678
4694
|
}
|
|
4679
4695
|
]
|
|
4680
4696
|
}
|
|
@@ -4687,10 +4703,10 @@ function getTemplatesPipelineCollection() {
|
|
|
4687
4703
|
"preparations": [
|
|
4688
4704
|
{
|
|
4689
4705
|
"id": 1,
|
|
4690
|
-
"promptbookVersion": "0.102.0-
|
|
4706
|
+
"promptbookVersion": "0.102.0-16",
|
|
4691
4707
|
"usage": {
|
|
4692
4708
|
"price": {
|
|
4693
|
-
"value": 0.
|
|
4709
|
+
"value": 0.032350000000000004
|
|
4694
4710
|
},
|
|
4695
4711
|
"input": {
|
|
4696
4712
|
"tokensCount": {
|
|
@@ -4717,19 +4733,19 @@ function getTemplatesPipelineCollection() {
|
|
|
4717
4733
|
},
|
|
4718
4734
|
"output": {
|
|
4719
4735
|
"tokensCount": {
|
|
4720
|
-
"value":
|
|
4736
|
+
"value": 2466
|
|
4721
4737
|
},
|
|
4722
4738
|
"charactersCount": {
|
|
4723
|
-
"value":
|
|
4739
|
+
"value": 1805
|
|
4724
4740
|
},
|
|
4725
4741
|
"wordsCount": {
|
|
4726
|
-
"value":
|
|
4742
|
+
"value": 249
|
|
4727
4743
|
},
|
|
4728
4744
|
"sentencesCount": {
|
|
4729
|
-
"value":
|
|
4745
|
+
"value": 30
|
|
4730
4746
|
},
|
|
4731
4747
|
"linesCount": {
|
|
4732
|
-
"value":
|
|
4748
|
+
"value": 44
|
|
4733
4749
|
},
|
|
4734
4750
|
"paragraphsCount": {
|
|
4735
4751
|
"value": 1
|