@promptbook/templates 0.101.0-20 → 0.101.0-21
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 +139 -167
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +0 -24
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +0 -24
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +1 -1
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +2 -16
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +3 -0
- package/esm/typings/src/execution/PromptResult.d.ts +2 -4
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +2 -5
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +6 -2
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +3 -8
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -5
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +2 -5
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +2 -0
- package/esm/typings/src/llm-providers/mocked/test/joker.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/mocked/test/mocked-chat.test.d.ts +5 -0
- package/esm/typings/src/llm-providers/mocked/test/mocked-completion.test.d.ts +4 -0
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +3 -8
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -14
- package/esm/typings/src/scripting/_test/postprocessing.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +0 -1
- package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +2 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +139 -167
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +0 -16
- package/esm/typings/src/expectations/drafts/isDomainNameFree.d.ts +0 -10
- package/esm/typings/src/expectations/drafts/isGithubNameFree.d.ts +0 -10
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +0 -81
- /package/esm/typings/src/{llm-providers/_common/profiles/test/llmProviderProfiles.test.d.ts → cli/test/ptbk.test.d.ts} +0 -0
package/esm/index.es.js
CHANGED
|
@@ -14,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
14
14
|
* @generated
|
|
15
15
|
* @see https://github.com/webgptorg/promptbook
|
|
16
16
|
*/
|
|
17
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-21';
|
|
18
18
|
/**
|
|
19
19
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
20
20
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1560,45 +1560,35 @@ function getTemplatesPipelineCollection() {
|
|
|
1560
1560
|
"modelsRequirements": [
|
|
1561
1561
|
{
|
|
1562
1562
|
"modelVariant": "CHAT",
|
|
1563
|
-
"
|
|
1563
|
+
"models": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a senior Promptbook Project
|
|
1567
|
-
"temperature": 0.
|
|
1566
|
+
"systemMessage": "You are a senior developer of the Promptbook Project. Act as an implementation-focused assistant for prompt engineering, Promptbook DSL/templates, tooling integration, and LLM orchestration. Give precise, actionable answers with concise step-by-step guidance and correct code (TypeScript/Node and Python when relevant). Prefer deterministic outputs, state assumptions, and ask clarifying questions when requirements are ambiguous. Avoid speculation; if unsure, say you don't know.",
|
|
1567
|
+
"temperature": 0.2
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a friendly
|
|
1572
|
-
"temperature": 0.
|
|
1571
|
+
"systemMessage": "You are a friendly, knowledgeable Promptbook Project developer. Provide accurate, implementation-ready guidance on Promptbook usage, prompt design, integrations, and debugging. Keep replies concise and structured; include short code examples when helpful. Verify facts, avoid hallucinations, and ask for missing context.",
|
|
1572
|
+
"temperature": 0.3
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "o4-mini",
|
|
1576
|
-
"systemMessage": "You are a
|
|
1576
|
+
"systemMessage": "You are a fast reasoning assistant for a Promptbook developer. Solve problems step-by-step internally and present a concise, correct final answer with minimal verbosity. Focus on algorithmic planning, prompt evaluations, test harnesses, and edge cases. If information is missing, list the exact questions needed.",
|
|
1577
1577
|
"temperature": 0.2
|
|
1578
1578
|
},
|
|
1579
|
-
{
|
|
1580
|
-
"modelName": "gpt-4",
|
|
1581
|
-
"systemMessage": "You are an experienced Promptbook Project engineer and general-purpose virtual assistant. Deliver accurate, well-structured responses, minimize verbosity, and request clarification when needed. Do not provide chain-of-thought; give concise conclusions.",
|
|
1582
|
-
"temperature": 0.3
|
|
1583
|
-
},
|
|
1584
1579
|
{
|
|
1585
1580
|
"modelName": "o3",
|
|
1586
|
-
"systemMessage": "You are
|
|
1587
|
-
"temperature": 0.
|
|
1588
|
-
},
|
|
1589
|
-
{
|
|
1590
|
-
"modelName": "o1",
|
|
1591
|
-
"systemMessage": "You are a high-precision Promptbook developer assistant for analytical tasks. Produce deterministic, stepwise outputs with minimal verbosity. Ask targeted clarification questions and provide short rationale summaries without chain-of-thought.",
|
|
1592
|
-
"temperature": 0.2
|
|
1581
|
+
"systemMessage": "You are an advanced reasoning assistant for the Promptbook Project. Tackle complex design and debugging tasks (e.g., multi-agent orchestration, evaluation design, safety, and data pipelines). Think carefully and present a structured solution with clear assumptions and trade-offs. Do not expose internal chain-of-thought; provide only necessary reasoning summaries.",
|
|
1582
|
+
"temperature": 0.15
|
|
1593
1583
|
},
|
|
1594
1584
|
{
|
|
1595
|
-
"modelName": "
|
|
1596
|
-
"systemMessage": "You are
|
|
1597
|
-
"temperature": 0.
|
|
1585
|
+
"modelName": "gpt-4",
|
|
1586
|
+
"systemMessage": "You are an experienced Promptbook Project developer and helpful assistant. Provide practical, precise answers with correct code snippets and concise explanations. Ask clarifying questions when needed and avoid unsupported claims.",
|
|
1587
|
+
"temperature": 0.25
|
|
1598
1588
|
},
|
|
1599
1589
|
{
|
|
1600
1590
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1601
|
-
"systemMessage": "You are a
|
|
1591
|
+
"systemMessage": "You are a pragmatic Promptbook developer focused on cost-efficient support. Give concise, accurate answers and minimal examples. Confirm assumptions and request missing details before proceeding.",
|
|
1602
1592
|
"temperature": 0.2
|
|
1603
1593
|
}
|
|
1604
1594
|
]
|
|
@@ -1612,10 +1602,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1612
1602
|
"preparations": [
|
|
1613
1603
|
{
|
|
1614
1604
|
"id": 1,
|
|
1615
|
-
"promptbookVersion": "0.101.0-
|
|
1605
|
+
"promptbookVersion": "0.101.0-20",
|
|
1616
1606
|
"usage": {
|
|
1617
1607
|
"price": {
|
|
1618
|
-
"value": 0.
|
|
1608
|
+
"value": 0.03386375
|
|
1619
1609
|
},
|
|
1620
1610
|
"input": {
|
|
1621
1611
|
"tokensCount": {
|
|
@@ -1642,19 +1632,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1642
1632
|
},
|
|
1643
1633
|
"output": {
|
|
1644
1634
|
"tokensCount": {
|
|
1645
|
-
"value":
|
|
1635
|
+
"value": 2654
|
|
1646
1636
|
},
|
|
1647
1637
|
"charactersCount": {
|
|
1648
|
-
"value":
|
|
1638
|
+
"value": 2506
|
|
1649
1639
|
},
|
|
1650
1640
|
"wordsCount": {
|
|
1651
|
-
"value":
|
|
1641
|
+
"value": 322
|
|
1652
1642
|
},
|
|
1653
1643
|
"sentencesCount": {
|
|
1654
|
-
"value":
|
|
1644
|
+
"value": 34
|
|
1655
1645
|
},
|
|
1656
1646
|
"linesCount": {
|
|
1657
|
-
"value":
|
|
1647
|
+
"value": 65
|
|
1658
1648
|
},
|
|
1659
1649
|
"paragraphsCount": {
|
|
1660
1650
|
"value": 1
|
|
@@ -2140,45 +2130,35 @@ function getTemplatesPipelineCollection() {
|
|
|
2140
2130
|
"modelsRequirements": [
|
|
2141
2131
|
{
|
|
2142
2132
|
"modelVariant": "CHAT",
|
|
2143
|
-
"
|
|
2133
|
+
"models": [
|
|
2144
2134
|
{
|
|
2145
2135
|
"modelName": "gpt-4.1",
|
|
2146
|
-
"systemMessage": "You are a senior Promptbook Project
|
|
2147
|
-
"temperature": 0.
|
|
2136
|
+
"systemMessage": "You are a senior developer of the Promptbook Project. Act as an implementation-focused assistant for prompt engineering, Promptbook DSL/templates, tooling integration, and LLM orchestration. Give precise, actionable answers with concise step-by-step guidance and correct code (TypeScript/Node and Python when relevant). Prefer deterministic outputs, state assumptions, and ask clarifying questions when requirements are ambiguous. Avoid speculation; if unsure, say you don't know.",
|
|
2137
|
+
"temperature": 0.2
|
|
2148
2138
|
},
|
|
2149
2139
|
{
|
|
2150
2140
|
"modelName": "chatgpt-4o-latest",
|
|
2151
|
-
"systemMessage": "You are a friendly
|
|
2152
|
-
"temperature": 0.
|
|
2141
|
+
"systemMessage": "You are a friendly, knowledgeable Promptbook Project developer. Provide accurate, implementation-ready guidance on Promptbook usage, prompt design, integrations, and debugging. Keep replies concise and structured; include short code examples when helpful. Verify facts, avoid hallucinations, and ask for missing context.",
|
|
2142
|
+
"temperature": 0.3
|
|
2153
2143
|
},
|
|
2154
2144
|
{
|
|
2155
2145
|
"modelName": "o4-mini",
|
|
2156
|
-
"systemMessage": "You are a
|
|
2146
|
+
"systemMessage": "You are a fast reasoning assistant for a Promptbook developer. Solve problems step-by-step internally and present a concise, correct final answer with minimal verbosity. Focus on algorithmic planning, prompt evaluations, test harnesses, and edge cases. If information is missing, list the exact questions needed.",
|
|
2157
2147
|
"temperature": 0.2
|
|
2158
2148
|
},
|
|
2159
|
-
{
|
|
2160
|
-
"modelName": "gpt-4",
|
|
2161
|
-
"systemMessage": "You are an experienced Promptbook Project engineer and general-purpose virtual assistant. Deliver accurate, well-structured responses, minimize verbosity, and request clarification when needed. Do not provide chain-of-thought; give concise conclusions.",
|
|
2162
|
-
"temperature": 0.3
|
|
2163
|
-
},
|
|
2164
2149
|
{
|
|
2165
2150
|
"modelName": "o3",
|
|
2166
|
-
"systemMessage": "You are
|
|
2167
|
-
"temperature": 0.
|
|
2168
|
-
},
|
|
2169
|
-
{
|
|
2170
|
-
"modelName": "o1",
|
|
2171
|
-
"systemMessage": "You are a high-precision Promptbook developer assistant for analytical tasks. Produce deterministic, stepwise outputs with minimal verbosity. Ask targeted clarification questions and provide short rationale summaries without chain-of-thought.",
|
|
2172
|
-
"temperature": 0.2
|
|
2151
|
+
"systemMessage": "You are an advanced reasoning assistant for the Promptbook Project. Tackle complex design and debugging tasks (e.g., multi-agent orchestration, evaluation design, safety, and data pipelines). Think carefully and present a structured solution with clear assumptions and trade-offs. Do not expose internal chain-of-thought; provide only necessary reasoning summaries.",
|
|
2152
|
+
"temperature": 0.15
|
|
2173
2153
|
},
|
|
2174
2154
|
{
|
|
2175
|
-
"modelName": "
|
|
2176
|
-
"systemMessage": "You are
|
|
2177
|
-
"temperature": 0.
|
|
2155
|
+
"modelName": "gpt-4",
|
|
2156
|
+
"systemMessage": "You are an experienced Promptbook Project developer and helpful assistant. Provide practical, precise answers with correct code snippets and concise explanations. Ask clarifying questions when needed and avoid unsupported claims.",
|
|
2157
|
+
"temperature": 0.25
|
|
2178
2158
|
},
|
|
2179
2159
|
{
|
|
2180
2160
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2181
|
-
"systemMessage": "You are a
|
|
2161
|
+
"systemMessage": "You are a pragmatic Promptbook developer focused on cost-efficient support. Give concise, accurate answers and minimal examples. Confirm assumptions and request missing details before proceeding.",
|
|
2182
2162
|
"temperature": 0.2
|
|
2183
2163
|
}
|
|
2184
2164
|
]
|
|
@@ -2192,10 +2172,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2192
2172
|
"preparations": [
|
|
2193
2173
|
{
|
|
2194
2174
|
"id": 1,
|
|
2195
|
-
"promptbookVersion": "0.101.0-
|
|
2175
|
+
"promptbookVersion": "0.101.0-20",
|
|
2196
2176
|
"usage": {
|
|
2197
2177
|
"price": {
|
|
2198
|
-
"value": 0.
|
|
2178
|
+
"value": 0.03386375
|
|
2199
2179
|
},
|
|
2200
2180
|
"input": {
|
|
2201
2181
|
"tokensCount": {
|
|
@@ -2222,19 +2202,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2222
2202
|
},
|
|
2223
2203
|
"output": {
|
|
2224
2204
|
"tokensCount": {
|
|
2225
|
-
"value":
|
|
2205
|
+
"value": 2654
|
|
2226
2206
|
},
|
|
2227
2207
|
"charactersCount": {
|
|
2228
|
-
"value":
|
|
2208
|
+
"value": 2506
|
|
2229
2209
|
},
|
|
2230
2210
|
"wordsCount": {
|
|
2231
|
-
"value":
|
|
2211
|
+
"value": 322
|
|
2232
2212
|
},
|
|
2233
2213
|
"sentencesCount": {
|
|
2234
|
-
"value":
|
|
2214
|
+
"value": 34
|
|
2235
2215
|
},
|
|
2236
2216
|
"linesCount": {
|
|
2237
|
-
"value":
|
|
2217
|
+
"value": 65
|
|
2238
2218
|
},
|
|
2239
2219
|
"paragraphsCount": {
|
|
2240
2220
|
"value": 1
|
|
@@ -2864,22 +2844,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2864
2844
|
"models": [
|
|
2865
2845
|
{
|
|
2866
2846
|
"modelName": "gpt-4.1",
|
|
2867
|
-
"systemMessage": "You are a professional linguist and
|
|
2847
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2868
2848
|
"temperature": 0.2
|
|
2869
2849
|
},
|
|
2870
|
-
{
|
|
2871
|
-
"modelName": "chatgpt-4o-latest",
|
|
2872
|
-
"systemMessage": "You are a professional linguist and precise text corrector. Your responsibilities: - Correct grammar, spelling, punctuation, agreement, and syntax while preserving the author’s meaning and voice. - Improve clarity, concision, tone, and flow according to the user’s requested dialect/variant (default: US English) and register. - Maintain factual content; do not introduce new information unless asked. - If instructions are ambiguous, ask one brief clarifying question before editing. - Default output: 1) the corrected text; 2) a short bullet list of key changes and rationale. If the user says “just fix,” return only the corrected text. - Support multilingual input and code-switching; do not translate unless requested. - Respect names, formatting, placeholders, and quoted material (edit within quotes only if asked). - Follow specified style guides (AP, Chicago, MLA, etc.) when provided; otherwise use a neutral, plain style.",
|
|
2873
|
-
"temperature": 0.25
|
|
2874
|
-
},
|
|
2875
2850
|
{
|
|
2876
2851
|
"modelName": "gpt-4",
|
|
2877
|
-
"systemMessage": "You are a professional linguist and
|
|
2852
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2878
2853
|
"temperature": 0.2
|
|
2879
2854
|
},
|
|
2855
|
+
{
|
|
2856
|
+
"modelName": "chatgpt-4o-latest",
|
|
2857
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2858
|
+
"temperature": 0.3
|
|
2859
|
+
},
|
|
2880
2860
|
{
|
|
2881
2861
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2882
|
-
"systemMessage": "You are a professional linguist and
|
|
2862
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Detect the language automatically and correct grammar, spelling, punctuation, style, and clarity while preserving the author's intent. When asked, explain changes briefly and provide alternatives by register (formal, neutral, casual). Default to standard modern usage and concise, precise wording. Never invent facts; ask for missing context or a preferred style guide when relevant.",
|
|
2883
2863
|
"temperature": 0.2
|
|
2884
2864
|
}
|
|
2885
2865
|
]
|
|
@@ -2893,10 +2873,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2893
2873
|
"preparations": [
|
|
2894
2874
|
{
|
|
2895
2875
|
"id": 1,
|
|
2896
|
-
"promptbookVersion": "0.101.0-
|
|
2876
|
+
"promptbookVersion": "0.101.0-20",
|
|
2897
2877
|
"usage": {
|
|
2898
2878
|
"price": {
|
|
2899
|
-
"value": 0.
|
|
2879
|
+
"value": 0.030552500000000003
|
|
2900
2880
|
},
|
|
2901
2881
|
"input": {
|
|
2902
2882
|
"tokensCount": {
|
|
@@ -2923,19 +2903,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2923
2903
|
},
|
|
2924
2904
|
"output": {
|
|
2925
2905
|
"tokensCount": {
|
|
2926
|
-
"value":
|
|
2906
|
+
"value": 2323
|
|
2927
2907
|
},
|
|
2928
2908
|
"charactersCount": {
|
|
2929
|
-
"value":
|
|
2909
|
+
"value": 2202
|
|
2930
2910
|
},
|
|
2931
2911
|
"wordsCount": {
|
|
2932
|
-
"value":
|
|
2912
|
+
"value": 294
|
|
2933
2913
|
},
|
|
2934
2914
|
"sentencesCount": {
|
|
2935
|
-
"value":
|
|
2915
|
+
"value": 27
|
|
2936
2916
|
},
|
|
2937
2917
|
"linesCount": {
|
|
2938
|
-
"value":
|
|
2918
|
+
"value": 52
|
|
2939
2919
|
},
|
|
2940
2920
|
"paragraphsCount": {
|
|
2941
2921
|
"value": 1
|
|
@@ -3004,28 +2984,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3004
2984
|
"modelsRequirements": [
|
|
3005
2985
|
{
|
|
3006
2986
|
"modelVariant": "CHAT",
|
|
3007
|
-
"
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
"temperature": 0.7
|
|
3012
|
-
},
|
|
3013
|
-
{
|
|
3014
|
-
"modelName": "chatgpt-4o-latest",
|
|
3015
|
-
"systemMessage": "You are a fast, creative e-commerce copywriter and brainstorming partner. Produce multiple stylistic options (concise, persuasive, playful, luxury, technical) on request, plus alt versions for A/B tests. Maintain brand voice, integrate keywords naturally, and avoid unverifiable claims. Provide clear, skimmable output for product pages, ads, emails, and social captions.",
|
|
3016
|
-
"temperature": 0.75
|
|
3017
|
-
},
|
|
3018
|
-
{
|
|
3019
|
-
"modelName": "gpt-4",
|
|
3020
|
-
"systemMessage": "You are an experienced e-commerce copywriter focused on clarity and trust. Turn sparse specs into compelling copy, structure information for quick scanning, and suggest missing details to collect. Prioritize accuracy, policy compliance, and accessibility. Deliver title, bullets, description, and SEO meta as requested, keeping tone consistent with the brand.",
|
|
3021
|
-
"temperature": 0.6
|
|
3022
|
-
},
|
|
3023
|
-
{
|
|
3024
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
3025
|
-
"systemMessage": "You are a cost-efficient e-commerce copywriter for bulk product listings. Generate consistent, SEO-friendly copy from semi-structured data, preserve brand tone, and keep outputs deterministic when temperature is low. Flag missing or risky claims and propose questions to fill gaps. Output should be easy to import into spreadsheets.",
|
|
3026
|
-
"temperature": 0.4
|
|
3027
|
-
}
|
|
3028
|
-
]
|
|
2987
|
+
"error": {
|
|
2988
|
+
"message": "Invalid request: The models 'gpt-4.1' and 'chatgpt-4o-latest' are not available or accessible in the current environment.",
|
|
2989
|
+
"code": "model_not_available"
|
|
2990
|
+
}
|
|
3029
2991
|
}
|
|
3030
2992
|
],
|
|
3031
2993
|
"preparationIds": [
|
|
@@ -3036,10 +2998,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
2998
|
"preparations": [
|
|
3037
2999
|
{
|
|
3038
3000
|
"id": 1,
|
|
3039
|
-
"promptbookVersion": "0.101.0-
|
|
3001
|
+
"promptbookVersion": "0.101.0-20",
|
|
3040
3002
|
"usage": {
|
|
3041
3003
|
"price": {
|
|
3042
|
-
"value": 0.
|
|
3004
|
+
"value": 0.029102500000000003
|
|
3043
3005
|
},
|
|
3044
3006
|
"input": {
|
|
3045
3007
|
"tokensCount": {
|
|
@@ -3066,25 +3028,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3066
3028
|
},
|
|
3067
3029
|
"output": {
|
|
3068
3030
|
"tokensCount": {
|
|
3069
|
-
"value":
|
|
3031
|
+
"value": 2178
|
|
3070
3032
|
},
|
|
3071
3033
|
"charactersCount": {
|
|
3072
|
-
"value":
|
|
3034
|
+
"value": 194
|
|
3073
3035
|
},
|
|
3074
3036
|
"wordsCount": {
|
|
3075
|
-
"value":
|
|
3037
|
+
"value": 26
|
|
3076
3038
|
},
|
|
3077
3039
|
"sentencesCount": {
|
|
3078
|
-
"value":
|
|
3040
|
+
"value": 3
|
|
3079
3041
|
},
|
|
3080
3042
|
"linesCount": {
|
|
3081
|
-
"value":
|
|
3043
|
+
"value": 8
|
|
3082
3044
|
},
|
|
3083
3045
|
"paragraphsCount": {
|
|
3084
3046
|
"value": 1
|
|
3085
3047
|
},
|
|
3086
3048
|
"pagesCount": {
|
|
3087
|
-
"value":
|
|
3049
|
+
"value": 1
|
|
3088
3050
|
}
|
|
3089
3051
|
}
|
|
3090
3052
|
}
|
|
@@ -3132,7 +3094,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3132
3094
|
"preparations": [
|
|
3133
3095
|
{
|
|
3134
3096
|
"id": 1,
|
|
3135
|
-
"promptbookVersion": "0.101.0-
|
|
3097
|
+
"promptbookVersion": "0.101.0-20",
|
|
3136
3098
|
"usage": {
|
|
3137
3099
|
"price": {
|
|
3138
3100
|
"value": 0
|
|
@@ -3241,28 +3203,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3241
3203
|
"models": [
|
|
3242
3204
|
{
|
|
3243
3205
|
"modelName": "gpt-4.1",
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-
|
|
3245
|
-
"temperature": 0.
|
|
3206
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3207
|
+
"temperature": 0.4
|
|
3246
3208
|
},
|
|
3247
3209
|
{
|
|
3248
3210
|
"modelName": "chatgpt-4o-latest",
|
|
3249
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3211
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3250
3212
|
"temperature": 0.6
|
|
3251
3213
|
},
|
|
3252
3214
|
{
|
|
3253
3215
|
"modelName": "gpt-4",
|
|
3254
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3216
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3255
3217
|
"temperature": 0.5
|
|
3256
3218
|
},
|
|
3257
3219
|
{
|
|
3258
3220
|
"modelName": "o4-mini",
|
|
3259
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3260
|
-
"temperature": 0.
|
|
3221
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3222
|
+
"temperature": 0.4
|
|
3261
3223
|
},
|
|
3262
3224
|
{
|
|
3263
3225
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3264
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3226
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3265
3227
|
"temperature": 0.6
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"modelName": "gpt-3.5-turbo",
|
|
3231
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-informed, and actionable advice. When helpful, use established frameworks (e.g., SWOT, STP, 4Ps/7Ps, AARRR, JTBD, Porter's Five Forces, Ansoff). Ask 1-3 clarifying questions if information is missing. Prioritize ROI, unit economics, audience insight, messaging, channel mix, and experiment design. Offer step-by-step plans, timelines, KPIs/OKRs, budgets, and risks with mitigations. Be concise, use bullet points, and avoid heavy formatting. State assumptions, avoid speculation, and prefer practical, implementable recommendations. For calculations, show brief formulas and results. When relevant, cite reputable sources with links. Maintain a friendly, professional tone.",
|
|
3232
|
+
"temperature": 0.5
|
|
3266
3233
|
}
|
|
3267
3234
|
]
|
|
3268
3235
|
}
|
|
@@ -3275,10 +3242,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3275
3242
|
"preparations": [
|
|
3276
3243
|
{
|
|
3277
3244
|
"id": 1,
|
|
3278
|
-
"promptbookVersion": "0.101.0-
|
|
3245
|
+
"promptbookVersion": "0.101.0-20",
|
|
3279
3246
|
"usage": {
|
|
3280
3247
|
"price": {
|
|
3281
|
-
"value": 0.
|
|
3248
|
+
"value": 0.0429225
|
|
3282
3249
|
},
|
|
3283
3250
|
"input": {
|
|
3284
3251
|
"tokensCount": {
|
|
@@ -3305,25 +3272,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3305
3272
|
},
|
|
3306
3273
|
"output": {
|
|
3307
3274
|
"tokensCount": {
|
|
3308
|
-
"value":
|
|
3275
|
+
"value": 3560
|
|
3309
3276
|
},
|
|
3310
3277
|
"charactersCount": {
|
|
3311
|
-
"value":
|
|
3278
|
+
"value": 5210
|
|
3312
3279
|
},
|
|
3313
3280
|
"wordsCount": {
|
|
3314
|
-
"value":
|
|
3281
|
+
"value": 692
|
|
3315
3282
|
},
|
|
3316
3283
|
"sentencesCount": {
|
|
3317
|
-
"value":
|
|
3284
|
+
"value": 88
|
|
3318
3285
|
},
|
|
3319
3286
|
"linesCount": {
|
|
3320
|
-
"value":
|
|
3287
|
+
"value": 106
|
|
3321
3288
|
},
|
|
3322
3289
|
"paragraphsCount": {
|
|
3323
3290
|
"value": 1
|
|
3324
3291
|
},
|
|
3325
3292
|
"pagesCount": {
|
|
3326
|
-
"value":
|
|
3293
|
+
"value": 3
|
|
3327
3294
|
}
|
|
3328
3295
|
}
|
|
3329
3296
|
}
|
|
@@ -3397,23 +3364,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3397
3364
|
"models": [
|
|
3398
3365
|
{
|
|
3399
3366
|
"modelName": "gpt-4.1",
|
|
3400
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3401
|
-
"temperature": 0.
|
|
3367
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3368
|
+
"temperature": 0.45
|
|
3402
3369
|
},
|
|
3403
3370
|
{
|
|
3404
3371
|
"modelName": "chatgpt-4o-latest",
|
|
3405
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3372
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3406
3373
|
"temperature": 0.6
|
|
3407
3374
|
},
|
|
3408
3375
|
{
|
|
3409
3376
|
"modelName": "gpt-4",
|
|
3410
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3377
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3411
3378
|
"temperature": 0.45
|
|
3412
3379
|
},
|
|
3413
3380
|
{
|
|
3414
3381
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3415
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑
|
|
3416
|
-
"temperature": 0.
|
|
3382
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3383
|
+
"temperature": 0.5
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"modelName": "gpt-3.5-turbo",
|
|
3387
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.\n\nBehaviors:\n- Be empathetic, professional, and concise. Use plain language.\n- Solve customer requests (orders, returns, exchanges, shipping, sizing, product info). Ask for missing details (name, order number, email, item, issue) before acting.\n- Follow provided policies; never invent terms, fees, or guarantees. If unsure, ask or propose safe options and note assumptions.\n- Protect privacy; never reveal sensitive data; redact tokens/PII in examples.\n- Maintain brand voice: friendly, trustworthy, helpful, sales-aware but never pushy. Adapt tone to the customer.\n- For copywriting, produce clear, benefit-led, SEO-friendly titles, descriptions, emails, and social captions with accurate claims and a relevant CTA. Offer 2–3 variants when asked.\n- Use structured output (bullets, steps, templates). Localize spelling and units to the customer’s locale.\n- Keep responses factual and action-oriented.",
|
|
3388
|
+
"temperature": 0.5
|
|
3417
3389
|
}
|
|
3418
3390
|
]
|
|
3419
3391
|
}
|
|
@@ -3426,10 +3398,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3426
3398
|
"preparations": [
|
|
3427
3399
|
{
|
|
3428
3400
|
"id": 1,
|
|
3429
|
-
"promptbookVersion": "0.101.0-
|
|
3401
|
+
"promptbookVersion": "0.101.0-20",
|
|
3430
3402
|
"usage": {
|
|
3431
3403
|
"price": {
|
|
3432
|
-
"value": 0.
|
|
3404
|
+
"value": 0.039227500000000005
|
|
3433
3405
|
},
|
|
3434
3406
|
"input": {
|
|
3435
3407
|
"tokensCount": {
|
|
@@ -3456,25 +3428,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3456
3428
|
},
|
|
3457
3429
|
"output": {
|
|
3458
3430
|
"tokensCount": {
|
|
3459
|
-
"value":
|
|
3431
|
+
"value": 3190
|
|
3460
3432
|
},
|
|
3461
3433
|
"charactersCount": {
|
|
3462
|
-
"value":
|
|
3434
|
+
"value": 5471
|
|
3463
3435
|
},
|
|
3464
3436
|
"wordsCount": {
|
|
3465
|
-
"value":
|
|
3437
|
+
"value": 793
|
|
3466
3438
|
},
|
|
3467
3439
|
"sentencesCount": {
|
|
3468
|
-
"value":
|
|
3440
|
+
"value": 84
|
|
3469
3441
|
},
|
|
3470
3442
|
"linesCount": {
|
|
3471
|
-
"value":
|
|
3443
|
+
"value": 109
|
|
3472
3444
|
},
|
|
3473
3445
|
"paragraphsCount": {
|
|
3474
3446
|
"value": 1
|
|
3475
3447
|
},
|
|
3476
3448
|
"pagesCount": {
|
|
3477
|
-
"value":
|
|
3449
|
+
"value": 3
|
|
3478
3450
|
}
|
|
3479
3451
|
}
|
|
3480
3452
|
}
|
|
@@ -3722,26 +3694,26 @@ function getTemplatesPipelineCollection() {
|
|
|
3722
3694
|
"modelsRequirements": [
|
|
3723
3695
|
{
|
|
3724
3696
|
"modelVariant": "CHAT",
|
|
3725
|
-
"
|
|
3726
|
-
{
|
|
3727
|
-
"modelName": "chatgpt-4o-latest",
|
|
3728
|
-
"systemMessage": "You are a linguist and Esperantist. Act as a friendly, precise virtual assistant specializing in multilingual translation and analysis, IPA transcription, grammatical parsing, etymology, and expert Esperanto usage/teaching. Detect the user’s language and reply in it; if the user writes in Esperanto, respond fully in Esperanto. Be concise, provide clear examples when helpful, and ask clarifying questions when ambiguity arises.",
|
|
3729
|
-
"temperature": 0.4
|
|
3730
|
-
},
|
|
3697
|
+
"models": [
|
|
3731
3698
|
{
|
|
3732
3699
|
"modelName": "gpt-4.1",
|
|
3733
|
-
"systemMessage": "You are a linguist and Esperantist
|
|
3700
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3734
3701
|
"temperature": 0.3
|
|
3735
3702
|
},
|
|
3703
|
+
{
|
|
3704
|
+
"modelName": "chatgpt-4o-latest",
|
|
3705
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3706
|
+
"temperature": 0.4
|
|
3707
|
+
},
|
|
3736
3708
|
{
|
|
3737
3709
|
"modelName": "gpt-4",
|
|
3738
|
-
"systemMessage": "You are a linguist and Esperantist. Provide accurate, concise
|
|
3739
|
-
"temperature": 0.
|
|
3710
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3711
|
+
"temperature": 0.3
|
|
3740
3712
|
},
|
|
3741
3713
|
{
|
|
3742
3714
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3743
|
-
"systemMessage": "You are a linguist and Esperantist.
|
|
3744
|
-
"temperature": 0.
|
|
3715
|
+
"systemMessage": "You are a linguist and Esperantist virtual assistant. Provide accurate, concise explanations of linguistics (syntax, morphology, phonology, semantics, pragmatics), clear grammar guidance, and high-quality translations to and from Esperanto with notes on register and nuance. Include IPA when useful, give minimal well-chosen examples, ask clarifying questions when ambiguity exists, and avoid speculation.",
|
|
3716
|
+
"temperature": 0.4
|
|
3745
3717
|
}
|
|
3746
3718
|
]
|
|
3747
3719
|
}
|
|
@@ -3754,10 +3726,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3754
3726
|
"preparations": [
|
|
3755
3727
|
{
|
|
3756
3728
|
"id": 1,
|
|
3757
|
-
"promptbookVersion": "0.101.0-
|
|
3729
|
+
"promptbookVersion": "0.101.0-20",
|
|
3758
3730
|
"usage": {
|
|
3759
3731
|
"price": {
|
|
3760
|
-
"value": 0.
|
|
3732
|
+
"value": 0.024032500000000005
|
|
3761
3733
|
},
|
|
3762
3734
|
"input": {
|
|
3763
3735
|
"tokensCount": {
|
|
@@ -3784,19 +3756,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3784
3756
|
},
|
|
3785
3757
|
"output": {
|
|
3786
3758
|
"tokensCount": {
|
|
3787
|
-
"value":
|
|
3759
|
+
"value": 1671
|
|
3788
3760
|
},
|
|
3789
3761
|
"charactersCount": {
|
|
3790
|
-
"value":
|
|
3762
|
+
"value": 2038
|
|
3791
3763
|
},
|
|
3792
3764
|
"wordsCount": {
|
|
3793
|
-
"value":
|
|
3765
|
+
"value": 258
|
|
3794
3766
|
},
|
|
3795
3767
|
"sentencesCount": {
|
|
3796
|
-
"value":
|
|
3768
|
+
"value": 19
|
|
3797
3769
|
},
|
|
3798
3770
|
"linesCount": {
|
|
3799
|
-
"value":
|
|
3771
|
+
"value": 48
|
|
3800
3772
|
},
|
|
3801
3773
|
"paragraphsCount": {
|
|
3802
3774
|
"value": 1
|
|
@@ -3867,23 +3839,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3867
3839
|
"models": [
|
|
3868
3840
|
{
|
|
3869
3841
|
"modelName": "gpt-4.1",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3871
|
-
"temperature": 0.
|
|
3842
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3843
|
+
"temperature": 0.78
|
|
3872
3844
|
},
|
|
3873
3845
|
{
|
|
3874
3846
|
"modelName": "chatgpt-4o-latest",
|
|
3875
|
-
"systemMessage": "You are an accomplished poet and storyteller with
|
|
3876
|
-
"temperature": 0.
|
|
3847
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3848
|
+
"temperature": 0.85
|
|
3877
3849
|
},
|
|
3878
3850
|
{
|
|
3879
3851
|
"modelName": "gpt-4",
|
|
3880
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3881
|
-
"temperature": 0.
|
|
3852
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3853
|
+
"temperature": 0.8
|
|
3882
3854
|
},
|
|
3883
3855
|
{
|
|
3884
3856
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3885
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3886
|
-
"temperature": 0.
|
|
3857
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt voice, meter, and narrative structure to the user's request (e.g., free verse, sonnet, fable, mythic epic, microfiction). Be original, avoid clichés, and honor constraints such as length, form, theme, and tone. When asked for edits, preserve core intent while improving clarity, music, and pacing. If the user seeks factual info, answer briefly then, if appropriate, illustrate with a short, artful example. Ask one clarifying question when requirements are ambiguous.",
|
|
3858
|
+
"temperature": 0.9
|
|
3887
3859
|
}
|
|
3888
3860
|
]
|
|
3889
3861
|
}
|
|
@@ -3896,10 +3868,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3896
3868
|
"preparations": [
|
|
3897
3869
|
{
|
|
3898
3870
|
"id": 1,
|
|
3899
|
-
"promptbookVersion": "0.101.0-
|
|
3871
|
+
"promptbookVersion": "0.101.0-20",
|
|
3900
3872
|
"usage": {
|
|
3901
3873
|
"price": {
|
|
3902
|
-
"value": 0.
|
|
3874
|
+
"value": 0.025831250000000004
|
|
3903
3875
|
},
|
|
3904
3876
|
"input": {
|
|
3905
3877
|
"tokensCount": {
|
|
@@ -3926,19 +3898,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3926
3898
|
},
|
|
3927
3899
|
"output": {
|
|
3928
3900
|
"tokensCount": {
|
|
3929
|
-
"value":
|
|
3901
|
+
"value": 1851
|
|
3930
3902
|
},
|
|
3931
3903
|
"charactersCount": {
|
|
3932
|
-
"value":
|
|
3904
|
+
"value": 2736
|
|
3933
3905
|
},
|
|
3934
3906
|
"wordsCount": {
|
|
3935
|
-
"value":
|
|
3907
|
+
"value": 390
|
|
3936
3908
|
},
|
|
3937
3909
|
"sentencesCount": {
|
|
3938
|
-
"value":
|
|
3910
|
+
"value": 43
|
|
3939
3911
|
},
|
|
3940
3912
|
"linesCount": {
|
|
3941
|
-
"value":
|
|
3913
|
+
"value": 60
|
|
3942
3914
|
},
|
|
3943
3915
|
"paragraphsCount": {
|
|
3944
3916
|
"value": 1
|