@promptbook/templates 0.101.0-2 → 0.101.0-20
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 +162 -152
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +20 -0
- package/esm/typings/src/_packages/core.index.d.ts +14 -0
- package/esm/typings/src/_packages/types.index.d.ts +14 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +41 -3
- package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +3 -0
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +4 -22
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.d.ts +1 -26
- package/esm/typings/src/book-2.0/agent-source/parseParameters.d.ts +13 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +59 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +47 -0
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +31 -4
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +20 -2
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/index.d.ts +7 -3
- package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +2 -2
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +63 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/index.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +4 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +26 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/hooks/index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/hooks/useChatAutoScroll.d.ts +41 -0
- package/esm/typings/src/book-components/Chat/hooks/useSendMessageToLlmChat.d.ts +44 -0
- package/esm/typings/src/book-components/Chat/utils/parseMessageButtons.d.ts +22 -0
- package/esm/typings/src/book-components/icons/PauseIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/PlayIcon.d.ts +8 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -2
- package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +1 -3
- package/esm/typings/src/formats/csv/CsvFormatError.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +1 -2
- package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.d.ts +8 -2
- package/esm/typings/src/llm-providers/_common/utils/removeUnsupportedModelRequirements.d.ts +25 -0
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +5 -13
- package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +11 -0
- package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +2 -1
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +54 -0
- package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +29 -0
- package/esm/typings/src/llm-providers/agent/playground/playground.d.ts +8 -0
- package/esm/typings/src/llm-providers/agent/register-configuration.d.ts +11 -0
- package/esm/typings/src/llm-providers/agent/register-constructor.d.ts +13 -0
- package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +1 -0
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +2 -5
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +2 -6
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +15 -8
- package/esm/typings/src/personas/preparePersona.d.ts +1 -0
- package/esm/typings/src/remote-server/openapi-types.d.ts +31 -31
- package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +1 -2
- package/esm/typings/src/types/ModelRequirements.d.ts +2 -4
- package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +1 -1
- package/esm/typings/src/utils/editable/edit-pipeline-string/addPipelineCommand.d.ts +1 -1
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +162 -152
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +0 -17
- package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +0 -12
- package/esm/typings/src/llm-providers/mocked/test/joker.test.d.ts +0 -4
- package/esm/typings/src/llm-providers/mocked/test/mocked-chat.test.d.ts +0 -5
- package/esm/typings/src/llm-providers/mocked/test/mocked-completion.test.d.ts +0 -4
- package/esm/typings/src/scripting/_test/postprocessing.test.d.ts +0 -1
- /package/esm/typings/src/{cli/test/ptbk.test.d.ts → llm-providers/_common/utils/removeUnsupportedModelRequirements.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-20';
|
|
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,31 +1560,46 @@ function getTemplatesPipelineCollection() {
|
|
|
1560
1560
|
"modelsRequirements": [
|
|
1561
1561
|
{
|
|
1562
1562
|
"modelVariant": "CHAT",
|
|
1563
|
-
"
|
|
1563
|
+
"results": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a
|
|
1566
|
+
"systemMessage": "You are a senior Promptbook Project developer and virtual assistant architect. Provide concise, reliable, and structured answers using bullet points and numbered steps when helpful. Ask clarifying questions if requirements are ambiguous. Use tools/functions when available. Do not reveal chain-of-thought; provide short, decision-focused justifications only.",
|
|
1567
1567
|
"temperature": 0.3
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a
|
|
1571
|
+
"systemMessage": "You are a friendly yet precise virtual assistant optimized for Promptbook workflows and multimodal inputs. Be concise, follow instructions strictly, surface assumptions, and suggest function/tool calls when appropriate. Avoid chain-of-thought; provide brief rationales.",
|
|
1572
1572
|
"temperature": 0.4
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "o4-mini",
|
|
1576
|
-
"systemMessage": "You are a
|
|
1577
|
-
"temperature": 0.
|
|
1576
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Aim for fast, deterministic, and structured outputs suitable for production pipelines. Ask for missing context, use stepwise bullet points, and avoid exposing chain-of-thought.",
|
|
1577
|
+
"temperature": 0.2
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
1580
|
"modelName": "gpt-4",
|
|
1581
|
-
"systemMessage": "You are
|
|
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
1582
|
"temperature": 0.3
|
|
1583
1583
|
},
|
|
1584
|
+
{
|
|
1585
|
+
"modelName": "o3",
|
|
1586
|
+
"systemMessage": "You are a deep-reasoning assistant for complex Promptbook tasks (architecture decisions, debugging prompts, evaluations). Think carefully but share only concise final reasoning summaries and actionable steps. Avoid chain-of-thought exposition.",
|
|
1587
|
+
"temperature": 0.1
|
|
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
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"modelName": "o1-mini",
|
|
1596
|
+
"systemMessage": "You are a lightweight reasoning assistant for Promptbook workflows where speed and cost matter. Keep answers concise and structured, confirm assumptions, and avoid revealing chain-of-thought.",
|
|
1597
|
+
"temperature": 0.2
|
|
1598
|
+
},
|
|
1584
1599
|
{
|
|
1585
1600
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1586
|
-
"systemMessage": "You are a
|
|
1587
|
-
"temperature": 0.
|
|
1601
|
+
"systemMessage": "You are a budget-friendly Promptbook assistant for routine tasks and long-context summaries. Be concise, follow instructions, and provide clear bullet-point outputs. Do not reveal chain-of-thought.",
|
|
1602
|
+
"temperature": 0.2
|
|
1588
1603
|
}
|
|
1589
1604
|
]
|
|
1590
1605
|
}
|
|
@@ -1597,14 +1612,14 @@ function getTemplatesPipelineCollection() {
|
|
|
1597
1612
|
"preparations": [
|
|
1598
1613
|
{
|
|
1599
1614
|
"id": 1,
|
|
1600
|
-
"promptbookVersion": "0.101.0-
|
|
1615
|
+
"promptbookVersion": "0.101.0-19",
|
|
1601
1616
|
"usage": {
|
|
1602
1617
|
"price": {
|
|
1603
|
-
"value": 0.
|
|
1618
|
+
"value": 0.03071375
|
|
1604
1619
|
},
|
|
1605
1620
|
"input": {
|
|
1606
1621
|
"tokensCount": {
|
|
1607
|
-
"value":
|
|
1622
|
+
"value": 5859
|
|
1608
1623
|
},
|
|
1609
1624
|
"charactersCount": {
|
|
1610
1625
|
"value": 2377
|
|
@@ -1627,19 +1642,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1627
1642
|
},
|
|
1628
1643
|
"output": {
|
|
1629
1644
|
"tokensCount": {
|
|
1630
|
-
"value":
|
|
1645
|
+
"value": 2339
|
|
1631
1646
|
},
|
|
1632
1647
|
"charactersCount": {
|
|
1633
|
-
"value":
|
|
1648
|
+
"value": 2774
|
|
1634
1649
|
},
|
|
1635
1650
|
"wordsCount": {
|
|
1636
|
-
"value":
|
|
1651
|
+
"value": 347
|
|
1637
1652
|
},
|
|
1638
1653
|
"sentencesCount": {
|
|
1639
|
-
"value":
|
|
1654
|
+
"value": 36
|
|
1640
1655
|
},
|
|
1641
1656
|
"linesCount": {
|
|
1642
|
-
"value":
|
|
1657
|
+
"value": 76
|
|
1643
1658
|
},
|
|
1644
1659
|
"paragraphsCount": {
|
|
1645
1660
|
"value": 1
|
|
@@ -2125,31 +2140,46 @@ function getTemplatesPipelineCollection() {
|
|
|
2125
2140
|
"modelsRequirements": [
|
|
2126
2141
|
{
|
|
2127
2142
|
"modelVariant": "CHAT",
|
|
2128
|
-
"
|
|
2143
|
+
"results": [
|
|
2129
2144
|
{
|
|
2130
2145
|
"modelName": "gpt-4.1",
|
|
2131
|
-
"systemMessage": "You are a
|
|
2146
|
+
"systemMessage": "You are a senior Promptbook Project developer and virtual assistant architect. Provide concise, reliable, and structured answers using bullet points and numbered steps when helpful. Ask clarifying questions if requirements are ambiguous. Use tools/functions when available. Do not reveal chain-of-thought; provide short, decision-focused justifications only.",
|
|
2132
2147
|
"temperature": 0.3
|
|
2133
2148
|
},
|
|
2134
2149
|
{
|
|
2135
2150
|
"modelName": "chatgpt-4o-latest",
|
|
2136
|
-
"systemMessage": "You are a
|
|
2151
|
+
"systemMessage": "You are a friendly yet precise virtual assistant optimized for Promptbook workflows and multimodal inputs. Be concise, follow instructions strictly, surface assumptions, and suggest function/tool calls when appropriate. Avoid chain-of-thought; provide brief rationales.",
|
|
2137
2152
|
"temperature": 0.4
|
|
2138
2153
|
},
|
|
2139
2154
|
{
|
|
2140
2155
|
"modelName": "o4-mini",
|
|
2141
|
-
"systemMessage": "You are a
|
|
2142
|
-
"temperature": 0.
|
|
2156
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Aim for fast, deterministic, and structured outputs suitable for production pipelines. Ask for missing context, use stepwise bullet points, and avoid exposing chain-of-thought.",
|
|
2157
|
+
"temperature": 0.2
|
|
2143
2158
|
},
|
|
2144
2159
|
{
|
|
2145
2160
|
"modelName": "gpt-4",
|
|
2146
|
-
"systemMessage": "You are
|
|
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.",
|
|
2147
2162
|
"temperature": 0.3
|
|
2148
2163
|
},
|
|
2164
|
+
{
|
|
2165
|
+
"modelName": "o3",
|
|
2166
|
+
"systemMessage": "You are a deep-reasoning assistant for complex Promptbook tasks (architecture decisions, debugging prompts, evaluations). Think carefully but share only concise final reasoning summaries and actionable steps. Avoid chain-of-thought exposition.",
|
|
2167
|
+
"temperature": 0.1
|
|
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
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
"modelName": "o1-mini",
|
|
2176
|
+
"systemMessage": "You are a lightweight reasoning assistant for Promptbook workflows where speed and cost matter. Keep answers concise and structured, confirm assumptions, and avoid revealing chain-of-thought.",
|
|
2177
|
+
"temperature": 0.2
|
|
2178
|
+
},
|
|
2149
2179
|
{
|
|
2150
2180
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2151
|
-
"systemMessage": "You are a
|
|
2152
|
-
"temperature": 0.
|
|
2181
|
+
"systemMessage": "You are a budget-friendly Promptbook assistant for routine tasks and long-context summaries. Be concise, follow instructions, and provide clear bullet-point outputs. Do not reveal chain-of-thought.",
|
|
2182
|
+
"temperature": 0.2
|
|
2153
2183
|
}
|
|
2154
2184
|
]
|
|
2155
2185
|
}
|
|
@@ -2162,14 +2192,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2162
2192
|
"preparations": [
|
|
2163
2193
|
{
|
|
2164
2194
|
"id": 1,
|
|
2165
|
-
"promptbookVersion": "0.101.0-
|
|
2195
|
+
"promptbookVersion": "0.101.0-19",
|
|
2166
2196
|
"usage": {
|
|
2167
2197
|
"price": {
|
|
2168
|
-
"value": 0.
|
|
2198
|
+
"value": 0.03071375
|
|
2169
2199
|
},
|
|
2170
2200
|
"input": {
|
|
2171
2201
|
"tokensCount": {
|
|
2172
|
-
"value":
|
|
2202
|
+
"value": 5859
|
|
2173
2203
|
},
|
|
2174
2204
|
"charactersCount": {
|
|
2175
2205
|
"value": 2377
|
|
@@ -2192,19 +2222,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2192
2222
|
},
|
|
2193
2223
|
"output": {
|
|
2194
2224
|
"tokensCount": {
|
|
2195
|
-
"value":
|
|
2225
|
+
"value": 2339
|
|
2196
2226
|
},
|
|
2197
2227
|
"charactersCount": {
|
|
2198
|
-
"value":
|
|
2228
|
+
"value": 2774
|
|
2199
2229
|
},
|
|
2200
2230
|
"wordsCount": {
|
|
2201
|
-
"value":
|
|
2231
|
+
"value": 347
|
|
2202
2232
|
},
|
|
2203
2233
|
"sentencesCount": {
|
|
2204
|
-
"value":
|
|
2234
|
+
"value": 36
|
|
2205
2235
|
},
|
|
2206
2236
|
"linesCount": {
|
|
2207
|
-
"value":
|
|
2237
|
+
"value": 76
|
|
2208
2238
|
},
|
|
2209
2239
|
"paragraphsCount": {
|
|
2210
2240
|
"value": 1
|
|
@@ -2834,22 +2864,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2834
2864
|
"models": [
|
|
2835
2865
|
{
|
|
2836
2866
|
"modelName": "gpt-4.1",
|
|
2837
|
-
"systemMessage": "You are a linguist and
|
|
2838
|
-
"temperature": 0.
|
|
2867
|
+
"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.",
|
|
2868
|
+
"temperature": 0.2
|
|
2839
2869
|
},
|
|
2840
2870
|
{
|
|
2841
2871
|
"modelName": "chatgpt-4o-latest",
|
|
2842
|
-
"systemMessage": "You are a linguist and
|
|
2843
|
-
"temperature": 0.
|
|
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
|
|
2844
2874
|
},
|
|
2845
2875
|
{
|
|
2846
2876
|
"modelName": "gpt-4",
|
|
2847
|
-
"systemMessage": "You are a linguist and
|
|
2848
|
-
"temperature": 0.
|
|
2877
|
+
"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.",
|
|
2878
|
+
"temperature": 0.2
|
|
2849
2879
|
},
|
|
2850
2880
|
{
|
|
2851
2881
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2852
|
-
"systemMessage": "You are a linguist and
|
|
2882
|
+
"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.",
|
|
2853
2883
|
"temperature": 0.2
|
|
2854
2884
|
}
|
|
2855
2885
|
]
|
|
@@ -2863,14 +2893,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2863
2893
|
"preparations": [
|
|
2864
2894
|
{
|
|
2865
2895
|
"id": 1,
|
|
2866
|
-
"promptbookVersion": "0.101.0-
|
|
2896
|
+
"promptbookVersion": "0.101.0-19",
|
|
2867
2897
|
"usage": {
|
|
2868
2898
|
"price": {
|
|
2869
|
-
"value": 0.
|
|
2899
|
+
"value": 0.0375525
|
|
2870
2900
|
},
|
|
2871
2901
|
"input": {
|
|
2872
2902
|
"tokensCount": {
|
|
2873
|
-
"value":
|
|
2903
|
+
"value": 5858
|
|
2874
2904
|
},
|
|
2875
2905
|
"charactersCount": {
|
|
2876
2906
|
"value": 2377
|
|
@@ -2893,19 +2923,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2893
2923
|
},
|
|
2894
2924
|
"output": {
|
|
2895
2925
|
"tokensCount": {
|
|
2896
|
-
"value":
|
|
2926
|
+
"value": 3023
|
|
2897
2927
|
},
|
|
2898
2928
|
"charactersCount": {
|
|
2899
|
-
"value":
|
|
2929
|
+
"value": 4147
|
|
2900
2930
|
},
|
|
2901
2931
|
"wordsCount": {
|
|
2902
|
-
"value":
|
|
2932
|
+
"value": 574
|
|
2903
2933
|
},
|
|
2904
2934
|
"sentencesCount": {
|
|
2905
|
-
"value":
|
|
2935
|
+
"value": 51
|
|
2906
2936
|
},
|
|
2907
2937
|
"linesCount": {
|
|
2908
|
-
"value":
|
|
2938
|
+
"value": 84
|
|
2909
2939
|
},
|
|
2910
2940
|
"paragraphsCount": {
|
|
2911
2941
|
"value": 1
|
|
@@ -2977,23 +3007,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2977
3007
|
"models": [
|
|
2978
3008
|
{
|
|
2979
3009
|
"modelName": "gpt-4.1",
|
|
2980
|
-
"systemMessage": "You are a
|
|
2981
|
-
"temperature": 0.
|
|
3010
|
+
"systemMessage": "You are a senior e-commerce copywriter. Write persuasive, on-brand product titles, bullet points, and descriptions that increase conversion and SEO. Adapt voice to the brand and audience, emphasize benefits over features, weave provided keywords naturally, and keep claims accurate and compliant. When info is missing, ask concise clarifying questions. By default deliver: title, 5 benefit bullets, a 120-180 word description, SEO meta title (<=60 chars), SEO meta description (<=155 chars), and 3 short ad headlines. Keep formatting clean and scannable.",
|
|
3011
|
+
"temperature": 0.7
|
|
2982
3012
|
},
|
|
2983
3013
|
{
|
|
2984
3014
|
"modelName": "chatgpt-4o-latest",
|
|
2985
|
-
"systemMessage": "You are a
|
|
2986
|
-
"temperature": 0.
|
|
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
|
|
2987
3017
|
},
|
|
2988
3018
|
{
|
|
2989
3019
|
"modelName": "gpt-4",
|
|
2990
|
-
"systemMessage": "You are
|
|
2991
|
-
"temperature": 0.
|
|
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
|
|
2992
3022
|
},
|
|
2993
3023
|
{
|
|
2994
3024
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2995
|
-
"systemMessage": "You are a
|
|
2996
|
-
"temperature": 0.
|
|
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
|
|
2997
3027
|
}
|
|
2998
3028
|
]
|
|
2999
3029
|
}
|
|
@@ -3006,14 +3036,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3006
3036
|
"preparations": [
|
|
3007
3037
|
{
|
|
3008
3038
|
"id": 1,
|
|
3009
|
-
"promptbookVersion": "0.101.0-
|
|
3039
|
+
"promptbookVersion": "0.101.0-19",
|
|
3010
3040
|
"usage": {
|
|
3011
3041
|
"price": {
|
|
3012
|
-
"value": 0.
|
|
3042
|
+
"value": 0.04076250000000001
|
|
3013
3043
|
},
|
|
3014
3044
|
"input": {
|
|
3015
3045
|
"tokensCount": {
|
|
3016
|
-
"value":
|
|
3046
|
+
"value": 5858
|
|
3017
3047
|
},
|
|
3018
3048
|
"charactersCount": {
|
|
3019
3049
|
"value": 2377
|
|
@@ -3036,25 +3066,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
3066
|
},
|
|
3037
3067
|
"output": {
|
|
3038
3068
|
"tokensCount": {
|
|
3039
|
-
"value":
|
|
3069
|
+
"value": 3344
|
|
3040
3070
|
},
|
|
3041
3071
|
"charactersCount": {
|
|
3042
|
-
"value":
|
|
3072
|
+
"value": 2035
|
|
3043
3073
|
},
|
|
3044
3074
|
"wordsCount": {
|
|
3045
|
-
"value":
|
|
3075
|
+
"value": 277
|
|
3046
3076
|
},
|
|
3047
3077
|
"sentencesCount": {
|
|
3048
|
-
"value":
|
|
3078
|
+
"value": 25
|
|
3049
3079
|
},
|
|
3050
3080
|
"linesCount": {
|
|
3051
|
-
"value":
|
|
3081
|
+
"value": 50
|
|
3052
3082
|
},
|
|
3053
3083
|
"paragraphsCount": {
|
|
3054
3084
|
"value": 1
|
|
3055
3085
|
},
|
|
3056
3086
|
"pagesCount": {
|
|
3057
|
-
"value":
|
|
3087
|
+
"value": 2
|
|
3058
3088
|
}
|
|
3059
3089
|
}
|
|
3060
3090
|
}
|
|
@@ -3102,7 +3132,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3102
3132
|
"preparations": [
|
|
3103
3133
|
{
|
|
3104
3134
|
"id": 1,
|
|
3105
|
-
"promptbookVersion": "0.101.0-
|
|
3135
|
+
"promptbookVersion": "0.101.0-19",
|
|
3106
3136
|
"usage": {
|
|
3107
3137
|
"price": {
|
|
3108
3138
|
"value": 0
|
|
@@ -3211,28 +3241,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3211
3241
|
"models": [
|
|
3212
3242
|
{
|
|
3213
3243
|
"modelName": "gpt-4.1",
|
|
3214
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice
|
|
3215
|
-
"temperature": 0.
|
|
3244
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice using clear frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT, PESTLE). Deliver structured outputs (go-to-market plans, campaign briefs, positioning statements, content calendars, KPI dashboards). Ask clarifying questions when objectives, constraints, or audience details are ambiguous. Tailor recommendations to budget, timeline, channel mix, and brand voice. When writing copy, propose multiple variants with rationales and CTAs. Cite sources for market stats and state assumptions when data is uncertain. Be concise and prioritize business impact and feasibility.",
|
|
3245
|
+
"temperature": 0.5
|
|
3216
3246
|
},
|
|
3217
3247
|
{
|
|
3218
3248
|
"modelName": "chatgpt-4o-latest",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3220
|
-
"temperature": 0.
|
|
3249
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be pragmatic, personable, and results-focused. Use proven frameworks (STP, 4Ps/7Ps, AARRR, JTBD, SWOT/PESTLE) and back recommendations with reasoning and examples. Produce ready-to-use deliverables (ad copy, email sequences, landing page outlines, campaign calendars, ICPs, messaging matrices). Ask targeted clarification questions, adapt to budget and timelines, and provide test plans with KPIs. Offer 2–3 creative options for copy and positioning. Cite sources for market data and note assumptions.",
|
|
3250
|
+
"temperature": 0.6
|
|
3221
3251
|
},
|
|
3222
3252
|
{
|
|
3223
3253
|
"modelName": "gpt-4",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3225
|
-
"temperature": 0.
|
|
3254
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, evidence-based guidance, using frameworks like STP, 4Ps/7Ps, AARRR, JTBD, SWOT, and PESTLE. Deliver concise strategies, step-by-step plans, and measurable KPIs. Tailor output to audience, channel, and budget. Generate multiple copy variants with clear CTAs and testing plans. Ask clarifying questions when needed and cite credible sources for statistics.",
|
|
3255
|
+
"temperature": 0.5
|
|
3226
3256
|
},
|
|
3227
3257
|
{
|
|
3228
3258
|
"modelName": "o4-mini",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3230
|
-
"temperature": 0.
|
|
3259
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on rigorous yet practical analysis. Decompose problems, quantify assumptions, and estimate impact (CAC, LTV, ROAS, payback). Use frameworks (STP, 4Ps/7Ps, AARRR, JTBD, SWOT/PESTLE) and produce prioritized roadmaps, experiments, and KPIs. Flag uncertainties and provide sensitivity analyses. Ask clarifying questions before committing to a plan.",
|
|
3260
|
+
"temperature": 0.35
|
|
3231
3261
|
},
|
|
3232
3262
|
{
|
|
3233
3263
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3235
|
-
"temperature": 0.
|
|
3264
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Keep advice actionable and concise. Use standard marketing frameworks, deliver simple plans and checklists, propose A/B test ideas with KPIs, and produce short copy variants with clear CTAs. Ask clarifying questions if requirements are unclear and tailor guidance to budget and audience.",
|
|
3265
|
+
"temperature": 0.6
|
|
3236
3266
|
}
|
|
3237
3267
|
]
|
|
3238
3268
|
}
|
|
@@ -3245,14 +3275,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3245
3275
|
"preparations": [
|
|
3246
3276
|
{
|
|
3247
3277
|
"id": 1,
|
|
3248
|
-
"promptbookVersion": "0.101.0-
|
|
3278
|
+
"promptbookVersion": "0.101.0-19",
|
|
3249
3279
|
"usage": {
|
|
3250
3280
|
"price": {
|
|
3251
|
-
"value": 0.
|
|
3281
|
+
"value": 0.030152500000000006
|
|
3252
3282
|
},
|
|
3253
3283
|
"input": {
|
|
3254
3284
|
"tokensCount": {
|
|
3255
|
-
"value":
|
|
3285
|
+
"value": 5858
|
|
3256
3286
|
},
|
|
3257
3287
|
"charactersCount": {
|
|
3258
3288
|
"value": 2377
|
|
@@ -3275,19 +3305,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3275
3305
|
},
|
|
3276
3306
|
"output": {
|
|
3277
3307
|
"tokensCount": {
|
|
3278
|
-
"value":
|
|
3308
|
+
"value": 2283
|
|
3279
3309
|
},
|
|
3280
3310
|
"charactersCount": {
|
|
3281
|
-
"value":
|
|
3311
|
+
"value": 2977
|
|
3282
3312
|
},
|
|
3283
3313
|
"wordsCount": {
|
|
3284
|
-
"value":
|
|
3314
|
+
"value": 395
|
|
3285
3315
|
},
|
|
3286
3316
|
"sentencesCount": {
|
|
3287
|
-
"value":
|
|
3317
|
+
"value": 40
|
|
3288
3318
|
},
|
|
3289
3319
|
"linesCount": {
|
|
3290
|
-
"value":
|
|
3320
|
+
"value": 69
|
|
3291
3321
|
},
|
|
3292
3322
|
"paragraphsCount": {
|
|
3293
3323
|
"value": 1
|
|
@@ -3367,28 +3397,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3367
3397
|
"models": [
|
|
3368
3398
|
{
|
|
3369
3399
|
"modelName": "gpt-4.1",
|
|
3370
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3371
|
-
"temperature": 0.
|
|
3400
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3401
|
+
"temperature": 0.5
|
|
3372
3402
|
},
|
|
3373
3403
|
{
|
|
3374
3404
|
"modelName": "chatgpt-4o-latest",
|
|
3375
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3376
|
-
"temperature": 0.
|
|
3405
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3406
|
+
"temperature": 0.6
|
|
3377
3407
|
},
|
|
3378
3408
|
{
|
|
3379
3409
|
"modelName": "gpt-4",
|
|
3380
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3381
|
-
"temperature": 0.
|
|
3382
|
-
},
|
|
3383
|
-
{
|
|
3384
|
-
"modelName": "o4-mini",
|
|
3385
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3386
|
-
"temperature": 0.4
|
|
3410
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3411
|
+
"temperature": 0.45
|
|
3387
3412
|
},
|
|
3388
3413
|
{
|
|
3389
3414
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3390
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3391
|
-
"temperature": 0.
|
|
3415
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3416
|
+
"temperature": 0.6
|
|
3392
3417
|
}
|
|
3393
3418
|
]
|
|
3394
3419
|
}
|
|
@@ -3401,14 +3426,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3401
3426
|
"preparations": [
|
|
3402
3427
|
{
|
|
3403
3428
|
"id": 1,
|
|
3404
|
-
"promptbookVersion": "0.101.0-
|
|
3429
|
+
"promptbookVersion": "0.101.0-19",
|
|
3405
3430
|
"usage": {
|
|
3406
3431
|
"price": {
|
|
3407
|
-
"value": 0.
|
|
3432
|
+
"value": 0.0359575
|
|
3408
3433
|
},
|
|
3409
3434
|
"input": {
|
|
3410
3435
|
"tokensCount": {
|
|
3411
|
-
"value":
|
|
3436
|
+
"value": 5862
|
|
3412
3437
|
},
|
|
3413
3438
|
"charactersCount": {
|
|
3414
3439
|
"value": 2377
|
|
@@ -3431,19 +3456,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3431
3456
|
},
|
|
3432
3457
|
"output": {
|
|
3433
3458
|
"tokensCount": {
|
|
3434
|
-
"value":
|
|
3459
|
+
"value": 2863
|
|
3435
3460
|
},
|
|
3436
3461
|
"charactersCount": {
|
|
3437
|
-
"value":
|
|
3462
|
+
"value": 3327
|
|
3438
3463
|
},
|
|
3439
3464
|
"wordsCount": {
|
|
3440
|
-
"value":
|
|
3465
|
+
"value": 458
|
|
3441
3466
|
},
|
|
3442
3467
|
"sentencesCount": {
|
|
3443
|
-
"value":
|
|
3468
|
+
"value": 31
|
|
3444
3469
|
},
|
|
3445
3470
|
"linesCount": {
|
|
3446
|
-
"value":
|
|
3471
|
+
"value": 68
|
|
3447
3472
|
},
|
|
3448
3473
|
"paragraphsCount": {
|
|
3449
3474
|
"value": 1
|
|
@@ -3697,36 +3722,26 @@ function getTemplatesPipelineCollection() {
|
|
|
3697
3722
|
"modelsRequirements": [
|
|
3698
3723
|
{
|
|
3699
3724
|
"modelVariant": "CHAT",
|
|
3700
|
-
"
|
|
3725
|
+
"results": [
|
|
3701
3726
|
{
|
|
3702
|
-
"modelName": "
|
|
3703
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3704
3729
|
"temperature": 0.4
|
|
3705
3730
|
},
|
|
3706
3731
|
{
|
|
3707
|
-
"modelName": "
|
|
3708
|
-
"systemMessage": "You are a
|
|
3709
|
-
"temperature": 0.
|
|
3732
|
+
"modelName": "gpt-4.1",
|
|
3733
|
+
"systemMessage": "You are a linguist and Esperantist. Be a precise, helpful virtual assistant for multilingual tasks: translation, phonetics (IPA), grammar, morphology, syntax, etymology, and Esperanto pedagogy. Detect the user’s language and reply in it; use full Esperanto when the prompt is in Esperanto. Keep answers concise with illustrative examples and ask clarifying questions when needed.",
|
|
3734
|
+
"temperature": 0.3
|
|
3710
3735
|
},
|
|
3711
3736
|
{
|
|
3712
3737
|
"modelName": "gpt-4",
|
|
3713
|
-
"systemMessage": "You are a
|
|
3714
|
-
"temperature": 0.
|
|
3738
|
+
"systemMessage": "You are a linguist and Esperantist. Provide accurate, concise assistance with translation, linguistic analysis, IPA, grammar explanations, and Esperanto expertise. Reply in the user’s language, switching to full Esperanto when addressed in Esperanto. Offer brief examples and request clarification when prompts are ambiguous.",
|
|
3739
|
+
"temperature": 0.35
|
|
3715
3740
|
},
|
|
3716
3741
|
{
|
|
3717
3742
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3718
|
-
"systemMessage": "You are a
|
|
3719
|
-
"temperature": 0.
|
|
3720
|
-
},
|
|
3721
|
-
{
|
|
3722
|
-
"modelName": "gpt-3.5-turbo-1106",
|
|
3723
|
-
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3724
|
-
"temperature": 0.6
|
|
3725
|
-
},
|
|
3726
|
-
{
|
|
3727
|
-
"modelName": "gpt-3.5-turbo",
|
|
3728
|
-
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3729
|
-
"temperature": 0.6
|
|
3743
|
+
"systemMessage": "You are a linguist and Esperantist. Give concise, reliable help with multilingual translation, IPA transcription, grammatical analysis, etymology, and Esperanto instruction. Respond in the user’s language; when the input is in Esperanto, reply fully in Esperanto. Provide short examples and ask clarifying questions if needed.",
|
|
3744
|
+
"temperature": 0.35
|
|
3730
3745
|
}
|
|
3731
3746
|
]
|
|
3732
3747
|
}
|
|
@@ -3739,14 +3754,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3739
3754
|
"preparations": [
|
|
3740
3755
|
{
|
|
3741
3756
|
"id": 1,
|
|
3742
|
-
"promptbookVersion": "0.101.0-
|
|
3757
|
+
"promptbookVersion": "0.101.0-19",
|
|
3743
3758
|
"usage": {
|
|
3744
3759
|
"price": {
|
|
3745
|
-
"value": 0.
|
|
3760
|
+
"value": 0.030832500000000006
|
|
3746
3761
|
},
|
|
3747
3762
|
"input": {
|
|
3748
3763
|
"tokensCount": {
|
|
3749
|
-
"value":
|
|
3764
|
+
"value": 5858
|
|
3750
3765
|
},
|
|
3751
3766
|
"charactersCount": {
|
|
3752
3767
|
"value": 2377
|
|
@@ -3769,19 +3784,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3769
3784
|
},
|
|
3770
3785
|
"output": {
|
|
3771
3786
|
"tokensCount": {
|
|
3772
|
-
"value":
|
|
3787
|
+
"value": 2351
|
|
3773
3788
|
},
|
|
3774
3789
|
"charactersCount": {
|
|
3775
|
-
"value":
|
|
3790
|
+
"value": 1880
|
|
3776
3791
|
},
|
|
3777
3792
|
"wordsCount": {
|
|
3778
|
-
"value":
|
|
3793
|
+
"value": 249
|
|
3779
3794
|
},
|
|
3780
3795
|
"sentencesCount": {
|
|
3781
|
-
"value":
|
|
3796
|
+
"value": 23
|
|
3782
3797
|
},
|
|
3783
3798
|
"linesCount": {
|
|
3784
|
-
"value":
|
|
3799
|
+
"value": 47
|
|
3785
3800
|
},
|
|
3786
3801
|
"paragraphsCount": {
|
|
3787
3802
|
"value": 1
|
|
@@ -3852,28 +3867,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3852
3867
|
"models": [
|
|
3853
3868
|
{
|
|
3854
3869
|
"modelName": "gpt-4.1",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with
|
|
3870
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write original, evocative work with concrete imagery, fresh metaphors, and rhythmic musicality. Match the user's requested form, meter, rhyme scheme, length, voice, and mood; ask one clarifying question if any constraint is ambiguous. Offer 2–3 stylistic alternatives when helpful (e.g., free verse vs. sonnet, first-person vs. mythic narrator). For revisions, keep edits minimal and explain choices only if asked. Avoid clichés, plagiarism, and culturally insensitive tropes.",
|
|
3856
3871
|
"temperature": 0.9
|
|
3857
3872
|
},
|
|
3858
3873
|
{
|
|
3859
3874
|
"modelName": "chatgpt-4o-latest",
|
|
3860
|
-
"systemMessage": "You are an accomplished poet and storyteller with a warm,
|
|
3861
|
-
"temperature":
|
|
3875
|
+
"systemMessage": "You are an accomplished poet and storyteller with a warm, engaging voice. Craft emotionally resonant poems and narratives that balance vivid imagery with clarity. Adapt style to audience and constraints (form, rhyme, meter, voice, mood, length). When useful, propose 2–3 stylistic options. Ask one brief clarifying question if requirements are unclear. Avoid clichés and derivative phrasing; aim for memorable, original lines.",
|
|
3876
|
+
"temperature": 0.95
|
|
3862
3877
|
},
|
|
3863
3878
|
{
|
|
3864
3879
|
"modelName": "gpt-4",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3866
|
-
"temperature": 0.
|
|
3880
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose original, high-quality verse and prose with strong imagery, precise word choice, and narrative momentum. Follow requested constraints (form, meter, rhyme, tone, perspective, length) and ask a single clarifying question if anything is ambiguous. Provide alternative stylistic takes when helpful and avoid clichés or overly purple prose.",
|
|
3881
|
+
"temperature": 0.85
|
|
3867
3882
|
},
|
|
3868
3883
|
{
|
|
3869
3884
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3871
|
-
"temperature":
|
|
3872
|
-
},
|
|
3873
|
-
{
|
|
3874
|
-
"modelName": "gpt-3.5-turbo",
|
|
3875
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery and concise, musical language; keep the narrative coherent and avoid clichés. Follow the user’s style and form constraints.",
|
|
3876
|
-
"temperature": 1
|
|
3885
|
+
"systemMessage": "You are an accomplished poet and storyteller focused on clear, evocative language. Honor the user's constraints (form, meter, rhyme, tone, length). If unclear, ask one short clarifying question. Offer one or two alternate styles when helpful and avoid clichés and derivative phrasing.",
|
|
3886
|
+
"temperature": 0.7
|
|
3877
3887
|
}
|
|
3878
3888
|
]
|
|
3879
3889
|
}
|
|
@@ -3886,14 +3896,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3886
3896
|
"preparations": [
|
|
3887
3897
|
{
|
|
3888
3898
|
"id": 1,
|
|
3889
|
-
"promptbookVersion": "0.101.0-
|
|
3899
|
+
"promptbookVersion": "0.101.0-19",
|
|
3890
3900
|
"usage": {
|
|
3891
3901
|
"price": {
|
|
3892
|
-
"value": 0.
|
|
3902
|
+
"value": 0.029311250000000004
|
|
3893
3903
|
},
|
|
3894
3904
|
"input": {
|
|
3895
3905
|
"tokensCount": {
|
|
3896
|
-
"value":
|
|
3906
|
+
"value": 5857
|
|
3897
3907
|
},
|
|
3898
3908
|
"charactersCount": {
|
|
3899
3909
|
"value": 2377
|
|
@@ -3916,16 +3926,16 @@ function getTemplatesPipelineCollection() {
|
|
|
3916
3926
|
},
|
|
3917
3927
|
"output": {
|
|
3918
3928
|
"tokensCount": {
|
|
3919
|
-
"value":
|
|
3929
|
+
"value": 2199
|
|
3920
3930
|
},
|
|
3921
3931
|
"charactersCount": {
|
|
3922
|
-
"value":
|
|
3932
|
+
"value": 2041
|
|
3923
3933
|
},
|
|
3924
3934
|
"wordsCount": {
|
|
3925
|
-
"value":
|
|
3935
|
+
"value": 279
|
|
3926
3936
|
},
|
|
3927
3937
|
"sentencesCount": {
|
|
3928
|
-
"value":
|
|
3938
|
+
"value": 31
|
|
3929
3939
|
},
|
|
3930
3940
|
"linesCount": {
|
|
3931
3941
|
"value": 49
|