@promptbook/templates 0.100.4-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 +174 -146
- 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 +174 -146
- 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/esm/index.es.js
CHANGED
|
@@ -17,7 +17,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
17
17
|
* @generated
|
|
18
18
|
* @see https://github.com/webgptorg/promptbook
|
|
19
19
|
*/
|
|
20
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.
|
|
20
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-0';
|
|
21
21
|
/**
|
|
22
22
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
23
23
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1552,28 +1552,38 @@ function getTemplatesPipelineCollection() {
|
|
|
1552
1552
|
"models": [
|
|
1553
1553
|
{
|
|
1554
1554
|
"modelName": "gpt-4.1",
|
|
1555
|
-
"systemMessage": "You are a
|
|
1556
|
-
"temperature": 0.
|
|
1555
|
+
"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.",
|
|
1556
|
+
"temperature": 0.3
|
|
1557
1557
|
},
|
|
1558
1558
|
{
|
|
1559
1559
|
"modelName": "chatgpt-4o-latest",
|
|
1560
|
-
"systemMessage": "You are a
|
|
1561
|
-
"temperature": 0.
|
|
1560
|
+
"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.",
|
|
1561
|
+
"temperature": 0.5
|
|
1562
1562
|
},
|
|
1563
1563
|
{
|
|
1564
1564
|
"modelName": "o4-mini",
|
|
1565
|
-
"systemMessage": "You are a
|
|
1566
|
-
"temperature": 0.
|
|
1565
|
+
"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.",
|
|
1566
|
+
"temperature": 0.3
|
|
1567
1567
|
},
|
|
1568
1568
|
{
|
|
1569
1569
|
"modelName": "gpt-4",
|
|
1570
|
-
"systemMessage": "You are a
|
|
1571
|
-
"temperature": 0.
|
|
1570
|
+
"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.",
|
|
1571
|
+
"temperature": 0.4
|
|
1572
1572
|
},
|
|
1573
1573
|
{
|
|
1574
1574
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1575
|
-
"systemMessage": "You are a
|
|
1576
|
-
"temperature": 0.
|
|
1575
|
+
"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.",
|
|
1576
|
+
"temperature": 0.4
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"modelName": "o3",
|
|
1580
|
+
"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.",
|
|
1581
|
+
"temperature": 0.2
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"modelName": "gpt-realtime",
|
|
1585
|
+
"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.",
|
|
1586
|
+
"temperature": 0.5
|
|
1577
1587
|
}
|
|
1578
1588
|
]
|
|
1579
1589
|
}
|
|
@@ -1586,10 +1596,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1586
1596
|
"preparations": [
|
|
1587
1597
|
{
|
|
1588
1598
|
"id": 1,
|
|
1589
|
-
"promptbookVersion": "0.100.
|
|
1599
|
+
"promptbookVersion": "0.100.4-0",
|
|
1590
1600
|
"usage": {
|
|
1591
1601
|
"price": {
|
|
1592
|
-
"value": 0.
|
|
1602
|
+
"value": 0.03421250000000001
|
|
1593
1603
|
},
|
|
1594
1604
|
"input": {
|
|
1595
1605
|
"tokensCount": {
|
|
@@ -1616,19 +1626,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1616
1626
|
},
|
|
1617
1627
|
"output": {
|
|
1618
1628
|
"tokensCount": {
|
|
1619
|
-
"value":
|
|
1629
|
+
"value": 2699
|
|
1620
1630
|
},
|
|
1621
1631
|
"charactersCount": {
|
|
1622
|
-
"value":
|
|
1632
|
+
"value": 3044
|
|
1623
1633
|
},
|
|
1624
1634
|
"wordsCount": {
|
|
1625
|
-
"value":
|
|
1635
|
+
"value": 390
|
|
1626
1636
|
},
|
|
1627
1637
|
"sentencesCount": {
|
|
1628
|
-
"value":
|
|
1638
|
+
"value": 41
|
|
1629
1639
|
},
|
|
1630
1640
|
"linesCount": {
|
|
1631
|
-
"value":
|
|
1641
|
+
"value": 75
|
|
1632
1642
|
},
|
|
1633
1643
|
"paragraphsCount": {
|
|
1634
1644
|
"value": 1
|
|
@@ -2117,28 +2127,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2117
2127
|
"models": [
|
|
2118
2128
|
{
|
|
2119
2129
|
"modelName": "gpt-4.1",
|
|
2120
|
-
"systemMessage": "You are a
|
|
2121
|
-
"temperature": 0.
|
|
2130
|
+
"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.",
|
|
2131
|
+
"temperature": 0.3
|
|
2122
2132
|
},
|
|
2123
2133
|
{
|
|
2124
2134
|
"modelName": "chatgpt-4o-latest",
|
|
2125
|
-
"systemMessage": "You are a
|
|
2126
|
-
"temperature": 0.
|
|
2135
|
+
"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.",
|
|
2136
|
+
"temperature": 0.5
|
|
2127
2137
|
},
|
|
2128
2138
|
{
|
|
2129
2139
|
"modelName": "o4-mini",
|
|
2130
|
-
"systemMessage": "You are a
|
|
2131
|
-
"temperature": 0.
|
|
2140
|
+
"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.",
|
|
2141
|
+
"temperature": 0.3
|
|
2132
2142
|
},
|
|
2133
2143
|
{
|
|
2134
2144
|
"modelName": "gpt-4",
|
|
2135
|
-
"systemMessage": "You are a
|
|
2136
|
-
"temperature": 0.
|
|
2145
|
+
"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.",
|
|
2146
|
+
"temperature": 0.4
|
|
2137
2147
|
},
|
|
2138
2148
|
{
|
|
2139
2149
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2140
|
-
"systemMessage": "You are a
|
|
2141
|
-
"temperature": 0.
|
|
2150
|
+
"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.",
|
|
2151
|
+
"temperature": 0.4
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
"modelName": "o3",
|
|
2155
|
+
"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.",
|
|
2156
|
+
"temperature": 0.2
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
"modelName": "gpt-realtime",
|
|
2160
|
+
"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.",
|
|
2161
|
+
"temperature": 0.5
|
|
2142
2162
|
}
|
|
2143
2163
|
]
|
|
2144
2164
|
}
|
|
@@ -2151,10 +2171,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2151
2171
|
"preparations": [
|
|
2152
2172
|
{
|
|
2153
2173
|
"id": 1,
|
|
2154
|
-
"promptbookVersion": "0.100.
|
|
2174
|
+
"promptbookVersion": "0.100.4-0",
|
|
2155
2175
|
"usage": {
|
|
2156
2176
|
"price": {
|
|
2157
|
-
"value": 0.
|
|
2177
|
+
"value": 0.03421250000000001
|
|
2158
2178
|
},
|
|
2159
2179
|
"input": {
|
|
2160
2180
|
"tokensCount": {
|
|
@@ -2181,19 +2201,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2181
2201
|
},
|
|
2182
2202
|
"output": {
|
|
2183
2203
|
"tokensCount": {
|
|
2184
|
-
"value":
|
|
2204
|
+
"value": 2699
|
|
2185
2205
|
},
|
|
2186
2206
|
"charactersCount": {
|
|
2187
|
-
"value":
|
|
2207
|
+
"value": 3044
|
|
2188
2208
|
},
|
|
2189
2209
|
"wordsCount": {
|
|
2190
|
-
"value":
|
|
2210
|
+
"value": 390
|
|
2191
2211
|
},
|
|
2192
2212
|
"sentencesCount": {
|
|
2193
|
-
"value":
|
|
2213
|
+
"value": 41
|
|
2194
2214
|
},
|
|
2195
2215
|
"linesCount": {
|
|
2196
|
-
"value":
|
|
2216
|
+
"value": 75
|
|
2197
2217
|
},
|
|
2198
2218
|
"paragraphsCount": {
|
|
2199
2219
|
"value": 1
|
|
@@ -2823,22 +2843,27 @@ function getTemplatesPipelineCollection() {
|
|
|
2823
2843
|
"models": [
|
|
2824
2844
|
{
|
|
2825
2845
|
"modelName": "gpt-4.1",
|
|
2826
|
-
"systemMessage": "You are a professional linguist and
|
|
2846
|
+
"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.",
|
|
2827
2847
|
"temperature": 0.2
|
|
2828
2848
|
},
|
|
2829
2849
|
{
|
|
2830
2850
|
"modelName": "gpt-4",
|
|
2831
|
-
"systemMessage": "You are a professional linguist and
|
|
2851
|
+
"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.",
|
|
2832
2852
|
"temperature": 0.2
|
|
2833
2853
|
},
|
|
2834
2854
|
{
|
|
2835
2855
|
"modelName": "chatgpt-4o-latest",
|
|
2836
|
-
"systemMessage": "You are a professional linguist and
|
|
2856
|
+
"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.",
|
|
2837
2857
|
"temperature": 0.3
|
|
2838
2858
|
},
|
|
2839
2859
|
{
|
|
2840
2860
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2841
|
-
"systemMessage": "You are a professional linguist and
|
|
2861
|
+
"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.",
|
|
2862
|
+
"temperature": 0.2
|
|
2863
|
+
},
|
|
2864
|
+
{
|
|
2865
|
+
"modelName": "gpt-3.5-turbo",
|
|
2866
|
+
"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.",
|
|
2842
2867
|
"temperature": 0.2
|
|
2843
2868
|
}
|
|
2844
2869
|
]
|
|
@@ -2852,10 +2877,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2852
2877
|
"preparations": [
|
|
2853
2878
|
{
|
|
2854
2879
|
"id": 1,
|
|
2855
|
-
"promptbookVersion": "0.100.
|
|
2880
|
+
"promptbookVersion": "0.100.4-0",
|
|
2856
2881
|
"usage": {
|
|
2857
2882
|
"price": {
|
|
2858
|
-
"value": 0.
|
|
2883
|
+
"value": 0.03258125
|
|
2859
2884
|
},
|
|
2860
2885
|
"input": {
|
|
2861
2886
|
"tokensCount": {
|
|
@@ -2882,19 +2907,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2882
2907
|
},
|
|
2883
2908
|
"output": {
|
|
2884
2909
|
"tokensCount": {
|
|
2885
|
-
"value":
|
|
2910
|
+
"value": 2536
|
|
2886
2911
|
},
|
|
2887
2912
|
"charactersCount": {
|
|
2888
|
-
"value":
|
|
2913
|
+
"value": 3034
|
|
2889
2914
|
},
|
|
2890
2915
|
"wordsCount": {
|
|
2891
|
-
"value":
|
|
2916
|
+
"value": 423
|
|
2892
2917
|
},
|
|
2893
2918
|
"sentencesCount": {
|
|
2894
|
-
"value":
|
|
2919
|
+
"value": 44
|
|
2895
2920
|
},
|
|
2896
2921
|
"linesCount": {
|
|
2897
|
-
"value":
|
|
2922
|
+
"value": 69
|
|
2898
2923
|
},
|
|
2899
2924
|
"paragraphsCount": {
|
|
2900
2925
|
"value": 1
|
|
@@ -2966,23 +2991,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2966
2991
|
"models": [
|
|
2967
2992
|
{
|
|
2968
2993
|
"modelName": "gpt-4.1",
|
|
2969
|
-
"systemMessage": "You are a skilled
|
|
2970
|
-
"temperature": 0.
|
|
2994
|
+
"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.",
|
|
2995
|
+
"temperature": 0.65
|
|
2971
2996
|
},
|
|
2972
2997
|
{
|
|
2973
2998
|
"modelName": "chatgpt-4o-latest",
|
|
2974
|
-
"systemMessage": "You are a skilled
|
|
2975
|
-
"temperature": 0.
|
|
2999
|
+
"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.",
|
|
3000
|
+
"temperature": 0.8
|
|
2976
3001
|
},
|
|
2977
3002
|
{
|
|
2978
3003
|
"modelName": "gpt-4",
|
|
2979
|
-
"systemMessage": "You are
|
|
2980
|
-
"temperature": 0.
|
|
3004
|
+
"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.",
|
|
3005
|
+
"temperature": 0.7
|
|
2981
3006
|
},
|
|
2982
3007
|
{
|
|
2983
3008
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2984
|
-
"systemMessage": "You are a skilled
|
|
2985
|
-
"temperature": 0.
|
|
3009
|
+
"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.",
|
|
3010
|
+
"temperature": 0.7
|
|
2986
3011
|
}
|
|
2987
3012
|
]
|
|
2988
3013
|
}
|
|
@@ -2995,10 +3020,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2995
3020
|
"preparations": [
|
|
2996
3021
|
{
|
|
2997
3022
|
"id": 1,
|
|
2998
|
-
"promptbookVersion": "0.100.
|
|
3023
|
+
"promptbookVersion": "0.100.4-0",
|
|
2999
3024
|
"usage": {
|
|
3000
3025
|
"price": {
|
|
3001
|
-
"value": 0.
|
|
3026
|
+
"value": 0.02755125
|
|
3002
3027
|
},
|
|
3003
3028
|
"input": {
|
|
3004
3029
|
"tokensCount": {
|
|
@@ -3025,19 +3050,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3025
3050
|
},
|
|
3026
3051
|
"output": {
|
|
3027
3052
|
"tokensCount": {
|
|
3028
|
-
"value":
|
|
3053
|
+
"value": 2033
|
|
3029
3054
|
},
|
|
3030
3055
|
"charactersCount": {
|
|
3031
|
-
"value":
|
|
3056
|
+
"value": 2269
|
|
3032
3057
|
},
|
|
3033
3058
|
"wordsCount": {
|
|
3034
|
-
"value":
|
|
3059
|
+
"value": 310
|
|
3035
3060
|
},
|
|
3036
3061
|
"sentencesCount": {
|
|
3037
|
-
"value":
|
|
3062
|
+
"value": 29
|
|
3038
3063
|
},
|
|
3039
3064
|
"linesCount": {
|
|
3040
|
-
"value":
|
|
3065
|
+
"value": 54
|
|
3041
3066
|
},
|
|
3042
3067
|
"paragraphsCount": {
|
|
3043
3068
|
"value": 1
|
|
@@ -3091,7 +3116,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3091
3116
|
"preparations": [
|
|
3092
3117
|
{
|
|
3093
3118
|
"id": 1,
|
|
3094
|
-
"promptbookVersion": "0.100.
|
|
3119
|
+
"promptbookVersion": "0.100.4-0",
|
|
3095
3120
|
"usage": {
|
|
3096
3121
|
"price": {
|
|
3097
3122
|
"value": 0
|
|
@@ -3200,22 +3225,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3200
3225
|
"models": [
|
|
3201
3226
|
{
|
|
3202
3227
|
"modelName": "gpt-4.1",
|
|
3203
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3228
|
+
"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.",
|
|
3204
3229
|
"temperature": 0.4
|
|
3205
3230
|
},
|
|
3206
3231
|
{
|
|
3207
3232
|
"modelName": "chatgpt-4o-latest",
|
|
3208
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3209
|
-
"temperature": 0.
|
|
3233
|
+
"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.",
|
|
3234
|
+
"temperature": 0.5
|
|
3210
3235
|
},
|
|
3211
3236
|
{
|
|
3212
3237
|
"modelName": "gpt-4",
|
|
3213
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3238
|
+
"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.",
|
|
3214
3239
|
"temperature": 0.4
|
|
3215
3240
|
},
|
|
3216
3241
|
{
|
|
3217
3242
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3218
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide
|
|
3243
|
+
"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.",
|
|
3244
|
+
"temperature": 0.5
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3248
|
+
"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.",
|
|
3219
3249
|
"temperature": 0.5
|
|
3220
3250
|
}
|
|
3221
3251
|
]
|
|
@@ -3229,10 +3259,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3229
3259
|
"preparations": [
|
|
3230
3260
|
{
|
|
3231
3261
|
"id": 1,
|
|
3232
|
-
"promptbookVersion": "0.100.
|
|
3262
|
+
"promptbookVersion": "0.100.4-0",
|
|
3233
3263
|
"usage": {
|
|
3234
3264
|
"price": {
|
|
3235
|
-
"value": 0.
|
|
3265
|
+
"value": 0.04375125
|
|
3236
3266
|
},
|
|
3237
3267
|
"input": {
|
|
3238
3268
|
"tokensCount": {
|
|
@@ -3259,25 +3289,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3259
3289
|
},
|
|
3260
3290
|
"output": {
|
|
3261
3291
|
"tokensCount": {
|
|
3262
|
-
"value":
|
|
3292
|
+
"value": 3653
|
|
3263
3293
|
},
|
|
3264
3294
|
"charactersCount": {
|
|
3265
|
-
"value":
|
|
3295
|
+
"value": 4959
|
|
3266
3296
|
},
|
|
3267
3297
|
"wordsCount": {
|
|
3268
|
-
"value":
|
|
3298
|
+
"value": 644
|
|
3269
3299
|
},
|
|
3270
3300
|
"sentencesCount": {
|
|
3271
|
-
"value":
|
|
3301
|
+
"value": 59
|
|
3272
3302
|
},
|
|
3273
3303
|
"linesCount": {
|
|
3274
|
-
"value":
|
|
3304
|
+
"value": 99
|
|
3275
3305
|
},
|
|
3276
3306
|
"paragraphsCount": {
|
|
3277
3307
|
"value": 1
|
|
3278
3308
|
},
|
|
3279
3309
|
"pagesCount": {
|
|
3280
|
-
"value":
|
|
3310
|
+
"value": 3
|
|
3281
3311
|
}
|
|
3282
3312
|
}
|
|
3283
3313
|
}
|
|
@@ -3347,34 +3377,32 @@ function getTemplatesPipelineCollection() {
|
|
|
3347
3377
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3348
3378
|
"modelsRequirements": [
|
|
3349
3379
|
{
|
|
3350
|
-
"
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
}
|
|
3377
|
-
]
|
|
3380
|
+
"0": {
|
|
3381
|
+
"modelName": "gpt-4.1",
|
|
3382
|
+
"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.",
|
|
3383
|
+
"temperature": 0.4
|
|
3384
|
+
},
|
|
3385
|
+
"1": {
|
|
3386
|
+
"modelName": "chatgpt-4o-latest",
|
|
3387
|
+
"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.",
|
|
3388
|
+
"temperature": 0.4
|
|
3389
|
+
},
|
|
3390
|
+
"2": {
|
|
3391
|
+
"modelName": "gpt-4",
|
|
3392
|
+
"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.",
|
|
3393
|
+
"temperature": 0.4
|
|
3394
|
+
},
|
|
3395
|
+
"3": {
|
|
3396
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3397
|
+
"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.",
|
|
3398
|
+
"temperature": 0.5
|
|
3399
|
+
},
|
|
3400
|
+
"4": {
|
|
3401
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3402
|
+
"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.",
|
|
3403
|
+
"temperature": 0.5
|
|
3404
|
+
},
|
|
3405
|
+
"modelVariant": "CHAT"
|
|
3378
3406
|
}
|
|
3379
3407
|
],
|
|
3380
3408
|
"preparationIds": [
|
|
@@ -3385,10 +3413,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3385
3413
|
"preparations": [
|
|
3386
3414
|
{
|
|
3387
3415
|
"id": 1,
|
|
3388
|
-
"promptbookVersion": "0.100.
|
|
3416
|
+
"promptbookVersion": "0.100.4-0",
|
|
3389
3417
|
"usage": {
|
|
3390
3418
|
"price": {
|
|
3391
|
-
"value": 0.
|
|
3419
|
+
"value": 0.03833625
|
|
3392
3420
|
},
|
|
3393
3421
|
"input": {
|
|
3394
3422
|
"tokensCount": {
|
|
@@ -3415,19 +3443,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3415
3443
|
},
|
|
3416
3444
|
"output": {
|
|
3417
3445
|
"tokensCount": {
|
|
3418
|
-
"value":
|
|
3446
|
+
"value": 3111
|
|
3419
3447
|
},
|
|
3420
3448
|
"charactersCount": {
|
|
3421
|
-
"value":
|
|
3449
|
+
"value": 5171
|
|
3422
3450
|
},
|
|
3423
3451
|
"wordsCount": {
|
|
3424
|
-
"value":
|
|
3452
|
+
"value": 748
|
|
3425
3453
|
},
|
|
3426
3454
|
"sentencesCount": {
|
|
3427
|
-
"value":
|
|
3455
|
+
"value": 64
|
|
3428
3456
|
},
|
|
3429
3457
|
"linesCount": {
|
|
3430
|
-
"value":
|
|
3458
|
+
"value": 102
|
|
3431
3459
|
},
|
|
3432
3460
|
"paragraphsCount": {
|
|
3433
3461
|
"value": 1
|
|
@@ -3684,28 +3712,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3684
3712
|
"models": [
|
|
3685
3713
|
{
|
|
3686
3714
|
"modelName": "gpt-4.1",
|
|
3687
|
-
"systemMessage": "You are a
|
|
3688
|
-
"temperature": 0.
|
|
3715
|
+
"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.",
|
|
3716
|
+
"temperature": 0.4
|
|
3689
3717
|
},
|
|
3690
3718
|
{
|
|
3691
|
-
"modelName": "
|
|
3692
|
-
"systemMessage": "You are a
|
|
3693
|
-
"temperature": 0.
|
|
3719
|
+
"modelName": "chatgpt-4o-latest",
|
|
3720
|
+
"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.",
|
|
3721
|
+
"temperature": 0.5
|
|
3694
3722
|
},
|
|
3695
3723
|
{
|
|
3696
|
-
"modelName": "
|
|
3697
|
-
"systemMessage": "You are a
|
|
3724
|
+
"modelName": "gpt-4",
|
|
3725
|
+
"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.",
|
|
3698
3726
|
"temperature": 0.4
|
|
3699
3727
|
},
|
|
3700
3728
|
{
|
|
3701
|
-
"modelName": "
|
|
3702
|
-
"systemMessage": "You are a
|
|
3703
|
-
"temperature": 0.
|
|
3729
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3730
|
+
"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.",
|
|
3731
|
+
"temperature": 0.5
|
|
3704
3732
|
},
|
|
3705
3733
|
{
|
|
3706
|
-
"modelName": "gpt-3.5-turbo
|
|
3707
|
-
"systemMessage": "You are a
|
|
3708
|
-
"temperature": 0.
|
|
3734
|
+
"modelName": "gpt-3.5-turbo",
|
|
3735
|
+
"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.",
|
|
3736
|
+
"temperature": 0.6
|
|
3709
3737
|
}
|
|
3710
3738
|
]
|
|
3711
3739
|
}
|
|
@@ -3718,10 +3746,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3718
3746
|
"preparations": [
|
|
3719
3747
|
{
|
|
3720
3748
|
"id": 1,
|
|
3721
|
-
"promptbookVersion": "0.100.
|
|
3749
|
+
"promptbookVersion": "0.100.4-0",
|
|
3722
3750
|
"usage": {
|
|
3723
3751
|
"price": {
|
|
3724
|
-
"value": 0.
|
|
3752
|
+
"value": 0.035251250000000005
|
|
3725
3753
|
},
|
|
3726
3754
|
"input": {
|
|
3727
3755
|
"tokensCount": {
|
|
@@ -3748,19 +3776,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3748
3776
|
},
|
|
3749
3777
|
"output": {
|
|
3750
3778
|
"tokensCount": {
|
|
3751
|
-
"value":
|
|
3779
|
+
"value": 2803
|
|
3752
3780
|
},
|
|
3753
3781
|
"charactersCount": {
|
|
3754
|
-
"value":
|
|
3782
|
+
"value": 2752
|
|
3755
3783
|
},
|
|
3756
3784
|
"wordsCount": {
|
|
3757
|
-
"value":
|
|
3785
|
+
"value": 364
|
|
3758
3786
|
},
|
|
3759
3787
|
"sentencesCount": {
|
|
3760
|
-
"value":
|
|
3788
|
+
"value": 38
|
|
3761
3789
|
},
|
|
3762
3790
|
"linesCount": {
|
|
3763
|
-
"value":
|
|
3791
|
+
"value": 64
|
|
3764
3792
|
},
|
|
3765
3793
|
"paragraphsCount": {
|
|
3766
3794
|
"value": 1
|
|
@@ -3831,23 +3859,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3831
3859
|
"models": [
|
|
3832
3860
|
{
|
|
3833
3861
|
"modelName": "gpt-4.1",
|
|
3834
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3835
|
-
"temperature": 0.95
|
|
3836
|
-
},
|
|
3837
|
-
{
|
|
3838
|
-
"modelName": "chatgpt-4o-latest",
|
|
3839
|
-
"systemMessage": "You are an accomplished poet and storyteller and a helpful assistant. Craft lyrical, original writing with strong voice and sensory detail. Adjust style to the user's needs, keep coherence, and eschew clichés.",
|
|
3862
|
+
"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.",
|
|
3840
3863
|
"temperature": 0.95
|
|
3841
3864
|
},
|
|
3842
3865
|
{
|
|
3843
3866
|
"modelName": "gpt-4",
|
|
3844
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3867
|
+
"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.",
|
|
3845
3868
|
"temperature": 0.9
|
|
3846
3869
|
},
|
|
3847
3870
|
{
|
|
3848
|
-
"modelName": "
|
|
3849
|
-
"systemMessage": "You are an accomplished poet and storyteller
|
|
3871
|
+
"modelName": "chatgpt-4o-latest",
|
|
3872
|
+
"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.",
|
|
3850
3873
|
"temperature": 0.85
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3877
|
+
"systemMessage": "You are an accomplished poet and storyteller. Use vivid imagery and musical phrasing, keep narratives coherent, and follow requested forms or constraints.",
|
|
3878
|
+
"temperature": 1
|
|
3851
3879
|
}
|
|
3852
3880
|
]
|
|
3853
3881
|
}
|
|
@@ -3860,10 +3888,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3860
3888
|
"preparations": [
|
|
3861
3889
|
{
|
|
3862
3890
|
"id": 1,
|
|
3863
|
-
"promptbookVersion": "0.100.
|
|
3891
|
+
"promptbookVersion": "0.100.4-0",
|
|
3864
3892
|
"usage": {
|
|
3865
3893
|
"price": {
|
|
3866
|
-
"value": 0.
|
|
3894
|
+
"value": 0.030610000000000002
|
|
3867
3895
|
},
|
|
3868
3896
|
"input": {
|
|
3869
3897
|
"tokensCount": {
|
|
@@ -3890,19 +3918,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3890
3918
|
},
|
|
3891
3919
|
"output": {
|
|
3892
3920
|
"tokensCount": {
|
|
3893
|
-
"value":
|
|
3921
|
+
"value": 2339
|
|
3894
3922
|
},
|
|
3895
3923
|
"charactersCount": {
|
|
3896
|
-
"value":
|
|
3924
|
+
"value": 1197
|
|
3897
3925
|
},
|
|
3898
3926
|
"wordsCount": {
|
|
3899
|
-
"value":
|
|
3927
|
+
"value": 156
|
|
3900
3928
|
},
|
|
3901
3929
|
"sentencesCount": {
|
|
3902
|
-
"value":
|
|
3930
|
+
"value": 17
|
|
3903
3931
|
},
|
|
3904
3932
|
"linesCount": {
|
|
3905
|
-
"value":
|
|
3933
|
+
"value": 36
|
|
3906
3934
|
},
|
|
3907
3935
|
"paragraphsCount": {
|
|
3908
3936
|
"value": 1
|