@promptbook/templates 0.101.0-9 → 0.101.0
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/README.md +0 -4
- package/esm/index.es.js +120 -146
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +14 -0
- package/esm/typings/src/_packages/core.index.d.ts +12 -0
- package/esm/typings/src/_packages/types.index.d.ts +8 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +11 -4
- 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/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 +23 -14
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +2 -14
- 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-2.0/commitments/index.d.ts +1 -1
- package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +5 -2
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +18 -1
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +8 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +2 -15
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +9 -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/PromptResult.d.ts +2 -4
- 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 +7 -18
- 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 +58 -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/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/$fakeTextToExpectations.d.ts +1 -0
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +4 -10
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +4 -6
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +16 -8
- 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/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 +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 +120 -146
- 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/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 → 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';
|
|
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
|
|
@@ -1563,28 +1563,28 @@ function getTemplatesPipelineCollection() {
|
|
|
1563
1563
|
"models": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a
|
|
1567
|
-
"temperature": 0.
|
|
1566
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
1567
|
+
"temperature": 0.2
|
|
1568
1568
|
},
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelName": "chatgpt-4o-latest",
|
|
1571
|
-
"systemMessage": "You are a
|
|
1572
|
-
"temperature": 0.
|
|
1571
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
1572
|
+
"temperature": 0.3
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "gpt-4",
|
|
1576
|
-
"systemMessage": "You are a
|
|
1577
|
-
"temperature": 0.
|
|
1576
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
1577
|
+
"temperature": 0.2
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
1580
|
"modelName": "o4-mini",
|
|
1581
|
-
"systemMessage": "You are a
|
|
1582
|
-
"temperature": 0.
|
|
1581
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
1582
|
+
"temperature": 0.2
|
|
1583
1583
|
},
|
|
1584
1584
|
{
|
|
1585
1585
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1586
|
-
"systemMessage": "You are a
|
|
1587
|
-
"temperature": 0.
|
|
1586
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
1587
|
+
"temperature": 0.2
|
|
1588
1588
|
}
|
|
1589
1589
|
]
|
|
1590
1590
|
}
|
|
@@ -1597,10 +1597,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1597
1597
|
"preparations": [
|
|
1598
1598
|
{
|
|
1599
1599
|
"id": 1,
|
|
1600
|
-
"promptbookVersion": "0.101.0-
|
|
1600
|
+
"promptbookVersion": "0.101.0-21",
|
|
1601
1601
|
"usage": {
|
|
1602
1602
|
"price": {
|
|
1603
|
-
"value": 0.
|
|
1603
|
+
"value": 0.028033750000000003
|
|
1604
1604
|
},
|
|
1605
1605
|
"input": {
|
|
1606
1606
|
"tokensCount": {
|
|
@@ -1627,16 +1627,16 @@ function getTemplatesPipelineCollection() {
|
|
|
1627
1627
|
},
|
|
1628
1628
|
"output": {
|
|
1629
1629
|
"tokensCount": {
|
|
1630
|
-
"value":
|
|
1630
|
+
"value": 2071
|
|
1631
1631
|
},
|
|
1632
1632
|
"charactersCount": {
|
|
1633
|
-
"value":
|
|
1633
|
+
"value": 2488
|
|
1634
1634
|
},
|
|
1635
1635
|
"wordsCount": {
|
|
1636
|
-
"value":
|
|
1636
|
+
"value": 316
|
|
1637
1637
|
},
|
|
1638
1638
|
"sentencesCount": {
|
|
1639
|
-
"value":
|
|
1639
|
+
"value": 38
|
|
1640
1640
|
},
|
|
1641
1641
|
"linesCount": {
|
|
1642
1642
|
"value": 59
|
|
@@ -2128,28 +2128,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2128
2128
|
"models": [
|
|
2129
2129
|
{
|
|
2130
2130
|
"modelName": "gpt-4.1",
|
|
2131
|
-
"systemMessage": "You are a
|
|
2132
|
-
"temperature": 0.
|
|
2131
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
2132
|
+
"temperature": 0.2
|
|
2133
2133
|
},
|
|
2134
2134
|
{
|
|
2135
2135
|
"modelName": "chatgpt-4o-latest",
|
|
2136
|
-
"systemMessage": "You are a
|
|
2137
|
-
"temperature": 0.
|
|
2136
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
2137
|
+
"temperature": 0.3
|
|
2138
2138
|
},
|
|
2139
2139
|
{
|
|
2140
2140
|
"modelName": "gpt-4",
|
|
2141
|
-
"systemMessage": "You are a
|
|
2142
|
-
"temperature": 0.
|
|
2141
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
2142
|
+
"temperature": 0.2
|
|
2143
2143
|
},
|
|
2144
2144
|
{
|
|
2145
2145
|
"modelName": "o4-mini",
|
|
2146
|
-
"systemMessage": "You are a
|
|
2147
|
-
"temperature": 0.
|
|
2146
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
2147
|
+
"temperature": 0.2
|
|
2148
2148
|
},
|
|
2149
2149
|
{
|
|
2150
2150
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2151
|
-
"systemMessage": "You are a
|
|
2152
|
-
"temperature": 0.
|
|
2151
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and helpful virtual assistant. Be precise, concise, and pragmatic. Follow instructions strictly, avoid speculation, and prefer deterministic, reproducible answers. Use clear bullet points, minimal formatting, and provide copy-pastable snippets when useful. Ask clarifying questions when requirements are ambiguous.",
|
|
2152
|
+
"temperature": 0.2
|
|
2153
2153
|
}
|
|
2154
2154
|
]
|
|
2155
2155
|
}
|
|
@@ -2162,10 +2162,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2162
2162
|
"preparations": [
|
|
2163
2163
|
{
|
|
2164
2164
|
"id": 1,
|
|
2165
|
-
"promptbookVersion": "0.101.0-
|
|
2165
|
+
"promptbookVersion": "0.101.0-21",
|
|
2166
2166
|
"usage": {
|
|
2167
2167
|
"price": {
|
|
2168
|
-
"value": 0.
|
|
2168
|
+
"value": 0.028033750000000003
|
|
2169
2169
|
},
|
|
2170
2170
|
"input": {
|
|
2171
2171
|
"tokensCount": {
|
|
@@ -2192,16 +2192,16 @@ function getTemplatesPipelineCollection() {
|
|
|
2192
2192
|
},
|
|
2193
2193
|
"output": {
|
|
2194
2194
|
"tokensCount": {
|
|
2195
|
-
"value":
|
|
2195
|
+
"value": 2071
|
|
2196
2196
|
},
|
|
2197
2197
|
"charactersCount": {
|
|
2198
|
-
"value":
|
|
2198
|
+
"value": 2488
|
|
2199
2199
|
},
|
|
2200
2200
|
"wordsCount": {
|
|
2201
|
-
"value":
|
|
2201
|
+
"value": 316
|
|
2202
2202
|
},
|
|
2203
2203
|
"sentencesCount": {
|
|
2204
|
-
"value":
|
|
2204
|
+
"value": 38
|
|
2205
2205
|
},
|
|
2206
2206
|
"linesCount": {
|
|
2207
2207
|
"value": 59
|
|
@@ -2831,28 +2831,7 @@ function getTemplatesPipelineCollection() {
|
|
|
2831
2831
|
"modelsRequirements": [
|
|
2832
2832
|
{
|
|
2833
2833
|
"modelVariant": "CHAT",
|
|
2834
|
-
"
|
|
2835
|
-
{
|
|
2836
|
-
"modelName": "gpt-4.1",
|
|
2837
|
-
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2838
|
-
"temperature": 0.2
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"modelName": "gpt-4",
|
|
2842
|
-
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2843
|
-
"temperature": 0.2
|
|
2844
|
-
},
|
|
2845
|
-
{
|
|
2846
|
-
"modelName": "chatgpt-4o-latest",
|
|
2847
|
-
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2848
|
-
"temperature": 0.25
|
|
2849
|
-
},
|
|
2850
|
-
{
|
|
2851
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
2852
|
-
"systemMessage": "You are a linguist and meticulous text corrector. Detect and fix grammar, spelling, punctuation, syntax, and usage while preserving meaning and voice. Default to minimal edits; rewrite only when asked. Respect locale and style preferences; otherwise use a clear, neutral, professional tone and the input’s dialect (e.g., en-US or en-GB). Handle multilingual text and code-switching, identifying language automatically. If ambiguity could change meaning, ask a brief clarifying question. Output: first the corrected text; if changes are non-trivial, append a concise rationale.",
|
|
2853
|
-
"temperature": 0.2
|
|
2854
|
-
}
|
|
2855
|
-
]
|
|
2834
|
+
"error": "The 'gpt-5' models are not supported in the current API. Please check the available models list for valid options."
|
|
2856
2835
|
}
|
|
2857
2836
|
],
|
|
2858
2837
|
"preparationIds": [
|
|
@@ -2863,10 +2842,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2863
2842
|
"preparations": [
|
|
2864
2843
|
{
|
|
2865
2844
|
"id": 1,
|
|
2866
|
-
"promptbookVersion": "0.101.0-
|
|
2845
|
+
"promptbookVersion": "0.101.0-21",
|
|
2867
2846
|
"usage": {
|
|
2868
2847
|
"price": {
|
|
2869
|
-
"value": 0.
|
|
2848
|
+
"value": 0.0288625
|
|
2870
2849
|
},
|
|
2871
2850
|
"input": {
|
|
2872
2851
|
"tokensCount": {
|
|
@@ -2893,25 +2872,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2893
2872
|
},
|
|
2894
2873
|
"output": {
|
|
2895
2874
|
"tokensCount": {
|
|
2896
|
-
"value":
|
|
2875
|
+
"value": 2154
|
|
2897
2876
|
},
|
|
2898
2877
|
"charactersCount": {
|
|
2899
|
-
"value":
|
|
2878
|
+
"value": 131
|
|
2900
2879
|
},
|
|
2901
2880
|
"wordsCount": {
|
|
2902
|
-
"value":
|
|
2881
|
+
"value": 21
|
|
2903
2882
|
},
|
|
2904
2883
|
"sentencesCount": {
|
|
2905
|
-
"value":
|
|
2884
|
+
"value": 3
|
|
2906
2885
|
},
|
|
2907
2886
|
"linesCount": {
|
|
2908
|
-
"value":
|
|
2887
|
+
"value": 5
|
|
2909
2888
|
},
|
|
2910
2889
|
"paragraphsCount": {
|
|
2911
2890
|
"value": 1
|
|
2912
2891
|
},
|
|
2913
2892
|
"pagesCount": {
|
|
2914
|
-
"value":
|
|
2893
|
+
"value": 1
|
|
2915
2894
|
}
|
|
2916
2895
|
}
|
|
2917
2896
|
}
|
|
@@ -2977,23 +2956,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2977
2956
|
"models": [
|
|
2978
2957
|
{
|
|
2979
2958
|
"modelName": "gpt-4.1",
|
|
2980
|
-
"systemMessage": "You are a skilled e
|
|
2981
|
-
"temperature": 0.
|
|
2959
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
|
|
2960
|
+
"temperature": 0.6
|
|
2982
2961
|
},
|
|
2983
2962
|
{
|
|
2984
2963
|
"modelName": "chatgpt-4o-latest",
|
|
2985
|
-
"systemMessage": "You are a
|
|
2964
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
|
|
2986
2965
|
"temperature": 0.7
|
|
2987
2966
|
},
|
|
2988
2967
|
{
|
|
2989
2968
|
"modelName": "gpt-4",
|
|
2990
|
-
"systemMessage": "You are
|
|
2991
|
-
"temperature": 0.
|
|
2969
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
|
|
2970
|
+
"temperature": 0.65
|
|
2992
2971
|
},
|
|
2993
2972
|
{
|
|
2994
2973
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2995
|
-
"systemMessage": "You are a
|
|
2996
|
-
"temperature": 0.
|
|
2974
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Goals: - Write persuasive, on-brand copy for product pages, category pages, ads, emails, and UX microcopy. - Turn features into customer benefits, highlight differentiators, and include clear CTAs. - Optimize for SEO (natural keyword use, semantic variants, schema-ready fields, internal links) without keyword stuffing. - Adapt tone to the provided brand voice and audience; localize for region/locale on request. - Respect constraints (word counts, formatting, placeholders like {brand}, legal/compliance limits); avoid unverifiable claims. - If info is missing, ask concise questions before drafting; otherwise make minimal, clearly marked assumptions. - Prefer clarity, scannability, and conversion: strong headlines, bullets, short paragraphs. - Provide A/B variants when asked and include rationale if requested. - Output exactly in the format requested (e.g., plain text, HTML, or JSON) and keep responses self-contained.",
|
|
2975
|
+
"temperature": 0.75
|
|
2997
2976
|
}
|
|
2998
2977
|
]
|
|
2999
2978
|
}
|
|
@@ -3006,10 +2985,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3006
2985
|
"preparations": [
|
|
3007
2986
|
{
|
|
3008
2987
|
"id": 1,
|
|
3009
|
-
"promptbookVersion": "0.101.0-
|
|
2988
|
+
"promptbookVersion": "0.101.0-21",
|
|
3010
2989
|
"usage": {
|
|
3011
2990
|
"price": {
|
|
3012
|
-
"value": 0.
|
|
2991
|
+
"value": 0.0353525
|
|
3013
2992
|
},
|
|
3014
2993
|
"input": {
|
|
3015
2994
|
"tokensCount": {
|
|
@@ -3036,19 +3015,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
3015
|
},
|
|
3037
3016
|
"output": {
|
|
3038
3017
|
"tokensCount": {
|
|
3039
|
-
"value":
|
|
3018
|
+
"value": 2803
|
|
3040
3019
|
},
|
|
3041
3020
|
"charactersCount": {
|
|
3042
|
-
"value":
|
|
3021
|
+
"value": 4372
|
|
3043
3022
|
},
|
|
3044
3023
|
"wordsCount": {
|
|
3045
|
-
"value":
|
|
3024
|
+
"value": 590
|
|
3046
3025
|
},
|
|
3047
3026
|
"sentencesCount": {
|
|
3048
|
-
"value":
|
|
3027
|
+
"value": 55
|
|
3049
3028
|
},
|
|
3050
3029
|
"linesCount": {
|
|
3051
|
-
"value":
|
|
3030
|
+
"value": 88
|
|
3052
3031
|
},
|
|
3053
3032
|
"paragraphsCount": {
|
|
3054
3033
|
"value": 1
|
|
@@ -3102,7 +3081,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3102
3081
|
"preparations": [
|
|
3103
3082
|
{
|
|
3104
3083
|
"id": 1,
|
|
3105
|
-
"promptbookVersion": "0.101.0-
|
|
3084
|
+
"promptbookVersion": "0.101.0-21",
|
|
3106
3085
|
"usage": {
|
|
3107
3086
|
"price": {
|
|
3108
3087
|
"value": 0
|
|
@@ -3211,28 +3190,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3211
3190
|
"models": [
|
|
3212
3191
|
{
|
|
3213
3192
|
"modelName": "gpt-4.1",
|
|
3214
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3193
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance and actionable plans. Ask 1–2 clarifying questions when needed. Structure outputs with bullet points, frameworks (e.g., STP, AIDA, 7Ps), KPIs, and next steps. Be concise, note assumptions, and avoid speculation.",
|
|
3215
3194
|
"temperature": 0.4
|
|
3216
3195
|
},
|
|
3217
3196
|
{
|
|
3218
3197
|
"modelName": "chatgpt-4o-latest",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3220
|
-
"temperature": 0.
|
|
3198
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with strong copywriting skills. Create compelling, brand-appropriate messaging and campaign ideas, offering variants for A/B testing. Keep a professional, friendly tone and include examples, templates, and quick-win suggestions.",
|
|
3199
|
+
"temperature": 0.65
|
|
3221
3200
|
},
|
|
3222
3201
|
{
|
|
3223
3202
|
"modelName": "gpt-4",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3225
|
-
"temperature": 0.
|
|
3226
|
-
},
|
|
3227
|
-
{
|
|
3228
|
-
"modelName": "o4-mini",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant focused on analytical decision-making. Perform step-by-step reasoning for market sizing, pricing, CAC/LTV, channel mix, and funnel math. Provide sensitivity analyses, trade-offs, and clear recommendations with next steps.",
|
|
3230
|
-
"temperature": 0.3
|
|
3203
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, structured recommendations with step-by-step plans, budgets, timelines, and risk mitigations. Prioritize ROI, practicality, and measurable outcomes.",
|
|
3204
|
+
"temperature": 0.45
|
|
3231
3205
|
},
|
|
3232
3206
|
{
|
|
3233
3207
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3235
|
-
"temperature": 0.
|
|
3208
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on concise, practical advice. Summarize complex topics clearly, provide checklists and next steps, and highlight key assumptions and KPIs.",
|
|
3209
|
+
"temperature": 0.5
|
|
3236
3210
|
}
|
|
3237
3211
|
]
|
|
3238
3212
|
}
|
|
@@ -3245,10 +3219,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3245
3219
|
"preparations": [
|
|
3246
3220
|
{
|
|
3247
3221
|
"id": 1,
|
|
3248
|
-
"promptbookVersion": "0.101.0-
|
|
3222
|
+
"promptbookVersion": "0.101.0-21",
|
|
3249
3223
|
"usage": {
|
|
3250
3224
|
"price": {
|
|
3251
|
-
"value": 0.
|
|
3225
|
+
"value": 0.025522500000000004
|
|
3252
3226
|
},
|
|
3253
3227
|
"input": {
|
|
3254
3228
|
"tokensCount": {
|
|
@@ -3275,25 +3249,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3275
3249
|
},
|
|
3276
3250
|
"output": {
|
|
3277
3251
|
"tokensCount": {
|
|
3278
|
-
"value":
|
|
3252
|
+
"value": 1820
|
|
3279
3253
|
},
|
|
3280
3254
|
"charactersCount": {
|
|
3281
|
-
"value":
|
|
3255
|
+
"value": 1482
|
|
3282
3256
|
},
|
|
3283
3257
|
"wordsCount": {
|
|
3284
|
-
"value":
|
|
3258
|
+
"value": 186
|
|
3285
3259
|
},
|
|
3286
3260
|
"sentencesCount": {
|
|
3287
|
-
"value":
|
|
3261
|
+
"value": 22
|
|
3288
3262
|
},
|
|
3289
3263
|
"linesCount": {
|
|
3290
|
-
"value":
|
|
3264
|
+
"value": 41
|
|
3291
3265
|
},
|
|
3292
3266
|
"paragraphsCount": {
|
|
3293
3267
|
"value": 1
|
|
3294
3268
|
},
|
|
3295
3269
|
"pagesCount": {
|
|
3296
|
-
"value":
|
|
3270
|
+
"value": 1
|
|
3297
3271
|
}
|
|
3298
3272
|
}
|
|
3299
3273
|
}
|
|
@@ -3367,22 +3341,22 @@ function getTemplatesPipelineCollection() {
|
|
|
3367
3341
|
"models": [
|
|
3368
3342
|
{
|
|
3369
3343
|
"modelName": "gpt-4.1",
|
|
3370
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3371
|
-
"temperature": 0.
|
|
3344
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
|
|
3345
|
+
"temperature": 0.45
|
|
3372
3346
|
},
|
|
3373
3347
|
{
|
|
3374
3348
|
"modelName": "chatgpt-4o-latest",
|
|
3375
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3349
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
|
|
3376
3350
|
"temperature": 0.5
|
|
3377
3351
|
},
|
|
3378
3352
|
{
|
|
3379
3353
|
"modelName": "gpt-4",
|
|
3380
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3381
|
-
"temperature": 0.
|
|
3354
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
|
|
3355
|
+
"temperature": 0.4
|
|
3382
3356
|
},
|
|
3383
3357
|
{
|
|
3384
3358
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3385
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3359
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop. Primary objectives: resolve customer issues accurately and empathetically; produce clear, persuasive, on‑brand copy (product descriptions, emails, ads, social posts, SEO snippets). Style: friendly, concise, professional; adapt tone to the customer’s mood; reply in the customer’s language. Customer support: greet by name, summarize the issue, ask for missing details (order ID, item/SKU, dates, photos if relevant); check store policies before promising anything; offer concrete next steps and options (refund/exchange/store credit), set timelines and expectations, and escalate when necessary; never invent facts. Copywriting: ask for brand voice, audience, key benefits, constraints, channels, and length; offer multiple variants on request; include strong CTAs and benefits; apply basic SEO (target keywords, meta title/description) when relevant. Compliance: respect privacy, do not request sensitive data, avoid medical/legal/financial claims, and keep content inclusive. Formatting: short paragraphs and bullet lists, include links/SKUs if provided, and end with a polite closing. If any requirement is unclear, ask a brief clarifying question before proceeding.",
|
|
3386
3360
|
"temperature": 0.6
|
|
3387
3361
|
}
|
|
3388
3362
|
]
|
|
@@ -3396,10 +3370,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3396
3370
|
"preparations": [
|
|
3397
3371
|
{
|
|
3398
3372
|
"id": 1,
|
|
3399
|
-
"promptbookVersion": "0.101.0-
|
|
3373
|
+
"promptbookVersion": "0.101.0-21",
|
|
3400
3374
|
"usage": {
|
|
3401
3375
|
"price": {
|
|
3402
|
-
"value": 0.
|
|
3376
|
+
"value": 0.0378375
|
|
3403
3377
|
},
|
|
3404
3378
|
"input": {
|
|
3405
3379
|
"tokensCount": {
|
|
@@ -3426,25 +3400,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3426
3400
|
},
|
|
3427
3401
|
"output": {
|
|
3428
3402
|
"tokensCount": {
|
|
3429
|
-
"value":
|
|
3403
|
+
"value": 3051
|
|
3430
3404
|
},
|
|
3431
3405
|
"charactersCount": {
|
|
3432
|
-
"value":
|
|
3406
|
+
"value": 5415
|
|
3433
3407
|
},
|
|
3434
3408
|
"wordsCount": {
|
|
3435
|
-
"value":
|
|
3409
|
+
"value": 750
|
|
3436
3410
|
},
|
|
3437
3411
|
"sentencesCount": {
|
|
3438
|
-
"value":
|
|
3412
|
+
"value": 39
|
|
3439
3413
|
},
|
|
3440
3414
|
"linesCount": {
|
|
3441
|
-
"value":
|
|
3415
|
+
"value": 104
|
|
3442
3416
|
},
|
|
3443
3417
|
"paragraphsCount": {
|
|
3444
3418
|
"value": 1
|
|
3445
3419
|
},
|
|
3446
3420
|
"pagesCount": {
|
|
3447
|
-
"value":
|
|
3421
|
+
"value": 3
|
|
3448
3422
|
}
|
|
3449
3423
|
}
|
|
3450
3424
|
}
|
|
@@ -3695,28 +3669,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3695
3669
|
"models": [
|
|
3696
3670
|
{
|
|
3697
3671
|
"modelName": "gpt-4.1",
|
|
3698
|
-
"systemMessage": "You are a professional linguist and
|
|
3699
|
-
"temperature": 0.
|
|
3672
|
+
"systemMessage": "You are a professional linguist and fluent Esperantist. Provide accurate, concise explanations across phonetics/phonology, morphology, syntax, semantics, pragmatics, and historical linguistics. Offer expert Esperanto usage, idioms, and style guidance. Capabilities: multilingual translation, IPA transcriptions, morphological glossing and segmentation, brief etymologies with sources when possible, and paired example sentences (include Esperanto where helpful). Be friendly and precise; ask clarifying questions when ambiguity exists. Prefer descriptive analysis, but note prescriptive norms where relevant. Flag uncertainty rather than guessing.",
|
|
3673
|
+
"temperature": 0.3
|
|
3700
3674
|
},
|
|
3701
3675
|
{
|
|
3702
3676
|
"modelName": "chatgpt-4o-latest",
|
|
3703
|
-
"systemMessage": "You are a
|
|
3704
|
-
"temperature": 0.
|
|
3677
|
+
"systemMessage": "You are a friendly, expert linguist and fluent Esperantist. Deliver clear linguistic analyses, accurate translations, IPA pronunciations, concise etymologies, and illustrative example sentences (including Esperanto). Use descriptive linguistics, mention prescriptive norms when relevant, and ask clarifying questions if needed. Keep answers precise and practical for learners and professionals.",
|
|
3678
|
+
"temperature": 0.4
|
|
3705
3679
|
},
|
|
3706
3680
|
{
|
|
3707
3681
|
"modelName": "gpt-4",
|
|
3708
|
-
"systemMessage": "You are a
|
|
3709
|
-
"temperature": 0.
|
|
3682
|
+
"systemMessage": "You are a rigorous linguist and fluent Esperantist. Provide precise explanations, translations, IPA transcriptions, morphological glosses, brief etymologies with sources when possible, and helpful example sentences (with Esperanto equivalents). Be concise, descriptive-first, and note prescriptive standards where relevant. Ask for clarification when context is unclear.",
|
|
3683
|
+
"temperature": 0.3
|
|
3710
3684
|
},
|
|
3711
3685
|
{
|
|
3712
3686
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3713
|
-
"systemMessage": "You are a
|
|
3687
|
+
"systemMessage": "You are a helpful linguist and fluent Esperantist. Give clear explanations, accurate translations, IPA pronunciations, simple morphological breakdowns, and short example sentences (including Esperanto). Be concise, descriptive-first, and ask clarifying questions if needed.",
|
|
3714
3688
|
"temperature": 0.4
|
|
3715
|
-
},
|
|
3716
|
-
{
|
|
3717
|
-
"modelName": "gpt-3.5-turbo",
|
|
3718
|
-
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3719
|
-
"temperature": 0.3
|
|
3720
3689
|
}
|
|
3721
3690
|
]
|
|
3722
3691
|
}
|
|
@@ -3729,10 +3698,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3729
3698
|
"preparations": [
|
|
3730
3699
|
{
|
|
3731
3700
|
"id": 1,
|
|
3732
|
-
"promptbookVersion": "0.101.0-
|
|
3701
|
+
"promptbookVersion": "0.101.0-21",
|
|
3733
3702
|
"usage": {
|
|
3734
3703
|
"price": {
|
|
3735
|
-
"value": 0.
|
|
3704
|
+
"value": 0.029122500000000003
|
|
3736
3705
|
},
|
|
3737
3706
|
"input": {
|
|
3738
3707
|
"tokensCount": {
|
|
@@ -3759,19 +3728,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3759
3728
|
},
|
|
3760
3729
|
"output": {
|
|
3761
3730
|
"tokensCount": {
|
|
3762
|
-
"value":
|
|
3731
|
+
"value": 2180
|
|
3763
3732
|
},
|
|
3764
3733
|
"charactersCount": {
|
|
3765
|
-
"value":
|
|
3734
|
+
"value": 2102
|
|
3766
3735
|
},
|
|
3767
3736
|
"wordsCount": {
|
|
3768
|
-
"value":
|
|
3737
|
+
"value": 247
|
|
3769
3738
|
},
|
|
3770
3739
|
"sentencesCount": {
|
|
3771
|
-
"value":
|
|
3740
|
+
"value": 25
|
|
3772
3741
|
},
|
|
3773
3742
|
"linesCount": {
|
|
3774
|
-
"value":
|
|
3743
|
+
"value": 50
|
|
3775
3744
|
},
|
|
3776
3745
|
"paragraphsCount": {
|
|
3777
3746
|
"value": 1
|
|
@@ -3841,24 +3810,29 @@ function getTemplatesPipelineCollection() {
|
|
|
3841
3810
|
"modelVariant": "CHAT",
|
|
3842
3811
|
"models": [
|
|
3843
3812
|
{
|
|
3844
|
-
"modelName": "
|
|
3845
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3813
|
+
"modelName": "chatgpt-4o-latest",
|
|
3814
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, sensory detail, and musicality (rhythm, cadence, internal rhyme). Vary forms—free verse, sonnet, haiku, prose-poetry, microfiction—based on the request. Show, don’t tell; avoid clichés; favor concrete nouns and active verbs. Shape clear narrative arcs, memorable characters, and emotional turns. When a prompt is ambiguous, ask up to two brief clarifying questions before proceeding. Be concise when asked; otherwise, be evocative and original.",
|
|
3846
3815
|
"temperature": 0.9
|
|
3847
3816
|
},
|
|
3848
3817
|
{
|
|
3849
|
-
"modelName": "
|
|
3850
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3851
|
-
"temperature": 0.
|
|
3818
|
+
"modelName": "gpt-4.1",
|
|
3819
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, precise language with strong imagery and emotional resonance. Choose suitable forms (free verse, formal verse, haiku, ballad, flash fiction) to fit the brief. Prefer showing over telling, avoid clichés, and use concrete detail. Create clear arcs and satisfying endings. Ask brief clarifying questions if needed; otherwise, deliver polished, original work.",
|
|
3820
|
+
"temperature": 0.85
|
|
3852
3821
|
},
|
|
3853
3822
|
{
|
|
3854
3823
|
"modelName": "gpt-4",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid
|
|
3856
|
-
"temperature": 0.
|
|
3824
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid, economical language, fresh metaphors, and strong narrative flow. Adapt form and tone to the user’s request, avoid clichés, and emphasize sensory detail. Balance lyricism with clarity, and provide emotionally engaging, original pieces. If instructions are unclear, ask one or two short clarifying questions.",
|
|
3825
|
+
"temperature": 0.8
|
|
3857
3826
|
},
|
|
3858
3827
|
{
|
|
3859
3828
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3860
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3829
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use vivid imagery, concrete detail, and musical phrasing to create original poems and short stories. Match the requested form and tone, avoid clichés, and favor showing over telling. Keep the piece clear, emotionally resonant, and engaging. Ask a brief clarifying question if the request is ambiguous.",
|
|
3861
3830
|
"temperature": 0.75
|
|
3831
|
+
},
|
|
3832
|
+
{
|
|
3833
|
+
"modelName": "gpt-3.5-turbo",
|
|
3834
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce clear, evocative writing with strong imagery and fresh metaphors. Adapt to the requested form and tone, avoid clichés, and maintain a coherent arc. Ask a concise clarifying question if needed; otherwise, deliver polished, original work.",
|
|
3835
|
+
"temperature": 0.7
|
|
3862
3836
|
}
|
|
3863
3837
|
]
|
|
3864
3838
|
}
|
|
@@ -3871,10 +3845,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3871
3845
|
"preparations": [
|
|
3872
3846
|
{
|
|
3873
3847
|
"id": 1,
|
|
3874
|
-
"promptbookVersion": "0.101.0-
|
|
3848
|
+
"promptbookVersion": "0.101.0-21",
|
|
3875
3849
|
"usage": {
|
|
3876
3850
|
"price": {
|
|
3877
|
-
"value": 0.
|
|
3851
|
+
"value": 0.03349125
|
|
3878
3852
|
},
|
|
3879
3853
|
"input": {
|
|
3880
3854
|
"tokensCount": {
|
|
@@ -3901,19 +3875,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3901
3875
|
},
|
|
3902
3876
|
"output": {
|
|
3903
3877
|
"tokensCount": {
|
|
3904
|
-
"value":
|
|
3878
|
+
"value": 2617
|
|
3905
3879
|
},
|
|
3906
3880
|
"charactersCount": {
|
|
3907
|
-
"value":
|
|
3881
|
+
"value": 2460
|
|
3908
3882
|
},
|
|
3909
3883
|
"wordsCount": {
|
|
3910
|
-
"value":
|
|
3884
|
+
"value": 338
|
|
3911
3885
|
},
|
|
3912
3886
|
"sentencesCount": {
|
|
3913
|
-
"value":
|
|
3887
|
+
"value": 36
|
|
3914
3888
|
},
|
|
3915
3889
|
"linesCount": {
|
|
3916
|
-
"value":
|
|
3890
|
+
"value": 60
|
|
3917
3891
|
},
|
|
3918
3892
|
"paragraphsCount": {
|
|
3919
3893
|
"value": 1
|