@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/umd/index.umd.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* @generated
|
|
23
23
|
* @see https://github.com/webgptorg/promptbook
|
|
24
24
|
*/
|
|
25
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0';
|
|
26
26
|
/**
|
|
27
27
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
28
28
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1571,28 +1571,28 @@
|
|
|
1571
1571
|
"models": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
1575
|
-
"temperature": 0.
|
|
1574
|
+
"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.",
|
|
1575
|
+
"temperature": 0.2
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a
|
|
1580
|
-
"temperature": 0.
|
|
1579
|
+
"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.",
|
|
1580
|
+
"temperature": 0.3
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
|
-
"modelName": "
|
|
1584
|
-
"systemMessage": "You are a
|
|
1585
|
-
"temperature": 0.
|
|
1583
|
+
"modelName": "gpt-4",
|
|
1584
|
+
"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.",
|
|
1585
|
+
"temperature": 0.2
|
|
1586
1586
|
},
|
|
1587
1587
|
{
|
|
1588
|
-
"modelName": "
|
|
1589
|
-
"systemMessage": "You are a
|
|
1588
|
+
"modelName": "o4-mini",
|
|
1589
|
+
"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.",
|
|
1590
1590
|
"temperature": 0.2
|
|
1591
1591
|
},
|
|
1592
1592
|
{
|
|
1593
1593
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1594
|
-
"systemMessage": "You are a
|
|
1595
|
-
"temperature": 0.
|
|
1594
|
+
"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.",
|
|
1595
|
+
"temperature": 0.2
|
|
1596
1596
|
}
|
|
1597
1597
|
]
|
|
1598
1598
|
}
|
|
@@ -1605,14 +1605,14 @@
|
|
|
1605
1605
|
"preparations": [
|
|
1606
1606
|
{
|
|
1607
1607
|
"id": 1,
|
|
1608
|
-
"promptbookVersion": "0.101.0-
|
|
1608
|
+
"promptbookVersion": "0.101.0-21",
|
|
1609
1609
|
"usage": {
|
|
1610
1610
|
"price": {
|
|
1611
|
-
"value": 0.
|
|
1611
|
+
"value": 0.028033750000000003
|
|
1612
1612
|
},
|
|
1613
1613
|
"input": {
|
|
1614
1614
|
"tokensCount": {
|
|
1615
|
-
"value":
|
|
1615
|
+
"value": 5859
|
|
1616
1616
|
},
|
|
1617
1617
|
"charactersCount": {
|
|
1618
1618
|
"value": 2377
|
|
@@ -1635,19 +1635,19 @@
|
|
|
1635
1635
|
},
|
|
1636
1636
|
"output": {
|
|
1637
1637
|
"tokensCount": {
|
|
1638
|
-
"value":
|
|
1638
|
+
"value": 2071
|
|
1639
1639
|
},
|
|
1640
1640
|
"charactersCount": {
|
|
1641
|
-
"value":
|
|
1641
|
+
"value": 2488
|
|
1642
1642
|
},
|
|
1643
1643
|
"wordsCount": {
|
|
1644
|
-
"value":
|
|
1644
|
+
"value": 316
|
|
1645
1645
|
},
|
|
1646
1646
|
"sentencesCount": {
|
|
1647
|
-
"value":
|
|
1647
|
+
"value": 38
|
|
1648
1648
|
},
|
|
1649
1649
|
"linesCount": {
|
|
1650
|
-
"value":
|
|
1650
|
+
"value": 59
|
|
1651
1651
|
},
|
|
1652
1652
|
"paragraphsCount": {
|
|
1653
1653
|
"value": 1
|
|
@@ -2136,28 +2136,28 @@
|
|
|
2136
2136
|
"models": [
|
|
2137
2137
|
{
|
|
2138
2138
|
"modelName": "gpt-4.1",
|
|
2139
|
-
"systemMessage": "You are a developer of the Promptbook Project
|
|
2140
|
-
"temperature": 0.
|
|
2139
|
+
"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.",
|
|
2140
|
+
"temperature": 0.2
|
|
2141
2141
|
},
|
|
2142
2142
|
{
|
|
2143
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2144
|
-
"systemMessage": "You are a
|
|
2145
|
-
"temperature": 0.
|
|
2144
|
+
"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.",
|
|
2145
|
+
"temperature": 0.3
|
|
2146
2146
|
},
|
|
2147
2147
|
{
|
|
2148
|
-
"modelName": "
|
|
2149
|
-
"systemMessage": "You are a
|
|
2150
|
-
"temperature": 0.
|
|
2148
|
+
"modelName": "gpt-4",
|
|
2149
|
+
"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.",
|
|
2150
|
+
"temperature": 0.2
|
|
2151
2151
|
},
|
|
2152
2152
|
{
|
|
2153
|
-
"modelName": "
|
|
2154
|
-
"systemMessage": "You are a
|
|
2153
|
+
"modelName": "o4-mini",
|
|
2154
|
+
"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.",
|
|
2155
2155
|
"temperature": 0.2
|
|
2156
2156
|
},
|
|
2157
2157
|
{
|
|
2158
2158
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2159
|
-
"systemMessage": "You are a
|
|
2160
|
-
"temperature": 0.
|
|
2159
|
+
"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.",
|
|
2160
|
+
"temperature": 0.2
|
|
2161
2161
|
}
|
|
2162
2162
|
]
|
|
2163
2163
|
}
|
|
@@ -2170,14 +2170,14 @@
|
|
|
2170
2170
|
"preparations": [
|
|
2171
2171
|
{
|
|
2172
2172
|
"id": 1,
|
|
2173
|
-
"promptbookVersion": "0.101.0-
|
|
2173
|
+
"promptbookVersion": "0.101.0-21",
|
|
2174
2174
|
"usage": {
|
|
2175
2175
|
"price": {
|
|
2176
|
-
"value": 0.
|
|
2176
|
+
"value": 0.028033750000000003
|
|
2177
2177
|
},
|
|
2178
2178
|
"input": {
|
|
2179
2179
|
"tokensCount": {
|
|
2180
|
-
"value":
|
|
2180
|
+
"value": 5859
|
|
2181
2181
|
},
|
|
2182
2182
|
"charactersCount": {
|
|
2183
2183
|
"value": 2377
|
|
@@ -2200,19 +2200,19 @@
|
|
|
2200
2200
|
},
|
|
2201
2201
|
"output": {
|
|
2202
2202
|
"tokensCount": {
|
|
2203
|
-
"value":
|
|
2203
|
+
"value": 2071
|
|
2204
2204
|
},
|
|
2205
2205
|
"charactersCount": {
|
|
2206
|
-
"value":
|
|
2206
|
+
"value": 2488
|
|
2207
2207
|
},
|
|
2208
2208
|
"wordsCount": {
|
|
2209
|
-
"value":
|
|
2209
|
+
"value": 316
|
|
2210
2210
|
},
|
|
2211
2211
|
"sentencesCount": {
|
|
2212
|
-
"value":
|
|
2212
|
+
"value": 38
|
|
2213
2213
|
},
|
|
2214
2214
|
"linesCount": {
|
|
2215
|
-
"value":
|
|
2215
|
+
"value": 59
|
|
2216
2216
|
},
|
|
2217
2217
|
"paragraphsCount": {
|
|
2218
2218
|
"value": 1
|
|
@@ -2839,33 +2839,7 @@
|
|
|
2839
2839
|
"modelsRequirements": [
|
|
2840
2840
|
{
|
|
2841
2841
|
"modelVariant": "CHAT",
|
|
2842
|
-
"
|
|
2843
|
-
{
|
|
2844
|
-
"modelName": "gpt-4.1",
|
|
2845
|
-
"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.",
|
|
2846
|
-
"temperature": 0.2
|
|
2847
|
-
},
|
|
2848
|
-
{
|
|
2849
|
-
"modelName": "chatgpt-4o-latest",
|
|
2850
|
-
"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.",
|
|
2851
|
-
"temperature": 0.2
|
|
2852
|
-
},
|
|
2853
|
-
{
|
|
2854
|
-
"modelName": "gpt-4",
|
|
2855
|
-
"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.",
|
|
2856
|
-
"temperature": 0.2
|
|
2857
|
-
},
|
|
2858
|
-
{
|
|
2859
|
-
"modelName": "gpt-3.5-turbo-16k",
|
|
2860
|
-
"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.",
|
|
2861
|
-
"temperature": 0.2
|
|
2862
|
-
},
|
|
2863
|
-
{
|
|
2864
|
-
"modelName": "gpt-3.5-turbo",
|
|
2865
|
-
"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.",
|
|
2866
|
-
"temperature": 0.2
|
|
2867
|
-
}
|
|
2868
|
-
]
|
|
2842
|
+
"error": "The 'gpt-5' models are not supported in the current API. Please check the available models list for valid options."
|
|
2869
2843
|
}
|
|
2870
2844
|
],
|
|
2871
2845
|
"preparationIds": [
|
|
@@ -2876,14 +2850,14 @@
|
|
|
2876
2850
|
"preparations": [
|
|
2877
2851
|
{
|
|
2878
2852
|
"id": 1,
|
|
2879
|
-
"promptbookVersion": "0.101.0-
|
|
2853
|
+
"promptbookVersion": "0.101.0-21",
|
|
2880
2854
|
"usage": {
|
|
2881
2855
|
"price": {
|
|
2882
|
-
"value": 0.
|
|
2856
|
+
"value": 0.0288625
|
|
2883
2857
|
},
|
|
2884
2858
|
"input": {
|
|
2885
2859
|
"tokensCount": {
|
|
2886
|
-
"value":
|
|
2860
|
+
"value": 5858
|
|
2887
2861
|
},
|
|
2888
2862
|
"charactersCount": {
|
|
2889
2863
|
"value": 2377
|
|
@@ -2906,25 +2880,25 @@
|
|
|
2906
2880
|
},
|
|
2907
2881
|
"output": {
|
|
2908
2882
|
"tokensCount": {
|
|
2909
|
-
"value":
|
|
2883
|
+
"value": 2154
|
|
2910
2884
|
},
|
|
2911
2885
|
"charactersCount": {
|
|
2912
|
-
"value":
|
|
2886
|
+
"value": 131
|
|
2913
2887
|
},
|
|
2914
2888
|
"wordsCount": {
|
|
2915
|
-
"value":
|
|
2889
|
+
"value": 21
|
|
2916
2890
|
},
|
|
2917
2891
|
"sentencesCount": {
|
|
2918
|
-
"value":
|
|
2892
|
+
"value": 3
|
|
2919
2893
|
},
|
|
2920
2894
|
"linesCount": {
|
|
2921
|
-
"value":
|
|
2895
|
+
"value": 5
|
|
2922
2896
|
},
|
|
2923
2897
|
"paragraphsCount": {
|
|
2924
2898
|
"value": 1
|
|
2925
2899
|
},
|
|
2926
2900
|
"pagesCount": {
|
|
2927
|
-
"value":
|
|
2901
|
+
"value": 1
|
|
2928
2902
|
}
|
|
2929
2903
|
}
|
|
2930
2904
|
}
|
|
@@ -2990,28 +2964,23 @@
|
|
|
2990
2964
|
"models": [
|
|
2991
2965
|
{
|
|
2992
2966
|
"modelName": "gpt-4.1",
|
|
2993
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
2994
|
-
"temperature": 0.
|
|
2967
|
+
"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.",
|
|
2968
|
+
"temperature": 0.6
|
|
2995
2969
|
},
|
|
2996
2970
|
{
|
|
2997
2971
|
"modelName": "chatgpt-4o-latest",
|
|
2998
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
2972
|
+
"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.",
|
|
2999
2973
|
"temperature": 0.7
|
|
3000
2974
|
},
|
|
3001
2975
|
{
|
|
3002
2976
|
"modelName": "gpt-4",
|
|
3003
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
3004
|
-
"temperature": 0.
|
|
2977
|
+
"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.",
|
|
2978
|
+
"temperature": 0.65
|
|
3005
2979
|
},
|
|
3006
2980
|
{
|
|
3007
2981
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3008
|
-
"systemMessage": "You are a skilled copywriter for an
|
|
3009
|
-
"temperature": 0.
|
|
3010
|
-
},
|
|
3011
|
-
{
|
|
3012
|
-
"modelName": "gpt-3.5-turbo-1106",
|
|
3013
|
-
"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.",
|
|
3014
|
-
"temperature": 0.65
|
|
2982
|
+
"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.",
|
|
2983
|
+
"temperature": 0.75
|
|
3015
2984
|
}
|
|
3016
2985
|
]
|
|
3017
2986
|
}
|
|
@@ -3024,14 +2993,14 @@
|
|
|
3024
2993
|
"preparations": [
|
|
3025
2994
|
{
|
|
3026
2995
|
"id": 1,
|
|
3027
|
-
"promptbookVersion": "0.101.0-
|
|
2996
|
+
"promptbookVersion": "0.101.0-21",
|
|
3028
2997
|
"usage": {
|
|
3029
2998
|
"price": {
|
|
3030
|
-
"value": 0.
|
|
2999
|
+
"value": 0.0353525
|
|
3031
3000
|
},
|
|
3032
3001
|
"input": {
|
|
3033
3002
|
"tokensCount": {
|
|
3034
|
-
"value":
|
|
3003
|
+
"value": 5858
|
|
3035
3004
|
},
|
|
3036
3005
|
"charactersCount": {
|
|
3037
3006
|
"value": 2377
|
|
@@ -3054,19 +3023,19 @@
|
|
|
3054
3023
|
},
|
|
3055
3024
|
"output": {
|
|
3056
3025
|
"tokensCount": {
|
|
3057
|
-
"value":
|
|
3026
|
+
"value": 2803
|
|
3058
3027
|
},
|
|
3059
3028
|
"charactersCount": {
|
|
3060
|
-
"value":
|
|
3029
|
+
"value": 4372
|
|
3061
3030
|
},
|
|
3062
3031
|
"wordsCount": {
|
|
3063
|
-
"value":
|
|
3032
|
+
"value": 590
|
|
3064
3033
|
},
|
|
3065
3034
|
"sentencesCount": {
|
|
3066
|
-
"value":
|
|
3035
|
+
"value": 55
|
|
3067
3036
|
},
|
|
3068
3037
|
"linesCount": {
|
|
3069
|
-
"value":
|
|
3038
|
+
"value": 88
|
|
3070
3039
|
},
|
|
3071
3040
|
"paragraphsCount": {
|
|
3072
3041
|
"value": 1
|
|
@@ -3120,7 +3089,7 @@
|
|
|
3120
3089
|
"preparations": [
|
|
3121
3090
|
{
|
|
3122
3091
|
"id": 1,
|
|
3123
|
-
"promptbookVersion": "0.101.0-
|
|
3092
|
+
"promptbookVersion": "0.101.0-21",
|
|
3124
3093
|
"usage": {
|
|
3125
3094
|
"price": {
|
|
3126
3095
|
"value": 0
|
|
@@ -3229,33 +3198,23 @@
|
|
|
3229
3198
|
"models": [
|
|
3230
3199
|
{
|
|
3231
3200
|
"modelName": "gpt-4.1",
|
|
3232
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3201
|
+
"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.",
|
|
3233
3202
|
"temperature": 0.4
|
|
3234
3203
|
},
|
|
3235
3204
|
{
|
|
3236
3205
|
"modelName": "chatgpt-4o-latest",
|
|
3237
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant with
|
|
3238
|
-
"temperature": 0.
|
|
3206
|
+
"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.",
|
|
3207
|
+
"temperature": 0.65
|
|
3239
3208
|
},
|
|
3240
3209
|
{
|
|
3241
3210
|
"modelName": "gpt-4",
|
|
3242
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3243
|
-
"temperature": 0.
|
|
3244
|
-
},
|
|
3245
|
-
{
|
|
3246
|
-
"modelName": "o4-mini",
|
|
3247
|
-
"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.",
|
|
3248
|
-
"temperature": 0.3
|
|
3249
|
-
},
|
|
3250
|
-
{
|
|
3251
|
-
"modelName": "o1-mini",
|
|
3252
|
-
"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.",
|
|
3253
|
-
"temperature": 0.25
|
|
3211
|
+
"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.",
|
|
3212
|
+
"temperature": 0.45
|
|
3254
3213
|
},
|
|
3255
3214
|
{
|
|
3256
3215
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3257
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3258
|
-
"temperature": 0.
|
|
3216
|
+
"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.",
|
|
3217
|
+
"temperature": 0.5
|
|
3259
3218
|
}
|
|
3260
3219
|
]
|
|
3261
3220
|
}
|
|
@@ -3268,14 +3227,14 @@
|
|
|
3268
3227
|
"preparations": [
|
|
3269
3228
|
{
|
|
3270
3229
|
"id": 1,
|
|
3271
|
-
"promptbookVersion": "0.101.0-
|
|
3230
|
+
"promptbookVersion": "0.101.0-21",
|
|
3272
3231
|
"usage": {
|
|
3273
3232
|
"price": {
|
|
3274
|
-
"value": 0.
|
|
3233
|
+
"value": 0.025522500000000004
|
|
3275
3234
|
},
|
|
3276
3235
|
"input": {
|
|
3277
3236
|
"tokensCount": {
|
|
3278
|
-
"value":
|
|
3237
|
+
"value": 5858
|
|
3279
3238
|
},
|
|
3280
3239
|
"charactersCount": {
|
|
3281
3240
|
"value": 2377
|
|
@@ -3298,25 +3257,25 @@
|
|
|
3298
3257
|
},
|
|
3299
3258
|
"output": {
|
|
3300
3259
|
"tokensCount": {
|
|
3301
|
-
"value":
|
|
3260
|
+
"value": 1820
|
|
3302
3261
|
},
|
|
3303
3262
|
"charactersCount": {
|
|
3304
|
-
"value":
|
|
3263
|
+
"value": 1482
|
|
3305
3264
|
},
|
|
3306
3265
|
"wordsCount": {
|
|
3307
|
-
"value":
|
|
3266
|
+
"value": 186
|
|
3308
3267
|
},
|
|
3309
3268
|
"sentencesCount": {
|
|
3310
|
-
"value":
|
|
3269
|
+
"value": 22
|
|
3311
3270
|
},
|
|
3312
3271
|
"linesCount": {
|
|
3313
|
-
"value":
|
|
3272
|
+
"value": 41
|
|
3314
3273
|
},
|
|
3315
3274
|
"paragraphsCount": {
|
|
3316
3275
|
"value": 1
|
|
3317
3276
|
},
|
|
3318
3277
|
"pagesCount": {
|
|
3319
|
-
"value":
|
|
3278
|
+
"value": 1
|
|
3320
3279
|
}
|
|
3321
3280
|
}
|
|
3322
3281
|
}
|
|
@@ -3390,28 +3349,23 @@
|
|
|
3390
3349
|
"models": [
|
|
3391
3350
|
{
|
|
3392
3351
|
"modelName": "gpt-4.1",
|
|
3393
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑shop.
|
|
3394
|
-
"temperature": 0.
|
|
3352
|
+
"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.",
|
|
3353
|
+
"temperature": 0.45
|
|
3395
3354
|
},
|
|
3396
3355
|
{
|
|
3397
3356
|
"modelName": "chatgpt-4o-latest",
|
|
3398
|
-
"systemMessage": "You are a
|
|
3357
|
+
"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.",
|
|
3399
3358
|
"temperature": 0.5
|
|
3400
3359
|
},
|
|
3401
3360
|
{
|
|
3402
3361
|
"modelName": "gpt-4",
|
|
3403
|
-
"systemMessage": "You are a
|
|
3362
|
+
"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.",
|
|
3404
3363
|
"temperature": 0.4
|
|
3405
3364
|
},
|
|
3406
3365
|
{
|
|
3407
3366
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3408
|
-
"systemMessage": "You are a
|
|
3409
|
-
"temperature": 0.
|
|
3410
|
-
},
|
|
3411
|
-
{
|
|
3412
|
-
"modelName": "gpt-realtime",
|
|
3413
|
-
"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.",
|
|
3414
|
-
"temperature": 0.5
|
|
3367
|
+
"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.",
|
|
3368
|
+
"temperature": 0.6
|
|
3415
3369
|
}
|
|
3416
3370
|
]
|
|
3417
3371
|
}
|
|
@@ -3424,14 +3378,14 @@
|
|
|
3424
3378
|
"preparations": [
|
|
3425
3379
|
{
|
|
3426
3380
|
"id": 1,
|
|
3427
|
-
"promptbookVersion": "0.101.0-
|
|
3381
|
+
"promptbookVersion": "0.101.0-21",
|
|
3428
3382
|
"usage": {
|
|
3429
3383
|
"price": {
|
|
3430
|
-
"value": 0.
|
|
3384
|
+
"value": 0.0378375
|
|
3431
3385
|
},
|
|
3432
3386
|
"input": {
|
|
3433
3387
|
"tokensCount": {
|
|
3434
|
-
"value":
|
|
3388
|
+
"value": 5862
|
|
3435
3389
|
},
|
|
3436
3390
|
"charactersCount": {
|
|
3437
3391
|
"value": 2377
|
|
@@ -3454,25 +3408,25 @@
|
|
|
3454
3408
|
},
|
|
3455
3409
|
"output": {
|
|
3456
3410
|
"tokensCount": {
|
|
3457
|
-
"value":
|
|
3411
|
+
"value": 3051
|
|
3458
3412
|
},
|
|
3459
3413
|
"charactersCount": {
|
|
3460
|
-
"value":
|
|
3414
|
+
"value": 5415
|
|
3461
3415
|
},
|
|
3462
3416
|
"wordsCount": {
|
|
3463
|
-
"value":
|
|
3417
|
+
"value": 750
|
|
3464
3418
|
},
|
|
3465
3419
|
"sentencesCount": {
|
|
3466
|
-
"value":
|
|
3420
|
+
"value": 39
|
|
3467
3421
|
},
|
|
3468
3422
|
"linesCount": {
|
|
3469
|
-
"value":
|
|
3423
|
+
"value": 104
|
|
3470
3424
|
},
|
|
3471
3425
|
"paragraphsCount": {
|
|
3472
3426
|
"value": 1
|
|
3473
3427
|
},
|
|
3474
3428
|
"pagesCount": {
|
|
3475
|
-
"value":
|
|
3429
|
+
"value": 3
|
|
3476
3430
|
}
|
|
3477
3431
|
}
|
|
3478
3432
|
}
|
|
@@ -3723,23 +3677,23 @@
|
|
|
3723
3677
|
"models": [
|
|
3724
3678
|
{
|
|
3725
3679
|
"modelName": "gpt-4.1",
|
|
3726
|
-
"systemMessage": "You are a
|
|
3680
|
+
"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.",
|
|
3727
3681
|
"temperature": 0.3
|
|
3728
3682
|
},
|
|
3729
3683
|
{
|
|
3730
3684
|
"modelName": "chatgpt-4o-latest",
|
|
3731
|
-
"systemMessage": "You are a friendly,
|
|
3732
|
-
"temperature": 0.
|
|
3685
|
+
"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.",
|
|
3686
|
+
"temperature": 0.4
|
|
3733
3687
|
},
|
|
3734
3688
|
{
|
|
3735
3689
|
"modelName": "gpt-4",
|
|
3736
|
-
"systemMessage": "You are a
|
|
3690
|
+
"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.",
|
|
3737
3691
|
"temperature": 0.3
|
|
3738
3692
|
},
|
|
3739
3693
|
{
|
|
3740
3694
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3741
|
-
"systemMessage": "You are a
|
|
3742
|
-
"temperature": 0.
|
|
3695
|
+
"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.",
|
|
3696
|
+
"temperature": 0.4
|
|
3743
3697
|
}
|
|
3744
3698
|
]
|
|
3745
3699
|
}
|
|
@@ -3752,14 +3706,14 @@
|
|
|
3752
3706
|
"preparations": [
|
|
3753
3707
|
{
|
|
3754
3708
|
"id": 1,
|
|
3755
|
-
"promptbookVersion": "0.101.0-
|
|
3709
|
+
"promptbookVersion": "0.101.0-21",
|
|
3756
3710
|
"usage": {
|
|
3757
3711
|
"price": {
|
|
3758
|
-
"value": 0.
|
|
3712
|
+
"value": 0.029122500000000003
|
|
3759
3713
|
},
|
|
3760
3714
|
"input": {
|
|
3761
3715
|
"tokensCount": {
|
|
3762
|
-
"value":
|
|
3716
|
+
"value": 5858
|
|
3763
3717
|
},
|
|
3764
3718
|
"charactersCount": {
|
|
3765
3719
|
"value": 2377
|
|
@@ -3782,19 +3736,19 @@
|
|
|
3782
3736
|
},
|
|
3783
3737
|
"output": {
|
|
3784
3738
|
"tokensCount": {
|
|
3785
|
-
"value":
|
|
3739
|
+
"value": 2180
|
|
3786
3740
|
},
|
|
3787
3741
|
"charactersCount": {
|
|
3788
|
-
"value":
|
|
3742
|
+
"value": 2102
|
|
3789
3743
|
},
|
|
3790
3744
|
"wordsCount": {
|
|
3791
|
-
"value":
|
|
3745
|
+
"value": 247
|
|
3792
3746
|
},
|
|
3793
3747
|
"sentencesCount": {
|
|
3794
|
-
"value":
|
|
3748
|
+
"value": 25
|
|
3795
3749
|
},
|
|
3796
3750
|
"linesCount": {
|
|
3797
|
-
"value":
|
|
3751
|
+
"value": 50
|
|
3798
3752
|
},
|
|
3799
3753
|
"paragraphsCount": {
|
|
3800
3754
|
"value": 1
|
|
@@ -3863,25 +3817,30 @@
|
|
|
3863
3817
|
{
|
|
3864
3818
|
"modelVariant": "CHAT",
|
|
3865
3819
|
"models": [
|
|
3866
|
-
{
|
|
3867
|
-
"modelName": "gpt-4.1",
|
|
3868
|
-
"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.",
|
|
3869
|
-
"temperature": 0.95
|
|
3870
|
-
},
|
|
3871
3820
|
{
|
|
3872
3821
|
"modelName": "chatgpt-4o-latest",
|
|
3873
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3822
|
+
"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.",
|
|
3874
3823
|
"temperature": 0.9
|
|
3875
3824
|
},
|
|
3825
|
+
{
|
|
3826
|
+
"modelName": "gpt-4.1",
|
|
3827
|
+
"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.",
|
|
3828
|
+
"temperature": 0.85
|
|
3829
|
+
},
|
|
3876
3830
|
{
|
|
3877
3831
|
"modelName": "gpt-4",
|
|
3878
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3879
|
-
"temperature": 0.
|
|
3832
|
+
"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.",
|
|
3833
|
+
"temperature": 0.8
|
|
3880
3834
|
},
|
|
3881
3835
|
{
|
|
3882
3836
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3883
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3884
|
-
"temperature": 0.
|
|
3837
|
+
"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.",
|
|
3838
|
+
"temperature": 0.75
|
|
3839
|
+
},
|
|
3840
|
+
{
|
|
3841
|
+
"modelName": "gpt-3.5-turbo",
|
|
3842
|
+
"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.",
|
|
3843
|
+
"temperature": 0.7
|
|
3885
3844
|
}
|
|
3886
3845
|
]
|
|
3887
3846
|
}
|
|
@@ -3894,14 +3853,14 @@
|
|
|
3894
3853
|
"preparations": [
|
|
3895
3854
|
{
|
|
3896
3855
|
"id": 1,
|
|
3897
|
-
"promptbookVersion": "0.101.0-
|
|
3856
|
+
"promptbookVersion": "0.101.0-21",
|
|
3898
3857
|
"usage": {
|
|
3899
3858
|
"price": {
|
|
3900
|
-
"value": 0.
|
|
3859
|
+
"value": 0.03349125
|
|
3901
3860
|
},
|
|
3902
3861
|
"input": {
|
|
3903
3862
|
"tokensCount": {
|
|
3904
|
-
"value":
|
|
3863
|
+
"value": 5857
|
|
3905
3864
|
},
|
|
3906
3865
|
"charactersCount": {
|
|
3907
3866
|
"value": 2377
|
|
@@ -3924,19 +3883,19 @@
|
|
|
3924
3883
|
},
|
|
3925
3884
|
"output": {
|
|
3926
3885
|
"tokensCount": {
|
|
3927
|
-
"value":
|
|
3886
|
+
"value": 2617
|
|
3928
3887
|
},
|
|
3929
3888
|
"charactersCount": {
|
|
3930
|
-
"value":
|
|
3889
|
+
"value": 2460
|
|
3931
3890
|
},
|
|
3932
3891
|
"wordsCount": {
|
|
3933
|
-
"value":
|
|
3892
|
+
"value": 338
|
|
3934
3893
|
},
|
|
3935
3894
|
"sentencesCount": {
|
|
3936
|
-
"value":
|
|
3895
|
+
"value": 36
|
|
3937
3896
|
},
|
|
3938
3897
|
"linesCount": {
|
|
3939
|
-
"value":
|
|
3898
|
+
"value": 60
|
|
3940
3899
|
},
|
|
3941
3900
|
"paragraphsCount": {
|
|
3942
3901
|
"value": 1
|