@promptbook/templates 0.101.0-9 → 0.102.0-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.es.js +115 -120
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +30 -0
- package/esm/typings/src/_packages/core.index.d.ts +12 -0
- package/esm/typings/src/_packages/types.index.d.ts +12 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +11 -4
- package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +3 -0
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +4 -22
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.d.ts +1 -26
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/DELETE/DELETE.d.ts +0 -24
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/GOAL/GOAL.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/MEMORY/MEMORY.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/MESSAGE/MESSAGE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/META/META.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +0 -6
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +23 -14
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +2 -14
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/SCENARIO/SCENARIO.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +0 -12
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/index.d.ts +1 -1
- package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +5 -2
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/MockedChat.d.ts +18 -1
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +8 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +2 -15
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +5 -1
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +9 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/hooks/index.d.ts +2 -0
- package/esm/typings/src/book-components/Chat/hooks/useChatAutoScroll.d.ts +41 -0
- package/esm/typings/src/book-components/Chat/hooks/useSendMessageToLlmChat.d.ts +44 -0
- package/esm/typings/src/book-components/Chat/utils/parseMessageButtons.d.ts +22 -0
- package/esm/typings/src/book-components/Chat/utils/savePlugins.d.ts +55 -0
- package/esm/typings/src/book-components/icons/PauseIcon.d.ts +8 -0
- package/esm/typings/src/book-components/icons/PlayIcon.d.ts +8 -0
- package/esm/typings/src/execution/PromptResult.d.ts +2 -4
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -2
- package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +1 -3
- package/esm/typings/src/formats/csv/CsvFormatError.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +1 -2
- package/esm/typings/src/llm-providers/_common/register/createLlmToolsFromConfiguration.d.ts +8 -2
- package/esm/typings/src/llm-providers/_common/utils/removeUnsupportedModelRequirements.d.ts +25 -0
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +7 -18
- package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +11 -0
- package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +2 -1
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +58 -0
- package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +29 -0
- package/esm/typings/src/llm-providers/agent/playground/playground.d.ts +8 -0
- package/esm/typings/src/llm-providers/agent/register-configuration.d.ts +11 -0
- package/esm/typings/src/llm-providers/agent/register-constructor.d.ts +13 -0
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +3 -8
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -5
- package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +1 -0
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +4 -10
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +4 -6
- package/esm/typings/src/llm-providers/ollama/OllamaExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +16 -8
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +3 -8
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -14
- package/esm/typings/src/personas/preparePersona.d.ts +1 -0
- package/esm/typings/src/remote-server/openapi-types.d.ts +31 -31
- package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +1 -2
- package/esm/typings/src/types/ModelRequirements.d.ts +2 -4
- package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +1 -1
- package/esm/typings/src/utils/editable/edit-pipeline-string/addPipelineCommand.d.ts +1 -1
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +0 -1
- package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +2 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +115 -120
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +0 -17
- package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +0 -12
- package/esm/typings/src/book-components/Chat/examples/ChatMarkdownDemo.d.ts +0 -16
- package/esm/typings/src/expectations/drafts/isDomainNameFree.d.ts +0 -10
- package/esm/typings/src/expectations/drafts/isGithubNameFree.d.ts +0 -10
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +0 -81
- /package/esm/typings/src/llm-providers/_common/{profiles/test/llmProviderProfiles.test.d.ts → utils/removeUnsupportedModelRequirements.test.d.ts} +0 -0
package/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.
|
|
25
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.102.0-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,27 +1571,27 @@
|
|
|
1571
1571
|
"models": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"modelName": "gpt-4.1",
|
|
1574
|
-
"systemMessage": "You are a
|
|
1574
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an expert in prompt engineering and assistant design. Be concise, pragmatic, and reproducible; prefer clear structure, minimal fluff, and verifiable claims. Ask targeted clarifying questions when requirements are ambiguous. When asked for structured data, return strict JSON. Do not reveal chain-of-thought; provide short answers and final conclusions.",
|
|
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 developer of the Promptbook Project and a helpful assistant. Communicate clearly and efficiently; provide copy-pasteable prompt templates and checklists when useful. Optimize for tool integration and deterministic outputs. Avoid hidden reasoning; summarize succinctly and ask clarifying questions when needed.",
|
|
1580
1580
|
"temperature": 0.4
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
"modelName": "gpt-4",
|
|
1584
|
-
"systemMessage": "You are a
|
|
1584
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be structured, precise, and implementation-focused. Prefer concise answers, minimal speculation, and testable guidance. Return strict JSON when requested and avoid exposing chain-of-thought.",
|
|
1585
1585
|
"temperature": 0.3
|
|
1586
1586
|
},
|
|
1587
1587
|
{
|
|
1588
|
-
"modelName": "
|
|
1589
|
-
"systemMessage": "You are a
|
|
1590
|
-
"temperature": 0.
|
|
1588
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1589
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Produce template-friendly outputs, ask targeted clarifying questions, and keep responses deterministic and reproducible. Avoid chain-of-thought and provide concise conclusions.",
|
|
1590
|
+
"temperature": 0.4
|
|
1591
1591
|
},
|
|
1592
1592
|
{
|
|
1593
|
-
"modelName": "gpt-3.5-turbo
|
|
1594
|
-
"systemMessage": "You are a
|
|
1593
|
+
"modelName": "gpt-3.5-turbo",
|
|
1594
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver concise, practical guidance with template-ready outputs. Ask clarifying questions when requirements are unclear and avoid chain-of-thought in your responses.",
|
|
1595
1595
|
"temperature": 0.4
|
|
1596
1596
|
}
|
|
1597
1597
|
]
|
|
@@ -1605,10 +1605,10 @@
|
|
|
1605
1605
|
"preparations": [
|
|
1606
1606
|
{
|
|
1607
1607
|
"id": 1,
|
|
1608
|
-
"promptbookVersion": "0.101.0
|
|
1608
|
+
"promptbookVersion": "0.101.0",
|
|
1609
1609
|
"usage": {
|
|
1610
1610
|
"price": {
|
|
1611
|
-
"value": 0.
|
|
1611
|
+
"value": 0.03161375
|
|
1612
1612
|
},
|
|
1613
1613
|
"input": {
|
|
1614
1614
|
"tokensCount": {
|
|
@@ -1635,19 +1635,19 @@
|
|
|
1635
1635
|
},
|
|
1636
1636
|
"output": {
|
|
1637
1637
|
"tokensCount": {
|
|
1638
|
-
"value":
|
|
1638
|
+
"value": 2429
|
|
1639
1639
|
},
|
|
1640
1640
|
"charactersCount": {
|
|
1641
|
-
"value":
|
|
1641
|
+
"value": 1944
|
|
1642
1642
|
},
|
|
1643
1643
|
"wordsCount": {
|
|
1644
|
-
"value":
|
|
1644
|
+
"value": 254
|
|
1645
1645
|
},
|
|
1646
1646
|
"sentencesCount": {
|
|
1647
|
-
"value":
|
|
1647
|
+
"value": 30
|
|
1648
1648
|
},
|
|
1649
1649
|
"linesCount": {
|
|
1650
|
-
"value":
|
|
1650
|
+
"value": 51
|
|
1651
1651
|
},
|
|
1652
1652
|
"paragraphsCount": {
|
|
1653
1653
|
"value": 1
|
|
@@ -2136,27 +2136,27 @@
|
|
|
2136
2136
|
"models": [
|
|
2137
2137
|
{
|
|
2138
2138
|
"modelName": "gpt-4.1",
|
|
2139
|
-
"systemMessage": "You are a
|
|
2139
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as an expert in prompt engineering and assistant design. Be concise, pragmatic, and reproducible; prefer clear structure, minimal fluff, and verifiable claims. Ask targeted clarifying questions when requirements are ambiguous. When asked for structured data, return strict JSON. Do not reveal chain-of-thought; provide short answers and final conclusions.",
|
|
2140
2140
|
"temperature": 0.3
|
|
2141
2141
|
},
|
|
2142
2142
|
{
|
|
2143
2143
|
"modelName": "chatgpt-4o-latest",
|
|
2144
|
-
"systemMessage": "You are a
|
|
2144
|
+
"systemMessage": "You are a developer of the Promptbook Project and a helpful assistant. Communicate clearly and efficiently; provide copy-pasteable prompt templates and checklists when useful. Optimize for tool integration and deterministic outputs. Avoid hidden reasoning; summarize succinctly and ask clarifying questions when needed.",
|
|
2145
2145
|
"temperature": 0.4
|
|
2146
2146
|
},
|
|
2147
2147
|
{
|
|
2148
2148
|
"modelName": "gpt-4",
|
|
2149
|
-
"systemMessage": "You are a
|
|
2149
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be structured, precise, and implementation-focused. Prefer concise answers, minimal speculation, and testable guidance. Return strict JSON when requested and avoid exposing chain-of-thought.",
|
|
2150
2150
|
"temperature": 0.3
|
|
2151
2151
|
},
|
|
2152
2152
|
{
|
|
2153
|
-
"modelName": "
|
|
2154
|
-
"systemMessage": "You are a
|
|
2155
|
-
"temperature": 0.
|
|
2153
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2154
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be succinct and cost-aware. Produce template-friendly outputs, ask targeted clarifying questions, and keep responses deterministic and reproducible. Avoid chain-of-thought and provide concise conclusions.",
|
|
2155
|
+
"temperature": 0.4
|
|
2156
2156
|
},
|
|
2157
2157
|
{
|
|
2158
|
-
"modelName": "gpt-3.5-turbo
|
|
2159
|
-
"systemMessage": "You are a
|
|
2158
|
+
"modelName": "gpt-3.5-turbo",
|
|
2159
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver concise, practical guidance with template-ready outputs. Ask clarifying questions when requirements are unclear and avoid chain-of-thought in your responses.",
|
|
2160
2160
|
"temperature": 0.4
|
|
2161
2161
|
}
|
|
2162
2162
|
]
|
|
@@ -2170,10 +2170,10 @@
|
|
|
2170
2170
|
"preparations": [
|
|
2171
2171
|
{
|
|
2172
2172
|
"id": 1,
|
|
2173
|
-
"promptbookVersion": "0.101.0
|
|
2173
|
+
"promptbookVersion": "0.101.0",
|
|
2174
2174
|
"usage": {
|
|
2175
2175
|
"price": {
|
|
2176
|
-
"value": 0.
|
|
2176
|
+
"value": 0.03161375
|
|
2177
2177
|
},
|
|
2178
2178
|
"input": {
|
|
2179
2179
|
"tokensCount": {
|
|
@@ -2200,19 +2200,19 @@
|
|
|
2200
2200
|
},
|
|
2201
2201
|
"output": {
|
|
2202
2202
|
"tokensCount": {
|
|
2203
|
-
"value":
|
|
2203
|
+
"value": 2429
|
|
2204
2204
|
},
|
|
2205
2205
|
"charactersCount": {
|
|
2206
|
-
"value":
|
|
2206
|
+
"value": 1944
|
|
2207
2207
|
},
|
|
2208
2208
|
"wordsCount": {
|
|
2209
|
-
"value":
|
|
2209
|
+
"value": 254
|
|
2210
2210
|
},
|
|
2211
2211
|
"sentencesCount": {
|
|
2212
|
-
"value":
|
|
2212
|
+
"value": 30
|
|
2213
2213
|
},
|
|
2214
2214
|
"linesCount": {
|
|
2215
|
-
"value":
|
|
2215
|
+
"value": 51
|
|
2216
2216
|
},
|
|
2217
2217
|
"paragraphsCount": {
|
|
2218
2218
|
"value": 1
|
|
@@ -2842,22 +2842,22 @@
|
|
|
2842
2842
|
"models": [
|
|
2843
2843
|
{
|
|
2844
2844
|
"modelName": "gpt-4.1",
|
|
2845
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2845
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2846
2846
|
"temperature": 0.2
|
|
2847
2847
|
},
|
|
2848
2848
|
{
|
|
2849
|
-
"modelName": "
|
|
2850
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2851
|
-
"temperature": 0.
|
|
2849
|
+
"modelName": "chatgpt-4o-latest",
|
|
2850
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2851
|
+
"temperature": 0.3
|
|
2852
2852
|
},
|
|
2853
2853
|
{
|
|
2854
|
-
"modelName": "
|
|
2855
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2856
|
-
"temperature": 0.
|
|
2854
|
+
"modelName": "gpt-4",
|
|
2855
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2856
|
+
"temperature": 0.2
|
|
2857
2857
|
},
|
|
2858
2858
|
{
|
|
2859
2859
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2860
|
-
"systemMessage": "You are a linguist and meticulous text corrector.
|
|
2860
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Correct grammar, spelling, punctuation, syntax, agreement, and typography. Improve clarity, concision, tone, and flow while preserving meaning and author voice. Respect requested dialects and style guides (e.g., APA, Chicago, Oxford comma). Maintain formatting and line breaks. Default to minimal edits unless asked to rewrite. Support multilingual text and code-switching; keep proper diacritics. Do not add facts; ask for clarification if context is missing. When requested, provide before→after diffs or brief explanations of key changes.",
|
|
2861
2861
|
"temperature": 0.2
|
|
2862
2862
|
}
|
|
2863
2863
|
]
|
|
@@ -2871,10 +2871,10 @@
|
|
|
2871
2871
|
"preparations": [
|
|
2872
2872
|
{
|
|
2873
2873
|
"id": 1,
|
|
2874
|
-
"promptbookVersion": "0.101.0
|
|
2874
|
+
"promptbookVersion": "0.101.0",
|
|
2875
2875
|
"usage": {
|
|
2876
2876
|
"price": {
|
|
2877
|
-
"value": 0.
|
|
2877
|
+
"value": 0.031512500000000006
|
|
2878
2878
|
},
|
|
2879
2879
|
"input": {
|
|
2880
2880
|
"tokensCount": {
|
|
@@ -2901,16 +2901,16 @@
|
|
|
2901
2901
|
},
|
|
2902
2902
|
"output": {
|
|
2903
2903
|
"tokensCount": {
|
|
2904
|
-
"value":
|
|
2904
|
+
"value": 2419
|
|
2905
2905
|
},
|
|
2906
2906
|
"charactersCount": {
|
|
2907
|
-
"value":
|
|
2907
|
+
"value": 2834
|
|
2908
2908
|
},
|
|
2909
2909
|
"wordsCount": {
|
|
2910
|
-
"value":
|
|
2910
|
+
"value": 386
|
|
2911
2911
|
},
|
|
2912
2912
|
"sentencesCount": {
|
|
2913
|
-
"value":
|
|
2913
|
+
"value": 51
|
|
2914
2914
|
},
|
|
2915
2915
|
"linesCount": {
|
|
2916
2916
|
"value": 60
|
|
@@ -2985,22 +2985,22 @@
|
|
|
2985
2985
|
"models": [
|
|
2986
2986
|
{
|
|
2987
2987
|
"modelName": "gpt-4.1",
|
|
2988
|
-
"systemMessage": "You are a skilled e
|
|
2989
|
-
"temperature": 0.
|
|
2988
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2989
|
+
"temperature": 0.7
|
|
2990
2990
|
},
|
|
2991
2991
|
{
|
|
2992
2992
|
"modelName": "chatgpt-4o-latest",
|
|
2993
|
-
"systemMessage": "You are a
|
|
2994
|
-
"temperature": 0.
|
|
2993
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2994
|
+
"temperature": 0.8
|
|
2995
2995
|
},
|
|
2996
2996
|
{
|
|
2997
2997
|
"modelName": "gpt-4",
|
|
2998
|
-
"systemMessage": "You are
|
|
2999
|
-
"temperature": 0.
|
|
2998
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
2999
|
+
"temperature": 0.65
|
|
3000
3000
|
},
|
|
3001
3001
|
{
|
|
3002
3002
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3003
|
-
"systemMessage": "You are a
|
|
3003
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Objectives: increase conversions, reflect brand voice, and write clear, persuasive, benefit-led copy while optimizing for SEO without keyword stuffing. Guidelines: ask clarifying questions if info is missing; adapt tone to the audience; use scannable structure (concise headline, bullet points, short paragraphs); emphasize benefits and use cases; include strong but truthful CTAs; avoid unverifiable or regulated claims; comply with legal and platform policies; localize spelling, currency, and units as requested. By default, provide: product title, 5 bullets, a 120–200 word description, an SEO title (≤60 chars), a meta description (≤155 chars), and 8–12 keywords. Provide 2–3 concise variations when asked.",
|
|
3004
3004
|
"temperature": 0.8
|
|
3005
3005
|
}
|
|
3006
3006
|
]
|
|
@@ -3014,10 +3014,10 @@
|
|
|
3014
3014
|
"preparations": [
|
|
3015
3015
|
{
|
|
3016
3016
|
"id": 1,
|
|
3017
|
-
"promptbookVersion": "0.101.0
|
|
3017
|
+
"promptbookVersion": "0.101.0",
|
|
3018
3018
|
"usage": {
|
|
3019
3019
|
"price": {
|
|
3020
|
-
"value": 0.
|
|
3020
|
+
"value": 0.030552500000000003
|
|
3021
3021
|
},
|
|
3022
3022
|
"input": {
|
|
3023
3023
|
"tokensCount": {
|
|
@@ -3044,19 +3044,19 @@
|
|
|
3044
3044
|
},
|
|
3045
3045
|
"output": {
|
|
3046
3046
|
"tokensCount": {
|
|
3047
|
-
"value":
|
|
3047
|
+
"value": 2323
|
|
3048
3048
|
},
|
|
3049
3049
|
"charactersCount": {
|
|
3050
|
-
"value":
|
|
3050
|
+
"value": 3427
|
|
3051
3051
|
},
|
|
3052
3052
|
"wordsCount": {
|
|
3053
|
-
"value":
|
|
3053
|
+
"value": 482
|
|
3054
3054
|
},
|
|
3055
3055
|
"sentencesCount": {
|
|
3056
|
-
"value":
|
|
3056
|
+
"value": 27
|
|
3057
3057
|
},
|
|
3058
3058
|
"linesCount": {
|
|
3059
|
-
"value":
|
|
3059
|
+
"value": 72
|
|
3060
3060
|
},
|
|
3061
3061
|
"paragraphsCount": {
|
|
3062
3062
|
"value": 1
|
|
@@ -3110,7 +3110,7 @@
|
|
|
3110
3110
|
"preparations": [
|
|
3111
3111
|
{
|
|
3112
3112
|
"id": 1,
|
|
3113
|
-
"promptbookVersion": "0.101.0
|
|
3113
|
+
"promptbookVersion": "0.101.0",
|
|
3114
3114
|
"usage": {
|
|
3115
3115
|
"price": {
|
|
3116
3116
|
"value": 0
|
|
@@ -3219,27 +3219,27 @@
|
|
|
3219
3219
|
"models": [
|
|
3220
3220
|
{
|
|
3221
3221
|
"modelName": "gpt-4.1",
|
|
3222
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3222
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3223
3223
|
"temperature": 0.4
|
|
3224
3224
|
},
|
|
3225
3225
|
{
|
|
3226
3226
|
"modelName": "chatgpt-4o-latest",
|
|
3227
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3227
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3228
3228
|
"temperature": 0.6
|
|
3229
3229
|
},
|
|
3230
3230
|
{
|
|
3231
3231
|
"modelName": "gpt-4",
|
|
3232
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3232
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3233
3233
|
"temperature": 0.5
|
|
3234
3234
|
},
|
|
3235
3235
|
{
|
|
3236
3236
|
"modelName": "o4-mini",
|
|
3237
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant
|
|
3238
|
-
"temperature": 0.
|
|
3237
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3238
|
+
"temperature": 0.4
|
|
3239
3239
|
},
|
|
3240
3240
|
{
|
|
3241
3241
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3242
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3242
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver practical, data-driven guidance tailored to the user's industry, audience, goals, and constraints. Ask targeted clarifying questions when requirements are ambiguous. Structure answers with clear headings and bullet points when helpful, keep them concise, and prioritize actionable steps. Use proven frameworks (e.g., STP, 4Ps/7Ps, AIDA, AARRR, JTBD, SWOT), propose channel strategies, messaging, budgets, timelines, KPIs, and sample copy. When making assumptions, state them and quantify where possible. Cite sources for specific statistics when known; otherwise flag uncertainty and avoid hallucinations. Be professional, empathetic, and bias-aware.",
|
|
3243
3243
|
"temperature": 0.6
|
|
3244
3244
|
}
|
|
3245
3245
|
]
|
|
@@ -3253,10 +3253,10 @@
|
|
|
3253
3253
|
"preparations": [
|
|
3254
3254
|
{
|
|
3255
3255
|
"id": 1,
|
|
3256
|
-
"promptbookVersion": "0.101.0
|
|
3256
|
+
"promptbookVersion": "0.101.0",
|
|
3257
3257
|
"usage": {
|
|
3258
3258
|
"price": {
|
|
3259
|
-
"value": 0.
|
|
3259
|
+
"value": 0.038622500000000004
|
|
3260
3260
|
},
|
|
3261
3261
|
"input": {
|
|
3262
3262
|
"tokensCount": {
|
|
@@ -3283,19 +3283,19 @@
|
|
|
3283
3283
|
},
|
|
3284
3284
|
"output": {
|
|
3285
3285
|
"tokensCount": {
|
|
3286
|
-
"value":
|
|
3286
|
+
"value": 3130
|
|
3287
3287
|
},
|
|
3288
3288
|
"charactersCount": {
|
|
3289
|
-
"value":
|
|
3289
|
+
"value": 4148
|
|
3290
3290
|
},
|
|
3291
3291
|
"wordsCount": {
|
|
3292
|
-
"value":
|
|
3292
|
+
"value": 546
|
|
3293
3293
|
},
|
|
3294
3294
|
"sentencesCount": {
|
|
3295
|
-
"value":
|
|
3295
|
+
"value": 58
|
|
3296
3296
|
},
|
|
3297
3297
|
"linesCount": {
|
|
3298
|
-
"value":
|
|
3298
|
+
"value": 84
|
|
3299
3299
|
},
|
|
3300
3300
|
"paragraphsCount": {
|
|
3301
3301
|
"value": 1
|
|
@@ -3375,23 +3375,23 @@
|
|
|
3375
3375
|
"models": [
|
|
3376
3376
|
{
|
|
3377
3377
|
"modelName": "gpt-4.1",
|
|
3378
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3379
|
-
"temperature": 0.
|
|
3378
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Goals: (1) Resolve customer issues quickly and empathetically. (2) Write clear, persuasive, on-brand copy (product pages, emails, ads, social, SEO). Behavior: - Be friendly, concise, and actionable. - Ask targeted clarifying questions when details are missing (order number, item, issue, dates, photos). - Follow store policies precisely; never invent policy. If unsure, state that and propose next steps or escalate to a human. - Offer options, set expectations (costs, timelines, return windows), and summarize decisions. - For copy: adapt to brand voice, highlight benefits and differentiators, include a clear CTA, avoid unverifiable claims, and provide 2–3 variations on request. - Use bullet points for steps, keep formatting clean, and include placeholders for links or SKUs when needed. - Localize tone and spelling to the customer’s locale when evident.",
|
|
3379
|
+
"temperature": 0.55
|
|
3380
3380
|
},
|
|
3381
3381
|
{
|
|
3382
3382
|
"modelName": "chatgpt-4o-latest",
|
|
3383
|
-
"systemMessage": "You are a customer service representative and skilled copywriter for an
|
|
3384
|
-
"temperature": 0.
|
|
3383
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be empathetic, efficient, and brand-aligned. For support: ask for missing essentials (order number, item, issue, dates, photos), follow policy exactly, summarize options, set timelines/costs, and escalate when uncertain. For copy: write persuasive, benefits-led content with a clear CTA, match brand voice, avoid unsupported claims, and provide alternate variations on request. Use clean formatting and bullet points where helpful.",
|
|
3384
|
+
"temperature": 0.6
|
|
3385
3385
|
},
|
|
3386
3386
|
{
|
|
3387
3387
|
"modelName": "gpt-4",
|
|
3388
|
-
"systemMessage": "
|
|
3388
|
+
"systemMessage": "Act as a friendly, efficient ecommerce customer support agent and on-brand copywriter. Clarify missing details, follow policies faithfully, give actionable next steps, and summarize outcomes. For marketing copy, highlight benefits and differentiators, keep claims accurate, include a strong CTA, and adapt to the customer’s locale and brand voice.",
|
|
3389
3389
|
"temperature": 0.5
|
|
3390
3390
|
},
|
|
3391
3391
|
{
|
|
3392
3392
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3393
|
-
"systemMessage": "You are
|
|
3394
|
-
"temperature": 0.
|
|
3393
|
+
"systemMessage": "You are an empathetic ecommerce customer service rep and practical copywriter. Keep answers concise and actionable, ask for missing details (order number, product, issue), follow store policy, and summarize options with timelines. For copy, write clear, benefit-focused text with a suitable CTA and provide a second variation when asked.",
|
|
3394
|
+
"temperature": 0.4
|
|
3395
3395
|
}
|
|
3396
3396
|
]
|
|
3397
3397
|
}
|
|
@@ -3404,10 +3404,10 @@
|
|
|
3404
3404
|
"preparations": [
|
|
3405
3405
|
{
|
|
3406
3406
|
"id": 1,
|
|
3407
|
-
"promptbookVersion": "0.101.0
|
|
3407
|
+
"promptbookVersion": "0.101.0",
|
|
3408
3408
|
"usage": {
|
|
3409
3409
|
"price": {
|
|
3410
|
-
"value": 0.
|
|
3410
|
+
"value": 0.0374275
|
|
3411
3411
|
},
|
|
3412
3412
|
"input": {
|
|
3413
3413
|
"tokensCount": {
|
|
@@ -3434,19 +3434,19 @@
|
|
|
3434
3434
|
},
|
|
3435
3435
|
"output": {
|
|
3436
3436
|
"tokensCount": {
|
|
3437
|
-
"value":
|
|
3437
|
+
"value": 3010
|
|
3438
3438
|
},
|
|
3439
3439
|
"charactersCount": {
|
|
3440
|
-
"value":
|
|
3440
|
+
"value": 2566
|
|
3441
3441
|
},
|
|
3442
3442
|
"wordsCount": {
|
|
3443
|
-
"value":
|
|
3443
|
+
"value": 353
|
|
3444
3444
|
},
|
|
3445
3445
|
"sentencesCount": {
|
|
3446
|
-
"value":
|
|
3446
|
+
"value": 29
|
|
3447
3447
|
},
|
|
3448
3448
|
"linesCount": {
|
|
3449
|
-
"value":
|
|
3449
|
+
"value": 57
|
|
3450
3450
|
},
|
|
3451
3451
|
"paragraphsCount": {
|
|
3452
3452
|
"value": 1
|
|
@@ -3703,28 +3703,23 @@
|
|
|
3703
3703
|
"models": [
|
|
3704
3704
|
{
|
|
3705
3705
|
"modelName": "gpt-4.1",
|
|
3706
|
-
"systemMessage": "You are a
|
|
3707
|
-
"temperature": 0.
|
|
3706
|
+
"systemMessage": "You are a linguist and Esperantist. Be a helpful virtual assistant with strong multilingual skills. Provide clear explanations of phonetics, morphology, syntax, etymology, and translation. Use standard Esperanto orthography (ĉ ĝ ĥ ĵ ŝ ŭ) and switch to x-system only if requested. When useful, include IPA and brief Leipzig-style glosses. Ask clarifying questions when ambiguity exists. Be polite, precise, and concise.",
|
|
3707
|
+
"temperature": 0.3
|
|
3708
3708
|
},
|
|
3709
3709
|
{
|
|
3710
3710
|
"modelName": "chatgpt-4o-latest",
|
|
3711
|
-
"systemMessage": "You are a
|
|
3712
|
-
"temperature": 0.
|
|
3711
|
+
"systemMessage": "You are a linguist and Esperantist. Be a friendly, knowledgeable assistant with excellent multilingual capabilities. Offer precise analyses (phonetics, morphology, syntax) and high-quality translations. Default to standard Esperanto orthography; use x-system only on request. Include IPA and short Leipzig-style glosses when helpful. Ask clarifying questions if context is missing. Keep answers clear and concise.",
|
|
3712
|
+
"temperature": 0.4
|
|
3713
3713
|
},
|
|
3714
3714
|
{
|
|
3715
3715
|
"modelName": "gpt-4",
|
|
3716
|
-
"systemMessage": "You are a
|
|
3717
|
-
"temperature": 0.
|
|
3716
|
+
"systemMessage": "You are a linguist and Esperantist. Provide accurate linguistic analysis, pragmatic guidance, and translations. Prefer standard Esperanto orthography; use x-system only if asked. Include IPA and brief glosses when useful. Confirm assumptions, ask clarifying questions when ambiguous, and keep the tone courteous and concise.",
|
|
3717
|
+
"temperature": 0.3
|
|
3718
3718
|
},
|
|
3719
3719
|
{
|
|
3720
3720
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3721
|
-
"systemMessage": "You are a
|
|
3722
|
-
"temperature": 0.
|
|
3723
|
-
},
|
|
3724
|
-
{
|
|
3725
|
-
"modelName": "gpt-3.5-turbo",
|
|
3726
|
-
"systemMessage": "You are a professional linguist and dedicated Esperantist. You speak fluent Esperanto and English. Provide clear, accurate explanations of grammar, morphology, phonology, semantics, etymology, and pragmatics. Translate between Esperanto and other languages when asked, noting register, nuance, and style. Give a concise answer first, then short illustrative examples (preferably in Esperanto and English). When uncertain, say so and ask clarifying questions. Be friendly, culturally sensitive, and pedagogical.",
|
|
3727
|
-
"temperature": 0.3
|
|
3721
|
+
"systemMessage": "You are a linguist and Esperantist. Give clear, concise help with translation and linguistic topics (phonetics, morphology, syntax). Use standard Esperanto orthography by default; switch to x-system only if requested. Include IPA when helpful and ask clarifying questions if the prompt is ambiguous.",
|
|
3722
|
+
"temperature": 0.5
|
|
3728
3723
|
}
|
|
3729
3724
|
]
|
|
3730
3725
|
}
|
|
@@ -3737,10 +3732,10 @@
|
|
|
3737
3732
|
"preparations": [
|
|
3738
3733
|
{
|
|
3739
3734
|
"id": 1,
|
|
3740
|
-
"promptbookVersion": "0.101.0
|
|
3735
|
+
"promptbookVersion": "0.101.0",
|
|
3741
3736
|
"usage": {
|
|
3742
3737
|
"price": {
|
|
3743
|
-
"value": 0.
|
|
3738
|
+
"value": 0.0245125
|
|
3744
3739
|
},
|
|
3745
3740
|
"input": {
|
|
3746
3741
|
"tokensCount": {
|
|
@@ -3767,19 +3762,19 @@
|
|
|
3767
3762
|
},
|
|
3768
3763
|
"output": {
|
|
3769
3764
|
"tokensCount": {
|
|
3770
|
-
"value":
|
|
3765
|
+
"value": 1719
|
|
3771
3766
|
},
|
|
3772
3767
|
"charactersCount": {
|
|
3773
|
-
"value":
|
|
3768
|
+
"value": 1872
|
|
3774
3769
|
},
|
|
3775
3770
|
"wordsCount": {
|
|
3776
|
-
"value":
|
|
3771
|
+
"value": 251
|
|
3777
3772
|
},
|
|
3778
3773
|
"sentencesCount": {
|
|
3779
|
-
"value":
|
|
3774
|
+
"value": 30
|
|
3780
3775
|
},
|
|
3781
3776
|
"linesCount": {
|
|
3782
|
-
"value":
|
|
3777
|
+
"value": 47
|
|
3783
3778
|
},
|
|
3784
3779
|
"paragraphsCount": {
|
|
3785
3780
|
"value": 1
|
|
@@ -3850,23 +3845,23 @@
|
|
|
3850
3845
|
"models": [
|
|
3851
3846
|
{
|
|
3852
3847
|
"modelName": "gpt-4.1",
|
|
3853
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write
|
|
3848
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write vivid, original poetry and narrative across forms and genres. Use striking imagery, musicality, and clear emotional arcs. Adapt tone to the prompt, avoid clichés, and prefer concrete, sensory detail. Offer a brief outline for longer pieces when helpful, then deliver polished language.",
|
|
3854
3849
|
"temperature": 0.9
|
|
3855
3850
|
},
|
|
3856
3851
|
{
|
|
3857
3852
|
"modelName": "chatgpt-4o-latest",
|
|
3858
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3853
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft lyrical, evocative verse and compelling narratives with strong voice, rhythm, and sensory detail. Match style to the prompt, avoid clichés, and aim for emotional resonance. For longer works, propose a concise outline before writing.",
|
|
3859
3854
|
"temperature": 0.9
|
|
3860
3855
|
},
|
|
3861
3856
|
{
|
|
3862
3857
|
"modelName": "gpt-4",
|
|
3863
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3858
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce imaginative, emotionally rich poems and stories with vivid imagery, clear arcs, and musical language. Tailor form and tone to the request and keep prose concise yet expressive.",
|
|
3864
3859
|
"temperature": 0.85
|
|
3865
3860
|
},
|
|
3866
3861
|
{
|
|
3867
3862
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3868
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3869
|
-
"temperature": 0.
|
|
3863
|
+
"systemMessage": "You are an accomplished poet and storyteller. Generate clear, engaging poems and stories with concrete imagery, strong rhythm, and focused narrative arcs. Keep language fresh and avoid clichés.",
|
|
3864
|
+
"temperature": 0.8
|
|
3870
3865
|
}
|
|
3871
3866
|
]
|
|
3872
3867
|
}
|
|
@@ -3879,10 +3874,10 @@
|
|
|
3879
3874
|
"preparations": [
|
|
3880
3875
|
{
|
|
3881
3876
|
"id": 1,
|
|
3882
|
-
"promptbookVersion": "0.101.0
|
|
3877
|
+
"promptbookVersion": "0.101.0",
|
|
3883
3878
|
"usage": {
|
|
3884
3879
|
"price": {
|
|
3885
|
-
"value": 0.
|
|
3880
|
+
"value": 0.024831250000000003
|
|
3886
3881
|
},
|
|
3887
3882
|
"input": {
|
|
3888
3883
|
"tokensCount": {
|
|
@@ -3909,25 +3904,25 @@
|
|
|
3909
3904
|
},
|
|
3910
3905
|
"output": {
|
|
3911
3906
|
"tokensCount": {
|
|
3912
|
-
"value":
|
|
3907
|
+
"value": 1751
|
|
3913
3908
|
},
|
|
3914
3909
|
"charactersCount": {
|
|
3915
|
-
"value":
|
|
3910
|
+
"value": 1463
|
|
3916
3911
|
},
|
|
3917
3912
|
"wordsCount": {
|
|
3918
|
-
"value":
|
|
3913
|
+
"value": 197
|
|
3919
3914
|
},
|
|
3920
3915
|
"sentencesCount": {
|
|
3921
|
-
"value":
|
|
3916
|
+
"value": 22
|
|
3922
3917
|
},
|
|
3923
3918
|
"linesCount": {
|
|
3924
|
-
"value":
|
|
3919
|
+
"value": 40
|
|
3925
3920
|
},
|
|
3926
3921
|
"paragraphsCount": {
|
|
3927
3922
|
"value": 1
|
|
3928
3923
|
},
|
|
3929
3924
|
"pagesCount": {
|
|
3930
|
-
"value":
|
|
3925
|
+
"value": 1
|
|
3931
3926
|
}
|
|
3932
3927
|
}
|
|
3933
3928
|
}
|