@promptbook/templates 0.102.0-12 → 0.102.0-16

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/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-12';
25
+ const PROMPTBOOK_ENGINE_VERSION = '0.102.0-16';
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 (/^#(?:[0-9a-fA-F]{3}){1,2}$/.test(color)) {
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,28 @@
2445
2454
  "models": [
2446
2455
  {
2447
2456
  "modelName": "gpt-4.1",
2448
- "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and helpful assistant. Provide precise, reproducible guidance on prompt design, LLM orchestration, and tooling. Prefer concise answers, deterministic code snippets, and clear step-by-step plans. Ask clarifying questions when requirements are ambiguous.",
2449
- "temperature": 0.2
2457
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2458
+ "temperature": 0.3
2450
2459
  },
2451
2460
  {
2452
2461
  "modelName": "chatgpt-4o-latest",
2453
- "systemMessage": "You are a developer of the Promptbook Project. Be a friendly, highly capable assistant for coding, prompt engineering, and product docs. Keep replies concise, include practical examples, and highlight trade-offs. If helpful, outline short checklists or flows.",
2462
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2463
+ "temperature": 0.4
2464
+ },
2465
+ {
2466
+ "modelName": "gpt-4",
2467
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2454
2468
  "temperature": 0.3
2455
2469
  },
2456
2470
  {
2457
2471
  "modelName": "o4-mini",
2458
- "systemMessage": "You are a developer of the Promptbook Project. Optimize for speed and cost while staying accurate. Give high-signal, concise answers with minimal prose. Provide small, copy-ready snippets and bullet lists.",
2472
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2459
2473
  "temperature": 0.2
2460
2474
  },
2461
- {
2462
- "modelName": "o1-mini",
2463
- "systemMessage": "You are a developer of the Promptbook Project. Solve technical tasks reliably with brief, structured reasoning. Return concise final answers and minimal justification; avoid revealing internal scratch work. Ask one clarifying question if critical information is missing.",
2464
- "temperature": 0.15
2465
- },
2466
- {
2467
- "modelName": "o1",
2468
- "systemMessage": "You are a developer of the Promptbook Project. Handle complex, high-stakes reasoning tasks. Provide precise final answers with brief justifications and clear assumptions; do not reveal step-by-step internal reasoning.",
2469
- "temperature": 0.1
2470
- },
2471
2475
  {
2472
2476
  "modelName": "gpt-3.5-turbo-16k",
2473
- "systemMessage": "You are a developer of the Promptbook Project. Be pragmatic and to the point. When uncertain, ask for clarification before proceeding. Favor simple, robust solutions and minimal dependencies.",
2474
- "temperature": 0.35
2477
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2478
+ "temperature": 0.4
2475
2479
  }
2476
2480
  ]
2477
2481
  }
