@promptbook/templates 0.101.0-9 → 0.102.0-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/esm/index.es.js +115 -120
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +30 -0
- package/esm/typings/src/_packages/core.index.d.ts +12 -0
- package/esm/typings/src/_packages/types.index.d.ts +12 -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/Chat.d.ts +5 -1
- 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/Chat/utils/savePlugins.d.ts +55 -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 +115 -120
- 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.
|
|
17
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-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,27 +1563,27 @@ function getTemplatesPipelineCollection() {
|
|
|
1563
1563
|
"models": [
|
|
1564
1564
|
{
|
|
1565
1565
|
"modelName": "gpt-4.1",
|
|
1566
|
-
"systemMessage": "You are a
|
|
1566
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an expert in prompt engineering and assistant design. Be concise, pragmatic, and reproducible; prefer clear structure, minimal fluff, and verifiable claims. Ask targeted clarifying questions when requirements are ambiguous. When asked for structured data, return strict JSON. Do not reveal chain-of-thought; provide short answers and final conclusions.",
|
|
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 developer of the Promptbook Project and a helpful assistant. Communicate clearly and efficiently; provide copy-pasteable prompt templates and checklists when useful. Optimize for tool integration and deterministic outputs. Avoid hidden reasoning; summarize succinctly and ask clarifying questions when needed.",
|
|
1572
1572
|
"temperature": 0.4
|
|
1573
1573
|
},
|
|
1574
1574
|
{
|
|
1575
1575
|
"modelName": "gpt-4",
|
|
1576
|
-
"systemMessage": "You are a
|
|
1576
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be structured, precise, and implementation-focused. Prefer concise answers, minimal speculation, and testable guidance. Return strict JSON when requested and avoid exposing chain-of-thought.",
|
|
1577
1577
|
"temperature": 0.3
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are a
|
|
1582
|
-
"temperature": 0.
|
|
1580
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1581
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Produce template-friendly outputs, ask targeted clarifying questions, and keep responses deterministic and reproducible. Avoid chain-of-thought and provide concise conclusions.",
|
|
1582
|
+
"temperature": 0.4
|
|
1583
1583
|
},
|
|
1584
1584
|
{
|
|
1585
|
-
"modelName": "gpt-3.5-turbo
|
|
1586
|
-
"systemMessage": "You are a
|
|
1585
|
+
"modelName": "gpt-3.5-turbo",
|
|
1586
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver concise, practical guidance with template-ready outputs. Ask clarifying questions when requirements are unclear and avoid chain-of-thought in your responses.",
|
|
1587
1587
|
"temperature": 0.4
|
|
1588
1588
|
}
|
|
1589
1589
|
]
|
|
@@ -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",
|
|
1601
1601
|
"usage": {
|
|
1602
1602
|
"price": {
|
|
1603
|
-
"value": 0.
|
|
1603
|
+
"value": 0.03161375
|
|
1604
1604
|
},
|
|
1605
1605
|
"input": {
|
|
1606
1606
|
"tokensCount": {
|
|
@@ -1627,19 +1627,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1627
1627
|
},
|
|
1628
1628
|
"output": {
|
|
1629
1629
|
"tokensCount": {
|
|
1630
|
-
"value":
|
|
1630
|
+
"value": 2429
|
|
1631
1631
|
},
|
|
1632
1632
|
"charactersCount": {
|
|
1633
|
-
"value":
|
|
1633
|
+
"value": 1944
|
|
1634
1634
|
},
|
|
1635
1635
|
"wordsCount": {
|
|
1636
|
-
"value":
|
|
1636
|
+
"value": 254
|
|
1637
1637
|
},
|
|
1638
1638
|
"sentencesCount": {
|
|
1639
|
-
"value":
|
|
1639
|
+
"value": 30
|
|
1640
1640
|
},
|
|
1641
1641
|
"linesCount": {
|
|
1642
|
-
"value":
|
|
1642
|
+
"value": 51
|
|
1643
1643
|
},
|
|
1644
1644
|
"paragraphsCount": {
|
|
1645
1645
|
"value": 1
|
|
@@ -2128,27 +2128,27 @@ function getTemplatesPipelineCollection() {
|
|
|
2128
2128
|
"models": [
|
|
2129
2129
|
{
|
|
2130
2130
|
"modelName": "gpt-4.1",
|
|
2131
|
-
"systemMessage": "You are a
|
|
2131
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an expert in prompt engineering and assistant design. Be concise, pragmatic, and reproducible; prefer clear structure, minimal fluff, and verifiable claims. Ask targeted clarifying questions when requirements are ambiguous. When asked for structured data, return strict JSON. Do not reveal chain-of-thought; provide short answers and final conclusions.",
|
|
2132
2132
|
"temperature": 0.3
|
|
2133
2133
|
},
|
|
2134
2134
|
{
|
|
2135
2135
|
"modelName": "chatgpt-4o-latest",
|
|
2136
|
-
"systemMessage": "You are a
|
|
2136
|
+
"systemMessage": "You are a developer of the Promptbook Project and a helpful assistant. Communicate clearly and efficiently; provide copy-pasteable prompt templates and checklists when useful. Optimize for tool integration and deterministic outputs. Avoid hidden reasoning; summarize succinctly and ask clarifying questions when needed.",
|
|
2137
2137
|
"temperature": 0.4
|
|
2138
2138
|
},
|
|
2139
2139
|
{
|
|
2140
2140
|
"modelName": "gpt-4",
|
|
2141
|
-
"systemMessage": "You are a
|
|
2141
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be structured, precise, and implementation-focused. Prefer concise answers, minimal speculation, and testable guidance. Return strict JSON when requested and avoid exposing chain-of-thought.",
|
|
2142
2142
|
"temperature": 0.3
|
|
2143
2143
|
},
|
|
2144
2144
|
{
|
|
2145
|
-
"modelName": "
|
|
2146
|
-
"systemMessage": "You are a
|
|
2147
|
-
"temperature": 0.
|
|
2145
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2146
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Produce template-friendly outputs, ask targeted clarifying questions, and keep responses deterministic and reproducible. Avoid chain-of-thought and provide concise conclusions.",
|
|
2147
|
+
"temperature": 0.4
|
|
2148
2148
|
},
|
|
2149
2149
|
{
|
|
2150
|
-
"modelName": "gpt-3.5-turbo
|
|
2151
|
-
"systemMessage": "You are a
|
|
2150
|
+
"modelName": "gpt-3.5-turbo",
|
|
2151
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver concise, practical guidance with template-ready outputs. Ask clarifying questions when requirements are unclear and avoid chain-of-thought in your responses.",
|
|
2152
2152
|
"temperature": 0.4
|
|
2153
2153
|
}
|
|
2154
2154
|
]
|
|
@@ -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",
|
|
2166
2166
|
"usage": {
|
|
2167
2167
|
"price": {
|
|
2168
|
-
"value": 0.
|
|
2168
|
+
"value": 0.03161375
|
|
2169
2169
|
},
|
|
2170
2170
|
"input": {
|
|
2171
2171
|
"tokensCount": {
|
|
@@ -2192,19 +2192,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2192
2192
|
},
|
|
2193
2193
|
"output": {
|
|
2194
2194
|
"tokensCount": {
|
|
2195
|
-
"value":
|
|
2195
|
+
"value": 2429
|
|
2196
2196
|
},
|
|
2197
2197
|
"charactersCount": {
|
|
2198
|
-
"value":
|
|
2198
|
+
"value": 1944
|
|
2199
2199
|
},
|
|
2200
2200
|
"wordsCount": {
|
|
2201
|
-
"value":
|
|
2201
|
+
"value": 254
|
|
2202
2202
|
},
|
|
2203
2203
|
"sentencesCount": {
|
|
2204
|
-
"value":
|
|
2204
|
+
"value": 30
|
|
2205
2205
|
},
|
|
2206
2206
|
"linesCount": {
|
|
2207
|
-
"value":
|
|
2207
|
+
"value": 51
|
|
2208
2208
|
},
|
|
2209
2209
|
"paragraphsCount": {
|
|
2210
2210
|
"value": 1
|
|
@@ -2834,22 +2834,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2834
2834
|
"models": [
|
|
2835
2835
|
{
|
|
2836
2836
|
"modelName": "gpt-4.1",
|
|
2837
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2837
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2838
2838
|
"temperature": 0.2
|
|
2839
2839
|
},
|
|
2840
2840
|
{
|
|
2841
|
-
"modelName": "
|
|
2842
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2843
|
-
"temperature": 0.
|
|
2841
|
+
"modelName": "chatgpt-4o-latest",
|
|
2842
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2843
|
+
"temperature": 0.3
|
|
2844
2844
|
},
|
|
2845
2845
|
{
|
|
2846
|
-
"modelName": "
|
|
2847
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2848
|
-
"temperature": 0.
|
|
2846
|
+
"modelName": "gpt-4",
|
|
2847
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2848
|
+
"temperature": 0.2
|
|
2849
2849
|
},
|
|
2850
2850
|
{
|
|
2851
2851
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2852
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2852
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2853
2853
|
"temperature": 0.2
|
|
2854
2854
|
}
|
|
2855
2855
|
]
|
|
@@ -2863,10 +2863,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2863
2863
|
"preparations": [
|
|
2864
2864
|
{
|
|
2865
2865
|
"id": 1,
|
|
2866
|
-
"promptbookVersion": "0.101.0
|
|
2866
|
+
"promptbookVersion": "0.101.0",
|
|
2867
2867
|
"usage": {
|
|
2868
2868
|
"price": {
|
|
2869
|
-
"value": 0.
|
|
2869
|
+
"value": 0.031512500000000006
|
|
2870
2870
|
},
|
|
2871
2871
|
"input": {
|
|
2872
2872
|
"tokensCount": {
|
|
@@ -2893,16 +2893,16 @@ function getTemplatesPipelineCollection() {
|
|
|
2893
2893
|
},
|
|
2894
2894
|
"output": {
|
|
2895
2895
|
"tokensCount": {
|
|
2896
|
-
"value":
|
|
2896
|
+
"value": 2419
|
|
2897
2897
|
},
|
|
2898
2898
|
"charactersCount": {
|
|
2899
|
-
"value":
|
|
2899
|
+
"value": 2834
|
|
2900
2900
|
},
|
|
2901
2901
|
"wordsCount": {
|
|
2902
|
-
"value":
|
|
2902
|
+
"value": 386
|
|
2903
2903
|
},
|
|
2904
2904
|
"sentencesCount": {
|
|
2905
|
-
"value":
|
|
2905
|
+
"value": 51
|
|
2906
2906
|
},
|
|
2907
2907
|
"linesCount": {
|
|
2908
2908
|
"value": 60
|
|
@@ -2977,22 +2977,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2977
2977
|
"models": [
|
|
2978
2978
|
{
|
|
2979
2979
|
"modelName": "gpt-4.1",
|
|
2980
|
-
"systemMessage": "You are a skilled e
|
|
2981
|
-
"temperature": 0.
|
|
2980
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2981
|
+
"temperature": 0.7
|
|
2982
2982
|
},
|
|
2983
2983
|
{
|
|
2984
2984
|
"modelName": "chatgpt-4o-latest",
|
|
2985
|
-
"systemMessage": "You are a
|
|
2986
|
-
"temperature": 0.
|
|
2985
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2986
|
+
"temperature": 0.8
|
|
2987
2987
|
},
|
|
2988
2988
|
{
|
|
2989
2989
|
"modelName": "gpt-4",
|
|
2990
|
-
"systemMessage": "You are
|
|
2991
|
-
"temperature": 0.
|
|
2990
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2991
|
+
"temperature": 0.65
|
|
2992
2992
|
},
|
|
2993
2993
|
{
|
|
2994
2994
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2995
|
-
"systemMessage": "You are a
|
|
2995
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2996
2996
|
"temperature": 0.8
|
|
2997
2997
|
}
|
|
2998
2998
|
]
|
|
@@ -3006,10 +3006,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3006
3006
|
"preparations": [
|
|
3007
3007
|
{
|
|
3008
3008
|
"id": 1,
|
|
3009
|
-
"promptbookVersion": "0.101.0
|
|
3009
|
+
"promptbookVersion": "0.101.0",
|
|
3010
3010
|
"usage": {
|
|
3011
3011
|
"price": {
|
|
3012
|
-
"value": 0.
|
|
3012
|
+
"value": 0.030552500000000003
|
|
3013
3013
|
},
|
|
3014
3014
|
"input": {
|
|
3015
3015
|
"tokensCount": {
|
|
@@ -3036,19 +3036,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3036
3036
|
},
|
|
3037
3037
|
"output": {
|
|
3038
3038
|
"tokensCount": {
|
|
3039
|
-
"value":
|
|
3039
|
+
"value": 2323
|
|
3040
3040
|
},
|
|
3041
3041
|
"charactersCount": {
|
|
3042
|
-
"value":
|
|
3042
|
+
"value": 3427
|
|
3043
3043
|
},
|
|
3044
3044
|
"wordsCount": {
|
|
3045
|
-
"value":
|
|
3045
|
+
"value": 482
|
|
3046
3046
|
},
|
|
3047
3047
|
"sentencesCount": {
|
|
3048
|
-
"value":
|
|
3048
|
+
"value": 27
|
|
3049
3049
|
},
|
|
3050
3050
|
"linesCount": {
|
|
3051
|
-
"value":
|
|
3051
|
+
"value": 72
|
|
3052
3052
|
},
|
|
3053
3053
|
"paragraphsCount": {
|
|
3054
3054
|
"value": 1
|
|
@@ -3102,7 +3102,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3102
3102
|
"preparations": [
|
|
3103
3103
|
{
|
|
3104
3104
|
"id": 1,
|
|
3105
|
-
"promptbookVersion": "0.101.0
|
|
3105
|
+
"promptbookVersion": "0.101.0",
|
|
3106
3106
|
"usage": {
|
|
3107
3107
|
"price": {
|
|
3108
3108
|
"value": 0
|
|
@@ -3211,27 +3211,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3211
3211
|
"models": [
|
|
3212
3212
|
{
|
|
3213
3213
|
"modelName": "gpt-4.1",
|
|
3214
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3214
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3215
3215
|
"temperature": 0.4
|
|
3216
3216
|
},
|
|
3217
3217
|
{
|
|
3218
3218
|
"modelName": "chatgpt-4o-latest",
|
|
3219
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3219
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3220
3220
|
"temperature": 0.6
|
|
3221
3221
|
},
|
|
3222
3222
|
{
|
|
3223
3223
|
"modelName": "gpt-4",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3224
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3225
3225
|
"temperature": 0.5
|
|
3226
3226
|
},
|
|
3227
3227
|
{
|
|
3228
3228
|
"modelName": "o4-mini",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3230
|
-
"temperature": 0.
|
|
3229
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3230
|
+
"temperature": 0.4
|
|
3231
3231
|
},
|
|
3232
3232
|
{
|
|
3233
3233
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3234
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3235
3235
|
"temperature": 0.6
|
|
3236
3236
|
}
|
|
3237
3237
|
]
|
|
@@ -3245,10 +3245,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3245
3245
|
"preparations": [
|
|
3246
3246
|
{
|
|
3247
3247
|
"id": 1,
|
|
3248
|
-
"promptbookVersion": "0.101.0
|
|
3248
|
+
"promptbookVersion": "0.101.0",
|
|
3249
3249
|
"usage": {
|
|
3250
3250
|
"price": {
|
|
3251
|
-
"value": 0.
|
|
3251
|
+
"value": 0.038622500000000004
|
|
3252
3252
|
},
|
|
3253
3253
|
"input": {
|
|
3254
3254
|
"tokensCount": {
|
|
@@ -3275,19 +3275,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3275
3275
|
},
|
|
3276
3276
|
"output": {
|
|
3277
3277
|
"tokensCount": {
|
|
3278
|
-
"value":
|
|
3278
|
+
"value": 3130
|
|
3279
3279
|
},
|
|
3280
3280
|
"charactersCount": {
|
|
3281
|
-
"value":
|
|
3281
|
+
"value": 4148
|
|
3282
3282
|
},
|
|
3283
3283
|
"wordsCount": {
|
|
3284
|
-
"value":
|
|
3284
|
+
"value": 546
|
|
3285
3285
|
},
|
|
3286
3286
|
"sentencesCount": {
|
|
3287
|
-
"value":
|
|
3287
|
+
"value": 58
|
|
3288
3288
|
},
|
|
3289
3289
|
"linesCount": {
|
|
3290
|
-
"value":
|
|
3290
|
+
"value": 84
|
|
3291
3291
|
},
|
|
3292
3292
|
"paragraphsCount": {
|
|
3293
3293
|
"value": 1
|
|
@@ -3367,23 +3367,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3367
3367
|
"models": [
|
|
3368
3368
|
{
|
|
3369
3369
|
"modelName": "gpt-4.1",
|
|
3370
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3371
|
-
"temperature": 0.
|
|
3370
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: (1) Resolve customer issues quickly and empathetically. (2) Write clear, persuasive, on-brand copy (product pages, emails, ads, social, SEO). Behavior: - Be friendly, concise, and actionable. - Ask targeted clarifying questions when details are missing (order number, item, issue, dates, photos). - Follow store policies precisely; never invent policy. If unsure, state that and propose next steps or escalate to a human. - Offer options, set expectations (costs, timelines, return windows), and summarize decisions. - For copy: adapt to brand voice, highlight benefits and differentiators, include a clear CTA, avoid unverifiable claims, and provide 2–3 variations on request. - Use bullet points for steps, keep formatting clean, and include placeholders for links or SKUs when needed. - Localize tone and spelling to the customer’s locale when evident.",
|
|
3371
|
+
"temperature": 0.55
|
|
3372
3372
|
},
|
|
3373
3373
|
{
|
|
3374
3374
|
"modelName": "chatgpt-4o-latest",
|
|
3375
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3376
|
-
"temperature": 0.
|
|
3375
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be empathetic, efficient, and brand-aligned. For support: ask for missing essentials (order number, item, issue, dates, photos), follow policy exactly, summarize options, set timelines/costs, and escalate when uncertain. For copy: write persuasive, benefits-led content with a clear CTA, match brand voice, avoid unsupported claims, and provide alternate variations on request. Use clean formatting and bullet points where helpful.",
|
|
3376
|
+
"temperature": 0.6
|
|
3377
3377
|
},
|
|
3378
3378
|
{
|
|
3379
3379
|
"modelName": "gpt-4",
|
|
3380
|
-
"systemMessage": "
|
|
3380
|
+
"systemMessage": "Act as a friendly, efficient ecommerce customer support agent and on-brand copywriter. Clarify missing details, follow policies faithfully, give actionable next steps, and summarize outcomes. For marketing copy, highlight benefits and differentiators, keep claims accurate, include a strong CTA, and adapt to the customer’s locale and brand voice.",
|
|
3381
3381
|
"temperature": 0.5
|
|
3382
3382
|
},
|
|
3383
3383
|
{
|
|
3384
3384
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3385
|
-
"systemMessage": "You are
|
|
3386
|
-
"temperature": 0.
|
|
3385
|
+
"systemMessage": "You are an empathetic ecommerce customer service rep and practical copywriter. Keep answers concise and actionable, ask for missing details (order number, product, issue), follow store policy, and summarize options with timelines. For copy, write clear, benefit-focused text with a suitable CTA and provide a second variation when asked.",
|
|
3386
|
+
"temperature": 0.4
|
|
3387
3387
|
}
|
|
3388
3388
|
]
|
|
3389
3389
|
}
|
|
@@ -3396,10 +3396,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3396
3396
|
"preparations": [
|
|
3397
3397
|
{
|
|
3398
3398
|
"id": 1,
|
|
3399
|
-
"promptbookVersion": "0.101.0
|
|
3399
|
+
"promptbookVersion": "0.101.0",
|
|
3400
3400
|
"usage": {
|
|
3401
3401
|
"price": {
|
|
3402
|
-
"value": 0.
|
|
3402
|
+
"value": 0.0374275
|
|
3403
3403
|
},
|
|
3404
3404
|
"input": {
|
|
3405
3405
|
"tokensCount": {
|
|
@@ -3426,19 +3426,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3426
3426
|
},
|
|
3427
3427
|
"output": {
|
|
3428
3428
|
"tokensCount": {
|
|
3429
|
-
"value":
|
|
3429
|
+
"value": 3010
|
|
3430
3430
|
},
|
|
3431
3431
|
"charactersCount": {
|
|
3432
|
-
"value":
|
|
3432
|
+
"value": 2566
|
|
3433
3433
|
},
|
|
3434
3434
|
"wordsCount": {
|
|
3435
|
-
"value":
|
|
3435
|
+
"value": 353
|
|
3436
3436
|
},
|
|
3437
3437
|
"sentencesCount": {
|
|
3438
|
-
"value":
|
|
3438
|
+
"value": 29
|
|
3439
3439
|
},
|
|
3440
3440
|
"linesCount": {
|
|
3441
|
-
"value":
|
|
3441
|
+
"value": 57
|
|
3442
3442
|
},
|
|
3443
3443
|
"paragraphsCount": {
|
|
3444
3444
|
"value": 1
|
|
@@ -3695,28 +3695,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3695
3695
|
"models": [
|
|
3696
3696
|
{
|
|
3697
3697
|
"modelName": "gpt-4.1",
|
|
3698
|
-
"systemMessage": "You are a
|
|
3699
|
-
"temperature": 0.
|
|
3698
|
+
"systemMessage": "You are a linguist and Esperantist. Be a helpful virtual assistant with strong multilingual skills. Provide clear explanations of phonetics, morphology, syntax, etymology, and translation. Use standard Esperanto orthography (ĉ ĝ ĥ ĵ ŝ ŭ) and switch to x-system only if requested. When useful, include IPA and brief Leipzig-style glosses. Ask clarifying questions when ambiguity exists. Be polite, precise, and concise.",
|
|
3699
|
+
"temperature": 0.3
|
|
3700
3700
|
},
|
|
3701
3701
|
{
|
|
3702
3702
|
"modelName": "chatgpt-4o-latest",
|
|
3703
|
-
"systemMessage": "You are a
|
|
3704
|
-
"temperature": 0.
|
|
3703
|
+
"systemMessage": "You are a linguist and Esperantist. Be a friendly, knowledgeable assistant with excellent multilingual capabilities. Offer precise analyses (phonetics, morphology, syntax) and high-quality translations. Default to standard Esperanto orthography; use x-system only on request. Include IPA and short Leipzig-style glosses when helpful. Ask clarifying questions if context is missing. Keep answers clear and concise.",
|
|
3704
|
+
"temperature": 0.4
|
|
3705
3705
|
},
|
|
3706
3706
|
{
|
|
3707
3707
|
"modelName": "gpt-4",
|
|
3708
|
-
"systemMessage": "You are a
|
|
3709
|
-
"temperature": 0.
|
|
3708
|
+
"systemMessage": "You are a linguist and Esperantist. Provide accurate linguistic analysis, pragmatic guidance, and translations. Prefer standard Esperanto orthography; use x-system only if asked. Include IPA and brief glosses when useful. Confirm assumptions, ask clarifying questions when ambiguous, and keep the tone courteous and concise.",
|
|
3709
|
+
"temperature": 0.3
|
|
3710
3710
|
},
|
|
3711
3711
|
{
|
|
3712
3712
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3713
|
-
"systemMessage": "You are a
|
|
3714
|
-
"temperature": 0.
|
|
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
|
|
3713
|
+
"systemMessage": "You are a linguist and Esperantist. Give clear, concise help with translation and linguistic topics (phonetics, morphology, syntax). Use standard Esperanto orthography by default; switch to x-system only if requested. Include IPA when helpful and ask clarifying questions if the prompt is ambiguous.",
|
|
3714
|
+
"temperature": 0.5
|
|
3720
3715
|
}
|
|
3721
3716
|
]
|
|
3722
3717
|
}
|
|
@@ -3729,10 +3724,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3729
3724
|
"preparations": [
|
|
3730
3725
|
{
|
|
3731
3726
|
"id": 1,
|
|
3732
|
-
"promptbookVersion": "0.101.0
|
|
3727
|
+
"promptbookVersion": "0.101.0",
|
|
3733
3728
|
"usage": {
|
|
3734
3729
|
"price": {
|
|
3735
|
-
"value": 0.
|
|
3730
|
+
"value": 0.0245125
|
|
3736
3731
|
},
|
|
3737
3732
|
"input": {
|
|
3738
3733
|
"tokensCount": {
|
|
@@ -3759,19 +3754,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3759
3754
|
},
|
|
3760
3755
|
"output": {
|
|
3761
3756
|
"tokensCount": {
|
|
3762
|
-
"value":
|
|
3757
|
+
"value": 1719
|
|
3763
3758
|
},
|
|
3764
3759
|
"charactersCount": {
|
|
3765
|
-
"value":
|
|
3760
|
+
"value": 1872
|
|
3766
3761
|
},
|
|
3767
3762
|
"wordsCount": {
|
|
3768
|
-
"value":
|
|
3763
|
+
"value": 251
|
|
3769
3764
|
},
|
|
3770
3765
|
"sentencesCount": {
|
|
3771
|
-
"value":
|
|
3766
|
+
"value": 30
|
|
3772
3767
|
},
|
|
3773
3768
|
"linesCount": {
|
|
3774
|
-
"value":
|
|
3769
|
+
"value": 47
|
|
3775
3770
|
},
|
|
3776
3771
|
"paragraphsCount": {
|
|
3777
3772
|
"value": 1
|
|
@@ -3842,23 +3837,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3842
3837
|
"models": [
|
|
3843
3838
|
{
|
|
3844
3839
|
"modelName": "gpt-4.1",
|
|
3845
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3840
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and narrative across forms and genres. Use striking imagery, musicality, and clear emotional arcs. Adapt tone to the prompt, avoid clichés, and prefer concrete, sensory detail. Offer a brief outline for longer pieces when helpful, then deliver polished language.",
|
|
3846
3841
|
"temperature": 0.9
|
|
3847
3842
|
},
|
|
3848
3843
|
{
|
|
3849
3844
|
"modelName": "chatgpt-4o-latest",
|
|
3850
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3845
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, evocative verse and compelling narratives with strong voice, rhythm, and sensory detail. Match style to the prompt, avoid clichés, and aim for emotional resonance. For longer works, propose a concise outline before writing.",
|
|
3851
3846
|
"temperature": 0.9
|
|
3852
3847
|
},
|
|
3853
3848
|
{
|
|
3854
3849
|
"modelName": "gpt-4",
|
|
3855
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3850
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, emotionally rich poems and stories with vivid imagery, clear arcs, and musical language. Tailor form and tone to the request and keep prose concise yet expressive.",
|
|
3856
3851
|
"temperature": 0.85
|
|
3857
3852
|
},
|
|
3858
3853
|
{
|
|
3859
3854
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3860
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3861
|
-
"temperature": 0.
|
|
3855
|
+
"systemMessage": "You are an accomplished poet and storyteller. Generate clear, engaging poems and stories with concrete imagery, strong rhythm, and focused narrative arcs. Keep language fresh and avoid clichés.",
|
|
3856
|
+
"temperature": 0.8
|
|
3862
3857
|
}
|
|
3863
3858
|
]
|
|
3864
3859
|
}
|
|
@@ -3871,10 +3866,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3871
3866
|
"preparations": [
|
|
3872
3867
|
{
|
|
3873
3868
|
"id": 1,
|
|
3874
|
-
"promptbookVersion": "0.101.0
|
|
3869
|
+
"promptbookVersion": "0.101.0",
|
|
3875
3870
|
"usage": {
|
|
3876
3871
|
"price": {
|
|
3877
|
-
"value": 0.
|
|
3872
|
+
"value": 0.024831250000000003
|
|
3878
3873
|
},
|
|
3879
3874
|
"input": {
|
|
3880
3875
|
"tokensCount": {
|
|
@@ -3901,25 +3896,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3901
3896
|
},
|
|
3902
3897
|
"output": {
|
|
3903
3898
|
"tokensCount": {
|
|
3904
|
-
"value":
|
|
3899
|
+
"value": 1751
|
|
3905
3900
|
},
|
|
3906
3901
|
"charactersCount": {
|
|
3907
|
-
"value":
|
|
3902
|
+
"value": 1463
|
|
3908
3903
|
},
|
|
3909
3904
|
"wordsCount": {
|
|
3910
|
-
"value":
|
|
3905
|
+
"value": 197
|
|
3911
3906
|
},
|
|
3912
3907
|
"sentencesCount": {
|
|
3913
|
-
"value":
|
|
3908
|
+
"value": 22
|
|
3914
3909
|
},
|
|
3915
3910
|
"linesCount": {
|
|
3916
|
-
"value":
|
|
3911
|
+
"value": 40
|
|
3917
3912
|
},
|
|
3918
3913
|
"paragraphsCount": {
|
|
3919
3914
|
"value": 1
|
|
3920
3915
|
},
|
|
3921
3916
|
"pagesCount": {
|
|
3922
|
-
"value":
|
|
3917
|
+
"value": 1
|
|
3923
3918
|
}
|
|
3924
3919
|
}
|
|
3925
3920
|
}
|