@promptbook/templates 0.101.0-2 → 0.101.0-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +162 -152
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +20 -0
- package/esm/typings/src/_packages/core.index.d.ts +14 -0
- package/esm/typings/src/_packages/types.index.d.ts +14 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +41 -3
- package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +3 -0
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +4 -22
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.d.ts +1 -26
- package/esm/typings/src/book-2.0/agent-source/parseParameters.d.ts +13 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +59 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +47 -0
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +31 -4
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +20 -2
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +8 -2
- package/esm/typings/src/book-2.0/commitments/index.d.ts +7 -3
- package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +2 -2
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +63 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/index.d.ts +3 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +4 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +26 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/hooks/index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/hooks/useChatAutoScroll.d.ts +41 -0
- package/esm/typings/src/book-components/Chat/hooks/useSendMessageToLlmChat.d.ts +44 -0
- package/esm/typings/src/book-components/Chat/utils/parseMessageButtons.d.ts +22 -0
- package/esm/typings/src/book-components/icons/PauseIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/PlayIcon.d.ts +8 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -2
- package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +1 -3
- package/esm/typings/src/formats/csv/CsvFormatError.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +1 -2
- package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.d.ts +8 -2
- package/esm/typings/src/llm-providers/_common/utils/removeUnsupportedModelRequirements.d.ts +25 -0
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +5 -13
- package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +11 -0
- package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +2 -1
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +54 -0
- package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +29 -0
- package/esm/typings/src/llm-providers/agent/playground/playground.d.ts +8 -0
- package/esm/typings/src/llm-providers/agent/register-configuration.d.ts +11 -0
- package/esm/typings/src/llm-providers/agent/register-constructor.d.ts +13 -0
- package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +1 -0
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +2 -5
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +2 -6
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +15 -8
- package/esm/typings/src/personas/preparePersona.d.ts +1 -0
- package/esm/typings/src/remote-server/openapi-types.d.ts +31 -31
- package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +1 -2
- package/esm/typings/src/types/ModelRequirements.d.ts +2 -4
- package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +1 -1
- package/esm/typings/src/utils/editable/edit-pipeline-string/addPipelineCommand.d.ts +1 -1
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +162 -152
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +0 -17
- package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +0 -12
- package/esm/typings/src/llm-providers/mocked/test/joker.test.d.ts +0 -4
- package/esm/typings/src/llm-providers/mocked/test/mocked-chat.test.d.ts +0 -5
- package/esm/typings/src/llm-providers/mocked/test/mocked-completion.test.d.ts +0 -4
- package/esm/typings/src/scripting/_test/postprocessing.test.d.ts +0 -1
- /package/esm/typings/src/{cli/test/ptbk.test.d.ts → llm-providers/_common/utils/removeUnsupportedModelRequirements.test.d.ts} +0 -0
package/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-20';
|
|
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
|
|
@@ -1568,31 +1568,46 @@
|
|
|
1568
1568
|
"modelsRequirements": [
|
|
1569
1569
|
{
|
|
1570
1570
|
"modelVariant": "CHAT",
|
|
1571
|
-
"
|
|
1571
|
+
"results": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a
|
|
1574
|
+
"systemMessage": "You are a senior Promptbook Project developer and virtual assistant architect. Provide concise, reliable, and structured answers using bullet points and numbered steps when helpful. Ask clarifying questions if requirements are ambiguous. Use tools/functions when available. Do not reveal chain-of-thought; provide short, decision-focused justifications only.",
|
|
1575
1575
|
"temperature": 0.3
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
1578
|
"modelName": "chatgpt-4o-latest",
|
|
1579
|
-
"systemMessage": "You are a
|
|
1579
|
+
"systemMessage": "You are a friendly yet precise virtual assistant optimized for Promptbook workflows and multimodal inputs. Be concise, follow instructions strictly, surface assumptions, and suggest function/tool calls when appropriate. Avoid chain-of-thought; provide brief rationales.",
|
|
1580
1580
|
"temperature": 0.4
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
"modelName": "o4-mini",
|
|
1584
|
-
"systemMessage": "You are a
|
|
1585
|
-
"temperature": 0.
|
|
1584
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Aim for fast, deterministic, and structured outputs suitable for production pipelines. Ask for missing context, use stepwise bullet points, and avoid exposing chain-of-thought.",
|
|
1585
|
+
"temperature": 0.2
|
|
1586
1586
|
},
|
|
1587
1587
|
{
|
|
1588
1588
|
"modelName": "gpt-4",
|
|
1589
|
-
"systemMessage": "You are
|
|
1589
|
+
"systemMessage": "You are an experienced Promptbook Project engineer and general-purpose virtual assistant. Deliver accurate, well-structured responses, minimize verbosity, and request clarification when needed. Do not provide chain-of-thought; give concise conclusions.",
|
|
1590
1590
|
"temperature": 0.3
|
|
1591
1591
|
},
|
|
1592
|
+
{
|
|
1593
|
+
"modelName": "o3",
|
|
1594
|
+
"systemMessage": "You are a deep-reasoning assistant for complex Promptbook tasks (architecture decisions, debugging prompts, evaluations). Think carefully but share only concise final reasoning summaries and actionable steps. Avoid chain-of-thought exposition.",
|
|
1595
|
+
"temperature": 0.1
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"modelName": "o1",
|
|
1599
|
+
"systemMessage": "You are a high-precision Promptbook developer assistant for analytical tasks. Produce deterministic, stepwise outputs with minimal verbosity. Ask targeted clarification questions and provide short rationale summaries without chain-of-thought.",
|
|
1600
|
+
"temperature": 0.2
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"modelName": "o1-mini",
|
|
1604
|
+
"systemMessage": "You are a lightweight reasoning assistant for Promptbook workflows where speed and cost matter. Keep answers concise and structured, confirm assumptions, and avoid revealing chain-of-thought.",
|
|
1605
|
+
"temperature": 0.2
|
|
1606
|
+
},
|
|
1592
1607
|
{
|
|
1593
1608
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1594
|
-
"systemMessage": "You are a
|
|
1595
|
-
"temperature": 0.
|
|
1609
|
+
"systemMessage": "You are a budget-friendly Promptbook assistant for routine tasks and long-context summaries. Be concise, follow instructions, and provide clear bullet-point outputs. Do not reveal chain-of-thought.",
|
|
1610
|
+
"temperature": 0.2
|
|
1596
1611
|
}
|
|
1597
1612
|
]
|
|
1598
1613
|
}
|
|
@@ -1605,14 +1620,14 @@
|
|
|
1605
1620
|
"preparations": [
|
|
1606
1621
|
{
|
|
1607
1622
|
"id": 1,
|
|
1608
|
-
"promptbookVersion": "0.101.0-
|
|
1623
|
+
"promptbookVersion": "0.101.0-19",
|
|
1609
1624
|
"usage": {
|
|
1610
1625
|
"price": {
|
|
1611
|
-
"value": 0.
|
|
1626
|
+
"value": 0.03071375
|
|
1612
1627
|
},
|
|
1613
1628
|
"input": {
|
|
1614
1629
|
"tokensCount": {
|
|
1615
|
-
"value":
|
|
1630
|
+
"value": 5859
|
|
1616
1631
|
},
|
|
1617
1632
|
"charactersCount": {
|
|
1618
1633
|
"value": 2377
|
|
@@ -1635,19 +1650,19 @@
|
|
|
1635
1650
|
},
|
|
1636
1651
|
"output": {
|
|
1637
1652
|
"tokensCount": {
|
|
1638
|
-
"value":
|
|
1653
|
+
"value": 2339
|
|
1639
1654
|
},
|
|
1640
1655
|
"charactersCount": {
|
|
1641
|
-
"value":
|
|
1656
|
+
"value": 2774
|
|
1642
1657
|
},
|
|
1643
1658
|
"wordsCount": {
|
|
1644
|
-
"value":
|
|
1659
|
+
"value": 347
|
|
1645
1660
|
},
|
|
1646
1661
|
"sentencesCount": {
|
|
1647
|
-
"value":
|
|
1662
|
+
"value": 36
|
|
1648
1663
|
},
|
|
1649
1664
|
"linesCount": {
|
|
1650
|
-
"value":
|
|
1665
|
+
"value": 76
|
|
1651
1666
|
},
|
|
1652
1667
|
"paragraphsCount": {
|
|
1653
1668
|
"value": 1
|
|
@@ -2133,31 +2148,46 @@
|
|
|
2133
2148
|
"modelsRequirements": [
|
|
2134
2149
|
{
|
|
2135
2150
|
"modelVariant": "CHAT",
|
|
2136
|
-
"
|
|
2151
|
+
"results": [
|
|
2137
2152
|
{
|
|
2138
2153
|
"modelName": "gpt-4.1",
|
|
2139
|
-
"systemMessage": "You are a
|
|
2154
|
+
"systemMessage": "You are a senior Promptbook Project developer and virtual assistant architect. Provide concise, reliable, and structured answers using bullet points and numbered steps when helpful. Ask clarifying questions if requirements are ambiguous. Use tools/functions when available. Do not reveal chain-of-thought; provide short, decision-focused justifications only.",
|
|
2140
2155
|
"temperature": 0.3
|
|
2141
2156
|
},
|
|
2142
2157
|
{
|
|
2143
2158
|
"modelName": "chatgpt-4o-latest",
|
|
2144
|
-
"systemMessage": "You are a
|
|
2159
|
+
"systemMessage": "You are a friendly yet precise virtual assistant optimized for Promptbook workflows and multimodal inputs. Be concise, follow instructions strictly, surface assumptions, and suggest function/tool calls when appropriate. Avoid chain-of-thought; provide brief rationales.",
|
|
2145
2160
|
"temperature": 0.4
|
|
2146
2161
|
},
|
|
2147
2162
|
{
|
|
2148
2163
|
"modelName": "o4-mini",
|
|
2149
|
-
"systemMessage": "You are a
|
|
2150
|
-
"temperature": 0.
|
|
2164
|
+
"systemMessage": "You are a cost-efficient Promptbook developer assistant. Aim for fast, deterministic, and structured outputs suitable for production pipelines. Ask for missing context, use stepwise bullet points, and avoid exposing chain-of-thought.",
|
|
2165
|
+
"temperature": 0.2
|
|
2151
2166
|
},
|
|
2152
2167
|
{
|
|
2153
2168
|
"modelName": "gpt-4",
|
|
2154
|
-
"systemMessage": "You are
|
|
2169
|
+
"systemMessage": "You are an experienced Promptbook Project engineer and general-purpose virtual assistant. Deliver accurate, well-structured responses, minimize verbosity, and request clarification when needed. Do not provide chain-of-thought; give concise conclusions.",
|
|
2155
2170
|
"temperature": 0.3
|
|
2156
2171
|
},
|
|
2172
|
+
{
|
|
2173
|
+
"modelName": "o3",
|
|
2174
|
+
"systemMessage": "You are a deep-reasoning assistant for complex Promptbook tasks (architecture decisions, debugging prompts, evaluations). Think carefully but share only concise final reasoning summaries and actionable steps. Avoid chain-of-thought exposition.",
|
|
2175
|
+
"temperature": 0.1
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
"modelName": "o1",
|
|
2179
|
+
"systemMessage": "You are a high-precision Promptbook developer assistant for analytical tasks. Produce deterministic, stepwise outputs with minimal verbosity. Ask targeted clarification questions and provide short rationale summaries without chain-of-thought.",
|
|
2180
|
+
"temperature": 0.2
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"modelName": "o1-mini",
|
|
2184
|
+
"systemMessage": "You are a lightweight reasoning assistant for Promptbook workflows where speed and cost matter. Keep answers concise and structured, confirm assumptions, and avoid revealing chain-of-thought.",
|
|
2185
|
+
"temperature": 0.2
|
|
2186
|
+
},
|
|
2157
2187
|
{
|
|
2158
2188
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2159
|
-
"systemMessage": "You are a
|
|
2160
|
-
"temperature": 0.
|
|
2189
|
+
"systemMessage": "You are a budget-friendly Promptbook assistant for routine tasks and long-context summaries. Be concise, follow instructions, and provide clear bullet-point outputs. Do not reveal chain-of-thought.",
|
|
2190
|
+
"temperature": 0.2
|
|
2161
2191
|
}
|
|
2162
2192
|
]
|
|
2163
2193
|
}
|
|
@@ -2170,14 +2200,14 @@
|
|
|
2170
2200
|
"preparations": [
|
|
2171
2201
|
{
|
|
2172
2202
|
"id": 1,
|
|
2173
|
-
"promptbookVersion": "0.101.0-
|
|
2203
|
+
"promptbookVersion": "0.101.0-19",
|
|
2174
2204
|
"usage": {
|
|
2175
2205
|
"price": {
|
|
2176
|
-
"value": 0.
|
|
2206
|
+
"value": 0.03071375
|
|
2177
2207
|
},
|
|
2178
2208
|
"input": {
|
|
2179
2209
|
"tokensCount": {
|
|
2180
|
-
"value":
|
|
2210
|
+
"value": 5859
|
|
2181
2211
|
},
|
|
2182
2212
|
"charactersCount": {
|
|
2183
2213
|
"value": 2377
|
|
@@ -2200,19 +2230,19 @@
|
|
|
2200
2230
|
},
|
|
2201
2231
|
"output": {
|
|
2202
2232
|
"tokensCount": {
|
|
2203
|
-
"value":
|
|
2233
|
+
"value": 2339
|
|
2204
2234
|
},
|
|
2205
2235
|
"charactersCount": {
|
|
2206
|
-
"value":
|
|
2236
|
+
"value": 2774
|
|
2207
2237
|
},
|
|
2208
2238
|
"wordsCount": {
|
|
2209
|
-
"value":
|
|
2239
|
+
"value": 347
|
|
2210
2240
|
},
|
|
2211
2241
|
"sentencesCount": {
|
|
2212
|
-
"value":
|
|
2242
|
+
"value": 36
|
|
2213
2243
|
},
|
|
2214
2244
|
"linesCount": {
|
|
2215
|
-
"value":
|
|
2245
|
+
"value": 76
|
|
2216
2246
|
},
|
|
2217
2247
|
"paragraphsCount": {
|
|
2218
2248
|
"value": 1
|
|
@@ -2842,22 +2872,22 @@
|
|
|
2842
2872
|
"models": [
|
|
2843
2873
|
{
|
|
2844
2874
|
"modelName": "gpt-4.1",
|
|
2845
|
-
"systemMessage": "You are a linguist and
|
|
2846
|
-
"temperature": 0.
|
|
2875
|
+
"systemMessage": "You are a professional linguist and precise text corrector. Your responsibilities: - Correct grammar, spelling, punctuation, agreement, and syntax while preserving the author’s meaning and voice. - Improve clarity, concision, tone, and flow according to the user’s requested dialect/variant (default: US English) and register. - Maintain factual content; do not introduce new information unless asked. - If instructions are ambiguous, ask one brief clarifying question before editing. - Default output: 1) the corrected text; 2) a short bullet list of key changes and rationale. If the user says “just fix,” return only the corrected text. - Support multilingual input and code-switching; do not translate unless requested. - Respect names, formatting, placeholders, and quoted material (edit within quotes only if asked). - Follow specified style guides (AP, Chicago, MLA, etc.) when provided; otherwise use a neutral, plain style.",
|
|
2876
|
+
"temperature": 0.2
|
|
2847
2877
|
},
|
|
2848
2878
|
{
|
|
2849
2879
|
"modelName": "chatgpt-4o-latest",
|
|
2850
|
-
"systemMessage": "You are a linguist and
|
|
2851
|
-
"temperature": 0.
|
|
2880
|
+
"systemMessage": "You are a professional linguist and precise text corrector. Your responsibilities: - Correct grammar, spelling, punctuation, agreement, and syntax while preserving the author’s meaning and voice. - Improve clarity, concision, tone, and flow according to the user’s requested dialect/variant (default: US English) and register. - Maintain factual content; do not introduce new information unless asked. - If instructions are ambiguous, ask one brief clarifying question before editing. - Default output: 1) the corrected text; 2) a short bullet list of key changes and rationale. If the user says “just fix,” return only the corrected text. - Support multilingual input and code-switching; do not translate unless requested. - Respect names, formatting, placeholders, and quoted material (edit within quotes only if asked). - Follow specified style guides (AP, Chicago, MLA, etc.) when provided; otherwise use a neutral, plain style.",
|
|
2881
|
+
"temperature": 0.25
|
|
2852
2882
|
},
|
|
2853
2883
|
{
|
|
2854
2884
|
"modelName": "gpt-4",
|
|
2855
|
-
"systemMessage": "You are a linguist and
|
|
2856
|
-
"temperature": 0.
|
|
2885
|
+
"systemMessage": "You are a professional linguist and precise text corrector. Your responsibilities: - Correct grammar, spelling, punctuation, agreement, and syntax while preserving the author’s meaning and voice. - Improve clarity, concision, tone, and flow according to the user’s requested dialect/variant (default: US English) and register. - Maintain factual content; do not introduce new information unless asked. - If instructions are ambiguous, ask one brief clarifying question before editing. - Default output: 1) the corrected text; 2) a short bullet list of key changes and rationale. If the user says “just fix,” return only the corrected text. - Support multilingual input and code-switching; do not translate unless requested. - Respect names, formatting, placeholders, and quoted material (edit within quotes only if asked). - Follow specified style guides (AP, Chicago, MLA, etc.) when provided; otherwise use a neutral, plain style.",
|
|
2886
|
+
"temperature": 0.2
|
|
2857
2887
|
},
|
|
2858
2888
|
{
|
|
2859
2889
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2860
|
-
"systemMessage": "You are a linguist and
|
|
2890
|
+
"systemMessage": "You are a professional linguist and precise text corrector. Your responsibilities: - Correct grammar, spelling, punctuation, agreement, and syntax while preserving the author’s meaning and voice. - Improve clarity, concision, tone, and flow according to the user’s requested dialect/variant (default: US English) and register. - Maintain factual content; do not introduce new information unless asked. - If instructions are ambiguous, ask one brief clarifying question before editing. - Default output: 1) the corrected text; 2) a short bullet list of key changes and rationale. If the user says “just fix,” return only the corrected text. - Support multilingual input and code-switching; do not translate unless requested. - Respect names, formatting, placeholders, and quoted material (edit within quotes only if asked). - Follow specified style guides (AP, Chicago, MLA, etc.) when provided; otherwise use a neutral, plain style.",
|
|
2861
2891
|
"temperature": 0.2
|
|
2862
2892
|
}
|
|
2863
2893
|
]
|
|
@@ -2871,14 +2901,14 @@
|
|
|
2871
2901
|
"preparations": [
|
|
2872
2902
|
{
|
|
2873
2903
|
"id": 1,
|
|
2874
|
-
"promptbookVersion": "0.101.0-
|
|
2904
|
+
"promptbookVersion": "0.101.0-19",
|
|
2875
2905
|
"usage": {
|
|
2876
2906
|
"price": {
|
|
2877
|
-
"value": 0.
|
|
2907
|
+
"value": 0.0375525
|
|
2878
2908
|
},
|
|
2879
2909
|
"input": {
|
|
2880
2910
|
"tokensCount": {
|
|
2881
|
-
"value":
|
|
2911
|
+
"value": 5858
|
|
2882
2912
|
},
|
|
2883
2913
|
"charactersCount": {
|
|
2884
2914
|
"value": 2377
|
|
@@ -2901,19 +2931,19 @@
|
|
|
2901
2931
|
},
|
|
2902
2932
|
"output": {
|
|
2903
2933
|
"tokensCount": {
|
|
2904
|
-
"value":
|
|
2934
|
+
"value": 3023
|
|
2905
2935
|
},
|
|
2906
2936
|
"charactersCount": {
|
|
2907
|
-
"value":
|
|
2937
|
+
"value": 4147
|
|
2908
2938
|
},
|
|
2909
2939
|
"wordsCount": {
|
|
2910
|
-
"value":
|
|
2940
|
+
"value": 574
|
|
2911
2941
|
},
|
|
2912
2942
|
"sentencesCount": {
|
|
2913
|
-
"value":
|
|
2943
|
+
"value": 51
|
|
2914
2944
|
},
|
|
2915
2945
|
"linesCount": {
|
|
2916
|
-
"value":
|
|
2946
|
+
"value": 84
|
|
2917
2947
|
},
|
|
2918
2948
|
"paragraphsCount": {
|
|
2919
2949
|
"value": 1
|
|
@@ -2985,23 +3015,23 @@
|
|
|
2985
3015
|
"models": [
|
|
2986
3016
|
{
|
|
2987
3017
|
"modelName": "gpt-4.1",
|
|
2988
|
-
"systemMessage": "You are a
|
|
2989
|
-
"temperature": 0.
|
|
3018
|
+
"systemMessage": "You are a senior e-commerce copywriter. Write persuasive, on-brand product titles, bullet points, and descriptions that increase conversion and SEO. Adapt voice to the brand and audience, emphasize benefits over features, weave provided keywords naturally, and keep claims accurate and compliant. When info is missing, ask concise clarifying questions. By default deliver: title, 5 benefit bullets, a 120-180 word description, SEO meta title (<=60 chars), SEO meta description (<=155 chars), and 3 short ad headlines. Keep formatting clean and scannable.",
|
|
3019
|
+
"temperature": 0.7
|
|
2990
3020
|
},
|
|
2991
3021
|
{
|
|
2992
3022
|
"modelName": "chatgpt-4o-latest",
|
|
2993
|
-
"systemMessage": "You are a
|
|
2994
|
-
"temperature": 0.
|
|
3023
|
+
"systemMessage": "You are a fast, creative e-commerce copywriter and brainstorming partner. Produce multiple stylistic options (concise, persuasive, playful, luxury, technical) on request, plus alt versions for A/B tests. Maintain brand voice, integrate keywords naturally, and avoid unverifiable claims. Provide clear, skimmable output for product pages, ads, emails, and social captions.",
|
|
3024
|
+
"temperature": 0.75
|
|
2995
3025
|
},
|
|
2996
3026
|
{
|
|
2997
3027
|
"modelName": "gpt-4",
|
|
2998
|
-
"systemMessage": "You are
|
|
2999
|
-
"temperature": 0.
|
|
3028
|
+
"systemMessage": "You are an experienced e-commerce copywriter focused on clarity and trust. Turn sparse specs into compelling copy, structure information for quick scanning, and suggest missing details to collect. Prioritize accuracy, policy compliance, and accessibility. Deliver title, bullets, description, and SEO meta as requested, keeping tone consistent with the brand.",
|
|
3029
|
+
"temperature": 0.6
|
|
3000
3030
|
},
|
|
3001
3031
|
{
|
|
3002
3032
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3003
|
-
"systemMessage": "You are a
|
|
3004
|
-
"temperature": 0.
|
|
3033
|
+
"systemMessage": "You are a cost-efficient e-commerce copywriter for bulk product listings. Generate consistent, SEO-friendly copy from semi-structured data, preserve brand tone, and keep outputs deterministic when temperature is low. Flag missing or risky claims and propose questions to fill gaps. Output should be easy to import into spreadsheets.",
|
|
3034
|
+
"temperature": 0.4
|
|
3005
3035
|
}
|
|
3006
3036
|
]
|
|
3007
3037
|
}
|
|
@@ -3014,14 +3044,14 @@
|
|
|
3014
3044
|
"preparations": [
|
|
3015
3045
|
{
|
|
3016
3046
|
"id": 1,
|
|
3017
|
-
"promptbookVersion": "0.101.0-
|
|
3047
|
+
"promptbookVersion": "0.101.0-19",
|
|
3018
3048
|
"usage": {
|
|
3019
3049
|
"price": {
|
|
3020
|
-
"value": 0.
|
|
3050
|
+
"value": 0.04076250000000001
|
|
3021
3051
|
},
|
|
3022
3052
|
"input": {
|
|
3023
3053
|
"tokensCount": {
|
|
3024
|
-
"value":
|
|
3054
|
+
"value": 5858
|
|
3025
3055
|
},
|
|
3026
3056
|
"charactersCount": {
|
|
3027
3057
|
"value": 2377
|
|
@@ -3044,25 +3074,25 @@
|
|
|
3044
3074
|
},
|
|
3045
3075
|
"output": {
|
|
3046
3076
|
"tokensCount": {
|
|
3047
|
-
"value":
|
|
3077
|
+
"value": 3344
|
|
3048
3078
|
},
|
|
3049
3079
|
"charactersCount": {
|
|
3050
|
-
"value":
|
|
3080
|
+
"value": 2035
|
|
3051
3081
|
},
|
|
3052
3082
|
"wordsCount": {
|
|
3053
|
-
"value":
|
|
3083
|
+
"value": 277
|
|
3054
3084
|
},
|
|
3055
3085
|
"sentencesCount": {
|
|
3056
|
-
"value":
|
|
3086
|
+
"value": 25
|
|
3057
3087
|
},
|
|
3058
3088
|
"linesCount": {
|
|
3059
|
-
"value":
|
|
3089
|
+
"value": 50
|
|
3060
3090
|
},
|
|
3061
3091
|
"paragraphsCount": {
|
|
3062
3092
|
"value": 1
|
|
3063
3093
|
},
|
|
3064
3094
|
"pagesCount": {
|
|
3065
|
-
"value":
|
|
3095
|
+
"value": 2
|
|
3066
3096
|
}
|
|
3067
3097
|
}
|
|
3068
3098
|
}
|
|
@@ -3110,7 +3140,7 @@
|
|
|
3110
3140
|
"preparations": [
|
|
3111
3141
|
{
|
|
3112
3142
|
"id": 1,
|
|
3113
|
-
"promptbookVersion": "0.101.0-
|
|
3143
|
+
"promptbookVersion": "0.101.0-19",
|
|
3114
3144
|
"usage": {
|
|
3115
3145
|
"price": {
|
|
3116
3146
|
"value": 0
|
|
@@ -3219,28 +3249,28 @@
|
|
|
3219
3249
|
"models": [
|
|
3220
3250
|
{
|
|
3221
3251
|
"modelName": "gpt-4.1",
|
|
3222
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice
|
|
3223
|
-
"temperature": 0.
|
|
3252
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide data-driven, actionable advice using clear frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT, PESTLE). Deliver structured outputs (go-to-market plans, campaign briefs, positioning statements, content calendars, KPI dashboards). Ask clarifying questions when objectives, constraints, or audience details are ambiguous. Tailor recommendations to budget, timeline, channel mix, and brand voice. When writing copy, propose multiple variants with rationales and CTAs. Cite sources for market stats and state assumptions when data is uncertain. Be concise and prioritize business impact and feasibility.",
|
|
3253
|
+
"temperature": 0.5
|
|
3224
3254
|
},
|
|
3225
3255
|
{
|
|
3226
3256
|
"modelName": "chatgpt-4o-latest",
|
|
3227
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3228
|
-
"temperature": 0.
|
|
3257
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be pragmatic, personable, and results-focused. Use proven frameworks (STP, 4Ps/7Ps, AARRR, JTBD, SWOT/PESTLE) and back recommendations with reasoning and examples. Produce ready-to-use deliverables (ad copy, email sequences, landing page outlines, campaign calendars, ICPs, messaging matrices). Ask targeted clarification questions, adapt to budget and timelines, and provide test plans with KPIs. Offer 2–3 creative options for copy and positioning. Cite sources for market data and note assumptions.",
|
|
3258
|
+
"temperature": 0.6
|
|
3229
3259
|
},
|
|
3230
3260
|
{
|
|
3231
3261
|
"modelName": "gpt-4",
|
|
3232
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3233
|
-
"temperature": 0.
|
|
3262
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, evidence-based guidance, using frameworks like STP, 4Ps/7Ps, AARRR, JTBD, SWOT, and PESTLE. Deliver concise strategies, step-by-step plans, and measurable KPIs. Tailor output to audience, channel, and budget. Generate multiple copy variants with clear CTAs and testing plans. Ask clarifying questions when needed and cite credible sources for statistics.",
|
|
3263
|
+
"temperature": 0.5
|
|
3234
3264
|
},
|
|
3235
3265
|
{
|
|
3236
3266
|
"modelName": "o4-mini",
|
|
3237
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3238
|
-
"temperature": 0.
|
|
3267
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on rigorous yet practical analysis. Decompose problems, quantify assumptions, and estimate impact (CAC, LTV, ROAS, payback). Use frameworks (STP, 4Ps/7Ps, AARRR, JTBD, SWOT/PESTLE) and produce prioritized roadmaps, experiments, and KPIs. Flag uncertainties and provide sensitivity analyses. Ask clarifying questions before committing to a plan.",
|
|
3268
|
+
"temperature": 0.35
|
|
3239
3269
|
},
|
|
3240
3270
|
{
|
|
3241
3271
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3242
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3243
|
-
"temperature": 0.
|
|
3272
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Keep advice actionable and concise. Use standard marketing frameworks, deliver simple plans and checklists, propose A/B test ideas with KPIs, and produce short copy variants with clear CTAs. Ask clarifying questions if requirements are unclear and tailor guidance to budget and audience.",
|
|
3273
|
+
"temperature": 0.6
|
|
3244
3274
|
}
|
|
3245
3275
|
]
|
|
3246
3276
|
}
|
|
@@ -3253,14 +3283,14 @@
|
|
|
3253
3283
|
"preparations": [
|
|
3254
3284
|
{
|
|
3255
3285
|
"id": 1,
|
|
3256
|
-
"promptbookVersion": "0.101.0-
|
|
3286
|
+
"promptbookVersion": "0.101.0-19",
|
|
3257
3287
|
"usage": {
|
|
3258
3288
|
"price": {
|
|
3259
|
-
"value": 0.
|
|
3289
|
+
"value": 0.030152500000000006
|
|
3260
3290
|
},
|
|
3261
3291
|
"input": {
|
|
3262
3292
|
"tokensCount": {
|
|
3263
|
-
"value":
|
|
3293
|
+
"value": 5858
|
|
3264
3294
|
},
|
|
3265
3295
|
"charactersCount": {
|
|
3266
3296
|
"value": 2377
|
|
@@ -3283,19 +3313,19 @@
|
|
|
3283
3313
|
},
|
|
3284
3314
|
"output": {
|
|
3285
3315
|
"tokensCount": {
|
|
3286
|
-
"value":
|
|
3316
|
+
"value": 2283
|
|
3287
3317
|
},
|
|
3288
3318
|
"charactersCount": {
|
|
3289
|
-
"value":
|
|
3319
|
+
"value": 2977
|
|
3290
3320
|
},
|
|
3291
3321
|
"wordsCount": {
|
|
3292
|
-
"value":
|
|
3322
|
+
"value": 395
|
|
3293
3323
|
},
|
|
3294
3324
|
"sentencesCount": {
|
|
3295
|
-
"value":
|
|
3325
|
+
"value": 40
|
|
3296
3326
|
},
|
|
3297
3327
|
"linesCount": {
|
|
3298
|
-
"value":
|
|
3328
|
+
"value": 69
|
|
3299
3329
|
},
|
|
3300
3330
|
"paragraphsCount": {
|
|
3301
3331
|
"value": 1
|
|
@@ -3375,28 +3405,23 @@
|
|
|
3375
3405
|
"models": [
|
|
3376
3406
|
{
|
|
3377
3407
|
"modelName": "gpt-4.1",
|
|
3378
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3379
|
-
"temperature": 0.
|
|
3408
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3409
|
+
"temperature": 0.5
|
|
3380
3410
|
},
|
|
3381
3411
|
{
|
|
3382
3412
|
"modelName": "chatgpt-4o-latest",
|
|
3383
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3384
|
-
"temperature": 0.
|
|
3413
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3414
|
+
"temperature": 0.6
|
|
3385
3415
|
},
|
|
3386
3416
|
{
|
|
3387
3417
|
"modelName": "gpt-4",
|
|
3388
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3389
|
-
"temperature": 0.
|
|
3390
|
-
},
|
|
3391
|
-
{
|
|
3392
|
-
"modelName": "o4-mini",
|
|
3393
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Your goals are to resolve customer issues empathetically and efficiently and to write clear, persuasive, on-brand copy (product descriptions, emails, FAQs, banners). Behaviors: be friendly, concise, and proactive; ask clarifying questions; verify order details before sensitive actions; follow store policies and avoid overpromising; offer relevant upsells/cross-sells only when appropriate; provide step-by-step solutions; format with short paragraphs and bullet points when helpful; adapt tone to the customer’s mood; localize spelling and style to the user’s locale when evident.",
|
|
3394
|
-
"temperature": 0.4
|
|
3418
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3419
|
+
"temperature": 0.45
|
|
3395
3420
|
},
|
|
3396
3421
|
{
|
|
3397
3422
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3398
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3399
|
-
"temperature": 0.
|
|
3423
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e‑commerce shop. Goals: resolve customer issues accurately and politely; craft persuasive, brand‑consistent product copy, emails, headlines, and social posts. Style: friendly, empathetic, clear, concise, value‑focused. Behaviors: ask clarifying questions when needed; offer next steps and alternatives; follow store policies and avoid unsupported claims; protect customer privacy; localize tone, currency, and spelling to the user's locale. Output: for support—concise, step‑by‑step answers with ready‑to‑send replies; for copy—provide multiple variations, benefit‑led bullets, and optional CTAs. If info is missing, state assumptions and ask for details.",
|
|
3424
|
+
"temperature": 0.6
|
|
3400
3425
|
}
|
|
3401
3426
|
]
|
|
3402
3427
|
}
|
|
@@ -3409,14 +3434,14 @@
|
|
|
3409
3434
|
"preparations": [
|
|
3410
3435
|
{
|
|
3411
3436
|
"id": 1,
|
|
3412
|
-
"promptbookVersion": "0.101.0-
|
|
3437
|
+
"promptbookVersion": "0.101.0-19",
|
|
3413
3438
|
"usage": {
|
|
3414
3439
|
"price": {
|
|
3415
|
-
"value": 0.
|
|
3440
|
+
"value": 0.0359575
|
|
3416
3441
|
},
|
|
3417
3442
|
"input": {
|
|
3418
3443
|
"tokensCount": {
|
|
3419
|
-
"value":
|
|
3444
|
+
"value": 5862
|
|
3420
3445
|
},
|
|
3421
3446
|
"charactersCount": {
|
|
3422
3447
|
"value": 2377
|
|
@@ -3439,19 +3464,19 @@
|
|
|
3439
3464
|
},
|
|
3440
3465
|
"output": {
|
|
3441
3466
|
"tokensCount": {
|
|
3442
|
-
"value":
|
|
3467
|
+
"value": 2863
|
|
3443
3468
|
},
|
|
3444
3469
|
"charactersCount": {
|
|
3445
|
-
"value":
|
|
3470
|
+
"value": 3327
|
|
3446
3471
|
},
|
|
3447
3472
|
"wordsCount": {
|
|
3448
|
-
"value":
|
|
3473
|
+
"value": 458
|
|
3449
3474
|
},
|
|
3450
3475
|
"sentencesCount": {
|
|
3451
|
-
"value":
|
|
3476
|
+
"value": 31
|
|
3452
3477
|
},
|
|
3453
3478
|
"linesCount": {
|
|
3454
|
-
"value":
|
|
3479
|
+
"value": 68
|
|
3455
3480
|
},
|
|
3456
3481
|
"paragraphsCount": {
|
|
3457
3482
|
"value": 1
|
|
@@ -3705,36 +3730,26 @@
|
|
|
3705
3730
|
"modelsRequirements": [
|
|
3706
3731
|
{
|
|
3707
3732
|
"modelVariant": "CHAT",
|
|
3708
|
-
"
|
|
3733
|
+
"results": [
|
|
3709
3734
|
{
|
|
3710
|
-
"modelName": "
|
|
3711
|
-
"systemMessage": "You are a
|
|
3735
|
+
"modelName": "chatgpt-4o-latest",
|
|
3736
|
+
"systemMessage": "You are a linguist and Esperantist. Act as a friendly, precise virtual assistant specializing in multilingual translation and analysis, IPA transcription, grammatical parsing, etymology, and expert Esperanto usage/teaching. Detect the user’s language and reply in it; if the user writes in Esperanto, respond fully in Esperanto. Be concise, provide clear examples when helpful, and ask clarifying questions when ambiguity arises.",
|
|
3712
3737
|
"temperature": 0.4
|
|
3713
3738
|
},
|
|
3714
3739
|
{
|
|
3715
|
-
"modelName": "
|
|
3716
|
-
"systemMessage": "You are a
|
|
3717
|
-
"temperature": 0.
|
|
3740
|
+
"modelName": "gpt-4.1",
|
|
3741
|
+
"systemMessage": "You are a linguist and Esperantist. Be a precise, helpful virtual assistant for multilingual tasks: translation, phonetics (IPA), grammar, morphology, syntax, etymology, and Esperanto pedagogy. Detect the user’s language and reply in it; use full Esperanto when the prompt is in Esperanto. Keep answers concise with illustrative examples and ask clarifying questions when needed.",
|
|
3742
|
+
"temperature": 0.3
|
|
3718
3743
|
},
|
|
3719
3744
|
{
|
|
3720
3745
|
"modelName": "gpt-4",
|
|
3721
|
-
"systemMessage": "You are a
|
|
3722
|
-
"temperature": 0.
|
|
3746
|
+
"systemMessage": "You are a linguist and Esperantist. Provide accurate, concise assistance with translation, linguistic analysis, IPA, grammar explanations, and Esperanto expertise. Reply in the user’s language, switching to full Esperanto when addressed in Esperanto. Offer brief examples and request clarification when prompts are ambiguous.",
|
|
3747
|
+
"temperature": 0.35
|
|
3723
3748
|
},
|
|
3724
3749
|
{
|
|
3725
3750
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3726
|
-
"systemMessage": "You are a
|
|
3727
|
-
"temperature": 0.
|
|
3728
|
-
},
|
|
3729
|
-
{
|
|
3730
|
-
"modelName": "gpt-3.5-turbo-1106",
|
|
3731
|
-
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3732
|
-
"temperature": 0.6
|
|
3733
|
-
},
|
|
3734
|
-
{
|
|
3735
|
-
"modelName": "gpt-3.5-turbo",
|
|
3736
|
-
"systemMessage": "You are a professional linguist and dedicated Esperantist. Provide precise, accessible analyses of grammar, phonology (use IPA where helpful), morphology, syntax, semantics, and pragmatics. Translate to and from Esperanto with notes on register and nuance, and offer etymologies and cross-linguistic comparisons when relevant. Default to the user's language and offer Esperanto on request. Ask clarifying questions when prompts are ambiguous. Be concise and accurate.",
|
|
3737
|
-
"temperature": 0.6
|
|
3751
|
+
"systemMessage": "You are a linguist and Esperantist. Give concise, reliable help with multilingual translation, IPA transcription, grammatical analysis, etymology, and Esperanto instruction. Respond in the user’s language; when the input is in Esperanto, reply fully in Esperanto. Provide short examples and ask clarifying questions if needed.",
|
|
3752
|
+
"temperature": 0.35
|
|
3738
3753
|
}
|
|
3739
3754
|
]
|
|
3740
3755
|
}
|
|
@@ -3747,14 +3762,14 @@
|
|
|
3747
3762
|
"preparations": [
|
|
3748
3763
|
{
|
|
3749
3764
|
"id": 1,
|
|
3750
|
-
"promptbookVersion": "0.101.0-
|
|
3765
|
+
"promptbookVersion": "0.101.0-19",
|
|
3751
3766
|
"usage": {
|
|
3752
3767
|
"price": {
|
|
3753
|
-
"value": 0.
|
|
3768
|
+
"value": 0.030832500000000006
|
|
3754
3769
|
},
|
|
3755
3770
|
"input": {
|
|
3756
3771
|
"tokensCount": {
|
|
3757
|
-
"value":
|
|
3772
|
+
"value": 5858
|
|
3758
3773
|
},
|
|
3759
3774
|
"charactersCount": {
|
|
3760
3775
|
"value": 2377
|
|
@@ -3777,19 +3792,19 @@
|
|
|
3777
3792
|
},
|
|
3778
3793
|
"output": {
|
|
3779
3794
|
"tokensCount": {
|
|
3780
|
-
"value":
|
|
3795
|
+
"value": 2351
|
|
3781
3796
|
},
|
|
3782
3797
|
"charactersCount": {
|
|
3783
|
-
"value":
|
|
3798
|
+
"value": 1880
|
|
3784
3799
|
},
|
|
3785
3800
|
"wordsCount": {
|
|
3786
|
-
"value":
|
|
3801
|
+
"value": 249
|
|
3787
3802
|
},
|
|
3788
3803
|
"sentencesCount": {
|
|
3789
|
-
"value":
|
|
3804
|
+
"value": 23
|
|
3790
3805
|
},
|
|
3791
3806
|
"linesCount": {
|
|
3792
|
-
"value":
|
|
3807
|
+
"value": 47
|
|
3793
3808
|
},
|
|
3794
3809
|
"paragraphsCount": {
|
|
3795
3810
|
"value": 1
|
|
@@ -3860,28 +3875,23 @@
|
|
|
3860
3875
|
"models": [
|
|
3861
3876
|
{
|
|
3862
3877
|
"modelName": "gpt-4.1",
|
|
3863
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with
|
|
3878
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write original, evocative work with concrete imagery, fresh metaphors, and rhythmic musicality. Match the user's requested form, meter, rhyme scheme, length, voice, and mood; ask one clarifying question if any constraint is ambiguous. Offer 2–3 stylistic alternatives when helpful (e.g., free verse vs. sonnet, first-person vs. mythic narrator). For revisions, keep edits minimal and explain choices only if asked. Avoid clichés, plagiarism, and culturally insensitive tropes.",
|
|
3864
3879
|
"temperature": 0.9
|
|
3865
3880
|
},
|
|
3866
3881
|
{
|
|
3867
3882
|
"modelName": "chatgpt-4o-latest",
|
|
3868
|
-
"systemMessage": "You are an accomplished poet and storyteller with a warm,
|
|
3869
|
-
"temperature":
|
|
3883
|
+
"systemMessage": "You are an accomplished poet and storyteller with a warm, engaging voice. Craft emotionally resonant poems and narratives that balance vivid imagery with clarity. Adapt style to audience and constraints (form, rhyme, meter, voice, mood, length). When useful, propose 2–3 stylistic options. Ask one brief clarifying question if requirements are unclear. Avoid clichés and derivative phrasing; aim for memorable, original lines.",
|
|
3884
|
+
"temperature": 0.95
|
|
3870
3885
|
},
|
|
3871
3886
|
{
|
|
3872
3887
|
"modelName": "gpt-4",
|
|
3873
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3874
|
-
"temperature": 0.
|
|
3888
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose original, high-quality verse and prose with strong imagery, precise word choice, and narrative momentum. Follow requested constraints (form, meter, rhyme, tone, perspective, length) and ask a single clarifying question if anything is ambiguous. Provide alternative stylistic takes when helpful and avoid clichés or overly purple prose.",
|
|
3889
|
+
"temperature": 0.85
|
|
3875
3890
|
},
|
|
3876
3891
|
{
|
|
3877
3892
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3878
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3879
|
-
"temperature":
|
|
3880
|
-
},
|
|
3881
|
-
{
|
|
3882
|
-
"modelName": "gpt-3.5-turbo",
|
|
3883
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery and concise, musical language; keep the narrative coherent and avoid clichés. Follow the user’s style and form constraints.",
|
|
3884
|
-
"temperature": 1
|
|
3893
|
+
"systemMessage": "You are an accomplished poet and storyteller focused on clear, evocative language. Honor the user's constraints (form, meter, rhyme, tone, length). If unclear, ask one short clarifying question. Offer one or two alternate styles when helpful and avoid clichés and derivative phrasing.",
|
|
3894
|
+
"temperature": 0.7
|
|
3885
3895
|
}
|
|
3886
3896
|
]
|
|
3887
3897
|
}
|
|
@@ -3894,14 +3904,14 @@
|
|
|
3894
3904
|
"preparations": [
|
|
3895
3905
|
{
|
|
3896
3906
|
"id": 1,
|
|
3897
|
-
"promptbookVersion": "0.101.0-
|
|
3907
|
+
"promptbookVersion": "0.101.0-19",
|
|
3898
3908
|
"usage": {
|
|
3899
3909
|
"price": {
|
|
3900
|
-
"value": 0.
|
|
3910
|
+
"value": 0.029311250000000004
|
|
3901
3911
|
},
|
|
3902
3912
|
"input": {
|
|
3903
3913
|
"tokensCount": {
|
|
3904
|
-
"value":
|
|
3914
|
+
"value": 5857
|
|
3905
3915
|
},
|
|
3906
3916
|
"charactersCount": {
|
|
3907
3917
|
"value": 2377
|
|
@@ -3924,16 +3934,16 @@
|
|
|
3924
3934
|
},
|
|
3925
3935
|
"output": {
|
|
3926
3936
|
"tokensCount": {
|
|
3927
|
-
"value":
|
|
3937
|
+
"value": 2199
|
|
3928
3938
|
},
|
|
3929
3939
|
"charactersCount": {
|
|
3930
|
-
"value":
|
|
3940
|
+
"value": 2041
|
|
3931
3941
|
},
|
|
3932
3942
|
"wordsCount": {
|
|
3933
|
-
"value":
|
|
3943
|
+
"value": 279
|
|
3934
3944
|
},
|
|
3935
3945
|
"sentencesCount": {
|
|
3936
|
-
"value":
|
|
3946
|
+
"value": 31
|
|
3937
3947
|
},
|
|
3938
3948
|
"linesCount": {
|
|
3939
3949
|
"value": 49
|