@promptbook/templates 0.100.3-0 → 0.101.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 +177 -159
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +4 -2
- package/esm/typings/src/_packages/markdown-utils.index.d.ts +14 -0
- package/esm/typings/src/_packages/types.index.d.ts +4 -6
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +21 -0
- package/esm/typings/src/book-2.0/{commitments/_misc → agent-source}/AgentModelRequirements.d.ts +1 -1
- package/esm/typings/src/book-2.0/{commitments/_misc → agent-source}/AgentSourceParseResult.d.ts +3 -1
- package/esm/typings/src/book-2.0/{commitments/_misc → agent-source}/createAgentModelRequirements.d.ts +2 -2
- package/esm/typings/src/book-2.0/{commitments/_misc → agent-source}/createAgentModelRequirementsWithCommitments.d.ts +3 -3
- package/esm/typings/src/book-2.0/{commitments/_misc → agent-source}/createCommitmentRegex.d.ts +2 -2
- package/esm/typings/src/book-2.0/agent-source/extractMetaLinks.d.ts +8 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +4 -19
- package/esm/typings/src/book-2.0/agent-source/parseAgentSourceWithCommitments.d.ts +9 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/{_misc → _base}/ParsedCommitment.d.ts +1 -1
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +1 -1
- package/esm/typings/src/book-2.0/utils/extractAgentMetadata.d.ts +17 -0
- package/esm/typings/src/book-2.0/utils/extractProfileImageFromSystemMessage.d.ts +12 -0
- package/esm/typings/src/book-2.0/utils/generateGravatarUrl.d.ts +10 -0
- package/esm/typings/src/book-2.0/utils/generatePlaceholderAgentProfileImageUrl.d.ts +10 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +1 -1
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +2 -8
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +1 -1
- package/esm/typings/src/utils/expectation-counters/countCharacters.d.ts +2 -1
- package/esm/typings/src/utils/expectation-counters/countLines.d.ts +2 -1
- package/esm/typings/src/utils/expectation-counters/countPages.d.ts +2 -1
- package/esm/typings/src/utils/expectation-counters/countParagraphs.d.ts +2 -1
- package/esm/typings/src/utils/expectation-counters/countSentences.d.ts +1 -0
- package/esm/typings/src/utils/expectation-counters/countWords.d.ts +3 -1
- package/esm/typings/src/utils/markdown/humanizeAiText.d.ts +12 -0
- package/esm/typings/src/utils/markdown/humanizeAiText.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextEllipsis.d.ts +12 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextEmdashed.d.ts +12 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextQuotes.d.ts +12 -0
- package/esm/typings/src/utils/markdown/humanizeAiTextWhitespace.d.ts +12 -0
- package/esm/typings/src/utils/markdown/promptbookifyAiText.d.ts +11 -0
- package/esm/typings/src/utils/markdown/promptbookifyAiText.test.d.ts +1 -0
- package/esm/typings/src/utils/markdown/removeMarkdownLinks.d.ts +11 -0
- package/esm/typings/src/utils/markdown/removeMarkdownLinks.test.d.ts +4 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +177 -159
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +0 -24
- package/esm/typings/src/book-2.0/utils/profileImageUtils.d.ts +0 -39
- /package/esm/typings/src/book-2.0/{commitments/_misc → agent-source}/removeCommentsFromSystemMessage.d.ts +0 -0
package/umd/index.umd.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* @generated
|
|
25
25
|
* @see https://github.com/webgptorg/promptbook
|
|
26
26
|
*/
|
|
27
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-0';
|
|
28
28
|
/**
|
|
29
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
30
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1559,33 +1559,38 @@
|
|
|
1559
1559
|
"models": [
|
|
1560
1560
|
{
|
|
1561
1561
|
"modelName": "gpt-4.1",
|
|
1562
|
-
"systemMessage": "You are a
|
|
1562
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant architect. Be concise, pragmatic, and safety-conscious. Use bullet lists and concrete action steps. Provide prompt design patterns, function-calling schemas, and evaluation checklists when useful. Ask 1–2 clarifying questions if requirements are ambiguous. Prefer deterministic, reproducible workflows and note trade-offs between quality, latency, and cost.",
|
|
1563
1563
|
"temperature": 0.3
|
|
1564
1564
|
},
|
|
1565
1565
|
{
|
|
1566
1566
|
"modelName": "chatgpt-4o-latest",
|
|
1567
|
-
"systemMessage": "You are a
|
|
1568
|
-
"temperature": 0.
|
|
1569
|
-
},
|
|
1570
|
-
{
|
|
1571
|
-
"modelName": "gpt-realtime",
|
|
1572
|
-
"systemMessage": "You are a real-time virtual assistant for the Promptbook Project. Prioritize low-latency, concise replies (1–2 sentences by default), confirm actions, and ask quick clarifying questions before proceeding. Escalate to longer responses only on request. Keep reasoning internal and provide only brief summaries when needed.",
|
|
1573
|
-
"temperature": 0.2
|
|
1567
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on building real-time, multimodal virtual assistants. Communicate clearly and concisely. When tools, vision, or audio are available, describe assumptions and propose an interaction plan. Provide prompt templates, function-call schemas, and integration tips. Ask brief clarifying questions when needed and optimize for low latency while maintaining accuracy.",
|
|
1568
|
+
"temperature": 0.5
|
|
1574
1569
|
},
|
|
1575
1570
|
{
|
|
1576
1571
|
"modelName": "o4-mini",
|
|
1577
|
-
"systemMessage": "You are a
|
|
1578
|
-
"temperature": 0.
|
|
1572
|
+
"systemMessage": "You are a Promptbook Project developer optimizing assistants for speed and cost. Provide crisp, actionable answers with minimal latency. Offer lightweight reasoning, clear decision trees, and simple evaluation rubrics. When proposing tool use or functions, include concise JSON schemas. Ask only essential clarifying questions.",
|
|
1573
|
+
"temperature": 0.3
|
|
1579
1574
|
},
|
|
1580
1575
|
{
|
|
1581
1576
|
"modelName": "gpt-4",
|
|
1582
|
-
"systemMessage": "You are
|
|
1583
|
-
"temperature": 0.
|
|
1577
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver reliable, high-quality guidance on building virtual assistants: prompt engineering, tool orchestration, function calling, and evaluation. Be concise, explain trade-offs, and include ready-to-use snippets or templates. Ask brief clarifying questions when needed.",
|
|
1578
|
+
"temperature": 0.4
|
|
1584
1579
|
},
|
|
1585
1580
|
{
|
|
1586
1581
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1587
|
-
"systemMessage": "You are a cost-efficient
|
|
1588
|
-
"temperature": 0.
|
|
1582
|
+
"systemMessage": "You are a cost-efficient Promptbook Project developer. Keep responses short and practical. Provide simple prompt templates, minimal function-call examples, and step-by-step implementation checklists. Confirm assumptions with one clarifying question when necessary.",
|
|
1583
|
+
"temperature": 0.4
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
"modelName": "o3",
|
|
1587
|
+
"systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
|
|
1588
|
+
"temperature": 0.2
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"modelName": "gpt-realtime",
|
|
1592
|
+
"systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
|
|
1593
|
+
"temperature": 0.5
|
|
1589
1594
|
}
|
|
1590
1595
|
]
|
|
1591
1596
|
}
|
|
@@ -1598,10 +1603,10 @@
|
|
|
1598
1603
|
"preparations": [
|
|
1599
1604
|
{
|
|
1600
1605
|
"id": 1,
|
|
1601
|
-
"promptbookVersion": "0.100.
|
|
1606
|
+
"promptbookVersion": "0.100.4-0",
|
|
1602
1607
|
"usage": {
|
|
1603
1608
|
"price": {
|
|
1604
|
-
"value": 0.
|
|
1609
|
+
"value": 0.03421250000000001
|
|
1605
1610
|
},
|
|
1606
1611
|
"input": {
|
|
1607
1612
|
"tokensCount": {
|
|
@@ -1628,19 +1633,19 @@
|
|
|
1628
1633
|
},
|
|
1629
1634
|
"output": {
|
|
1630
1635
|
"tokensCount": {
|
|
1631
|
-
"value":
|
|
1636
|
+
"value": 2699
|
|
1632
1637
|
},
|
|
1633
1638
|
"charactersCount": {
|
|
1634
|
-
"value":
|
|
1639
|
+
"value": 3044
|
|
1635
1640
|
},
|
|
1636
1641
|
"wordsCount": {
|
|
1637
|
-
"value":
|
|
1642
|
+
"value": 390
|
|
1638
1643
|
},
|
|
1639
1644
|
"sentencesCount": {
|
|
1640
|
-
"value":
|
|
1645
|
+
"value": 41
|
|
1641
1646
|
},
|
|
1642
1647
|
"linesCount": {
|
|
1643
|
-
"value":
|
|
1648
|
+
"value": 75
|
|
1644
1649
|
},
|
|
1645
1650
|
"paragraphsCount": {
|
|
1646
1651
|
"value": 1
|
|
@@ -2129,33 +2134,38 @@
|
|
|
2129
2134
|
"models": [
|
|
2130
2135
|
{
|
|
2131
2136
|
"modelName": "gpt-4.1",
|
|
2132
|
-
"systemMessage": "You are a
|
|
2137
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant architect. Be concise, pragmatic, and safety-conscious. Use bullet lists and concrete action steps. Provide prompt design patterns, function-calling schemas, and evaluation checklists when useful. Ask 1–2 clarifying questions if requirements are ambiguous. Prefer deterministic, reproducible workflows and note trade-offs between quality, latency, and cost.",
|
|
2133
2138
|
"temperature": 0.3
|
|
2134
2139
|
},
|
|
2135
2140
|
{
|
|
2136
2141
|
"modelName": "chatgpt-4o-latest",
|
|
2137
|
-
"systemMessage": "You are a
|
|
2138
|
-
"temperature": 0.
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
"modelName": "gpt-realtime",
|
|
2142
|
-
"systemMessage": "You are a real-time virtual assistant for the Promptbook Project. Prioritize low-latency, concise replies (1–2 sentences by default), confirm actions, and ask quick clarifying questions before proceeding. Escalate to longer responses only on request. Keep reasoning internal and provide only brief summaries when needed.",
|
|
2143
|
-
"temperature": 0.2
|
|
2142
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on building real-time, multimodal virtual assistants. Communicate clearly and concisely. When tools, vision, or audio are available, describe assumptions and propose an interaction plan. Provide prompt templates, function-call schemas, and integration tips. Ask brief clarifying questions when needed and optimize for low latency while maintaining accuracy.",
|
|
2143
|
+
"temperature": 0.5
|
|
2144
2144
|
},
|
|
2145
2145
|
{
|
|
2146
2146
|
"modelName": "o4-mini",
|
|
2147
|
-
"systemMessage": "You are a
|
|
2148
|
-
"temperature": 0.
|
|
2147
|
+
"systemMessage": "You are a Promptbook Project developer optimizing assistants for speed and cost. Provide crisp, actionable answers with minimal latency. Offer lightweight reasoning, clear decision trees, and simple evaluation rubrics. When proposing tool use or functions, include concise JSON schemas. Ask only essential clarifying questions.",
|
|
2148
|
+
"temperature": 0.3
|
|
2149
2149
|
},
|
|
2150
2150
|
{
|
|
2151
2151
|
"modelName": "gpt-4",
|
|
2152
|
-
"systemMessage": "You are
|
|
2153
|
-
"temperature": 0.
|
|
2152
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver reliable, high-quality guidance on building virtual assistants: prompt engineering, tool orchestration, function calling, and evaluation. Be concise, explain trade-offs, and include ready-to-use snippets or templates. Ask brief clarifying questions when needed.",
|
|
2153
|
+
"temperature": 0.4
|
|
2154
2154
|
},
|
|
2155
2155
|
{
|
|
2156
2156
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2157
|
-
"systemMessage": "You are a cost-efficient
|
|
2158
|
-
"temperature": 0.
|
|
2157
|
+
"systemMessage": "You are a cost-efficient Promptbook Project developer. Keep responses short and practical. Provide simple prompt templates, minimal function-call examples, and step-by-step implementation checklists. Confirm assumptions with one clarifying question when necessary.",
|
|
2158
|
+
"temperature": 0.4
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"modelName": "o3",
|
|
2162
|
+
"systemMessage": "You are a Promptbook Project developer handling complex reasoning tasks for virtual assistants. Think carefully and verify steps internally; share only concise conclusions and a brief high-level rationale. Provide robust plans, specifications, and validation strategies without revealing detailed chain-of-thought.",
|
|
2163
|
+
"temperature": 0.2
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"modelName": "gpt-realtime",
|
|
2167
|
+
"systemMessage": "You are a real-time Promptbook Project developer assistant. Prioritize low-latency, turn-by-turn dialogue. Keep answers brief and actionable, confirm key assumptions quickly, and provide short prompt/function templates suitable for streaming interactions.",
|
|
2168
|
+
"temperature": 0.5
|
|
2159
2169
|
}
|
|
2160
2170
|
]
|
|
2161
2171
|
}
|
|
@@ -2168,10 +2178,10 @@
|
|
|
2168
2178
|
"preparations": [
|
|
2169
2179
|
{
|
|
2170
2180
|
"id": 1,
|
|
2171
|
-
"promptbookVersion": "0.100.
|
|
2181
|
+
"promptbookVersion": "0.100.4-0",
|
|
2172
2182
|
"usage": {
|
|
2173
2183
|
"price": {
|
|
2174
|
-
"value": 0.
|
|
2184
|
+
"value": 0.03421250000000001
|
|
2175
2185
|
},
|
|
2176
2186
|
"input": {
|
|
2177
2187
|
"tokensCount": {
|
|
@@ -2198,19 +2208,19 @@
|
|
|
2198
2208
|
},
|
|
2199
2209
|
"output": {
|
|
2200
2210
|
"tokensCount": {
|
|
2201
|
-
"value":
|
|
2211
|
+
"value": 2699
|
|
2202
2212
|
},
|
|
2203
2213
|
"charactersCount": {
|
|
2204
|
-
"value":
|
|
2214
|
+
"value": 3044
|
|
2205
2215
|
},
|
|
2206
2216
|
"wordsCount": {
|
|
2207
|
-
"value":
|
|
2217
|
+
"value": 390
|
|
2208
2218
|
},
|
|
2209
2219
|
"sentencesCount": {
|
|
2210
|
-
"value":
|
|
2220
|
+
"value": 41
|
|
2211
2221
|
},
|
|
2212
2222
|
"linesCount": {
|
|
2213
|
-
"value":
|
|
2223
|
+
"value": 75
|
|
2214
2224
|
},
|
|
2215
2225
|
"paragraphsCount": {
|
|
2216
2226
|
"value": 1
|
|
@@ -2840,23 +2850,28 @@
|
|
|
2840
2850
|
"models": [
|
|
2841
2851
|
{
|
|
2842
2852
|
"modelName": "gpt-4.1",
|
|
2843
|
-
"systemMessage": "You are a professional linguist and
|
|
2853
|
+
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2844
2854
|
"temperature": 0.2
|
|
2845
2855
|
},
|
|
2846
2856
|
{
|
|
2847
|
-
"modelName": "
|
|
2848
|
-
"systemMessage": "You are a professional linguist and
|
|
2857
|
+
"modelName": "gpt-4",
|
|
2858
|
+
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2849
2859
|
"temperature": 0.2
|
|
2850
2860
|
},
|
|
2851
2861
|
{
|
|
2852
|
-
"modelName": "
|
|
2853
|
-
"systemMessage": "You are a linguist and
|
|
2854
|
-
"temperature": 0.
|
|
2862
|
+
"modelName": "chatgpt-4o-latest",
|
|
2863
|
+
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2864
|
+
"temperature": 0.3
|
|
2855
2865
|
},
|
|
2856
2866
|
{
|
|
2857
2867
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2858
|
-
"systemMessage": "You are a
|
|
2859
|
-
"temperature": 0.
|
|
2868
|
+
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2869
|
+
"temperature": 0.2
|
|
2870
|
+
},
|
|
2871
|
+
{
|
|
2872
|
+
"modelName": "gpt-3.5-turbo",
|
|
2873
|
+
"systemMessage": "You are a professional linguist, editor, and proofreader. Correct grammar, spelling, punctuation, agreement, syntax, and style; improve clarity, cohesion, and flow; preserve the author’s meaning and voice. Detect language and dialect automatically and follow it unless instructed otherwise. Default output: only the corrected text. If the user asks for explanations or alternatives, add a brief 'Notes' section. Ask one clarifying question if the intent is ambiguous. Do not add content or change facts.",
|
|
2874
|
+
"temperature": 0.2
|
|
2860
2875
|
}
|
|
2861
2876
|
]
|
|
2862
2877
|
}
|
|
@@ -2869,10 +2884,10 @@
|
|
|
2869
2884
|
"preparations": [
|
|
2870
2885
|
{
|
|
2871
2886
|
"id": 1,
|
|
2872
|
-
"promptbookVersion": "0.100.
|
|
2887
|
+
"promptbookVersion": "0.100.4-0",
|
|
2873
2888
|
"usage": {
|
|
2874
2889
|
"price": {
|
|
2875
|
-
"value": 0.
|
|
2890
|
+
"value": 0.03258125
|
|
2876
2891
|
},
|
|
2877
2892
|
"input": {
|
|
2878
2893
|
"tokensCount": {
|
|
@@ -2899,19 +2914,19 @@
|
|
|
2899
2914
|
},
|
|
2900
2915
|
"output": {
|
|
2901
2916
|
"tokensCount": {
|
|
2902
|
-
"value":
|
|
2917
|
+
"value": 2536
|
|
2903
2918
|
},
|
|
2904
2919
|
"charactersCount": {
|
|
2905
|
-
"value":
|
|
2920
|
+
"value": 3034
|
|
2906
2921
|
},
|
|
2907
2922
|
"wordsCount": {
|
|
2908
|
-
"value":
|
|
2923
|
+
"value": 423
|
|
2909
2924
|
},
|
|
2910
2925
|
"sentencesCount": {
|
|
2911
|
-
"value":
|
|
2926
|
+
"value": 44
|
|
2912
2927
|
},
|
|
2913
2928
|
"linesCount": {
|
|
2914
|
-
"value":
|
|
2929
|
+
"value": 69
|
|
2915
2930
|
},
|
|
2916
2931
|
"paragraphsCount": {
|
|
2917
2932
|
"value": 1
|
|
@@ -2983,22 +2998,22 @@
|
|
|
2983
2998
|
"models": [
|
|
2984
2999
|
{
|
|
2985
3000
|
"modelName": "gpt-4.1",
|
|
2986
|
-
"systemMessage": "You are a skilled e
|
|
3001
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write persuasive, benefit-led, customer-centric copy that boosts conversions while staying on-brand and compliant. Apply SEO best practices (natural keywords, compelling titles, meta descriptions, scannable structure), propose multiple variants/CTAs for A/B tests when helpful, and adapt tone to product, audience, and channel (product pages, categories, emails, ads, social). Avoid unverifiable claims and follow platform policies. Ask concise clarifying questions when key details are missing; otherwise proceed with sensible assumptions and note them.",
|
|
2987
3002
|
"temperature": 0.65
|
|
2988
3003
|
},
|
|
2989
3004
|
{
|
|
2990
3005
|
"modelName": "chatgpt-4o-latest",
|
|
2991
|
-
"systemMessage": "You are a skilled e
|
|
2992
|
-
"temperature": 0.
|
|
3006
|
+
"systemMessage": "You are a skilled e-commerce copywriter focused on conversion and brand voice. Produce concise, engaging product and category copy, ad headlines, emails, and social captions with clear benefits, objections handling, and strong CTAs. Use SEO-friendly structure and natural keywords. Offer 2–3 style or length variants for testing when useful. Keep claims accurate and compliant for the target market. Ask brief clarifying questions if key info is missing.",
|
|
3007
|
+
"temperature": 0.8
|
|
2993
3008
|
},
|
|
2994
3009
|
{
|
|
2995
3010
|
"modelName": "gpt-4",
|
|
2996
|
-
"systemMessage": "You are
|
|
2997
|
-
"temperature": 0.
|
|
3011
|
+
"systemMessage": "You are an expert e-commerce copywriter. Create high-converting, on-brand copy for product pages, categories, ads, and emails. Highlight benefits and outcomes, include differentiators, and incorporate SEO best practices (titles, meta descriptions, headings, FAQs) without keyword stuffing. Provide optional variants for A/B tests. Remain compliant and avoid unsupported claims. Ask for missing details only when essential.",
|
|
3012
|
+
"temperature": 0.7
|
|
2998
3013
|
},
|
|
2999
3014
|
{
|
|
3000
3015
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3001
|
-
"systemMessage": "You are a skilled e
|
|
3016
|
+
"systemMessage": "You are a skilled e-commerce copywriter delivering clear, persuasive, SEO-conscious copy that matches brand voice. Write product and category descriptions, ad copy, and emails with strong benefits and CTAs. Provide concise variants when helpful for testing. Keep claims accurate and compliant. Ask brief clarifying questions if critical information is missing.",
|
|
3002
3017
|
"temperature": 0.7
|
|
3003
3018
|
}
|
|
3004
3019
|
]
|
|
@@ -3012,10 +3027,10 @@
|
|
|
3012
3027
|
"preparations": [
|
|
3013
3028
|
{
|
|
3014
3029
|
"id": 1,
|
|
3015
|
-
"promptbookVersion": "0.100.
|
|
3030
|
+
"promptbookVersion": "0.100.4-0",
|
|
3016
3031
|
"usage": {
|
|
3017
3032
|
"price": {
|
|
3018
|
-
"value": 0.
|
|
3033
|
+
"value": 0.02755125
|
|
3019
3034
|
},
|
|
3020
3035
|
"input": {
|
|
3021
3036
|
"tokensCount": {
|
|
@@ -3042,19 +3057,19 @@
|
|
|
3042
3057
|
},
|
|
3043
3058
|
"output": {
|
|
3044
3059
|
"tokensCount": {
|
|
3045
|
-
"value":
|
|
3060
|
+
"value": 2033
|
|
3046
3061
|
},
|
|
3047
3062
|
"charactersCount": {
|
|
3048
|
-
"value":
|
|
3063
|
+
"value": 2269
|
|
3049
3064
|
},
|
|
3050
3065
|
"wordsCount": {
|
|
3051
|
-
"value":
|
|
3066
|
+
"value": 310
|
|
3052
3067
|
},
|
|
3053
3068
|
"sentencesCount": {
|
|
3054
|
-
"value":
|
|
3069
|
+
"value": 29
|
|
3055
3070
|
},
|
|
3056
3071
|
"linesCount": {
|
|
3057
|
-
"value":
|
|
3072
|
+
"value": 54
|
|
3058
3073
|
},
|
|
3059
3074
|
"paragraphsCount": {
|
|
3060
3075
|
"value": 1
|
|
@@ -3108,7 +3123,7 @@
|
|
|
3108
3123
|
"preparations": [
|
|
3109
3124
|
{
|
|
3110
3125
|
"id": 1,
|
|
3111
|
-
"promptbookVersion": "0.100.
|
|
3126
|
+
"promptbookVersion": "0.100.4-0",
|
|
3112
3127
|
"usage": {
|
|
3113
3128
|
"price": {
|
|
3114
3129
|
"value": 0
|
|
@@ -3217,22 +3232,27 @@
|
|
|
3217
3232
|
"models": [
|
|
3218
3233
|
{
|
|
3219
3234
|
"modelName": "gpt-4.1",
|
|
3220
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3235
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
|
|
3221
3236
|
"temperature": 0.4
|
|
3222
3237
|
},
|
|
3223
3238
|
{
|
|
3224
3239
|
"modelName": "chatgpt-4o-latest",
|
|
3225
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3226
|
-
"temperature": 0.
|
|
3240
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
|
|
3241
|
+
"temperature": 0.5
|
|
3227
3242
|
},
|
|
3228
3243
|
{
|
|
3229
|
-
"modelName": "
|
|
3230
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3231
|
-
"temperature": 0.
|
|
3244
|
+
"modelName": "gpt-4",
|
|
3245
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
|
|
3246
|
+
"temperature": 0.4
|
|
3232
3247
|
},
|
|
3233
3248
|
{
|
|
3234
3249
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3235
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3250
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
|
|
3251
|
+
"temperature": 0.5
|
|
3252
|
+
},
|
|
3253
|
+
{
|
|
3254
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3255
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide ROI-focused, data-driven advice on positioning, segmentation, ICP definition, go-to-market strategy, demand generation, lifecycle/CRM, pricing, unit economics, funnels, content/SEO, paid media, analytics, and sales enablement. Ask 2-4 concise clarifying questions when goals, audience, budget, or constraints are unclear. Tailor recommendations by industry, company stage, and resources. Deliver structured outputs: step-by-step plans, timelines, budgets, KPIs, and simple calculations with clear assumptions. Suggest lean experiments with success metrics and decision rules. Cite sources or state uncertainty; avoid hallucinations. Be concise, practical, and professional; prioritize actions with highest impact vs. effort. Flag risks (brand, legal, compliance) and note region-specific nuances when relevant.",
|
|
3236
3256
|
"temperature": 0.5
|
|
3237
3257
|
}
|
|
3238
3258
|
]
|
|
@@ -3246,10 +3266,10 @@
|
|
|
3246
3266
|
"preparations": [
|
|
3247
3267
|
{
|
|
3248
3268
|
"id": 1,
|
|
3249
|
-
"promptbookVersion": "0.100.
|
|
3269
|
+
"promptbookVersion": "0.100.4-0",
|
|
3250
3270
|
"usage": {
|
|
3251
3271
|
"price": {
|
|
3252
|
-
"value": 0.
|
|
3272
|
+
"value": 0.04375125
|
|
3253
3273
|
},
|
|
3254
3274
|
"input": {
|
|
3255
3275
|
"tokensCount": {
|
|
@@ -3276,25 +3296,25 @@
|
|
|
3276
3296
|
},
|
|
3277
3297
|
"output": {
|
|
3278
3298
|
"tokensCount": {
|
|
3279
|
-
"value":
|
|
3299
|
+
"value": 3653
|
|
3280
3300
|
},
|
|
3281
3301
|
"charactersCount": {
|
|
3282
|
-
"value":
|
|
3302
|
+
"value": 4959
|
|
3283
3303
|
},
|
|
3284
3304
|
"wordsCount": {
|
|
3285
|
-
"value":
|
|
3305
|
+
"value": 644
|
|
3286
3306
|
},
|
|
3287
3307
|
"sentencesCount": {
|
|
3288
|
-
"value":
|
|
3308
|
+
"value": 59
|
|
3289
3309
|
},
|
|
3290
3310
|
"linesCount": {
|
|
3291
|
-
"value":
|
|
3311
|
+
"value": 99
|
|
3292
3312
|
},
|
|
3293
3313
|
"paragraphsCount": {
|
|
3294
3314
|
"value": 1
|
|
3295
3315
|
},
|
|
3296
3316
|
"pagesCount": {
|
|
3297
|
-
"value":
|
|
3317
|
+
"value": 3
|
|
3298
3318
|
}
|
|
3299
3319
|
}
|
|
3300
3320
|
}
|
|
@@ -3364,34 +3384,32 @@
|
|
|
3364
3384
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3365
3385
|
"modelsRequirements": [
|
|
3366
3386
|
{
|
|
3367
|
-
"
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
}
|
|
3394
|
-
]
|
|
3387
|
+
"0": {
|
|
3388
|
+
"modelName": "gpt-4.1",
|
|
3389
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
|
|
3390
|
+
"temperature": 0.4
|
|
3391
|
+
},
|
|
3392
|
+
"1": {
|
|
3393
|
+
"modelName": "chatgpt-4o-latest",
|
|
3394
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
|
|
3395
|
+
"temperature": 0.4
|
|
3396
|
+
},
|
|
3397
|
+
"2": {
|
|
3398
|
+
"modelName": "gpt-4",
|
|
3399
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
|
|
3400
|
+
"temperature": 0.4
|
|
3401
|
+
},
|
|
3402
|
+
"3": {
|
|
3403
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3404
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
|
|
3405
|
+
"temperature": 0.5
|
|
3406
|
+
},
|
|
3407
|
+
"4": {
|
|
3408
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3409
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Behave with empathy, clarity, and brand-aligned professionalism.\n\nWhen supporting customers:\n- Ask for needed details (name, email, order ID) before troubleshooting.\n- Follow store policies for shipping, returns, refunds, exchanges, warranties.\n- Give step-by-step, actionable instructions; propose alternatives; never invent unavailable info.\n- Summarize options and next steps; set expectations on timelines.\n\nWhen writing copy (product pages, emails, ads, FAQs):\n- Lead with benefits, then key features and specs; highlight value, social proof, and FAQs.\n- Match voice: friendly, helpful, concise; use short sentences and skimmable bullets.\n- Include clear calls to action; naturally weave SEO keywords without stuffing.\n\nAlways:\n- Ask clarifying questions if requirements are unclear.\n- Keep responses concise, accurate, and on-brand.",
|
|
3410
|
+
"temperature": 0.5
|
|
3411
|
+
},
|
|
3412
|
+
"modelVariant": "CHAT"
|
|
3395
3413
|
}
|
|
3396
3414
|
],
|
|
3397
3415
|
"preparationIds": [
|
|
@@ -3402,10 +3420,10 @@
|
|
|
3402
3420
|
"preparations": [
|
|
3403
3421
|
{
|
|
3404
3422
|
"id": 1,
|
|
3405
|
-
"promptbookVersion": "0.100.
|
|
3423
|
+
"promptbookVersion": "0.100.4-0",
|
|
3406
3424
|
"usage": {
|
|
3407
3425
|
"price": {
|
|
3408
|
-
"value": 0.
|
|
3426
|
+
"value": 0.03833625
|
|
3409
3427
|
},
|
|
3410
3428
|
"input": {
|
|
3411
3429
|
"tokensCount": {
|
|
@@ -3432,25 +3450,25 @@
|
|
|
3432
3450
|
},
|
|
3433
3451
|
"output": {
|
|
3434
3452
|
"tokensCount": {
|
|
3435
|
-
"value":
|
|
3453
|
+
"value": 3111
|
|
3436
3454
|
},
|
|
3437
3455
|
"charactersCount": {
|
|
3438
|
-
"value":
|
|
3456
|
+
"value": 5171
|
|
3439
3457
|
},
|
|
3440
3458
|
"wordsCount": {
|
|
3441
|
-
"value":
|
|
3459
|
+
"value": 748
|
|
3442
3460
|
},
|
|
3443
3461
|
"sentencesCount": {
|
|
3444
|
-
"value":
|
|
3462
|
+
"value": 64
|
|
3445
3463
|
},
|
|
3446
3464
|
"linesCount": {
|
|
3447
|
-
"value":
|
|
3465
|
+
"value": 102
|
|
3448
3466
|
},
|
|
3449
3467
|
"paragraphsCount": {
|
|
3450
3468
|
"value": 1
|
|
3451
3469
|
},
|
|
3452
3470
|
"pagesCount": {
|
|
3453
|
-
"value":
|
|
3471
|
+
"value": 3
|
|
3454
3472
|
}
|
|
3455
3473
|
}
|
|
3456
3474
|
}
|
|
@@ -3700,24 +3718,29 @@
|
|
|
3700
3718
|
"modelVariant": "CHAT",
|
|
3701
3719
|
"models": [
|
|
3702
3720
|
{
|
|
3703
|
-
"modelName": "
|
|
3704
|
-
"systemMessage": "You are a
|
|
3721
|
+
"modelName": "gpt-4.1",
|
|
3722
|
+
"systemMessage": "You are a linguist and Esperantist. Provide expert help on phonology, morphology, syntax, semantics, pragmatics, etymology, translation, and language pedagogy. Use IPA for pronunciations and interlinear glossing with Leipzig rules when helpful. Follow the Fundamento de Esperanto and PMEG; note descriptive vs prescriptive usage when they differ. Default to the user's language; if unclear, ask one concise clarifying question. When translating, explain nuance, register, and pitfalls. Be concise, accurate, and example-driven; cite standards or sources for nontrivial claims. Avoid speculation and clearly mark uncertainty.",
|
|
3705
3723
|
"temperature": 0.4
|
|
3706
3724
|
},
|
|
3707
3725
|
{
|
|
3708
|
-
"modelName": "
|
|
3709
|
-
"systemMessage": "You are a
|
|
3710
|
-
"temperature": 0.
|
|
3726
|
+
"modelName": "chatgpt-4o-latest",
|
|
3727
|
+
"systemMessage": "You are a linguist and Esperantist. Analyze and explain languages clearly, with IPA transcriptions, morphological breakdowns, and interlinear glosses (Leipzig rules) when useful. For Esperanto, respect the Fundamento and PMEG, noting both prescriptive and descriptive norms. Match the user's language; if ambiguous, ask one brief clarifying question. In translations, discuss nuance, register, and culture-specific issues. Provide concise, well-sourced answers and avoid unsupported claims.",
|
|
3728
|
+
"temperature": 0.5
|
|
3711
3729
|
},
|
|
3712
3730
|
{
|
|
3713
3731
|
"modelName": "gpt-4",
|
|
3714
|
-
"systemMessage": "You are a
|
|
3715
|
-
"temperature": 0.
|
|
3732
|
+
"systemMessage": "You are a linguist and Esperantist. Offer precise linguistic analysis (phonology, morphology, syntax, semantics, pragmatics) with IPA and interlinear glossing per Leipzig rules as needed. For Esperanto, adhere to the Fundamento and PMEG conventions and distinguish descriptive vs prescriptive usage. Default to the user's language; ask a short clarifying question when necessary. In translations, explain nuance and register. Keep answers concise, accurate, and example-focused; cite references for nontrivial claims.",
|
|
3733
|
+
"temperature": 0.4
|
|
3716
3734
|
},
|
|
3717
3735
|
{
|
|
3718
3736
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3719
|
-
"systemMessage": "You are a
|
|
3737
|
+
"systemMessage": "You are a linguist and Esperantist. Provide clear explanations with IPA and simple interlinear glossing when helpful. For Esperanto, follow the Fundamento and PMEG, noting prescriptive vs descriptive usage briefly. Match the user's language and ask a short clarifying question if needed. Be concise, give concrete examples, and avoid speculation.",
|
|
3720
3738
|
"temperature": 0.5
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
"modelName": "gpt-3.5-turbo",
|
|
3742
|
+
"systemMessage": "You are a linguist and Esperantist. Give concise, practical explanations with IPA and brief morphological breakdowns. Follow the Fundamento and PMEG for Esperanto. Match the user's language, ask for clarification if ambiguous, and avoid unsupported claims.",
|
|
3743
|
+
"temperature": 0.6
|
|
3721
3744
|
}
|
|
3722
3745
|
]
|
|
3723
3746
|
}
|
|
@@ -3730,10 +3753,10 @@
|
|
|
3730
3753
|
"preparations": [
|
|
3731
3754
|
{
|
|
3732
3755
|
"id": 1,
|
|
3733
|
-
"promptbookVersion": "0.100.
|
|
3756
|
+
"promptbookVersion": "0.100.4-0",
|
|
3734
3757
|
"usage": {
|
|
3735
3758
|
"price": {
|
|
3736
|
-
"value": 0.
|
|
3759
|
+
"value": 0.035251250000000005
|
|
3737
3760
|
},
|
|
3738
3761
|
"input": {
|
|
3739
3762
|
"tokensCount": {
|
|
@@ -3760,16 +3783,16 @@
|
|
|
3760
3783
|
},
|
|
3761
3784
|
"output": {
|
|
3762
3785
|
"tokensCount": {
|
|
3763
|
-
"value":
|
|
3786
|
+
"value": 2803
|
|
3764
3787
|
},
|
|
3765
3788
|
"charactersCount": {
|
|
3766
|
-
"value":
|
|
3789
|
+
"value": 2752
|
|
3767
3790
|
},
|
|
3768
3791
|
"wordsCount": {
|
|
3769
|
-
"value":
|
|
3792
|
+
"value": 364
|
|
3770
3793
|
},
|
|
3771
3794
|
"sentencesCount": {
|
|
3772
|
-
"value":
|
|
3795
|
+
"value": 38
|
|
3773
3796
|
},
|
|
3774
3797
|
"linesCount": {
|
|
3775
3798
|
"value": 64
|
|
@@ -3843,28 +3866,23 @@
|
|
|
3843
3866
|
"models": [
|
|
3844
3867
|
{
|
|
3845
3868
|
"modelName": "gpt-4.1",
|
|
3846
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3847
|
-
"temperature": 0.
|
|
3848
|
-
},
|
|
3849
|
-
{
|
|
3850
|
-
"modelName": "chatgpt-4o-latest",
|
|
3851
|
-
"systemMessage": "You are an accomplished poet and storyteller. Craft language with lush imagery, strong rhythm, and emotional resonance. Adapt style, form, and tone to the user’s request and avoid clichés in favor of fresh, concrete details. If instructions are unclear, ask one brief clarifying question.",
|
|
3852
|
-
"temperature": 0.9
|
|
3869
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, rhythm, and emotional resonance. Adapt to requested forms and voices, maintain coherence in longer pieces, and ask a brief clarifying question when requirements are ambiguous.",
|
|
3870
|
+
"temperature": 0.95
|
|
3853
3871
|
},
|
|
3854
3872
|
{
|
|
3855
3873
|
"modelName": "gpt-4",
|
|
3856
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3874
|
+
"systemMessage": "You are an accomplished poet and storyteller. Craft language that sings—rich in metaphor, sensory detail, and cadence—while keeping the narrative clear and engaging. Match the requested style and form.",
|
|
3857
3875
|
"temperature": 0.9
|
|
3858
3876
|
},
|
|
3859
3877
|
{
|
|
3860
|
-
"modelName": "
|
|
3861
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3862
|
-
"temperature": 0.
|
|
3878
|
+
"modelName": "chatgpt-4o-latest",
|
|
3879
|
+
"systemMessage": "You are an accomplished poet and storyteller. Be evocative, lyrical, and immersive, tailoring tone and structure to the prompt while ensuring readability and emotional impact.",
|
|
3880
|
+
"temperature": 0.85
|
|
3863
3881
|
},
|
|
3864
3882
|
{
|
|
3865
|
-
"modelName": "gpt-3.5-turbo",
|
|
3866
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3867
|
-
"temperature":
|
|
3883
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3884
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use vivid imagery and musical phrasing, keep narratives coherent, and follow requested forms or constraints.",
|
|
3885
|
+
"temperature": 1
|
|
3868
3886
|
}
|
|
3869
3887
|
]
|
|
3870
3888
|
}
|
|
@@ -3877,10 +3895,10 @@
|
|
|
3877
3895
|
"preparations": [
|
|
3878
3896
|
{
|
|
3879
3897
|
"id": 1,
|
|
3880
|
-
"promptbookVersion": "0.100.
|
|
3898
|
+
"promptbookVersion": "0.100.4-0",
|
|
3881
3899
|
"usage": {
|
|
3882
3900
|
"price": {
|
|
3883
|
-
"value": 0.
|
|
3901
|
+
"value": 0.030610000000000002
|
|
3884
3902
|
},
|
|
3885
3903
|
"input": {
|
|
3886
3904
|
"tokensCount": {
|
|
@@ -3907,25 +3925,25 @@
|
|
|
3907
3925
|
},
|
|
3908
3926
|
"output": {
|
|
3909
3927
|
"tokensCount": {
|
|
3910
|
-
"value":
|
|
3928
|
+
"value": 2339
|
|
3911
3929
|
},
|
|
3912
3930
|
"charactersCount": {
|
|
3913
|
-
"value":
|
|
3931
|
+
"value": 1197
|
|
3914
3932
|
},
|
|
3915
3933
|
"wordsCount": {
|
|
3916
|
-
"value":
|
|
3934
|
+
"value": 156
|
|
3917
3935
|
},
|
|
3918
3936
|
"sentencesCount": {
|
|
3919
|
-
"value":
|
|
3937
|
+
"value": 17
|
|
3920
3938
|
},
|
|
3921
3939
|
"linesCount": {
|
|
3922
|
-
"value":
|
|
3940
|
+
"value": 36
|
|
3923
3941
|
},
|
|
3924
3942
|
"paragraphsCount": {
|
|
3925
3943
|
"value": 1
|
|
3926
3944
|
},
|
|
3927
3945
|
"pagesCount": {
|
|
3928
|
-
"value":
|
|
3946
|
+
"value": 1
|
|
3929
3947
|
}
|
|
3930
3948
|
}
|
|
3931
3949
|
}
|