@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/umd/index.umd.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* @generated
|
|
23
23
|
* @see https://github.com/webgptorg/promptbook
|
|
24
24
|
*/
|
|
25
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-17';
|
|
26
26
|
/**
|
|
27
27
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
28
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
return Color.fromString(CSS_COLORS[color]);
|
|
423
423
|
// -----
|
|
424
424
|
}
|
|
425
|
-
else if (
|
|
425
|
+
else if (Color.isHexColorString(color)) {
|
|
426
426
|
return Color.fromHex(color);
|
|
427
427
|
// -----
|
|
428
428
|
}
|
|
@@ -681,6 +681,15 @@
|
|
|
681
681
|
}
|
|
682
682
|
return true;
|
|
683
683
|
}
|
|
684
|
+
/**
|
|
685
|
+
* Checks if the given value is a valid hex color string
|
|
686
|
+
*
|
|
687
|
+
* @param value - value to check
|
|
688
|
+
* @returns true if the value is a valid hex color string (e.g., `#009edd`, `#fff`, etc.)
|
|
689
|
+
*/
|
|
690
|
+
static isHexColorString(value) {
|
|
691
|
+
return typeof value === 'string' && /^#(?:[0-9a-fA-F]{3}){1,2}$/.test(value);
|
|
692
|
+
}
|
|
684
693
|
/**
|
|
685
694
|
* Creates new Color object
|
|
686
695
|
*
|
|
@@ -2445,33 +2454,33 @@
|
|
|
2445
2454
|
"models": [
|
|
2446
2455
|
{
|
|
2447
2456
|
"modelName": "gpt-4.1",
|
|
2448
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2449
|
-
"temperature": 0.
|
|
2457
|
+
"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.",
|
|
2458
|
+
"temperature": 0.25
|
|
2450
2459
|
},
|
|
2451
2460
|
{
|
|
2452
2461
|
"modelName": "chatgpt-4o-latest",
|
|
2453
|
-
"systemMessage": "You are a developer of the Promptbook Project. Be
|
|
2454
|
-
"temperature": 0.
|
|
2462
|
+
"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.",
|
|
2463
|
+
"temperature": 0.35
|
|
2455
2464
|
},
|
|
2456
2465
|
{
|
|
2457
|
-
"modelName": "
|
|
2458
|
-
"systemMessage": "You are
|
|
2466
|
+
"modelName": "o3",
|
|
2467
|
+
"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.",
|
|
2459
2468
|
"temperature": 0.2
|
|
2460
2469
|
},
|
|
2461
2470
|
{
|
|
2462
|
-
"modelName": "
|
|
2463
|
-
"systemMessage": "You are a
|
|
2464
|
-
"temperature": 0.
|
|
2471
|
+
"modelName": "o4-mini",
|
|
2472
|
+
"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.",
|
|
2473
|
+
"temperature": 0.25
|
|
2465
2474
|
},
|
|
2466
2475
|
{
|
|
2467
|
-
"modelName": "
|
|
2468
|
-
"systemMessage": "You are a
|
|
2469
|
-
"temperature": 0.
|
|
2476
|
+
"modelName": "gpt-4",
|
|
2477
|
+
"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.",
|
|
2478
|
+
"temperature": 0.3
|
|
2470
2479
|
},
|
|
2471
2480
|
{
|
|
2472
2481
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2473
|
-
"systemMessage": "You are a
|
|
2474
|
-
"temperature": 0.
|
|
2482
|
+
"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.",
|
|
2483
|
+
"temperature": 0.3
|
|
2475
2484
|
}
|
|
2476
2485
|
]
|
|
2477
2486
|
}
|
|
@@ -2484,10 +2493,10 @@
|
|
|
2484
2493
|
"preparations": [
|
|
2485
2494
|
{
|
|
2486
2495
|
"id": 1,
|
|
2487
|
-
"promptbookVersion": "0.102.0-
|
|
2496
|
+
"promptbookVersion": "0.102.0-16",
|
|
2488
2497
|
"usage": {
|
|
2489
2498
|
"price": {
|
|
2490
|
-
"value": 0.
|
|
2499
|
+
"value": 0.0433825
|
|
2491
2500
|
},
|
|
2492
2501
|
"input": {
|
|
2493
2502
|
"tokensCount": {
|
|
@@ -2514,19 +2523,19 @@
|
|
|
2514
2523
|
},
|
|
2515
2524
|
"output": {
|
|
2516
2525
|
"tokensCount": {
|
|
2517
|
-
"value":
|
|
2526
|
+
"value": 3569
|
|
2518
2527
|
},
|
|
2519
2528
|
"charactersCount": {
|
|
2520
|
-
"value":
|
|
2529
|
+
"value": 2555
|
|
2521
2530
|
},
|
|
2522
2531
|
"wordsCount": {
|
|
2523
|
-
"value":
|
|
2532
|
+
"value": 333
|
|
2524
2533
|
},
|
|
2525
2534
|
"sentencesCount": {
|
|
2526
2535
|
"value": 33
|
|
2527
2536
|
},
|
|
2528
2537
|
"linesCount": {
|
|
2529
|
-
"value":
|
|
2538
|
+
"value": 64
|
|
2530
2539
|
},
|
|
2531
2540
|
"paragraphsCount": {
|
|
2532
2541
|
"value": 1
|
|
@@ -2982,33 +2991,33 @@
|
|
|
2982
2991
|
"models": [
|
|
2983
2992
|
{
|
|
2984
2993
|
"modelName": "gpt-4.1",
|
|
2985
|
-
"systemMessage": "You are a developer of the Promptbook Project.
|
|
2986
|
-
"temperature": 0.
|
|
2994
|
+
"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.",
|
|
2995
|
+
"temperature": 0.25
|
|
2987
2996
|
},
|
|
2988
2997
|
{
|
|
2989
2998
|
"modelName": "chatgpt-4o-latest",
|
|
2990
|
-
"systemMessage": "You are a developer of the Promptbook Project. Be
|
|
2991
|
-
"temperature": 0.
|
|
2999
|
+
"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.",
|
|
3000
|
+
"temperature": 0.35
|
|
2992
3001
|
},
|
|
2993
3002
|
{
|
|
2994
|
-
"modelName": "
|
|
2995
|
-
"systemMessage": "You are
|
|
3003
|
+
"modelName": "o3",
|
|
3004
|
+
"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.",
|
|
2996
3005
|
"temperature": 0.2
|
|
2997
3006
|
},
|
|
2998
3007
|
{
|
|
2999
|
-
"modelName": "
|
|
3000
|
-
"systemMessage": "You are a
|
|
3001
|
-
"temperature": 0.
|
|
3008
|
+
"modelName": "o4-mini",
|
|
3009
|
+
"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.",
|
|
3010
|
+
"temperature": 0.25
|
|
3002
3011
|
},
|
|
3003
3012
|
{
|
|
3004
|
-
"modelName": "
|
|
3005
|
-
"systemMessage": "You are a
|
|
3006
|
-
"temperature": 0.
|
|
3013
|
+
"modelName": "gpt-4",
|
|
3014
|
+
"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.",
|
|
3015
|
+
"temperature": 0.3
|
|
3007
3016
|
},
|
|
3008
3017
|
{
|
|
3009
3018
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3010
|
-
"systemMessage": "You are a
|
|
3011
|
-
"temperature": 0.
|
|
3019
|
+
"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.",
|
|
3020
|
+
"temperature": 0.3
|
|
3012
3021
|
}
|
|
3013
3022
|
]
|
|
3014
3023
|
}
|
|
@@ -3021,10 +3030,10 @@
|
|
|
3021
3030
|
"preparations": [
|
|
3022
3031
|
{
|
|
3023
3032
|
"id": 1,
|
|
3024
|
-
"promptbookVersion": "0.102.0-
|
|
3033
|
+
"promptbookVersion": "0.102.0-16",
|
|
3025
3034
|
"usage": {
|
|
3026
3035
|
"price": {
|
|
3027
|
-
"value": 0.
|
|
3036
|
+
"value": 0.0433825
|
|
3028
3037
|
},
|
|
3029
3038
|
"input": {
|
|
3030
3039
|
"tokensCount": {
|
|
@@ -3051,19 +3060,19 @@
|
|
|
3051
3060
|
},
|
|
3052
3061
|
"output": {
|
|
3053
3062
|
"tokensCount": {
|
|
3054
|
-
"value":
|
|
3063
|
+
"value": 3569
|
|
3055
3064
|
},
|
|
3056
3065
|
"charactersCount": {
|
|
3057
|
-
"value":
|
|
3066
|
+
"value": 2555
|
|
3058
3067
|
},
|
|
3059
3068
|
"wordsCount": {
|
|
3060
|
-
"value":
|
|
3069
|
+
"value": 333
|
|
3061
3070
|
},
|
|
3062
3071
|
"sentencesCount": {
|
|
3063
3072
|
"value": 33
|
|
3064
3073
|
},
|
|
3065
3074
|
"linesCount": {
|
|
3066
|
-
"value":
|
|
3075
|
+
"value": 64
|
|
3067
3076
|
},
|
|
3068
3077
|
"paragraphsCount": {
|
|
3069
3078
|
"value": 1
|
|
@@ -3656,27 +3665,29 @@
|
|
|
3656
3665
|
"description": "a linguist and Corrector",
|
|
3657
3666
|
"modelsRequirements": [
|
|
3658
3667
|
{
|
|
3659
|
-
"
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3668
|
+
"modelVariant": "CHAT",
|
|
3669
|
+
"models": [
|
|
3670
|
+
{
|
|
3671
|
+
"modelName": "gpt-4.1",
|
|
3672
|
+
"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.",
|
|
3673
|
+
"temperature": 0.2
|
|
3674
|
+
},
|
|
3675
|
+
{
|
|
3676
|
+
"modelName": "chatgpt-4o-latest",
|
|
3677
|
+
"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.",
|
|
3678
|
+
"temperature": 0.3
|
|
3679
|
+
},
|
|
3680
|
+
{
|
|
3681
|
+
"modelName": "gpt-4",
|
|
3682
|
+
"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.",
|
|
3683
|
+
"temperature": 0.2
|
|
3684
|
+
},
|
|
3685
|
+
{
|
|
3686
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3687
|
+
"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.",
|
|
3688
|
+
"temperature": 0.15
|
|
3689
|
+
}
|
|
3690
|
+
]
|
|
3680
3691
|
}
|
|
3681
3692
|
],
|
|
3682
3693
|
"preparationIds": [
|
|
@@ -3687,10 +3698,10 @@
|
|
|
3687
3698
|
"preparations": [
|
|
3688
3699
|
{
|
|
3689
3700
|
"id": 1,
|
|
3690
|
-
"promptbookVersion": "0.102.0-
|
|
3701
|
+
"promptbookVersion": "0.102.0-16",
|
|
3691
3702
|
"usage": {
|
|
3692
3703
|
"price": {
|
|
3693
|
-
"value": 0.
|
|
3704
|
+
"value": 0.03936125000000001
|
|
3694
3705
|
},
|
|
3695
3706
|
"input": {
|
|
3696
3707
|
"tokensCount": {
|
|
@@ -3717,19 +3728,19 @@
|
|
|
3717
3728
|
},
|
|
3718
3729
|
"output": {
|
|
3719
3730
|
"tokensCount": {
|
|
3720
|
-
"value":
|
|
3731
|
+
"value": 3167
|
|
3721
3732
|
},
|
|
3722
3733
|
"charactersCount": {
|
|
3723
|
-
"value":
|
|
3734
|
+
"value": 3783
|
|
3724
3735
|
},
|
|
3725
3736
|
"wordsCount": {
|
|
3726
|
-
"value":
|
|
3737
|
+
"value": 538
|
|
3727
3738
|
},
|
|
3728
3739
|
"sentencesCount": {
|
|
3729
|
-
"value":
|
|
3740
|
+
"value": 47
|
|
3730
3741
|
},
|
|
3731
3742
|
"linesCount": {
|
|
3732
|
-
"value":
|
|
3743
|
+
"value": 76
|
|
3733
3744
|
},
|
|
3734
3745
|
"paragraphsCount": {
|
|
3735
3746
|
"value": 1
|
|
@@ -3801,23 +3812,23 @@
|
|
|
3801
3812
|
"models": [
|
|
3802
3813
|
{
|
|
3803
3814
|
"modelName": "gpt-4.1",
|
|
3804
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3815
|
+
"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.",
|
|
3805
3816
|
"temperature": 0.7
|
|
3806
3817
|
},
|
|
3807
3818
|
{
|
|
3808
3819
|
"modelName": "chatgpt-4o-latest",
|
|
3809
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3820
|
+
"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.",
|
|
3810
3821
|
"temperature": 0.7
|
|
3811
3822
|
},
|
|
3812
3823
|
{
|
|
3813
3824
|
"modelName": "gpt-4",
|
|
3814
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3815
|
-
"temperature": 0.
|
|
3825
|
+
"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.",
|
|
3826
|
+
"temperature": 0.7
|
|
3816
3827
|
},
|
|
3817
3828
|
{
|
|
3818
|
-
"modelName": "gpt-3.5-turbo-
|
|
3819
|
-
"systemMessage": "You are a skilled e-commerce copywriter for an online shop.
|
|
3820
|
-
"temperature": 0.
|
|
3829
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3830
|
+
"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.",
|
|
3831
|
+
"temperature": 0.75
|
|
3821
3832
|
}
|
|
3822
3833
|
]
|
|
3823
3834
|
}
|
|
@@ -3830,10 +3841,10 @@
|
|
|
3830
3841
|
"preparations": [
|
|
3831
3842
|
{
|
|
3832
3843
|
"id": 1,
|
|
3833
|
-
"promptbookVersion": "0.102.0-
|
|
3844
|
+
"promptbookVersion": "0.102.0-16",
|
|
3834
3845
|
"usage": {
|
|
3835
3846
|
"price": {
|
|
3836
|
-
"value": 0.
|
|
3847
|
+
"value": 0.037921250000000004
|
|
3837
3848
|
},
|
|
3838
3849
|
"input": {
|
|
3839
3850
|
"tokensCount": {
|
|
@@ -3860,19 +3871,19 @@
|
|
|
3860
3871
|
},
|
|
3861
3872
|
"output": {
|
|
3862
3873
|
"tokensCount": {
|
|
3863
|
-
"value":
|
|
3874
|
+
"value": 3023
|
|
3864
3875
|
},
|
|
3865
3876
|
"charactersCount": {
|
|
3866
|
-
"value":
|
|
3877
|
+
"value": 3296
|
|
3867
3878
|
},
|
|
3868
3879
|
"wordsCount": {
|
|
3869
|
-
"value":
|
|
3880
|
+
"value": 474
|
|
3870
3881
|
},
|
|
3871
3882
|
"sentencesCount": {
|
|
3872
|
-
"value":
|
|
3883
|
+
"value": 39
|
|
3873
3884
|
},
|
|
3874
3885
|
"linesCount": {
|
|
3875
|
-
"value":
|
|
3886
|
+
"value": 68
|
|
3876
3887
|
},
|
|
3877
3888
|
"paragraphsCount": {
|
|
3878
3889
|
"value": 1
|
|
@@ -3926,7 +3937,7 @@
|
|
|
3926
3937
|
"preparations": [
|
|
3927
3938
|
{
|
|
3928
3939
|
"id": 1,
|
|
3929
|
-
"promptbookVersion": "0.102.0-
|
|
3940
|
+
"promptbookVersion": "0.102.0-16",
|
|
3930
3941
|
"usage": {
|
|
3931
3942
|
"price": {
|
|
3932
3943
|
"value": 0
|
|
@@ -4035,27 +4046,27 @@
|
|
|
4035
4046
|
"models": [
|
|
4036
4047
|
{
|
|
4037
4048
|
"modelName": "gpt-4.1",
|
|
4038
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
4039
|
-
"temperature": 0.
|
|
4049
|
+
"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.",
|
|
4050
|
+
"temperature": 0.3
|
|
4040
4051
|
},
|
|
4041
4052
|
{
|
|
4042
4053
|
"modelName": "chatgpt-4o-latest",
|
|
4043
|
-
"systemMessage": "You are
|
|
4044
|
-
"temperature": 0.
|
|
4054
|
+
"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.",
|
|
4055
|
+
"temperature": 0.4
|
|
4045
4056
|
},
|
|
4046
4057
|
{
|
|
4047
4058
|
"modelName": "gpt-4",
|
|
4048
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
4049
|
-
"temperature": 0.
|
|
4059
|
+
"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.",
|
|
4060
|
+
"temperature": 0.3
|
|
4050
4061
|
},
|
|
4051
4062
|
{
|
|
4052
4063
|
"modelName": "o4-mini",
|
|
4053
|
-
"systemMessage": "You are an experienced marketing
|
|
4054
|
-
"temperature": 0.
|
|
4064
|
+
"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.",
|
|
4065
|
+
"temperature": 0.25
|
|
4055
4066
|
},
|
|
4056
4067
|
{
|
|
4057
4068
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4058
|
-
"systemMessage": "You are
|
|
4069
|
+
"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.",
|
|
4059
4070
|
"temperature": 0.5
|
|
4060
4071
|
}
|
|
4061
4072
|
]
|
|
@@ -4069,10 +4080,10 @@
|
|
|
4069
4080
|
"preparations": [
|
|
4070
4081
|
{
|
|
4071
4082
|
"id": 1,
|
|
4072
|
-
"promptbookVersion": "0.102.0-
|
|
4083
|
+
"promptbookVersion": "0.102.0-16",
|
|
4073
4084
|
"usage": {
|
|
4074
4085
|
"price": {
|
|
4075
|
-
"value": 0.
|
|
4086
|
+
"value": 0.031221250000000002
|
|
4076
4087
|
},
|
|
4077
4088
|
"input": {
|
|
4078
4089
|
"tokensCount": {
|
|
@@ -4099,19 +4110,19 @@
|
|
|
4099
4110
|
},
|
|
4100
4111
|
"output": {
|
|
4101
4112
|
"tokensCount": {
|
|
4102
|
-
"value":
|
|
4113
|
+
"value": 2353
|
|
4103
4114
|
},
|
|
4104
4115
|
"charactersCount": {
|
|
4105
|
-
"value":
|
|
4116
|
+
"value": 2994
|
|
4106
4117
|
},
|
|
4107
4118
|
"wordsCount": {
|
|
4108
|
-
"value":
|
|
4119
|
+
"value": 386
|
|
4109
4120
|
},
|
|
4110
4121
|
"sentencesCount": {
|
|
4111
|
-
"value":
|
|
4122
|
+
"value": 33
|
|
4112
4123
|
},
|
|
4113
4124
|
"linesCount": {
|
|
4114
|
-
"value":
|
|
4125
|
+
"value": 69
|
|
4115
4126
|
},
|
|
4116
4127
|
"paragraphsCount": {
|
|
4117
4128
|
"value": 1
|
|
@@ -4191,23 +4202,28 @@
|
|
|
4191
4202
|
"models": [
|
|
4192
4203
|
{
|
|
4193
4204
|
"modelName": "gpt-4.1",
|
|
4194
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
4195
|
-
"temperature": 0.
|
|
4205
|
+
"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.",
|
|
4206
|
+
"temperature": 0.5
|
|
4196
4207
|
},
|
|
4197
4208
|
{
|
|
4198
4209
|
"modelName": "chatgpt-4o-latest",
|
|
4199
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
4210
|
+
"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.",
|
|
4200
4211
|
"temperature": 0.6
|
|
4201
4212
|
},
|
|
4202
4213
|
{
|
|
4203
4214
|
"modelName": "gpt-4",
|
|
4204
|
-
"systemMessage": "You are a customer
|
|
4205
|
-
"temperature": 0.
|
|
4215
|
+
"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.",
|
|
4216
|
+
"temperature": 0.5
|
|
4217
|
+
},
|
|
4218
|
+
{
|
|
4219
|
+
"modelName": "o4-mini",
|
|
4220
|
+
"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.",
|
|
4221
|
+
"temperature": 0.4
|
|
4206
4222
|
},
|
|
4207
4223
|
{
|
|
4208
4224
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4209
|
-
"systemMessage": "You are a customer service representative and
|
|
4210
|
-
"temperature": 0.
|
|
4225
|
+
"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.",
|
|
4226
|
+
"temperature": 0.6
|
|
4211
4227
|
}
|
|
4212
4228
|
]
|
|
4213
4229
|
}
|
|
@@ -4220,10 +4236,10 @@
|
|
|
4220
4236
|
"preparations": [
|
|
4221
4237
|
{
|
|
4222
4238
|
"id": 1,
|
|
4223
|
-
"promptbookVersion": "0.102.0-
|
|
4239
|
+
"promptbookVersion": "0.102.0-16",
|
|
4224
4240
|
"usage": {
|
|
4225
4241
|
"price": {
|
|
4226
|
-
"value": 0.
|
|
4242
|
+
"value": 0.036146250000000005
|
|
4227
4243
|
},
|
|
4228
4244
|
"input": {
|
|
4229
4245
|
"tokensCount": {
|
|
@@ -4250,19 +4266,19 @@
|
|
|
4250
4266
|
},
|
|
4251
4267
|
"output": {
|
|
4252
4268
|
"tokensCount": {
|
|
4253
|
-
"value":
|
|
4269
|
+
"value": 2845
|
|
4254
4270
|
},
|
|
4255
4271
|
"charactersCount": {
|
|
4256
|
-
"value":
|
|
4272
|
+
"value": 3317
|
|
4257
4273
|
},
|
|
4258
4274
|
"wordsCount": {
|
|
4259
|
-
"value":
|
|
4275
|
+
"value": 453
|
|
4260
4276
|
},
|
|
4261
4277
|
"sentencesCount": {
|
|
4262
|
-
"value":
|
|
4278
|
+
"value": 38
|
|
4263
4279
|
},
|
|
4264
4280
|
"linesCount": {
|
|
4265
|
-
"value":
|
|
4281
|
+
"value": 72
|
|
4266
4282
|
},
|
|
4267
4283
|
"paragraphsCount": {
|
|
4268
4284
|
"value": 1
|
|
@@ -4519,27 +4535,27 @@
|
|
|
4519
4535
|
"models": [
|
|
4520
4536
|
{
|
|
4521
4537
|
"modelName": "gpt-4.1",
|
|
4522
|
-
"systemMessage": "You are a
|
|
4538
|
+
"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.",
|
|
4523
4539
|
"temperature": 0.4
|
|
4524
4540
|
},
|
|
4525
4541
|
{
|
|
4526
4542
|
"modelName": "chatgpt-4o-latest",
|
|
4527
|
-
"systemMessage": "You are a
|
|
4543
|
+
"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.",
|
|
4528
4544
|
"temperature": 0.5
|
|
4529
4545
|
},
|
|
4530
4546
|
{
|
|
4531
4547
|
"modelName": "gpt-4",
|
|
4532
|
-
"systemMessage": "You are a
|
|
4548
|
+
"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.",
|
|
4533
4549
|
"temperature": 0.4
|
|
4534
4550
|
},
|
|
4535
4551
|
{
|
|
4536
4552
|
"modelName": "o4-mini",
|
|
4537
|
-
"systemMessage": "You are a
|
|
4553
|
+
"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.",
|
|
4538
4554
|
"temperature": 0.4
|
|
4539
4555
|
},
|
|
4540
4556
|
{
|
|
4541
4557
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4542
|
-
"systemMessage": "You are a
|
|
4558
|
+
"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.",
|
|
4543
4559
|
"temperature": 0.5
|
|
4544
4560
|
}
|
|
4545
4561
|
]
|
|
@@ -4553,10 +4569,10 @@
|
|
|
4553
4569
|
"preparations": [
|
|
4554
4570
|
{
|
|
4555
4571
|
"id": 1,
|
|
4556
|
-
"promptbookVersion": "0.102.0-
|
|
4572
|
+
"promptbookVersion": "0.102.0-16",
|
|
4557
4573
|
"usage": {
|
|
4558
4574
|
"price": {
|
|
4559
|
-
"value": 0.
|
|
4575
|
+
"value": 0.03916125000000001
|
|
4560
4576
|
},
|
|
4561
4577
|
"input": {
|
|
4562
4578
|
"tokensCount": {
|
|
@@ -4583,16 +4599,16 @@
|
|
|
4583
4599
|
},
|
|
4584
4600
|
"output": {
|
|
4585
4601
|
"tokensCount": {
|
|
4586
|
-
"value":
|
|
4602
|
+
"value": 3147
|
|
4587
4603
|
},
|
|
4588
4604
|
"charactersCount": {
|
|
4589
|
-
"value":
|
|
4605
|
+
"value": 3193
|
|
4590
4606
|
},
|
|
4591
4607
|
"wordsCount": {
|
|
4592
|
-
"value":
|
|
4608
|
+
"value": 421
|
|
4593
4609
|
},
|
|
4594
4610
|
"sentencesCount": {
|
|
4595
|
-
"value":
|
|
4611
|
+
"value": 48
|
|
4596
4612
|
},
|
|
4597
4613
|
"linesCount": {
|
|
4598
4614
|
"value": 69
|
|
@@ -4666,23 +4682,23 @@
|
|
|
4666
4682
|
"models": [
|
|
4667
4683
|
{
|
|
4668
4684
|
"modelName": "gpt-4.1",
|
|
4669
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
4670
|
-
"temperature":
|
|
4685
|
+
"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.",
|
|
4686
|
+
"temperature": 0.95
|
|
4671
4687
|
},
|
|
4672
4688
|
{
|
|
4673
4689
|
"modelName": "chatgpt-4o-latest",
|
|
4674
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
4675
|
-
"temperature":
|
|
4690
|
+
"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.",
|
|
4691
|
+
"temperature": 1
|
|
4676
4692
|
},
|
|
4677
4693
|
{
|
|
4678
4694
|
"modelName": "gpt-4",
|
|
4679
|
-
"systemMessage": "You are an accomplished poet
|
|
4680
|
-
"temperature": 0.
|
|
4695
|
+
"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.",
|
|
4696
|
+
"temperature": 0.9
|
|
4681
4697
|
},
|
|
4682
4698
|
{
|
|
4683
4699
|
"modelName": "gpt-3.5-turbo-16k",
|
|
4684
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
4685
|
-
"temperature": 0.
|
|
4700
|
+
"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.",
|
|
4701
|
+
"temperature": 0.85
|
|
4686
4702
|
}
|
|
4687
4703
|
]
|
|
4688
4704
|
}
|
|
@@ -4695,10 +4711,10 @@
|
|
|
4695
4711
|
"preparations": [
|
|
4696
4712
|
{
|
|
4697
4713
|
"id": 1,
|
|
4698
|
-
"promptbookVersion": "0.102.0-
|
|
4714
|
+
"promptbookVersion": "0.102.0-16",
|
|
4699
4715
|
"usage": {
|
|
4700
4716
|
"price": {
|
|
4701
|
-
"value": 0.
|
|
4717
|
+
"value": 0.032350000000000004
|
|
4702
4718
|
},
|
|
4703
4719
|
"input": {
|
|
4704
4720
|
"tokensCount": {
|
|
@@ -4725,19 +4741,19 @@
|
|
|
4725
4741
|
},
|
|
4726
4742
|
"output": {
|
|
4727
4743
|
"tokensCount": {
|
|
4728
|
-
"value":
|
|
4744
|
+
"value": 2466
|
|
4729
4745
|
},
|
|
4730
4746
|
"charactersCount": {
|
|
4731
|
-
"value":
|
|
4747
|
+
"value": 1805
|
|
4732
4748
|
},
|
|
4733
4749
|
"wordsCount": {
|
|
4734
|
-
"value":
|
|
4750
|
+
"value": 249
|
|
4735
4751
|
},
|
|
4736
4752
|
"sentencesCount": {
|
|
4737
|
-
"value":
|
|
4753
|
+
"value": 30
|
|
4738
4754
|
},
|
|
4739
4755
|
"linesCount": {
|
|
4740
|
-
"value":
|
|
4756
|
+
"value": 44
|
|
4741
4757
|
},
|
|
4742
4758
|
"paragraphsCount": {
|
|
4743
4759
|
"value": 1
|