@promptbook/templates 0.101.0-8 → 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 +133 -174
- 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 +2 -8
- 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 +2 -8
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +2 -8
- 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 +2 -8
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +2 -8
- 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 +25 -10
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +2 -8
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +2 -8
- 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 +2 -8
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +2 -8
- 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 +133 -174
- 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 developer of the Promptbook Project
|
|
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
|
-
"modelName": "
|
|
1576
|
-
"systemMessage": "You are a
|
|
1577
|
-
"temperature": 0.
|
|
1575
|
+
"modelName": "gpt-4",
|
|
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
|
-
"modelName": "
|
|
1581
|
-
"systemMessage": "You are a
|
|
1580
|
+
"modelName": "o4-mini",
|
|
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
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,14 +1597,14 @@ 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": {
|
|
1607
|
-
"value":
|
|
1607
|
+
"value": 5859
|
|
1608
1608
|
},
|
|
1609
1609
|
"charactersCount": {
|
|
1610
1610
|
"value": 2377
|
|
@@ -1627,19 +1627,19 @@ 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
|
-
"value":
|
|
1642
|
+
"value": 59
|
|
1643
1643
|
},
|
|
1644
1644
|
"paragraphsCount": {
|
|
1645
1645
|
"value": 1
|
|
@@ -2128,28 +2128,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2128
2128
|
"models": [
|
|
2129
2129
|
{
|
|
2130
2130
|
"modelName": "gpt-4.1",
|
|
2131
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
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
|
-
"modelName": "
|
|
2141
|
-
"systemMessage": "You are a
|
|
2142
|
-
"temperature": 0.
|
|
2140
|
+
"modelName": "gpt-4",
|
|
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
|
-
"modelName": "
|
|
2146
|
-
"systemMessage": "You are a
|
|
2145
|
+
"modelName": "o4-mini",
|
|
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
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,14 +2162,14 @@ 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": {
|
|
2172
|
-
"value":
|
|
2172
|
+
"value": 5859
|
|
2173
2173
|
},
|
|
2174
2174
|
"charactersCount": {
|
|
2175
2175
|
"value": 2377
|
|
@@ -2192,19 +2192,19 @@ 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
|
-
"value":
|
|
2207
|
+
"value": 59
|
|
2208
2208
|
},
|
|
2209
2209
|
"paragraphsCount": {
|
|
2210
2210
|
"value": 1
|
|
@@ -2831,33 +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. Goals: (1) Detect and correct grammar, spelling, punctuation, agreement, and usage errors across languages and dialects. (2) Preserve the author’s intent, voice, and register; avoid unnecessary rewrites. (3) When given text, return: a) a clean corrected version, then b) a brief list of key changes or suggestions. Explain rules only if asked. (4) Follow requested dialect/style (e.g., US/UK English; AP/Chicago/Oxford); ask one brief clarification only if essential. (5) Handle multilingual and code-mixed input; keep non-errors intact; improve typography and spacing when appropriate. (6) Be precise, consistent, and transparent; if the text is already correct, say so and optionally offer minor refinements.",
|
|
2838
|
-
"temperature": 0.2
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"modelName": "chatgpt-4o-latest",
|
|
2842
|
-
"systemMessage": "You are a linguist and meticulous text corrector. Correct grammar, spelling, punctuation, and usage while preserving meaning and voice. Default to minimal edits. Provide: (1) corrected text; (2) brief bullet notes of key changes. Respect requested dialect/style guides and ask for clarification only if essential. Handle multilingual/code-mixed input and typography fixes. If the text is already correct, say so and offer optional refinements.",
|
|
2843
|
-
"temperature": 0.2
|
|
2844
|
-
},
|
|
2845
|
-
{
|
|
2846
|
-
"modelName": "gpt-4",
|
|
2847
|
-
"systemMessage": "You are a linguist and careful text corrector. Maintain the author’s intent and register while fixing grammar, spelling, punctuation, and usage. Output first a clean corrected version, then concise notes on key changes. Honor requested dialect/style (US/UK, AP/Chicago/Oxford). Ask only necessary clarifying questions. Support multilingual and code-mixed text; avoid overcorrection.",
|
|
2848
|
-
"temperature": 0.2
|
|
2849
|
-
},
|
|
2850
|
-
{
|
|
2851
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
2852
|
-
"systemMessage": "You are a linguist and text corrector focused on accuracy and minimal edits. Provide: (1) a corrected version; (2) brief notes on key changes. Preserve meaning and tone. Follow requested dialect/style guides. Handle multilingual input and avoid overcorrection.",
|
|
2853
|
-
"temperature": 0.2
|
|
2854
|
-
},
|
|
2855
|
-
{
|
|
2856
|
-
"modelName": "gpt-3.5-turbo",
|
|
2857
|
-
"systemMessage": "You are a linguist and text corrector. Make minimal, precise corrections to grammar, spelling, punctuation, and usage while preserving meaning and voice. Return corrected text followed by brief notes on key changes. Respect requested dialect/style and avoid overcorrection.",
|
|
2858
|
-
"temperature": 0.2
|
|
2859
|
-
}
|
|
2860
|
-
]
|
|
2834
|
+
"error": "The 'gpt-5' models are not supported in the current API. Please check the available models list for valid options."
|
|
2861
2835
|
}
|
|
2862
2836
|
],
|
|
2863
2837
|
"preparationIds": [
|
|
@@ -2868,14 +2842,14 @@ function getTemplatesPipelineCollection() {
|
|
|
2868
2842
|
"preparations": [
|
|
2869
2843
|
{
|
|
2870
2844
|
"id": 1,
|
|
2871
|
-
"promptbookVersion": "0.101.0-
|
|
2845
|
+
"promptbookVersion": "0.101.0-21",
|
|
2872
2846
|
"usage": {
|
|
2873
2847
|
"price": {
|
|
2874
|
-
"value": 0.
|
|
2848
|
+
"value": 0.0288625
|
|
2875
2849
|
},
|
|
2876
2850
|
"input": {
|
|
2877
2851
|
"tokensCount": {
|
|
2878
|
-
"value":
|
|
2852
|
+
"value": 5858
|
|
2879
2853
|
},
|
|
2880
2854
|
"charactersCount": {
|
|
2881
2855
|
"value": 2377
|
|
@@ -2898,25 +2872,25 @@ function getTemplatesPipelineCollection() {
|
|
|
2898
2872
|
},
|
|
2899
2873
|
"output": {
|
|
2900
2874
|
"tokensCount": {
|
|
2901
|
-
"value":
|
|
2875
|
+
"value": 2154
|
|
2902
2876
|
},
|
|
2903
2877
|
"charactersCount": {
|
|
2904
|
-
"value":
|
|
2878
|
+
"value": 131
|
|
2905
2879
|
},
|
|
2906
2880
|
"wordsCount": {
|
|
2907
|
-
"value":
|
|
2881
|
+
"value": 21
|
|
2908
2882
|
},
|
|
2909
2883
|
"sentencesCount": {
|
|
2910
|
-
"value":
|
|
2884
|
+
"value": 3
|
|
2911
2885
|
},
|
|
2912
2886
|
"linesCount": {
|
|
2913
|
-
"value":
|
|
2887
|
+
"value": 5
|
|
2914
2888
|
},
|
|
2915
2889
|
"paragraphsCount": {
|
|
2916
2890
|
"value": 1
|
|
2917
2891
|
},
|
|
2918
2892
|
"pagesCount": {
|
|
2919
|
-
"value":
|
|
2893
|
+
"value": 1
|
|
2920
2894
|
}
|
|
2921
2895
|
}
|
|
2922
2896
|
}
|
|
@@ -2982,28 +2956,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2982
2956
|
"models": [
|
|
2983
2957
|
{
|
|
2984
2958
|
"modelName": "gpt-4.1",
|
|
2985
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
2986
|
-
"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
|
|
2987
2961
|
},
|
|
2988
2962
|
{
|
|
2989
2963
|
"modelName": "chatgpt-4o-latest",
|
|
2990
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
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.",
|
|
2991
2965
|
"temperature": 0.7
|
|
2992
2966
|
},
|
|
2993
2967
|
{
|
|
2994
2968
|
"modelName": "gpt-4",
|
|
2995
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
2996
|
-
"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
|
|
2997
2971
|
},
|
|
2998
2972
|
{
|
|
2999
2973
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3000
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
3001
|
-
"temperature": 0.
|
|
3002
|
-
},
|
|
3003
|
-
{
|
|
3004
|
-
"modelName": "gpt-3.5-turbo-1106",
|
|
3005
|
-
"systemMessage": "You are a skilled copywriter for an e-shop. Create clear, persuasive product copy with a scannable structure (headline, 2–3 benefits, short description, specs, SEO title/meta). Be on-brand, honest, and readable; use natural keywords without stuffing. Adjust tone for PDPs, ads, or emails. Request missing details when needed.",
|
|
3006
|
-
"temperature": 0.65
|
|
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
|
|
3007
2976
|
}
|
|
3008
2977
|
]
|
|
3009
2978
|
}
|
|
@@ -3016,14 +2985,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3016
2985
|
"preparations": [
|
|
3017
2986
|
{
|
|
3018
2987
|
"id": 1,
|
|
3019
|
-
"promptbookVersion": "0.101.0-
|
|
2988
|
+
"promptbookVersion": "0.101.0-21",
|
|
3020
2989
|
"usage": {
|
|
3021
2990
|
"price": {
|
|
3022
|
-
"value": 0.
|
|
2991
|
+
"value": 0.0353525
|
|
3023
2992
|
},
|
|
3024
2993
|
"input": {
|
|
3025
2994
|
"tokensCount": {
|
|
3026
|
-
"value":
|
|
2995
|
+
"value": 5858
|
|
3027
2996
|
},
|
|
3028
2997
|
"charactersCount": {
|
|
3029
2998
|
"value": 2377
|
|
@@ -3046,19 +3015,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3046
3015
|
},
|
|
3047
3016
|
"output": {
|
|
3048
3017
|
"tokensCount": {
|
|
3049
|
-
"value":
|
|
3018
|
+
"value": 2803
|
|
3050
3019
|
},
|
|
3051
3020
|
"charactersCount": {
|
|
3052
|
-
"value":
|
|
3021
|
+
"value": 4372
|
|
3053
3022
|
},
|
|
3054
3023
|
"wordsCount": {
|
|
3055
|
-
"value":
|
|
3024
|
+
"value": 590
|
|
3056
3025
|
},
|
|
3057
3026
|
"sentencesCount": {
|
|
3058
|
-
"value":
|
|
3027
|
+
"value": 55
|
|
3059
3028
|
},
|
|
3060
3029
|
"linesCount": {
|
|
3061
|
-
"value":
|
|
3030
|
+
"value": 88
|
|
3062
3031
|
},
|
|
3063
3032
|
"paragraphsCount": {
|
|
3064
3033
|
"value": 1
|
|
@@ -3112,7 +3081,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3112
3081
|
"preparations": [
|
|
3113
3082
|
{
|
|
3114
3083
|
"id": 1,
|
|
3115
|
-
"promptbookVersion": "0.101.0-
|
|
3084
|
+
"promptbookVersion": "0.101.0-21",
|
|
3116
3085
|
"usage": {
|
|
3117
3086
|
"price": {
|
|
3118
3087
|
"value": 0
|
|
@@ -3221,33 +3190,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3221
3190
|
"models": [
|
|
3222
3191
|
{
|
|
3223
3192
|
"modelName": "gpt-4.1",
|
|
3224
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
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.",
|
|
3225
3194
|
"temperature": 0.4
|
|
3226
3195
|
},
|
|
3227
3196
|
{
|
|
3228
3197
|
"modelName": "chatgpt-4o-latest",
|
|
3229
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant with
|
|
3230
|
-
"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
|
|
3231
3200
|
},
|
|
3232
3201
|
{
|
|
3233
3202
|
"modelName": "gpt-4",
|
|
3234
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3235
|
-
"temperature": 0.
|
|
3236
|
-
},
|
|
3237
|
-
{
|
|
3238
|
-
"modelName": "o4-mini",
|
|
3239
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant focused on analytical problem-solving. Perform market sizing, CAC/LTV modeling, cohort/funnel analysis, and experiment design. Use private reasoning; share only results, key steps, and calculations as needed. Favor clarity, rigor, and practical recommendations.",
|
|
3240
|
-
"temperature": 0.3
|
|
3241
|
-
},
|
|
3242
|
-
{
|
|
3243
|
-
"modelName": "o1-mini",
|
|
3244
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant for complex quantitative strategy. Tackle ambiguous problems by decomposing them, run back-of-the-envelope calculations, and stress-test assumptions. Do not reveal chain-of-thought; provide concise conclusions, key assumptions, and formulas or numbers used.",
|
|
3245
|
-
"temperature": 0.25
|
|
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
|
|
3246
3205
|
},
|
|
3247
3206
|
{
|
|
3248
3207
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3249
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3250
|
-
"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
|
|
3251
3210
|
}
|
|
3252
3211
|
]
|
|
3253
3212
|
}
|
|
@@ -3260,14 +3219,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3260
3219
|
"preparations": [
|
|
3261
3220
|
{
|
|
3262
3221
|
"id": 1,
|
|
3263
|
-
"promptbookVersion": "0.101.0-
|
|
3222
|
+
"promptbookVersion": "0.101.0-21",
|
|
3264
3223
|
"usage": {
|
|
3265
3224
|
"price": {
|
|
3266
|
-
"value": 0.
|
|
3225
|
+
"value": 0.025522500000000004
|
|
3267
3226
|
},
|
|
3268
3227
|
"input": {
|
|
3269
3228
|
"tokensCount": {
|
|
3270
|
-
"value":
|
|
3229
|
+
"value": 5858
|
|
3271
3230
|
},
|
|
3272
3231
|
"charactersCount": {
|
|
3273
3232
|
"value": 2377
|
|
@@ -3290,25 +3249,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3290
3249
|
},
|
|
3291
3250
|
"output": {
|
|
3292
3251
|
"tokensCount": {
|
|
3293
|
-
"value":
|
|
3252
|
+
"value": 1820
|
|
3294
3253
|
},
|
|
3295
3254
|
"charactersCount": {
|
|
3296
|
-
"value":
|
|
3255
|
+
"value": 1482
|
|
3297
3256
|
},
|
|
3298
3257
|
"wordsCount": {
|
|
3299
|
-
"value":
|
|
3258
|
+
"value": 186
|
|
3300
3259
|
},
|
|
3301
3260
|
"sentencesCount": {
|
|
3302
|
-
"value":
|
|
3261
|
+
"value": 22
|
|
3303
3262
|
},
|
|
3304
3263
|
"linesCount": {
|
|
3305
|
-
"value":
|
|
3264
|
+
"value": 41
|
|
3306
3265
|
},
|
|
3307
3266
|
"paragraphsCount": {
|
|
3308
3267
|
"value": 1
|
|
3309
3268
|
},
|
|
3310
3269
|
"pagesCount": {
|
|
3311
|
-
"value":
|
|
3270
|
+
"value": 1
|
|
3312
3271
|
}
|
|
3313
3272
|
}
|
|
3314
3273
|
}
|
|
@@ -3382,28 +3341,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3382
3341
|
"models": [
|
|
3383
3342
|
{
|
|
3384
3343
|
"modelName": "gpt-4.1",
|
|
3385
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3386
|
-
"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
|
|
3387
3346
|
},
|
|
3388
3347
|
{
|
|
3389
3348
|
"modelName": "chatgpt-4o-latest",
|
|
3390
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3391
3350
|
"temperature": 0.5
|
|
3392
3351
|
},
|
|
3393
3352
|
{
|
|
3394
3353
|
"modelName": "gpt-4",
|
|
3395
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3396
3355
|
"temperature": 0.4
|
|
3397
3356
|
},
|
|
3398
3357
|
{
|
|
3399
3358
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3400
|
-
"systemMessage": "You are a
|
|
3401
|
-
"temperature": 0.
|
|
3402
|
-
},
|
|
3403
|
-
{
|
|
3404
|
-
"modelName": "gpt-realtime",
|
|
3405
|
-
"systemMessage": "You are a live customer service and copywriting assistant for an online store. Be empathetic, fast, and accurate. Confirm details before actions, summarize next steps, and follow store policies. For copy, generate concise, brand‑aligned options and ask clarifying questions if needed. Keep claims factual and avoid speculation.",
|
|
3406
|
-
"temperature": 0.5
|
|
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.",
|
|
3360
|
+
"temperature": 0.6
|
|
3407
3361
|
}
|
|
3408
3362
|
]
|
|
3409
3363
|
}
|
|
@@ -3416,14 +3370,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3416
3370
|
"preparations": [
|
|
3417
3371
|
{
|
|
3418
3372
|
"id": 1,
|
|
3419
|
-
"promptbookVersion": "0.101.0-
|
|
3373
|
+
"promptbookVersion": "0.101.0-21",
|
|
3420
3374
|
"usage": {
|
|
3421
3375
|
"price": {
|
|
3422
|
-
"value": 0.
|
|
3376
|
+
"value": 0.0378375
|
|
3423
3377
|
},
|
|
3424
3378
|
"input": {
|
|
3425
3379
|
"tokensCount": {
|
|
3426
|
-
"value":
|
|
3380
|
+
"value": 5862
|
|
3427
3381
|
},
|
|
3428
3382
|
"charactersCount": {
|
|
3429
3383
|
"value": 2377
|
|
@@ -3446,25 +3400,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3446
3400
|
},
|
|
3447
3401
|
"output": {
|
|
3448
3402
|
"tokensCount": {
|
|
3449
|
-
"value":
|
|
3403
|
+
"value": 3051
|
|
3450
3404
|
},
|
|
3451
3405
|
"charactersCount": {
|
|
3452
|
-
"value":
|
|
3406
|
+
"value": 5415
|
|
3453
3407
|
},
|
|
3454
3408
|
"wordsCount": {
|
|
3455
|
-
"value":
|
|
3409
|
+
"value": 750
|
|
3456
3410
|
},
|
|
3457
3411
|
"sentencesCount": {
|
|
3458
|
-
"value":
|
|
3412
|
+
"value": 39
|
|
3459
3413
|
},
|
|
3460
3414
|
"linesCount": {
|
|
3461
|
-
"value":
|
|
3415
|
+
"value": 104
|
|
3462
3416
|
},
|
|
3463
3417
|
"paragraphsCount": {
|
|
3464
3418
|
"value": 1
|
|
3465
3419
|
},
|
|
3466
3420
|
"pagesCount": {
|
|
3467
|
-
"value":
|
|
3421
|
+
"value": 3
|
|
3468
3422
|
}
|
|
3469
3423
|
}
|
|
3470
3424
|
}
|
|
@@ -3715,23 +3669,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3715
3669
|
"models": [
|
|
3716
3670
|
{
|
|
3717
3671
|
"modelName": "gpt-4.1",
|
|
3718
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3719
3673
|
"temperature": 0.3
|
|
3720
3674
|
},
|
|
3721
3675
|
{
|
|
3722
3676
|
"modelName": "chatgpt-4o-latest",
|
|
3723
|
-
"systemMessage": "You are a friendly,
|
|
3724
|
-
"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
|
|
3725
3679
|
},
|
|
3726
3680
|
{
|
|
3727
3681
|
"modelName": "gpt-4",
|
|
3728
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3729
3683
|
"temperature": 0.3
|
|
3730
3684
|
},
|
|
3731
3685
|
{
|
|
3732
3686
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3733
|
-
"systemMessage": "You are a
|
|
3734
|
-
"temperature": 0.
|
|
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.",
|
|
3688
|
+
"temperature": 0.4
|
|
3735
3689
|
}
|
|
3736
3690
|
]
|
|
3737
3691
|
}
|
|
@@ -3744,14 +3698,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3744
3698
|
"preparations": [
|
|
3745
3699
|
{
|
|
3746
3700
|
"id": 1,
|
|
3747
|
-
"promptbookVersion": "0.101.0-
|
|
3701
|
+
"promptbookVersion": "0.101.0-21",
|
|
3748
3702
|
"usage": {
|
|
3749
3703
|
"price": {
|
|
3750
|
-
"value": 0.
|
|
3704
|
+
"value": 0.029122500000000003
|
|
3751
3705
|
},
|
|
3752
3706
|
"input": {
|
|
3753
3707
|
"tokensCount": {
|
|
3754
|
-
"value":
|
|
3708
|
+
"value": 5858
|
|
3755
3709
|
},
|
|
3756
3710
|
"charactersCount": {
|
|
3757
3711
|
"value": 2377
|
|
@@ -3774,19 +3728,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3774
3728
|
},
|
|
3775
3729
|
"output": {
|
|
3776
3730
|
"tokensCount": {
|
|
3777
|
-
"value":
|
|
3731
|
+
"value": 2180
|
|
3778
3732
|
},
|
|
3779
3733
|
"charactersCount": {
|
|
3780
|
-
"value":
|
|
3734
|
+
"value": 2102
|
|
3781
3735
|
},
|
|
3782
3736
|
"wordsCount": {
|
|
3783
|
-
"value":
|
|
3737
|
+
"value": 247
|
|
3784
3738
|
},
|
|
3785
3739
|
"sentencesCount": {
|
|
3786
|
-
"value":
|
|
3740
|
+
"value": 25
|
|
3787
3741
|
},
|
|
3788
3742
|
"linesCount": {
|
|
3789
|
-
"value":
|
|
3743
|
+
"value": 50
|
|
3790
3744
|
},
|
|
3791
3745
|
"paragraphsCount": {
|
|
3792
3746
|
"value": 1
|
|
@@ -3855,25 +3809,30 @@ function getTemplatesPipelineCollection() {
|
|
|
3855
3809
|
{
|
|
3856
3810
|
"modelVariant": "CHAT",
|
|
3857
3811
|
"models": [
|
|
3858
|
-
{
|
|
3859
|
-
"modelName": "gpt-4.1",
|
|
3860
|
-
"systemMessage": "You are an accomplished poet and storyteller. You craft vivid, original verse and narrative with strong imagery, rhythm, and voice. Adapt style, form, and tone to the user's brief (e.g., free verse, sonnet, fable, myth, microfiction). Avoid clichés, be emotionally honest, and maintain coherence across long pieces. Ask one clarifying question if the prompt is ambiguous. Offer alternate drafts or revisions on request.",
|
|
3861
|
-
"temperature": 0.95
|
|
3862
|
-
},
|
|
3863
3812
|
{
|
|
3864
3813
|
"modelName": "chatgpt-4o-latest",
|
|
3865
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
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.",
|
|
3866
3815
|
"temperature": 0.9
|
|
3867
3816
|
},
|
|
3817
|
+
{
|
|
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
|
|
3821
|
+
},
|
|
3868
3822
|
{
|
|
3869
3823
|
"modelName": "gpt-4",
|
|
3870
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3871
|
-
"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
|
|
3872
3826
|
},
|
|
3873
3827
|
{
|
|
3874
3828
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3875
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3876
|
-
"temperature": 0.
|
|
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.",
|
|
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
|
|
3877
3836
|
}
|
|
3878
3837
|
]
|
|
3879
3838
|
}
|
|
@@ -3886,14 +3845,14 @@ function getTemplatesPipelineCollection() {
|
|
|
3886
3845
|
"preparations": [
|
|
3887
3846
|
{
|
|
3888
3847
|
"id": 1,
|
|
3889
|
-
"promptbookVersion": "0.101.0-
|
|
3848
|
+
"promptbookVersion": "0.101.0-21",
|
|
3890
3849
|
"usage": {
|
|
3891
3850
|
"price": {
|
|
3892
|
-
"value": 0.
|
|
3851
|
+
"value": 0.03349125
|
|
3893
3852
|
},
|
|
3894
3853
|
"input": {
|
|
3895
3854
|
"tokensCount": {
|
|
3896
|
-
"value":
|
|
3855
|
+
"value": 5857
|
|
3897
3856
|
},
|
|
3898
3857
|
"charactersCount": {
|
|
3899
3858
|
"value": 2377
|
|
@@ -3916,19 +3875,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3916
3875
|
},
|
|
3917
3876
|
"output": {
|
|
3918
3877
|
"tokensCount": {
|
|
3919
|
-
"value":
|
|
3878
|
+
"value": 2617
|
|
3920
3879
|
},
|
|
3921
3880
|
"charactersCount": {
|
|
3922
|
-
"value":
|
|
3881
|
+
"value": 2460
|
|
3923
3882
|
},
|
|
3924
3883
|
"wordsCount": {
|
|
3925
|
-
"value":
|
|
3884
|
+
"value": 338
|
|
3926
3885
|
},
|
|
3927
3886
|
"sentencesCount": {
|
|
3928
|
-
"value":
|
|
3887
|
+
"value": 36
|
|
3929
3888
|
},
|
|
3930
3889
|
"linesCount": {
|
|
3931
|
-
"value":
|
|
3890
|
+
"value": 60
|
|
3932
3891
|
},
|
|
3933
3892
|
"paragraphsCount": {
|
|
3934
3893
|
"value": 1
|