@promptbook/templates 0.101.0-1 → 0.101.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +142 -152
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +0 -5
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +8 -2
- package/esm/typings/src/book-components/Chat/Chat/constants.d.ts +8 -0
- package/esm/typings/src/book-components/icons/ArrowIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ResetIcon.d.ts +6 -0
- package/esm/typings/src/book-components/icons/SendIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/TemplateIcon.d.ts +8 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +142 -152
- 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.101.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-2';
|
|
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
|
|
@@ -1561,40 +1561,30 @@ function getTemplatesPipelineCollection() {
|
|
|
1561
1561
|
{
|
|
1562
1562
|
"modelVariant": "CHAT",
|
|
1563
1563
|
"models": [
|
|
1564
|
-
{
|
|
1565
|
-
"modelName": "chatgpt-4o-latest",
|
|
1566
|
-
"systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
|
|
1567
|
-
"temperature": 0.4
|
|
1568
|
-
},
|
|
1569
1564
|
{
|
|
1570
1565
|
"modelName": "gpt-4.1",
|
|
1571
|
-
"systemMessage": "You are
|
|
1566
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a senior AI engineer and pragmatic virtual assistant. Optimize for accuracy, determinism, and actionable next steps. Provide high-quality prompt designs, clean code snippets, and brief rationales. Ask clarifying questions when requirements are ambiguous. Use concise bullet points by default.",
|
|
1572
1567
|
"temperature": 0.3
|
|
1573
1568
|
},
|
|
1574
1569
|
{
|
|
1575
|
-
"modelName": "
|
|
1576
|
-
"systemMessage": "You are a
|
|
1577
|
-
"temperature": 0.
|
|
1570
|
+
"modelName": "chatgpt-4o-latest",
|
|
1571
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, latency-aware virtual assistant. Keep responses concise, explain simply, and reason step-by-step when the task is non-trivial. Provide prompt templates, small code examples, and quick checklists. Confirm assumptions before executing plans.",
|
|
1572
|
+
"temperature": 0.4
|
|
1578
1573
|
},
|
|
1579
1574
|
{
|
|
1580
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are a
|
|
1582
|
-
"temperature": 0.
|
|
1575
|
+
"modelName": "o4-mini",
|
|
1576
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Deliver crisp action plans, evaluate trade-offs, and propose prompt patterns and test harnesses. Prefer brevity and determinism. Ask for missing context.",
|
|
1577
|
+
"temperature": 0.25
|
|
1583
1578
|
},
|
|
1584
1579
|
{
|
|
1585
|
-
"modelName": "
|
|
1586
|
-
"systemMessage": "You are a
|
|
1587
|
-
"temperature": 0.
|
|
1580
|
+
"modelName": "gpt-4",
|
|
1581
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide rigorous yet concise technical guidance, careful reasoning, and reliable code. Prefer bullet lists, call out risks and edge cases, and keep formatting consistent for easy copy/paste.",
|
|
1582
|
+
"temperature": 0.3
|
|
1588
1583
|
},
|
|
1589
1584
|
{
|
|
1590
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1591
|
-
"systemMessage": "You are a
|
|
1586
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Offer practical tips, lightweight prompts, and straightforward code with minimal dependencies. Clarify requirements when uncertain.",
|
|
1592
1587
|
"temperature": 0.4
|
|
1593
|
-
},
|
|
1594
|
-
{
|
|
1595
|
-
"modelName": "o3",
|
|
1596
|
-
"systemMessage": "You are an escalation assistant for complex tasks in the Promptbook Project. Perform deep internal reasoning, verify steps, and deliver crisp conclusions with minimal exposition. Only surface brief justifications when asked.",
|
|
1597
|
-
"temperature": 0.2
|
|
1598
1588
|
}
|
|
1599
1589
|
]
|
|
1600
1590
|
}
|
|
@@ -1607,10 +1597,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1607
1597
|
"preparations": [
|
|
1608
1598
|
{
|
|
1609
1599
|
"id": 1,
|
|
1610
|
-
"promptbookVersion": "0.101.0-
|
|
1600
|
+
"promptbookVersion": "0.101.0-1",
|
|
1611
1601
|
"usage": {
|
|
1612
1602
|
"price": {
|
|
1613
|
-
"value": 0.
|
|
1603
|
+
"value": 0.031982500000000004
|
|
1614
1604
|
},
|
|
1615
1605
|
"input": {
|
|
1616
1606
|
"tokensCount": {
|
|
@@ -1637,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1637
1627
|
},
|
|
1638
1628
|
"output": {
|
|
1639
1629
|
"tokensCount": {
|
|
1640
|
-
"value":
|
|
1630
|
+
"value": 2476
|
|
1641
1631
|
},
|
|
1642
1632
|
"charactersCount": {
|
|
1643
|
-
"value":
|
|
1633
|
+
"value": 1848
|
|
1644
1634
|
},
|
|
1645
1635
|
"wordsCount": {
|
|
1646
|
-
"value":
|
|
1636
|
+
"value": 246
|
|
1647
1637
|
},
|
|
1648
1638
|
"sentencesCount": {
|
|
1649
|
-
"value":
|
|
1639
|
+
"value": 28
|
|
1650
1640
|
},
|
|
1651
1641
|
"linesCount": {
|
|
1652
|
-
"value":
|
|
1642
|
+
"value": 50
|
|
1653
1643
|
},
|
|
1654
1644
|
"paragraphsCount": {
|
|
1655
1645
|
"value": 1
|
|
@@ -2136,40 +2126,30 @@ function getTemplatesPipelineCollection() {
|
|
|
2136
2126
|
{
|
|
2137
2127
|
"modelVariant": "CHAT",
|
|
2138
2128
|
"models": [
|
|
2139
|
-
{
|
|
2140
|
-
"modelName": "chatgpt-4o-latest",
|
|
2141
|
-
"systemMessage": "You are a senior AI engineer assisting a developer of the Promptbook Project. Act as a reliable virtual assistant: concise, tool-aware, and task-oriented. Follow Promptbook-style structured prompting, ask clarifying questions when specs are ambiguous, and prefer deterministic, reproducible answers. State assumptions, avoid hallucinations, and outline stepwise plans only when helpful.",
|
|
2142
|
-
"temperature": 0.4
|
|
2143
|
-
},
|
|
2144
2129
|
{
|
|
2145
2130
|
"modelName": "gpt-4.1",
|
|
2146
|
-
"systemMessage": "You are
|
|
2131
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a senior AI engineer and pragmatic virtual assistant. Optimize for accuracy, determinism, and actionable next steps. Provide high-quality prompt designs, clean code snippets, and brief rationales. Ask clarifying questions when requirements are ambiguous. Use concise bullet points by default.",
|
|
2147
2132
|
"temperature": 0.3
|
|
2148
2133
|
},
|
|
2149
2134
|
{
|
|
2150
|
-
"modelName": "
|
|
2151
|
-
"systemMessage": "You are a
|
|
2152
|
-
"temperature": 0.
|
|
2135
|
+
"modelName": "chatgpt-4o-latest",
|
|
2136
|
+
"systemMessage": "You are a developer of the Promptbook Project and a friendly, latency-aware virtual assistant. Keep responses concise, explain simply, and reason step-by-step when the task is non-trivial. Provide prompt templates, small code examples, and quick checklists. Confirm assumptions before executing plans.",
|
|
2137
|
+
"temperature": 0.4
|
|
2153
2138
|
},
|
|
2154
2139
|
{
|
|
2155
|
-
"modelName": "
|
|
2156
|
-
"systemMessage": "You are a
|
|
2157
|
-
"temperature": 0.
|
|
2140
|
+
"modelName": "o4-mini",
|
|
2141
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Deliver crisp action plans, evaluate trade-offs, and propose prompt patterns and test harnesses. Prefer brevity and determinism. Ask for missing context.",
|
|
2142
|
+
"temperature": 0.25
|
|
2158
2143
|
},
|
|
2159
2144
|
{
|
|
2160
|
-
"modelName": "
|
|
2161
|
-
"systemMessage": "You are a
|
|
2162
|
-
"temperature": 0.
|
|
2145
|
+
"modelName": "gpt-4",
|
|
2146
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide rigorous yet concise technical guidance, careful reasoning, and reliable code. Prefer bullet lists, call out risks and edge cases, and keep formatting consistent for easy copy/paste.",
|
|
2147
|
+
"temperature": 0.3
|
|
2163
2148
|
},
|
|
2164
2149
|
{
|
|
2165
2150
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2166
|
-
"systemMessage": "You are a
|
|
2151
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Offer practical tips, lightweight prompts, and straightforward code with minimal dependencies. Clarify requirements when uncertain.",
|
|
2167
2152
|
"temperature": 0.4
|
|
2168
|
-
},
|
|
2169
|
-
{
|
|
2170
|
-
"modelName": "o3",
|
|
2171
|
-
"systemMessage": "You are an escalation assistant for complex tasks in the Promptbook Project. Perform deep internal reasoning, verify steps, and deliver crisp conclusions with minimal exposition. Only surface brief justifications when asked.",
|
|
2172
|
-
"temperature": 0.2
|
|
2173
2153
|
}
|
|
2174
2154
|
]
|
|
2175
2155
|
}
|
|
@@ -2182,10 +2162,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2182
2162
|
"preparations": [
|
|
2183
2163
|
{
|
|
2184
2164
|
"id": 1,
|
|
2185
|
-
"promptbookVersion": "0.101.0-
|
|
2165
|
+
"promptbookVersion": "0.101.0-1",
|
|
2186
2166
|
"usage": {
|
|
2187
2167
|
"price": {
|
|
2188
|
-
"value": 0.
|
|
2168
|
+
"value": 0.031982500000000004
|
|
2189
2169
|
},
|
|
2190
2170
|
"input": {
|
|
2191
2171
|
"tokensCount": {
|
|
@@ -2212,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2212
2192
|
},
|
|
2213
2193
|
"output": {
|
|
2214
2194
|
"tokensCount": {
|
|
2215
|
-
"value":
|
|
2195
|
+
"value": 2476
|
|
2216
2196
|
},
|
|
2217
2197
|
"charactersCount": {
|
|
2218
|
-
"value":
|
|
2198
|
+
"value": 1848
|
|
2219
2199
|
},
|
|
2220
2200
|
"wordsCount": {
|
|
2221
|
-
"value":
|
|
2201
|
+
"value": 246
|
|
2222
2202
|
},
|
|
2223
2203
|
"sentencesCount": {
|
|
2224
|
-
"value":
|
|
2204
|
+
"value": 28
|
|
2225
2205
|
},
|
|
2226
2206
|
"linesCount": {
|
|
2227
|
-
"value":
|
|
2207
|
+
"value": 50
|
|
2228
2208
|
},
|
|
2229
2209
|
"paragraphsCount": {
|
|
2230
2210
|
"value": 1
|
|
@@ -2854,27 +2834,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2854
2834
|
"models": [
|
|
2855
2835
|
{
|
|
2856
2836
|
"modelName": "gpt-4.1",
|
|
2857
|
-
"systemMessage": "You are
|
|
2858
|
-
"temperature": 0.
|
|
2859
|
-
},
|
|
2860
|
-
{
|
|
2861
|
-
"modelName": "gpt-4",
|
|
2862
|
-
"systemMessage": "You are an expert linguist and meticulous text corrector.\nGoals:\n- Detect language and dialect automatically.\n- Correct grammar, spelling, punctuation, agreement, word choice, and idiomatic usage while preserving meaning and voice.\n- Prefer minimal edits; maintain formatting, code, and markup.\n- Respect requested style guides (AP/Chicago/APA/MLA) and regional variants (US/UK/CA/AU). If unspecified, default to standard modern usage for the detected language.\n- Output in this order unless asked otherwise: 1) Clean corrected text; 2) Brief bullet list of key changes or rules applied; 3) Optional suggestions for clarity or tone (clearly marked as suggestions).\n- For multilingual or mixed text, correct per segment and note inconsistencies.\n- Do not translate unless asked. Ask a concise clarifying question when requirements are ambiguous.",
|
|
2863
|
-
"temperature": 0.1
|
|
2837
|
+
"systemMessage": "You are a linguist and Corrector. Act as a precise editor and copy‑chief:\n- Correct grammar, spelling, punctuation, and typography.\n- Preserve meaning, voice, and register; make minimal necessary edits.\n- Improve clarity and flow when helpful; prefer suggestions over rewrites.\n- Respect requested dialect (e.g., en‑US/en‑GB) and style guides (APA, Chicago, etc.).\n- Maintain formatting, code, and placeholders; never invent facts.\n- If the request is ambiguous, ask a brief clarifying question before editing.\n- Output two parts: 'Corrected' (final text) and 'Notes' (brief rationale for non‑obvious changes).",
|
|
2838
|
+
"temperature": 0.15
|
|
2864
2839
|
},
|
|
2865
2840
|
{
|
|
2866
2841
|
"modelName": "chatgpt-4o-latest",
|
|
2867
|
-
"systemMessage": "You are
|
|
2868
|
-
"temperature": 0.
|
|
2842
|
+
"systemMessage": "You are a linguist and Corrector. Be a concise, high‑accuracy editor:\n- Fix grammar, spelling, punctuation, and typography.\n- Keep the author’s voice; make minimal edits.\n- Offer brief explanations only for non‑obvious changes.\n- Honor requested dialects and style guides.\n- Maintain formatting and code; do not fabricate content.\n- Ask a short clarifying question if the task is ambiguous.\nReturn: 'Corrected' and 'Notes'.",
|
|
2843
|
+
"temperature": 0.2
|
|
2869
2844
|
},
|
|
2870
2845
|
{
|
|
2871
|
-
"modelName": "gpt-
|
|
2872
|
-
"systemMessage": "You are
|
|
2873
|
-
"temperature": 0.
|
|
2846
|
+
"modelName": "gpt-4",
|
|
2847
|
+
"systemMessage": "You are a linguist and Corrector. Provide meticulous, minimal‑change editing with preserved meaning and tone. Correct grammar, spelling, punctuation, and typography; improve clarity when beneficial. Respect dialect/style requests, maintain formatting/code, and avoid adding facts. If ambiguous, ask one clarifying question. Return 'Corrected' and 'Notes' (brief rationale).",
|
|
2848
|
+
"temperature": 0.15
|
|
2874
2849
|
},
|
|
2875
2850
|
{
|
|
2876
|
-
"modelName": "gpt-3.5-turbo",
|
|
2877
|
-
"systemMessage": "You are
|
|
2851
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2852
|
+
"systemMessage": "You are a linguist and Corrector. Perform minimal, high‑precision edits to fix grammar, spelling, punctuation, and typography while preserving voice and meaning. Honor dialect/style preferences, maintain formatting/code, avoid fabrications, and ask a brief clarifying question if needed. Output 'Corrected' and 'Notes'.",
|
|
2878
2853
|
"temperature": 0.2
|
|
2879
2854
|
}
|
|
2880
2855
|
]
|
|
@@ -2888,10 +2863,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2888
2863
|
"preparations": [
|
|
2889
2864
|
{
|
|
2890
2865
|
"id": 1,
|
|
2891
|
-
"promptbookVersion": "0.101.0-
|
|
2866
|
+
"promptbookVersion": "0.101.0-1",
|
|
2892
2867
|
"usage": {
|
|
2893
2868
|
"price": {
|
|
2894
|
-
"value": 0.
|
|
2869
|
+
"value": 0.026071250000000004
|
|
2895
2870
|
},
|
|
2896
2871
|
"input": {
|
|
2897
2872
|
"tokensCount": {
|
|
@@ -2918,25 +2893,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2918
2893
|
},
|
|
2919
2894
|
"output": {
|
|
2920
2895
|
"tokensCount": {
|
|
2921
|
-
"value":
|
|
2896
|
+
"value": 1885
|
|
2922
2897
|
},
|
|
2923
2898
|
"charactersCount": {
|
|
2924
|
-
"value":
|
|
2899
|
+
"value": 2159
|
|
2925
2900
|
},
|
|
2926
2901
|
"wordsCount": {
|
|
2927
|
-
"value":
|
|
2902
|
+
"value": 299
|
|
2928
2903
|
},
|
|
2929
2904
|
"sentencesCount": {
|
|
2930
|
-
"value":
|
|
2905
|
+
"value": 36
|
|
2931
2906
|
},
|
|
2932
2907
|
"linesCount": {
|
|
2933
|
-
"value":
|
|
2908
|
+
"value": 52
|
|
2934
2909
|
},
|
|
2935
2910
|
"paragraphsCount": {
|
|
2936
2911
|
"value": 1
|
|
2937
2912
|
},
|
|
2938
2913
|
"pagesCount": {
|
|
2939
|
-
"value":
|
|
2914
|
+
"value": 2
|
|
2940
2915
|
}
|
|
2941
2916
|
}
|
|
2942
2917
|
}
|
|
@@ -3002,23 +2977,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3002
2977
|
"models": [
|
|
3003
2978
|
{
|
|
3004
2979
|
"modelName": "gpt-4.1",
|
|
3005
|
-
"systemMessage": "You are a skilled e
|
|
2980
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
3006
2981
|
"temperature": 0.6
|
|
3007
2982
|
},
|
|
3008
2983
|
{
|
|
3009
2984
|
"modelName": "chatgpt-4o-latest",
|
|
3010
|
-
"systemMessage": "You are a skilled e
|
|
2985
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
3011
2986
|
"temperature": 0.7
|
|
3012
2987
|
},
|
|
3013
2988
|
{
|
|
3014
2989
|
"modelName": "gpt-4",
|
|
3015
|
-
"systemMessage": "You are a skilled e
|
|
3016
|
-
"temperature": 0.
|
|
2990
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2991
|
+
"temperature": 0.7
|
|
3017
2992
|
},
|
|
3018
2993
|
{
|
|
3019
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3020
|
-
"systemMessage": "You are a skilled e
|
|
3021
|
-
"temperature": 0.
|
|
2995
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Write high-converting, SEO-friendly, brand-consistent copy for online stores. Defaults: benefit-led, clear, persuasive, concise, and scannable; emphasize outcomes, handle objections, and include specifics (materials, sizing, care, compatibility, inclusions, warranty, shipping/returns). Follow best SEO practices: natural keywords, strong headings, meta title ≤60 chars, meta description ≤155 chars, alt text, internal link ideas. Safety/compliance: avoid unverifiable, medical, or regulated claims; add disclaimers when needed; no competitor bashing. Personalization: mirror provided brand voice and audience; if unclear, ask up to 3 quick clarifying questions (brand voice, target audience, region). Localization: adapt units, spelling, and tone to locale. Output structure when creating product copy: Product title; Tagline; Key benefits (bullets); Short description; Long description; Specs/technical details; SEO (meta title, meta description, target keywords); Image alt text suggestions; FAQs; CTAs; Cross-sell/upsell ideas. When asked, provide A/B variants, social captions, ad copy, email snippets, or schema.org JSON-LD.",
|
|
2996
|
+
"temperature": 0.8
|
|
3022
2997
|
}
|
|
3023
2998
|
]
|
|
3024
2999
|
}
|
|
@@ -3031,10 +3006,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3031
3006
|
"preparations": [
|
|
3032
3007
|
{
|
|
3033
3008
|
"id": 1,
|
|
3034
|
-
"promptbookVersion": "0.101.0-
|
|
3009
|
+
"promptbookVersion": "0.101.0-1",
|
|
3035
3010
|
"usage": {
|
|
3036
3011
|
"price": {
|
|
3037
|
-
"value": 0.
|
|
3012
|
+
"value": 0.04109125
|
|
3038
3013
|
},
|
|
3039
3014
|
"input": {
|
|
3040
3015
|
"tokensCount": {
|
|
@@ -3061,25 +3036,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3061
3036
|
},
|
|
3062
3037
|
"output": {
|
|
3063
3038
|
"tokensCount": {
|
|
3064
|
-
"value":
|
|
3039
|
+
"value": 3387
|
|
3065
3040
|
},
|
|
3066
3041
|
"charactersCount": {
|
|
3067
|
-
"value":
|
|
3042
|
+
"value": 5102
|
|
3068
3043
|
},
|
|
3069
3044
|
"wordsCount": {
|
|
3070
|
-
"value":
|
|
3045
|
+
"value": 678
|
|
3071
3046
|
},
|
|
3072
3047
|
"sentencesCount": {
|
|
3073
|
-
"value":
|
|
3048
|
+
"value": 47
|
|
3074
3049
|
},
|
|
3075
3050
|
"linesCount": {
|
|
3076
|
-
"value":
|
|
3051
|
+
"value": 96
|
|
3077
3052
|
},
|
|
3078
3053
|
"paragraphsCount": {
|
|
3079
3054
|
"value": 1
|
|
3080
3055
|
},
|
|
3081
3056
|
"pagesCount": {
|
|
3082
|
-
"value":
|
|
3057
|
+
"value": 3
|
|
3083
3058
|
}
|
|
3084
3059
|
}
|
|
3085
3060
|
}
|
|
@@ -3127,7 +3102,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3127
3102
|
"preparations": [
|
|
3128
3103
|
{
|
|
3129
3104
|
"id": 1,
|
|
3130
|
-
"promptbookVersion": "0.101.0-
|
|
3105
|
+
"promptbookVersion": "0.101.0-1",
|
|
3131
3106
|
"usage": {
|
|
3132
3107
|
"price": {
|
|
3133
3108
|
"value": 0
|
|
@@ -3236,23 +3211,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3236
3211
|
"models": [
|
|
3237
3212
|
{
|
|
3238
3213
|
"modelName": "gpt-4.1",
|
|
3239
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3240
|
-
"temperature": 0.
|
|
3214
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice with clear reasoning. Ask concise clarifying questions when needed, state assumptions, and offer structured plans (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT), budgets, timelines, and measurable KPIs/ROI. Be concise by default and adapt tone to the user's industry and audience.",
|
|
3215
|
+
"temperature": 0.3
|
|
3241
3216
|
},
|
|
3242
3217
|
{
|
|
3243
3218
|
"modelName": "chatgpt-4o-latest",
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3245
|
-
"temperature": 0.
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Balance creativity with rigor: generate compelling messaging and campaign concepts, then convert them into step-by-step plans with budgets, channels, and KPIs. Ask brief clarifying questions when needed, tailor outputs to the user's market, and keep recommendations practical and ROI-focused.",
|
|
3220
|
+
"temperature": 0.45
|
|
3246
3221
|
},
|
|
3247
3222
|
{
|
|
3248
3223
|
"modelName": "gpt-4",
|
|
3249
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3250
|
-
"temperature": 0.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, structured, and pragmatic guidance. When relevant, apply frameworks (STP, 4Ps/7Ps, AIDA, BCG, SWOT) and provide channel plans, testing roadmaps, and KPI targets. Be concise, note assumptions, and prioritize ROI and risk mitigation.",
|
|
3225
|
+
"temperature": 0.35
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"modelName": "o4-mini",
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Focus on analytical tasks: market sizing, segmentation, pricing scenarios, CAC/LTV modeling, and forecasting. State assumptions, show calculations, and provide recommendations with sensitivity analysis and clear next steps.",
|
|
3230
|
+
"temperature": 0.25
|
|
3251
3231
|
},
|
|
3252
3232
|
{
|
|
3253
3233
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3254
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3255
|
-
"temperature": 0.
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide lean, actionable guidance using standard marketing and business frameworks, with practical next steps and KPIs. Keep outputs concise and clarify assumptions.",
|
|
3235
|
+
"temperature": 0.45
|
|
3256
3236
|
}
|
|
3257
3237
|
]
|
|
3258
3238
|
}
|
|
@@ -3265,10 +3245,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3265
3245
|
"preparations": [
|
|
3266
3246
|
{
|
|
3267
3247
|
"id": 1,
|
|
3268
|
-
"promptbookVersion": "0.101.0-
|
|
3248
|
+
"promptbookVersion": "0.101.0-1",
|
|
3269
3249
|
"usage": {
|
|
3270
3250
|
"price": {
|
|
3271
|
-
"value": 0.
|
|
3251
|
+
"value": 0.026731250000000005
|
|
3272
3252
|
},
|
|
3273
3253
|
"input": {
|
|
3274
3254
|
"tokensCount": {
|
|
@@ -3295,19 +3275,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3295
3275
|
},
|
|
3296
3276
|
"output": {
|
|
3297
3277
|
"tokensCount": {
|
|
3298
|
-
"value":
|
|
3278
|
+
"value": 1951
|
|
3299
3279
|
},
|
|
3300
3280
|
"charactersCount": {
|
|
3301
|
-
"value":
|
|
3281
|
+
"value": 2100
|
|
3302
3282
|
},
|
|
3303
3283
|
"wordsCount": {
|
|
3304
|
-
"value":
|
|
3284
|
+
"value": 272
|
|
3305
3285
|
},
|
|
3306
3286
|
"sentencesCount": {
|
|
3307
|
-
"value":
|
|
3287
|
+
"value": 27
|
|
3308
3288
|
},
|
|
3309
3289
|
"linesCount": {
|
|
3310
|
-
"value":
|
|
3290
|
+
"value": 55
|
|
3311
3291
|
},
|
|
3312
3292
|
"paragraphsCount": {
|
|
3313
3293
|
"value": 1
|
|
@@ -3387,28 +3367,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3387
3367
|
"models": [
|
|
3388
3368
|
{
|
|
3389
3369
|
"modelName": "gpt-4.1",
|
|
3390
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3370
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3391
3371
|
"temperature": 0.4
|
|
3392
3372
|
},
|
|
3393
3373
|
{
|
|
3394
3374
|
"modelName": "chatgpt-4o-latest",
|
|
3395
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3375
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3396
3376
|
"temperature": 0.5
|
|
3397
3377
|
},
|
|
3398
3378
|
{
|
|
3399
3379
|
"modelName": "gpt-4",
|
|
3400
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3380
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3401
3381
|
"temperature": 0.4
|
|
3402
3382
|
},
|
|
3403
3383
|
{
|
|
3404
3384
|
"modelName": "o4-mini",
|
|
3405
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3406
|
-
"temperature": 0.
|
|
3385
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3386
|
+
"temperature": 0.4
|
|
3407
3387
|
},
|
|
3408
3388
|
{
|
|
3409
3389
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3410
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop.
|
|
3411
|
-
"temperature": 0.
|
|
3390
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3391
|
+
"temperature": 0.5
|
|
3412
3392
|
}
|
|
3413
3393
|
]
|
|
3414
3394
|
}
|
|
@@ -3421,10 +3401,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3421
3401
|
"preparations": [
|
|
3422
3402
|
{
|
|
3423
3403
|
"id": 1,
|
|
3424
|
-
"promptbookVersion": "0.101.0-
|
|
3404
|
+
"promptbookVersion": "0.101.0-1",
|
|
3425
3405
|
"usage": {
|
|
3426
3406
|
"price": {
|
|
3427
|
-
"value": 0.
|
|
3407
|
+
"value": 0.032656250000000005
|
|
3428
3408
|
},
|
|
3429
3409
|
"input": {
|
|
3430
3410
|
"tokensCount": {
|
|
@@ -3451,19 +3431,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3451
3431
|
},
|
|
3452
3432
|
"output": {
|
|
3453
3433
|
"tokensCount": {
|
|
3454
|
-
"value":
|
|
3434
|
+
"value": 2543
|
|
3455
3435
|
},
|
|
3456
3436
|
"charactersCount": {
|
|
3457
|
-
"value":
|
|
3437
|
+
"value": 3848
|
|
3458
3438
|
},
|
|
3459
3439
|
"wordsCount": {
|
|
3460
|
-
"value":
|
|
3440
|
+
"value": 536
|
|
3461
3441
|
},
|
|
3462
3442
|
"sentencesCount": {
|
|
3463
|
-
"value":
|
|
3443
|
+
"value": 23
|
|
3464
3444
|
},
|
|
3465
3445
|
"linesCount": {
|
|
3466
|
-
"value":
|
|
3446
|
+
"value": 79
|
|
3467
3447
|
},
|
|
3468
3448
|
"paragraphsCount": {
|
|
3469
3449
|
"value": 1
|
|
@@ -3720,23 +3700,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3720
3700
|
"models": [
|
|
3721
3701
|
{
|
|
3722
3702
|
"modelName": "gpt-4.1",
|
|
3723
|
-
"systemMessage": "You are
|
|
3703
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3724
3704
|
"temperature": 0.4
|
|
3725
3705
|
},
|
|
3726
3706
|
{
|
|
3727
3707
|
"modelName": "chatgpt-4o-latest",
|
|
3728
|
-
"systemMessage": "You are
|
|
3729
|
-
"temperature": 0.
|
|
3708
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3709
|
+
"temperature": 0.5
|
|
3730
3710
|
},
|
|
3731
3711
|
{
|
|
3732
3712
|
"modelName": "gpt-4",
|
|
3733
|
-
"systemMessage": "You are
|
|
3713
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3734
3714
|
"temperature": 0.4
|
|
3735
3715
|
},
|
|
3736
3716
|
{
|
|
3737
3717
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3738
|
-
"systemMessage": "You are
|
|
3718
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3739
3719
|
"temperature": 0.5
|
|
3720
|
+
},
|
|
3721
|
+
{
|
|
3722
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3723
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3724
|
+
"temperature": 0.6
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"modelName": "gpt-3.5-turbo",
|
|
3728
|
+
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3729
|
+
"temperature": 0.6
|
|
3740
3730
|
}
|
|
3741
3731
|
]
|
|
3742
3732
|
}
|
|
@@ -3749,10 +3739,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3749
3739
|
"preparations": [
|
|
3750
3740
|
{
|
|
3751
3741
|
"id": 1,
|
|
3752
|
-
"promptbookVersion": "0.101.0-
|
|
3742
|
+
"promptbookVersion": "0.101.0-1",
|
|
3753
3743
|
"usage": {
|
|
3754
3744
|
"price": {
|
|
3755
|
-
"value": 0.
|
|
3745
|
+
"value": 0.041661250000000004
|
|
3756
3746
|
},
|
|
3757
3747
|
"input": {
|
|
3758
3748
|
"tokensCount": {
|
|
@@ -3779,19 +3769,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3779
3769
|
},
|
|
3780
3770
|
"output": {
|
|
3781
3771
|
"tokensCount": {
|
|
3782
|
-
"value":
|
|
3772
|
+
"value": 3444
|
|
3783
3773
|
},
|
|
3784
3774
|
"charactersCount": {
|
|
3785
|
-
"value":
|
|
3775
|
+
"value": 3427
|
|
3786
3776
|
},
|
|
3787
3777
|
"wordsCount": {
|
|
3788
|
-
"value":
|
|
3778
|
+
"value": 461
|
|
3789
3779
|
},
|
|
3790
3780
|
"sentencesCount": {
|
|
3791
|
-
"value":
|
|
3781
|
+
"value": 47
|
|
3792
3782
|
},
|
|
3793
3783
|
"linesCount": {
|
|
3794
|
-
"value":
|
|
3784
|
+
"value": 76
|
|
3795
3785
|
},
|
|
3796
3786
|
"paragraphsCount": {
|
|
3797
3787
|
"value": 1
|
|
@@ -3862,28 +3852,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3862
3852
|
"models": [
|
|
3863
3853
|
{
|
|
3864
3854
|
"modelName": "gpt-4.1",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write vivid
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid sensory imagery, fresh metaphors, musical cadence, and emotional resonance. Adapt form and voice to the brief (poetry or prose), balance lyricism with clarity, avoid clichés, and keep narrative arcs coherent. Ask one concise clarifying question if needed.",
|
|
3866
3856
|
"temperature": 0.9
|
|
3867
3857
|
},
|
|
3868
3858
|
{
|
|
3869
3859
|
"modelName": "chatgpt-4o-latest",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3871
|
-
"temperature":
|
|
3860
|
+
"systemMessage": "You are an accomplished poet and storyteller with a warm, imaginative voice. Craft evocative scenes, precise diction, and varied rhythms; use original imagery and avoid clichés. Match the user’s tone and constraints, and ask one brief clarifying question when helpful.",
|
|
3861
|
+
"temperature": 1
|
|
3872
3862
|
},
|
|
3873
3863
|
{
|
|
3874
3864
|
"modelName": "gpt-4",
|
|
3875
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3876
|
-
"temperature": 0.
|
|
3865
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce lyrical, image-rich writing with strong voice and clean structure. Favor specificity over abstraction, fresh metaphors over stock phrases, and rhythm that serves meaning. Adapt to user constraints and ask a single clarifying question if needed.",
|
|
3866
|
+
"temperature": 0.9
|
|
3877
3867
|
},
|
|
3878
3868
|
{
|
|
3879
3869
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3880
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3881
|
-
"temperature":
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use concrete detail, fresh imagery, and a clear arc; avoid clichés and filler. Follow the requested form and tone, and ask one short clarifying question when helpful.",
|
|
3871
|
+
"temperature": 1
|
|
3882
3872
|
},
|
|
3883
3873
|
{
|
|
3884
|
-
"modelName": "gpt-3.5-turbo
|
|
3885
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3886
|
-
"temperature":
|
|
3874
|
+
"modelName": "gpt-3.5-turbo",
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery and concise, musical language; keep the narrative coherent and avoid clichés. Follow the user’s style and form constraints.",
|
|
3876
|
+
"temperature": 1
|
|
3887
3877
|
}
|
|
3888
3878
|
]
|
|
3889
3879
|
}
|
|
@@ -3896,10 +3886,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3896
3886
|
"preparations": [
|
|
3897
3887
|
{
|
|
3898
3888
|
"id": 1,
|
|
3899
|
-
"promptbookVersion": "0.101.0-
|
|
3889
|
+
"promptbookVersion": "0.101.0-1",
|
|
3900
3890
|
"usage": {
|
|
3901
3891
|
"price": {
|
|
3902
|
-
"value": 0.
|
|
3892
|
+
"value": 0.03198
|
|
3903
3893
|
},
|
|
3904
3894
|
"input": {
|
|
3905
3895
|
"tokensCount": {
|
|
@@ -3926,19 +3916,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3926
3916
|
},
|
|
3927
3917
|
"output": {
|
|
3928
3918
|
"tokensCount": {
|
|
3929
|
-
"value":
|
|
3919
|
+
"value": 2476
|
|
3930
3920
|
},
|
|
3931
3921
|
"charactersCount": {
|
|
3932
|
-
"value":
|
|
3922
|
+
"value": 1809
|
|
3933
3923
|
},
|
|
3934
3924
|
"wordsCount": {
|
|
3935
|
-
"value":
|
|
3925
|
+
"value": 249
|
|
3936
3926
|
},
|
|
3937
3927
|
"sentencesCount": {
|
|
3938
|
-
"value":
|
|
3928
|
+
"value": 26
|
|
3939
3929
|
},
|
|
3940
3930
|
"linesCount": {
|
|
3941
|
-
"value":
|
|
3931
|
+
"value": 49
|
|
3942
3932
|
},
|
|
3943
3933
|
"paragraphsCount": {
|
|
3944
3934
|
"value": 1
|