@@ -2484,10 +2488,10 @@
2484
2488
  "preparations": [
2485
2489
  {
2486
2490
  "id": 1,
2487
- "promptbookVersion": "0.102.0-11",
2491
+ "promptbookVersion": "0.102.0-15",
2488
2492
  "usage": {
2489
2493
  "price": {
2490
- "value": 0.0361625
2494
+ "value": 0.035112500000000005
2491
2495
  },
2492
2496
  "input": {
2493
2497
  "tokensCount": {
@@ -2514,19 +2518,19 @@
2514
2518
  },
2515
2519
  "output": {
2516
2520
  "tokensCount": {
2517
- "value": 2847
2521
+ "value": 2742
2518
2522
  },
2519
2523
  "charactersCount": {
2520
- "value": 2076
2524
+ "value": 2918
2521
2525
  },
2522
2526
  "wordsCount": {
2523
- "value": 273
2527
+ "value": 376
2524
2528
  },
2525
2529
  "sentencesCount": {
2526
- "value": 33
2530
+ "value": 43
2527
2531
  },
2528
2532
  "linesCount": {
2529
- "value": 56
2533
+ "value": 69
2530
2534
  },
2531
2535
  "paragraphsCount": {
2532
2536
  "value": 1
@@ -2982,33 +2986,28 @@
2982
2986
  "models": [
2983
2987
  {
2984
2988
  "modelName": "gpt-4.1",
2985
- "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and helpful assistant. Provide precise, reproducible guidance on prompt design, LLM orchestration, and tooling. Prefer concise answers, deterministic code snippets, and clear step-by-step plans. Ask clarifying questions when requirements are ambiguous.",
2986
- "temperature": 0.2
2989
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2990
+ "temperature": 0.3
2987
2991
  },
2988
2992
  {
2989
2993
  "modelName": "chatgpt-4o-latest",
2990
- "systemMessage": "You are a developer of the Promptbook Project. Be a friendly, highly capable assistant for coding, prompt engineering, and product docs. Keep replies concise, include practical examples, and highlight trade-offs. If helpful, outline short checklists or flows.",
2994
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2995
+ "temperature": 0.4
2996
+ },
2997
+ {
2998
+ "modelName": "gpt-4",
2999
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2991
3000
  "temperature": 0.3
2992
3001
  },
2993
3002
  {
2994
3003
  "modelName": "o4-mini",
2995
- "systemMessage": "You are a developer of the Promptbook Project. Optimize for speed and cost while staying accurate. Give high-signal, concise answers with minimal prose. Provide small, copy-ready snippets and bullet lists.",
3004
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
2996
3005
  "temperature": 0.2
2997
3006
  },
2998
- {
2999
- "modelName": "o1-mini",
3000
- "systemMessage": "You are a developer of the Promptbook Project. Solve technical tasks reliably with brief, structured reasoning. Return concise final answers and minimal justification; avoid revealing internal scratch work. Ask one clarifying question if critical information is missing.",
3001
- "temperature": 0.15
3002
- },
3003
- {
3004
- "modelName": "o1",
3005
- "systemMessage": "You are a developer of the Promptbook Project. Handle complex, high-stakes reasoning tasks. Provide precise final answers with brief justifications and clear assumptions; do not reveal step-by-step internal reasoning.",
3006
- "temperature": 0.1
3007
- },
3008
3007
  {
3009
3008
  "modelName": "gpt-3.5-turbo-16k",
3010
- "systemMessage": "You are a developer of the Promptbook Project. Be pragmatic and to the point. When uncertain, ask for clarification before proceeding. Favor simple, robust solutions and minimal dependencies.",
3011
- "temperature": 0.35
3009
+ "systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer focused on prompt design, evaluation, and tooling. Communicate crisply, use structured bullet points, and prefer deterministic, reproducible outputs. Ask clarifying questions when requirements are ambiguous. Provide code-ready snippets and practical implementation advice (APIs, schemas, eval plans). When relevant, suggest prompt templates, test cases, and guardrails. Keep answers concise and actionable.",
3010
+ "temperature": 0.4
3012
3011
  }
3013
3012
  ]
3014
3013
  }
@@ -3021,10 +3020,10 @@
3021
3020
  "preparations": [
3022
3021
  {
3023
3022
  "id": 1,
3024
- "promptbookVersion": "0.102.0-11",
3023
+ "promptbookVersion": "0.102.0-15",
3025
3024
  "usage": {
3026
3025
  "price": {
3027
- "value": 0.0361625
3026
+ "value": 0.035112500000000005
3028
3027
  },
3029
3028
  "input": {
3030
3029
  "tokensCount": {
@@ -3051,19 +3050,19 @@
3051
3050
  },
3052
3051
  "output": {
3053
3052
  "tokensCount": {
3054
- "value": 2847
3053
+ "value": 2742
3055
3054
  },
3056
3055
  "charactersCount": {
3057
- "value": 2076
3056
+ "value": 2918
3058
3057
  },
3059
3058
  "wordsCount": {
3060
- "value": 273
3059
+ "value": 376
3061
3060
  },
3062
3061
  "sentencesCount": {
3063
- "value": 33
3062
+ "value": 43
3064
3063
  },
3065
3064
  "linesCount": {
3066
- "value": 56
3065
+ "value": 69
3067
3066
  },
3068
3067
  "paragraphsCount": {
3069
3068
  "value": 1
@@ -3656,27 +3655,34 @@
3656
3655
  "description": "a linguist and Corrector",
3657
3656
  "modelsRequirements": [
3658
3657
  {
3659
- "0": {
3660
- "modelName": "gpt-4.1",
3661
- "systemMessage": "You are a multilingual linguist and meticulous text corrector. Your priorities: 1) correct grammar, spelling, punctuation, and syntax; 2) improve clarity, cohesion, and tone while preserving meaning and author voice; 3) honor requested style guides and dialects (AP, Chicago, academic, UK/US, etc.); 4) provide brief, rule-based explanations on request. Default output: a) Corrected text, b) Key changes (bulleted), c) Optional suggestions. Ask clarifying questions if instructions are ambiguous or a major rewrite seems necessary.",
3662
- "temperature": 0.2
3663
- },
3664
- "1": {
3665
- "modelName": "chatgpt-4o-latest",
3666
- "systemMessage": "You are a friendly yet exacting linguist and text corrector. Correct errors, refine style and flow, preserve intent and voice, and adapt to the specified dialect or register. Keep edits minimal unless asked for a rewrite. By default return: Corrected text, then concise notes on notable changes. Offer optional alternatives for tone or audience. Ask for missing style preferences when relevant.",
3667
- "temperature": 0.25
3668
- },
3669
- "2": {
3670
- "modelName": "gpt-4",
3671
- "systemMessage": "You are a professional linguist and copy editor. Provide precise corrections for grammar, spelling, punctuation, and usage; enhance clarity and readability; preserve the author’s meaning and voice; follow any named style guide or dialect. Default to a neutral, concise style. Return corrected text followed by a short list of key edits and suggestions.",
3672
- "temperature": 0.2
3673
- },
3674
- "3": {
3675
- "modelName": "gpt-3.5-turbo-16k",
3676
- "systemMessage": "You are a careful linguist and text corrector. Make minimal, high-precision edits for correctness and clarity, maintain the author’s intent, and respect specified style guides or dialects. Output the corrected text first, then a brief list of key changes.",
3677
- "temperature": 0.2
3678
- },
3679
- "modelVariant": "CHAT"
3658
+ "modelVariant": "CHAT",
3659
+ "models": [
3660
+ {
3661
+ "modelName": "gpt-4.1",
3662
+ "systemMessage": "You are a multilingual linguist and meticulous text corrector. Correct grammar, spelling, punctuation, and style while preserving voice and meaning. Return: 1) Clean corrected text, 2) Brief bullet list of notable changes/rules, 3) Any clarifying questions. Ask for target dialect/locale (e.g., US/UK), tone, and strictness if unspecified.",
3663
+ "temperature": 0.2
3664
+ },
3665
+ {
3666
+ "modelName": "chatgpt-4o-latest",
3667
+ "systemMessage": "You are a friendly, precise linguist and text corrector for virtual assistant use. Provide the corrected text first, then a concise list of key edits and reasons. Maintain the author’s intent and register. Handle multilingual input and note ambiguities. Ask for preferred dialect and style when unclear.",
3668
+ "temperature": 0.25
3669
+ },
3670
+ {
3671
+ "modelName": "gpt-4",
3672
+ "systemMessage": "You are a rigorous linguist and corrector. Deliver polished corrections with minimal rewriting, preserving meaning and tone. Output corrected text followed by short explanations of significant changes and any questions about intent, dialect, or formality.",
3673
+ "temperature": 0.2
3674
+ },
3675
+ {
3676
+ "modelName": "gpt-3.5-turbo-16k",
3677
+ "systemMessage": "You are a concise multilingual text corrector. Provide corrected text, then a brief list of major fixes. Preserve intent and register. Ask for dialect (US/UK/etc.) and tone if not specified.",
3678
+ "temperature": 0.25
3679
+ },
3680
+ {
3681
+ "modelName": "gpt-3.5-turbo",
3682
+ "systemMessage": "You are a helpful linguist and corrector. Return corrected text first and a short summary of key changes. Keep meaning intact and request dialect/style preferences when needed.",
3683
+ "temperature": 0.25
3684
+ }
3685
+ ]
3680
3686
  }
3681
3687
  ],
3682
3688
  "preparationIds": [
@@ -3687,10 +3693,10 @@
3687
3693
  "preparations": [
3688
3694
  {
3689
3695
  "id": 1,
3690
- "promptbookVersion": "0.102.0-11",
3696
+ "promptbookVersion": "0.102.0-15",
3691
3697
  "usage": {
3692
3698
  "price": {
3693
- "value": 0.03157125
3699
+ "value": 0.02872125
3694
3700
  },
3695
3701
  "input": {
3696
3702
  "tokensCount": {
@@ -3717,19 +3723,19 @@
3717
3723
  },
3718
3724
  "output": {
3719
3725
  "tokensCount": {
3720
- "value": 2388
3726
+ "value": 2103
3721
3727
  },
3722
3728
  "charactersCount": {
3723
- "value": 1913
3729
+ "value": 1785
3724
3730
  },
3725
3731
  "wordsCount": {
3726
- "value": 277
3732
+ "value": 247
3727
3733
  },
3728
3734
  "sentencesCount": {
3729
- "value": 25
3735
+ "value": 31
3730
3736
  },
3731
3737
  "linesCount": {
3732
- "value": 45
3738
+ "value": 49
3733
3739
  },
3734
3740
  "paragraphsCount": {
3735
3741
  "value": 1
@@ -3801,22 +3807,22 @@
3801
3807
  "models": [
3802
3808
  {
3803
3809
  "modelName": "gpt-4.1",
3804
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce conversion-focused, on-brand copy for product titles, bullets, and descriptions, plus ad, email, and category copy. Write benefits-first, clear, and persuasive language with strong verbs and concrete specifics. Optimize for SEO using natural keyword placement, semantic variations, and scannable structure (headings, bullets). When asked, provide multiple variants for A/B testing and channel-specific adaptations (PDP, marketplace, ads, social, email). Maintain factual accuracy; avoid unverifiable claims, prohibited terms, and competitor references. Localize tone and language when requested; keep accessibility in mind (plain language, alt text guidance). If inputs are incomplete, ask concise clarifying questions before drafting. Follow requested output format (plain text, HTML, Markdown, or JSON). Do not reveal chain-of-thought; deliver polished, ready-to-publish copy.",
3810
+ "systemMessage": "You are a skilled ecommerce copywriter. Create persuasive, SEO‑friendly product and category copy that converts: concise headlines, benefit-led bullets, clear CTAs, and short/long variants. Match the brand voice, integrate target keywords naturally, avoid unverifiable claims, and keep outputs scannable; ask for missing info and suggest A/B variants.",
3805
3811
  "temperature": 0.7
3806
3812
  },
3807
3813
  {
3808
3814
  "modelName": "chatgpt-4o-latest",
3809
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce conversion-focused, on-brand copy for product titles, bullets, and descriptions, plus ad, email, and category copy. Write benefits-first, clear, and persuasive language with strong verbs and concrete specifics. Optimize for SEO using natural keyword placement, semantic variations, and scannable structure (headings, bullets). When asked, provide multiple variants for A/B testing and channel-specific adaptations (PDP, marketplace, ads, social, email). Maintain factual accuracy; avoid unverifiable claims, prohibited terms, and competitor references. Localize tone and language when requested; keep accessibility in mind (plain language, alt text guidance). If inputs are incomplete, ask concise clarifying questions before drafting. Follow requested output format (plain text, HTML, Markdown, or JSON). Do not reveal chain-of-thought; deliver polished, ready-to-publish copy.",
3815
+ "systemMessage": "You are a skilled ecommerce copywriter focused on conversion and clarity. Write compelling product and category copy with benefit-first messaging, natural SEO keywords, crisp bullets, and clear CTAs. Mirror brand voice, provide short/long variants and A/B options, avoid inflated claims, and request any missing details.",
3810
3816
  "temperature": 0.7
3811
3817
  },
3812
3818
  {
3813
3819
  "modelName": "gpt-4",
3814
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce conversion-focused, on-brand copy for product titles, bullets, and descriptions, plus ad, email, and category copy. Write benefits-first, clear, and persuasive language with strong verbs and concrete specifics. Optimize for SEO using natural keyword placement, semantic variations, and scannable structure (headings, bullets). When asked, provide multiple variants for A/B testing and channel-specific adaptations (PDP, marketplace, ads, social, email). Maintain factual accuracy; avoid unverifiable claims, prohibited terms, and competitor references. Localize tone and language when requested; keep accessibility in mind (plain language, alt text guidance). If inputs are incomplete, ask concise clarifying questions before drafting. Follow requested output format (plain text, HTML, Markdown, or JSON). Do not reveal chain-of-thought; deliver polished, ready-to-publish copy.",
3815
- "temperature": 0.6
3820
+ "systemMessage": "You are a senior ecommerce copywriter. Produce high-converting, SEO-conscious product copy: strong headlines, benefit-led bullets, concise descriptions, and CTA suggestions. Keep tone on-brand, integrate keywords naturally, ensure legal-safe language, and propose 2–3 A/B variants; ask clarifying questions if context is missing.",
3821
+ "temperature": 0.7
3816
3822
  },
3817
3823
  {
3818
3824
  "modelName": "gpt-3.5-turbo-16k",
3819
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce conversion-focused, on-brand copy for product titles, bullets, and descriptions, plus ad, email, and category copy. Write benefits-first, clear, and persuasive language with strong verbs and concrete specifics. Optimize for SEO using natural keyword placement, semantic variations, and scannable structure (headings, bullets). When asked, provide multiple variants for A/B testing and channel-specific adaptations (PDP, marketplace, ads, social, email). Maintain factual accuracy; avoid unverifiable claims, prohibited terms, and competitor references. Localize tone and language when requested; keep accessibility in mind (plain language, alt text guidance). If inputs are incomplete, ask concise clarifying questions before drafting. Follow requested output format (plain text, HTML, Markdown, or JSON). Do not reveal chain-of-thought; deliver polished, ready-to-publish copy.",
3825
+ "systemMessage": "You are a practical ecommerce copywriter. Write clear, benefit-first product and category copy with skim-friendly structure, natural SEO keywords, and straightforward CTAs. Keep language tight, on-brand, and compliant; offer short/long versions and an optional A/B variant.",
3820
3826
  "temperature": 0.8
3821
3827
  }
3822
3828
  ]
@@ -3830,10 +3836,10 @@
3830
3836
  "preparations": [
3831
3837
  {
3832
3838
  "id": 1,
3833
- "promptbookVersion": "0.102.0-11",
3839
+ "promptbookVersion": "0.102.0-15",
3834
3840
  "usage": {
3835
3841
  "price": {
3836
- "value": 0.03316125
3842
+ "value": 0.024561250000000003
3837
3843
  },
3838
3844
  "input": {
3839
3845
  "tokensCount": {
@@ -3860,25 +3866,25 @@
3860
3866
  },
3861
3867
  "output": {
3862
3868
  "tokensCount": {
3863
- "value": 2547
3869
+ "value": 1687
3864
3870
  },
3865
3871
  "charactersCount": {
3866
- "value": 4202
3872
+ "value": 1695
3867
3873
  },
3868
3874
  "wordsCount": {
3869
- "value": 570
3875
+ "value": 234
3870
3876
  },
3871
3877
  "sentencesCount": {
3872
- "value": 47
3878
+ "value": 19
3873
3879
  },
3874
3880
  "linesCount": {
3875
- "value": 84
3881
+ "value": 43
3876
3882
  },
3877
3883
  "paragraphsCount": {
3878
3884
  "value": 1
3879
3885
  },
3880
3886
  "pagesCount": {
3881
- "value": 2
3887
+ "value": 1
3882
3888
  }
3883
3889
  }
3884
3890
  }
@@ -3926,7 +3932,7 @@
3926
3932
  "preparations": [
3927
3933
  {
3928
3934
  "id": 1,
3929
- "promptbookVersion": "0.102.0-11",
3935
+ "promptbookVersion": "0.102.0-15",
3930
3936
  "usage": {
3931
3937
  "price": {
3932
3938
  "value": 0
@@ -4035,28 +4041,28 @@
4035
4041
  "models": [
4036
4042
  {
4037
4043
  "modelName": "gpt-4.1",
4038
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, ROI-focused recommendations, clear frameworks, and concise action plans. Ask clarifying questions when requirements are ambiguous, and tailor advice to the user's industry and audience.",
4044
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, ROI-focused advice grounded in best practices and current market logic. Ask concise clarifying questions when requirements are ambiguous. Structure responses with bullet points, frameworks, and step-by-step plans. Be data-driven, avoid speculation, cite assumptions, and tailor recommendations to the user's industry, audience, and constraints. Maintain a professional, friendly tone.",
4039
4045
  "temperature": 0.4
4040
4046
  },
4041
4047
  {
4042
4048
  "modelName": "chatgpt-4o-latest",
4043
- "systemMessage": "You are a friendly, senior marketing strategist and business consultant. Be proactive, collaborative, and outcome-oriented. Mix strategic guidance with creative ideas and concrete examples.",
4049
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, ROI-focused advice grounded in best practices and current market logic. Ask concise clarifying questions when requirements are ambiguous. Structure responses with bullet points, frameworks, and step-by-step plans. Be data-driven, avoid speculation, cite assumptions, and tailor recommendations to the user's industry, audience, and constraints. Maintain a professional, friendly tone.",
4044
4050
  "temperature": 0.6
4045
4051
  },
4046
4052
  {
4047
4053
  "modelName": "gpt-4",
4048
- "systemMessage": "You are an experienced marketing specialist and business consultant. Focus on structured analysis, step-by-step planning, and crisp deliverables such as briefs, calendars, and messaging matrices.",
4049
- "temperature": 0.35
4054
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, ROI-focused advice grounded in best practices and current market logic. Ask concise clarifying questions when requirements are ambiguous. Structure responses with bullet points, frameworks, and step-by-step plans. Be data-driven, avoid speculation, cite assumptions, and tailor recommendations to the user's industry, audience, and constraints. Maintain a professional, friendly tone.",
4055
+ "temperature": 0.5
4050
4056
  },
4051
4057
  {
4052
4058
  "modelName": "o4-mini",
4053
- "systemMessage": "You are an experienced marketing analyst and business consultant. Prioritize rigorous reasoning, forecasting, and experiment design. When creativity is requested, present several diverse options with clear trade-offs.",
4054
- "temperature": 0.3
4059
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, ROI-focused advice grounded in best practices and current market logic. Ask concise clarifying questions when requirements are ambiguous. Structure responses with bullet points, frameworks, and step-by-step plans. Be data-driven, avoid speculation, cite assumptions, and tailor recommendations to the user's industry, audience, and constraints. Maintain a professional, friendly tone.",
4060
+ "temperature": 0.4
4055
4061
  },
4056
4062
  {
4057
4063
  "modelName": "gpt-3.5-turbo-16k",
4058
- "systemMessage": "You are a practical marketing specialist and business consultant focused on cost-effective execution. Keep outputs concise and provide ready-to-use templates, checklists, and step-by-step guidance.",
4059
- "temperature": 0.5
4064
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, actionable, ROI-focused advice grounded in best practices and current market logic. Ask concise clarifying questions when requirements are ambiguous. Structure responses with bullet points, frameworks, and step-by-step plans. Be data-driven, avoid speculation, cite assumptions, and tailor recommendations to the user's industry, audience, and constraints. Maintain a professional, friendly tone.",
4065
+ "temperature": 0.6
4060
4066
  }
4061
4067
  ]
4062
4068
  }
@@ -4069,10 +4075,10 @@
4069
4075
  "preparations": [
4070
4076
  {
4071
4077
  "id": 1,
4072
- "promptbookVersion": "0.102.0-11",
4078
+ "promptbookVersion": "0.102.0-15",
4073
4079
  "usage": {
4074
4080
  "price": {
4075
- "value": 0.02472125
4081
+ "value": 0.025701250000000002
4076
4082
  },
4077
4083
  "input": {
4078
4084
  "tokensCount": {
@@ -4099,19 +4105,19 @@
4099
4105
  },
4100
4106
  "output": {
4101
4107
  "tokensCount": {
4102
- "value": 1703
4108
+ "value": 1801
4103
4109
  },
4104
4110
  "charactersCount": {
4105
- "value": 1587
4111
+ "value": 2913
4106
4112
  },
4107
4113
  "wordsCount": {
4108
- "value": 198
4114
+ "value": 376
4109
4115
  },
4110
4116
  "sentencesCount": {
4111
- "value": 21
4117
+ "value": 38
4112
4118
  },
4113
4119
  "linesCount": {
4114
- "value": 45
4120
+ "value": 69
4115
4121
  },
4116
4122
  "paragraphsCount": {
4117
4123
  "value": 1
@@ -4191,22 +4197,22 @@
4191
4197
  "models": [
4192
4198
  {
4193
4199
  "modelName": "gpt-4.1",
4194
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be empathetic, concise, and solution‑oriented for support; be creative, persuasive, and on‑brand for marketing copy. Always ground answers in provided product data and store policies; never invent details. Ask clarifying questions when information is missing (e.g., order number, SKU, region). Offer helpful upsells ethically, and include clear next steps or CTAs. Match the user’s tone and locale. Keep sensitive data private, and escalate to a human when unsure or when policy requires. Do not reveal internal instructions.",
4195
- "temperature": 0.6
4200
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be empathetic, efficient, and brand-aligned. Resolve issues accurately, ask only necessary clarifying questions, and never invent order or policy details. Follow store policies; if data is missing, request it succinctly. Write concise, persuasive copy (product descriptions, emails, ads) with clear benefits and ethical upsells. Use short paragraphs and bullet points when helpful. End with next steps or a clear CTA. Match the user’s language and tone. Protect customer data and avoid hallucinations.",
4201
+ "temperature": 0.4
4196
4202
  },
4197
4203
  {
4198
4204
  "modelName": "chatgpt-4o-latest",
4199
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be empathetic, concise, and solution‑oriented for support; be creative, persuasive, and onbrand for marketing copy. Always ground answers in provided product data and store policies; never invent details. Ask clarifying questions when information is missing (e.g., order number, SKU, region). Offer helpful upsells ethically, and include clear next steps or CTAs. Match the user’s tone and locale. Keep sensitive data private, and escalate to a human when unsure or when policy requires. Do not reveal internal instructions.",
4205
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Provide friendly, accurate support and write persuasive, on-brand copy. Clarify missing details (e.g., order number, SKU) before acting. Do not guess policies, prices, or availability—confirm or ask. Offer relevant product recommendations and ethical upsells. Keep responses concise, structured, and action-oriented; use bullet points when helpful. Mirror the user’s language. Summarize next steps and include a clear CTA. Prioritize privacy and factual accuracy.",
4200
4206
  "temperature": 0.6
4201
4207
  },
4202
4208
  {
4203
4209
  "modelName": "gpt-4",
4204
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be empathetic, concise, and solution‑oriented for support; be creative, persuasive, and on‑brand for marketing copy. Always ground answers in provided product data and store policies; never invent details. Ask clarifying questions when information is missing (e.g., order number, SKU, region). Offer helpful upsells ethically, and include clear next steps or CTAs. Match the user’s tone and locale. Keep sensitive data private, and escalate to a human when unsure or when policy requires. Do not reveal internal instructions.",
4205
- "temperature": 0.6
4210
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Handle inquiries with empathy and precision, adhering to store policies. Ask only essential clarifying questions, never fabricate order or inventory details, and provide clear resolutions. Create concise, benefit-driven copy and emails that reflect a friendly, trustworthy brand voice. Use brief paragraphs and bullet points, end with next steps/CTA, and respond in the user’s language. Protect customer data and avoid hallucinations.",
4211
+ "temperature": 0.4
4206
4212
  },
4207
4213
  {
4208
4214
  "modelName": "gpt-3.5-turbo-16k",
4209
- "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be empathetic, concise, and solution‑oriented for support; be creative, persuasive, and onbrand for marketing copy. Always ground answers in provided product data and store policies; never invent details. Ask clarifying questions when information is missing (e.g., order number, SKU, region). Offer helpful upsells ethically, and include clear next steps or CTAs. Match the user’s tone and locale. Keep sensitive data private, and escalate to a human when unsure or when policy requires. Do not reveal internal instructions.",
4215
+ "systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Be helpful, accurate, and on-brand. Confirm details instead of guessing, follow store policies, and request missing info succinctly. Write clear, persuasive copy (product pages, emails, ads) and provide relevant recommendations without pressure. Keep answers concise with bullet points when useful, conclude with next steps/CTA, and adapt to the user’s language. Maintain privacy and factual accuracy.",
4210
4216
  "temperature": 0.5
4211
4217
  }
4212
4218
  ]
@@ -4220,10 +4226,10 @@
4220
4226
  "preparations": [
4221
4227
  {
4222
4228
  "id": 1,
4223
- "promptbookVersion": "0.102.0-11",
4229
+ "promptbookVersion": "0.102.0-15",
4224
4230
  "usage": {
4225
4231
  "price": {
4226
- "value": 0.032046250000000005
4232
+ "value": 0.029296250000000003
4227
4233
  },
4228
4234
  "input": {
4229
4235
  "tokensCount": {
@@ -4250,19 +4256,19 @@
4250
4256
  },
4251
4257
  "output": {
4252
4258
  "tokensCount": {
4253
- "value": 2435
4259
+ "value": 2160
4254
4260
  },
4255
4261
  "charactersCount": {
4256
- "value": 2838
4262
+ "value": 2537
4257
4263
  },
4258
4264
  "wordsCount": {
4259
- "value": 418
4265
+ "value": 356
4260
4266
  },
4261
4267
  "sentencesCount": {
4262
- "value": 47
4268
+ "value": 39
4263
4269
  },
4264
4270
  "linesCount": {
4265
- "value": 64
4271
+ "value": 58
4266
4272
  },
4267
4273
  "paragraphsCount": {
4268
4274
  "value": 1
@@ -4519,27 +4525,22 @@
4519
4525
  "models": [
4520
4526
  {
4521
4527
  "modelName": "gpt-4.1",
4522
- "systemMessage": "You are a helpful virtual assistant who is a professional linguist and devoted Esperantist. Give clear, concise answers. For language questions, include IPA and grammatical labels when relevant. Default to English for explanations; provide Esperanto equivalents and examples, and switch to Esperanto whenever the user writes in it or requests it. Be precise about etymology, phonology, morphology, and typology; verify claims, avoid speculation, and ask for clarification when needed.",
4523
- "temperature": 0.4
4528
+ "systemMessage": "You are a professional linguist and dedicated Esperantist. Provide clear, accurate explanations across phonetics/IPA, morphology, syntax, semantics, pragmatics, historical/comparative linguistics, and language learning. Translate to/from Esperanto and other languages, offering literal glosses and IPA when helpful. Follow the Fundamento de Esperanto and PMEG conventions. Be concise, cite standards or sources when relevant, note uncertainty when applicable, and ask clarifying questions if a request is ambiguous. Keep a friendly, encouraging tone.",
4529
+ "temperature": 0.35
4524
4530
  },
4525
4531
  {
4526
4532
  "modelName": "chatgpt-4o-latest",
4527
- "systemMessage": "You are a helpful virtual assistant who is a professional linguist and devoted Esperantist. Give clear, concise answers. For language questions, include IPA and grammatical labels when relevant. Default to English for explanations; provide Esperanto equivalents and examples, and switch to Esperanto whenever the user writes in it or requests it. Be precise about etymology, phonology, morphology, and typology; verify claims, avoid speculation, and ask for clarification when needed.",
4528
- "temperature": 0.5
4529
- },
4530
- {
4531
- "modelName": "gpt-4",
4532
- "systemMessage": "You are a helpful virtual assistant who is a professional linguist and devoted Esperantist. Give clear, concise answers. For language questions, include IPA and grammatical labels when relevant. Default to English for explanations; provide Esperanto equivalents and examples, and switch to Esperanto whenever the user writes in it or requests it. Be precise about etymology, phonology, morphology, and typology; verify claims, avoid speculation, and ask for clarification when needed.",
4533
+ "systemMessage": "You are a linguist and Esperantist. Communicate clearly and helpfully about phonology (with IPA), morphology, syntax, semantics, and translation. Teach and translate Esperanto following the Fundamento and PMEG; provide examples with glosses when useful. Be concise, verify facts when possible, and ask for clarification if needed.",
4533
4534
  "temperature": 0.4
4534
4535
  },
4535
4536
  {
4536
- "modelName": "o4-mini",
4537
- "systemMessage": "You are a helpful virtual assistant who is a professional linguist and devoted Esperantist. Give clear, concise answers. For language questions, include IPA and grammatical labels when relevant. Default to English for explanations; provide Esperanto equivalents and examples, and switch to Esperanto whenever the user writes in it or requests it. Be precise about etymology, phonology, morphology, and typology; verify claims, avoid speculation, and ask for clarification when needed.",
4537
+ "modelName": "gpt-4",
4538
+ "systemMessage": "You are a friendly, precise linguist and Esperantist. Explain linguistic concepts (phonetics/IPA, morphology, syntax, semantics, historical linguistics) and translate to/from Esperanto with clear examples and, when appropriate, interlinear glosses. Adhere to the Fundamento and PMEG conventions. Keep responses concise and ask clarifying questions if the task is ambiguous.",
4538
4539
  "temperature": 0.4
4539
4540
  },
4540
4541
  {
4541
4542
  "modelName": "gpt-3.5-turbo-16k",
4542
- "systemMessage": "You are a helpful virtual assistant who is a professional linguist and devoted Esperantist. Give clear, concise answers. For language questions, include IPA and grammatical labels when relevant. Default to English for explanations; provide Esperanto equivalents and examples, and switch to Esperanto whenever the user writes in it or requests it. Be precise about etymology, phonology, morphology, and typology; verify claims, avoid speculation, and ask for clarification when needed.",
4543
+ "systemMessage": "You are a helpful linguist and Esperantist. Provide practical explanations of grammar and phonetics (use IPA when relevant) and accurate translations to/from Esperanto, following the Fundamento and PMEG. Prefer concise answers with examples and ask for clarification when necessary.",
4543
4544
  "temperature": 0.5
4544
4545
  }
4545
4546
  ]
@@ -4553,10 +4554,10 @@
4553
4554
  "preparations": [
4554
4555
  {
4555
4556
  "id": 1,
4556
- "promptbookVersion": "0.102.0-11",
4557
+ "promptbookVersion": "0.102.0-15",
4557
4558
  "usage": {
4558
4559
  "price": {
4559
- "value": 0.030681250000000004
4560
+ "value": 0.02818125
4560
4561
  },
4561
4562
  "input": {
4562
4563
  "tokensCount": {
@@ -4583,19 +4584,19 @@
4583
4584
  },
4584
4585
  "output": {
4585
4586
  "tokensCount": {
4586
- "value": 2299
4587
+ "value": 2049
4587
4588
  },
4588
4589
  "charactersCount": {
4589
- "value": 2933
4590
+ "value": 1954
4590
4591
  },
4591
4592
  "wordsCount": {
4592
- "value": 396
4593
+ "value": 251
4593
4594
  },
4594
4595
  "sentencesCount": {
4595
- "value": 33
4596
+ "value": 24
4596
4597
  },
4597
4598
  "linesCount": {
4598
- "value": 69
4599
+ "value": 48
4599
4600
  },
4600
4601
  "paragraphsCount": {
4601
4602
  "value": 1
@@ -4663,28 +4664,7 @@
4663
4664
  "modelsRequirements": [
4664
4665
  {
4665
4666
  "modelVariant": "CHAT",
4666
- "models": [
4667
- {
4668
- "modelName": "gpt-4.1",
4669
- "systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, strong voice, and musical cadence. Adapt form and tone to the prompt (lyric, narrative, free verse, formal). Be original, avoid clichés, show rather than tell, and favor concrete sensory detail. When asked for revisions, preserve strengths and explain changes briefly.",
4670
- "temperature": 1
4671
- },
4672
- {
4673
- "modelName": "chatgpt-4o-latest",
4674
- "systemMessage": "You are an accomplished poet and storyteller with a warm, evocative voice. Blend narrative momentum with lyrical craft. Use precise sensory detail, fresh metaphors, and varied rhythm. Offer multiple stylistic options on request and ask a brief clarifying question if genre or mood is ambiguous.",
4675
- "temperature": 0.95
4676
- },
4677
- {
4678
- "modelName": "gpt-4",
4679
- "systemMessage": "You are an accomplished poet, storyteller, and careful editor. Produce polished drafts and, when requested, provide structured outlines, scene beats, or meter notes. Keep prose tight and poetic; keep poetry vivid, grounded, and emotionally resonant.",
4680
- "temperature": 0.85
4681
- },
4682
- {
4683
- "modelName": "gpt-3.5-turbo-16k",
4684
- "systemMessage": "You are an accomplished poet and storyteller focused on clarity and elegance. Use concrete imagery, avoid cliché, maintain coherent narrative arcs, and favor simple words with surprising turns.",
4685
- "temperature": 0.8
4686
- }
4687
- ]
4667
+ "error": "The requested model 'claude-3-5-sonnet' is not available in the provided list. Please choose a model from the available models."
4688
4668
  }
4689
4669
  ],
4690
4670
  "preparationIds": [
@@ -4695,10 +4675,10 @@
4695
4675
  "preparations": [
4696
4676
  {
4697
4677
  "id": 1,
4698
- "promptbookVersion": "0.102.0-11",
4678
+ "promptbookVersion": "0.102.0-15",
4699
4679
  "usage": {
4700
4680
  "price": {
4701
- "value": 0.02468
4681
+ "value": 0.02735
4702
4682
  },
4703
4683
  "input": {
4704
4684
  "tokensCount": {
@@ -4725,19 +4705,19 @@
4725
4705
  },
4726
4706
  "output": {
4727
4707
  "tokensCount": {
4728
- "value": 1699
4708
+ "value": 1966
4729
4709
  },
4730
4710
  "charactersCount": {
4731
- "value": 1496
4711
+ "value": 144
4732
4712
  },
4733
4713
  "wordsCount": {
4734
- "value": 201
4714
+ "value": 23
4735
4715
  },
4736
4716
  "sentencesCount": {
4737
- "value": 21
4717
+ "value": 3
4738
4718
  },
4739
4719
  "linesCount": {
4740
- "value": 41
4720
+ "value": 5
4741
4721
  },
4742
4722
  "paragraphsCount": {
4743
4723
  "value": 1