@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/esm/index.es.js +145 -165
- 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 +145 -165
- 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-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 (
|
|
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
|
|
2449
|
-
"temperature": 0.
|
|
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.
|
|
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.
|
|
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.
|
|
2474
|
-
"temperature": 0.
|
|
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-
|
|
2491
|
+
"promptbookVersion": "0.102.0-15",
|
|
2488
2492
|
"usage": {
|
|
2489
2493
|
"price": {
|
|
2490
|
-
"value": 0.
|
|
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":
|
|
2521
|
+
"value": 2742
|
|
2518
2522
|
},
|
|
2519
2523
|
"charactersCount": {
|
|
2520
|
-
"value":
|
|
2524
|
+
"value": 2918
|
|
2521
2525
|
},
|
|
2522
2526
|
"wordsCount": {
|
|
2523
|
-
"value":
|
|
2527
|
+
"value": 376
|
|
2524
2528
|
},
|
|
2525
2529
|
"sentencesCount": {
|
|
2526
|
-
"value":
|
|
2530
|
+
"value": 43
|
|
2527
2531
|
},
|
|
2528
2532
|
"linesCount": {
|
|
2529
|
-
"value":
|
|
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
|
|
2986
|
-
"temperature": 0.
|
|
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.
|
|
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.
|
|
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.
|
|
3011
|
-
"temperature": 0.
|
|
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-
|
|
3023
|
+
"promptbookVersion": "0.102.0-15",
|
|
3025
3024
|
"usage": {
|
|
3026
3025
|
"price": {
|
|
3027
|
-
"value": 0.
|
|
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":
|
|
3053
|
+
"value": 2742
|
|
3055
3054
|
},
|
|
3056
3055
|
"charactersCount": {
|
|
3057
|
-
"value":
|
|
3056
|
+
"value": 2918
|
|
3058
3057
|
},
|
|
3059
3058
|
"wordsCount": {
|
|
3060
|
-
"value":
|
|
3059
|
+
"value": 376
|
|
3061
3060
|
},
|
|
3062
3061
|
"sentencesCount": {
|
|
3063
|
-
"value":
|
|
3062
|
+
"value": 43
|
|
3064
3063
|
},
|
|
3065
3064
|
"linesCount": {
|
|
3066
|
-
"value":
|
|
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
|
-
"
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
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-
|
|
3696
|
+
"promptbookVersion": "0.102.0-15",
|
|
3691
3697
|
"usage": {
|
|
3692
3698
|
"price": {
|
|
3693
|
-
"value": 0.
|
|
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":
|
|
3726
|
+
"value": 2103
|
|
3721
3727
|
},
|
|
3722
3728
|
"charactersCount": {
|
|
3723
|
-
"value":
|
|
3729
|
+
"value": 1785
|
|
3724
3730
|
},
|
|
3725
3731
|
"wordsCount": {
|
|
3726
|
-
"value":
|
|
3732
|
+
"value": 247
|
|
3727
3733
|
},
|
|
3728
3734
|
"sentencesCount": {
|
|
3729
|
-
"value":
|
|
3735
|
+
"value": 31
|
|
3730
3736
|
},
|
|
3731
3737
|
"linesCount": {
|
|
3732
|
-
"value":
|
|
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
|
|
3810
|
+
"systemMessage": "You are a skilled e‑commerce 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
|
|
3815
|
+
"systemMessage": "You are a skilled e‑commerce 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
|
|
3815
|
-
"temperature": 0.
|
|
3820
|
+
"systemMessage": "You are a senior e‑commerce 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
|
|
3825
|
+
"systemMessage": "You are a practical e‑commerce 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-
|
|
3839
|
+
"promptbookVersion": "0.102.0-15",
|
|
3834
3840
|
"usage": {
|
|
3835
3841
|
"price": {
|
|
3836
|
-
"value": 0.
|
|
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":
|
|
3869
|
+
"value": 1687
|
|
3864
3870
|
},
|
|
3865
3871
|
"charactersCount": {
|
|
3866
|
-
"value":
|
|
3872
|
+
"value": 1695
|
|
3867
3873
|
},
|
|
3868
3874
|
"wordsCount": {
|
|
3869
|
-
"value":
|
|
3875
|
+
"value": 234
|
|
3870
3876
|
},
|
|
3871
3877
|
"sentencesCount": {
|
|
3872
|
-
"value":
|
|
3878
|
+
"value": 19
|
|
3873
3879
|
},
|
|
3874
3880
|
"linesCount": {
|
|
3875
|
-
"value":
|
|
3881
|
+
"value": 43
|
|
3876
3882
|
},
|
|
3877
3883
|
"paragraphsCount": {
|
|
3878
3884
|
"value": 1
|
|
3879
3885
|
},
|
|
3880
3886
|
"pagesCount": {
|
|
3881
|
-
"value":
|
|
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-
|
|
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
|
|
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
|
|
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.
|
|
4049
|
-
"temperature": 0.
|
|
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
|
|
4054
|
-
"temperature": 0.
|
|
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
|
|
4059
|
-
"temperature": 0.
|
|
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-
|
|
4078
|
+
"promptbookVersion": "0.102.0-15",
|
|
4073
4079
|
"usage": {
|
|
4074
4080
|
"price": {
|
|
4075
|
-
"value": 0.
|
|
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":
|
|
4108
|
+
"value": 1801
|
|
4103
4109
|
},
|
|
4104
4110
|
"charactersCount": {
|
|
4105
|
-
"value":
|
|
4111
|
+
"value": 2913
|
|
4106
4112
|
},
|
|
4107
4113
|
"wordsCount": {
|
|
4108
|
-
"value":
|
|
4114
|
+
"value": 376
|
|
4109
4115
|
},
|
|
4110
4116
|
"sentencesCount": {
|
|
4111
|
-
"value":
|
|
4117
|
+
"value": 38
|
|
4112
4118
|
},
|
|
4113
4119
|
"linesCount": {
|
|
4114
|
-
"value":
|
|
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,
|
|
4195
|
-
"temperature": 0.
|
|
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.
|
|
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.
|
|
4205
|
-
"temperature": 0.
|
|
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
|
|
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-
|
|
4229
|
+
"promptbookVersion": "0.102.0-15",
|
|
4224
4230
|
"usage": {
|
|
4225
4231
|
"price": {
|
|
4226
|
-
"value": 0.
|
|
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":
|
|
4259
|
+
"value": 2160
|
|
4254
4260
|
},
|
|
4255
4261
|
"charactersCount": {
|
|
4256
|
-
"value":
|
|
4262
|
+
"value": 2537
|
|
4257
4263
|
},
|
|
4258
4264
|
"wordsCount": {
|
|
4259
|
-
"value":
|
|
4265
|
+
"value": 356
|
|
4260
4266
|
},
|
|
4261
4267
|
"sentencesCount": {
|
|
4262
|
-
"value":
|
|
4268
|
+
"value": 39
|
|
4263
4269
|
},
|
|
4264
4270
|
"linesCount": {
|
|
4265
|
-
"value":
|
|
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
|
|
4523
|
-
"temperature": 0.
|
|
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
|
|
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": "
|
|
4537
|
-
"systemMessage": "You are a
|
|
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
|
|
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-
|
|
4557
|
+
"promptbookVersion": "0.102.0-15",
|
|
4557
4558
|
"usage": {
|
|
4558
4559
|
"price": {
|
|
4559
|
-
"value": 0.
|
|
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":
|
|
4587
|
+
"value": 2049
|
|
4587
4588
|
},
|
|
4588
4589
|
"charactersCount": {
|
|
4589
|
-
"value":
|
|
4590
|
+
"value": 1954
|
|
4590
4591
|
},
|
|
4591
4592
|
"wordsCount": {
|
|
4592
|
-
"value":
|
|
4593
|
+
"value": 251
|
|
4593
4594
|
},
|
|
4594
4595
|
"sentencesCount": {
|
|
4595
|
-
"value":
|
|
4596
|
+
"value": 24
|
|
4596
4597
|
},
|
|
4597
4598
|
"linesCount": {
|
|
4598
|
-
"value":
|
|
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
|
-
"
|
|
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-
|
|
4678
|
+
"promptbookVersion": "0.102.0-15",
|
|
4699
4679
|
"usage": {
|
|
4700
4680
|
"price": {
|
|
4701
|
-
"value": 0.
|
|
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":
|
|
4708
|
+
"value": 1966
|
|
4729
4709
|
},
|
|
4730
4710
|
"charactersCount": {
|
|
4731
|
-
"value":
|
|
4711
|
+
"value": 144
|
|
4732
4712
|
},
|
|
4733
4713
|
"wordsCount": {
|
|
4734
|
-
"value":
|
|
4714
|
+
"value": 23
|
|
4735
4715
|
},
|
|
4736
4716
|
"sentencesCount": {
|
|
4737
|
-
"value":
|
|
4717
|
+
"value": 3
|
|
4738
4718
|
},
|
|
4739
4719
|
"linesCount": {
|
|
4740
|
-
"value":
|
|
4720
|
+
"value": 5
|
|
4741
4721
|
},
|
|
4742
4722
|
"paragraphsCount": {
|
|
4743
4723
|
"value": 1
|