@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/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,33 +1552,38 @@ function getTemplatesPipelineCollection() {
|
|
|
1552
1552
|
"models": [
|
|
1553
1553
|
{
|
|
1554
1554
|
"modelName": "gpt-4.1",
|
|
1555
|
-
"systemMessage": "You are a
|
|
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
1556
|
"temperature": 0.3
|
|
1557
1557
|
},
|
|
1558
1558
|
{
|
|
1559
1559
|
"modelName": "chatgpt-4o-latest",
|
|
1560
|
-
"systemMessage": "You are a
|
|
1561
|
-
"temperature": 0.
|
|
1562
|
-
},
|
|
1563
|
-
{
|
|
1564
|
-
"modelName": "gpt-realtime",
|
|
1565
|
-
"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.",
|
|
1566
|
-
"temperature": 0.2
|
|
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
|
|
1567
1562
|
},
|
|
1568
1563
|
{
|
|
1569
1564
|
"modelName": "o4-mini",
|
|
1570
|
-
"systemMessage": "You are a
|
|
1571
|
-
"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
|
|
1572
1567
|
},
|
|
1573
1568
|
{
|
|
1574
1569
|
"modelName": "gpt-4",
|
|
1575
|
-
"systemMessage": "You are
|
|
1576
|
-
"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
|
|
1577
1572
|
},
|
|
1578
1573
|
{
|
|
1579
1574
|
"modelName": "gpt-3.5-turbo-16k",
|
|
1580
|
-
"systemMessage": "You are a cost-efficient
|
|
1581
|
-
"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
|
|
1582
1587
|
}
|
|
1583
1588
|
]
|
|
1584
1589
|
}
|
|
@@ -1591,10 +1596,10 @@ function getTemplatesPipelineCollection() {
|
|
|
1591
1596
|
"preparations": [
|
|
1592
1597
|
{
|
|
1593
1598
|
"id": 1,
|
|
1594
|
-
"promptbookVersion": "0.100.
|
|
1599
|
+
"promptbookVersion": "0.100.4-0",
|
|
1595
1600
|
"usage": {
|
|
1596
1601
|
"price": {
|
|
1597
|
-
"value": 0.
|
|
1602
|
+
"value": 0.03421250000000001
|
|
1598
1603
|
},
|
|
1599
1604
|
"input": {
|
|
1600
1605
|
"tokensCount": {
|
|
@@ -1621,19 +1626,19 @@ function getTemplatesPipelineCollection() {
|
|
|
1621
1626
|
},
|
|
1622
1627
|
"output": {
|
|
1623
1628
|
"tokensCount": {
|
|
1624
|
-
"value":
|
|
1629
|
+
"value": 2699
|
|
1625
1630
|
},
|
|
1626
1631
|
"charactersCount": {
|
|
1627
|
-
"value":
|
|
1632
|
+
"value": 3044
|
|
1628
1633
|
},
|
|
1629
1634
|
"wordsCount": {
|
|
1630
|
-
"value":
|
|
1635
|
+
"value": 390
|
|
1631
1636
|
},
|
|
1632
1637
|
"sentencesCount": {
|
|
1633
|
-
"value":
|
|
1638
|
+
"value": 41
|
|
1634
1639
|
},
|
|
1635
1640
|
"linesCount": {
|
|
1636
|
-
"value":
|
|
1641
|
+
"value": 75
|
|
1637
1642
|
},
|
|
1638
1643
|
"paragraphsCount": {
|
|
1639
1644
|
"value": 1
|
|
@@ -2122,33 +2127,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2122
2127
|
"models": [
|
|
2123
2128
|
{
|
|
2124
2129
|
"modelName": "gpt-4.1",
|
|
2125
|
-
"systemMessage": "You are a
|
|
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.",
|
|
2126
2131
|
"temperature": 0.3
|
|
2127
2132
|
},
|
|
2128
2133
|
{
|
|
2129
2134
|
"modelName": "chatgpt-4o-latest",
|
|
2130
|
-
"systemMessage": "You are a
|
|
2131
|
-
"temperature": 0.
|
|
2132
|
-
},
|
|
2133
|
-
{
|
|
2134
|
-
"modelName": "gpt-realtime",
|
|
2135
|
-
"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.",
|
|
2136
|
-
"temperature": 0.2
|
|
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
|
|
2137
2137
|
},
|
|
2138
2138
|
{
|
|
2139
2139
|
"modelName": "o4-mini",
|
|
2140
|
-
"systemMessage": "You are a
|
|
2141
|
-
"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
|
|
2142
2142
|
},
|
|
2143
2143
|
{
|
|
2144
2144
|
"modelName": "gpt-4",
|
|
2145
|
-
"systemMessage": "You are
|
|
2146
|
-
"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
|
|
2147
2147
|
},
|
|
2148
2148
|
{
|
|
2149
2149
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2150
|
-
"systemMessage": "You are a cost-efficient
|
|
2151
|
-
"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
|
|
2152
2162
|
}
|
|
2153
2163
|
]
|
|
2154
2164
|
}
|
|
@@ -2161,10 +2171,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2161
2171
|
"preparations": [
|
|
2162
2172
|
{
|
|
2163
2173
|
"id": 1,
|
|
2164
|
-
"promptbookVersion": "0.100.
|
|
2174
|
+
"promptbookVersion": "0.100.4-0",
|
|
2165
2175
|
"usage": {
|
|
2166
2176
|
"price": {
|
|
2167
|
-
"value": 0.
|
|
2177
|
+
"value": 0.03421250000000001
|
|
2168
2178
|
},
|
|
2169
2179
|
"input": {
|
|
2170
2180
|
"tokensCount": {
|
|
@@ -2191,19 +2201,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2191
2201
|
},
|
|
2192
2202
|
"output": {
|
|
2193
2203
|
"tokensCount": {
|
|
2194
|
-
"value":
|
|
2204
|
+
"value": 2699
|
|
2195
2205
|
},
|
|
2196
2206
|
"charactersCount": {
|
|
2197
|
-
"value":
|
|
2207
|
+
"value": 3044
|
|
2198
2208
|
},
|
|
2199
2209
|
"wordsCount": {
|
|
2200
|
-
"value":
|
|
2210
|
+
"value": 390
|
|
2201
2211
|
},
|
|
2202
2212
|
"sentencesCount": {
|
|
2203
|
-
"value":
|
|
2213
|
+
"value": 41
|
|
2204
2214
|
},
|
|
2205
2215
|
"linesCount": {
|
|
2206
|
-
"value":
|
|
2216
|
+
"value": 75
|
|
2207
2217
|
},
|
|
2208
2218
|
"paragraphsCount": {
|
|
2209
2219
|
"value": 1
|
|
@@ -2833,23 +2843,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2833
2843
|
"models": [
|
|
2834
2844
|
{
|
|
2835
2845
|
"modelName": "gpt-4.1",
|
|
2836
|
-
"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.",
|
|
2837
2847
|
"temperature": 0.2
|
|
2838
2848
|
},
|
|
2839
2849
|
{
|
|
2840
|
-
"modelName": "
|
|
2841
|
-
"systemMessage": "You are a professional linguist and
|
|
2850
|
+
"modelName": "gpt-4",
|
|
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.",
|
|
2842
2852
|
"temperature": 0.2
|
|
2843
2853
|
},
|
|
2844
2854
|
{
|
|
2845
|
-
"modelName": "
|
|
2846
|
-
"systemMessage": "You are a linguist and
|
|
2847
|
-
"temperature": 0.
|
|
2855
|
+
"modelName": "chatgpt-4o-latest",
|
|
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.",
|
|
2857
|
+
"temperature": 0.3
|
|
2848
2858
|
},
|
|
2849
2859
|
{
|
|
2850
2860
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2851
|
-
"systemMessage": "You are a
|
|
2852
|
-
"temperature": 0.
|
|
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.",
|
|
2867
|
+
"temperature": 0.2
|
|
2853
2868
|
}
|
|
2854
2869
|
]
|
|
2855
2870
|
}
|
|
@@ -2862,10 +2877,10 @@ function getTemplatesPipelineCollection() {
|
|
|
2862
2877
|
"preparations": [
|
|
2863
2878
|
{
|
|
2864
2879
|
"id": 1,
|
|
2865
|
-
"promptbookVersion": "0.100.
|
|
2880
|
+
"promptbookVersion": "0.100.4-0",
|
|
2866
2881
|
"usage": {
|
|
2867
2882
|
"price": {
|
|
2868
|
-
"value": 0.
|
|
2883
|
+
"value": 0.03258125
|
|
2869
2884
|
},
|
|
2870
2885
|
"input": {
|
|
2871
2886
|
"tokensCount": {
|
|
@@ -2892,19 +2907,19 @@ function getTemplatesPipelineCollection() {
|
|
|
2892
2907
|
},
|
|
2893
2908
|
"output": {
|
|
2894
2909
|
"tokensCount": {
|
|
2895
|
-
"value":
|
|
2910
|
+
"value": 2536
|
|
2896
2911
|
},
|
|
2897
2912
|
"charactersCount": {
|
|
2898
|
-
"value":
|
|
2913
|
+
"value": 3034
|
|
2899
2914
|
},
|
|
2900
2915
|
"wordsCount": {
|
|
2901
|
-
"value":
|
|
2916
|
+
"value": 423
|
|
2902
2917
|
},
|
|
2903
2918
|
"sentencesCount": {
|
|
2904
|
-
"value":
|
|
2919
|
+
"value": 44
|
|
2905
2920
|
},
|
|
2906
2921
|
"linesCount": {
|
|
2907
|
-
"value":
|
|
2922
|
+
"value": 69
|
|
2908
2923
|
},
|
|
2909
2924
|
"paragraphsCount": {
|
|
2910
2925
|
"value": 1
|
|
@@ -2976,22 +2991,22 @@ function getTemplatesPipelineCollection() {
|
|
|
2976
2991
|
"models": [
|
|
2977
2992
|
{
|
|
2978
2993
|
"modelName": "gpt-4.1",
|
|
2979
|
-
"systemMessage": "You are a skilled e
|
|
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.",
|
|
2980
2995
|
"temperature": 0.65
|
|
2981
2996
|
},
|
|
2982
2997
|
{
|
|
2983
2998
|
"modelName": "chatgpt-4o-latest",
|
|
2984
|
-
"systemMessage": "You are a skilled e
|
|
2985
|
-
"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
|
|
2986
3001
|
},
|
|
2987
3002
|
{
|
|
2988
3003
|
"modelName": "gpt-4",
|
|
2989
|
-
"systemMessage": "You are
|
|
2990
|
-
"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
|
|
2991
3006
|
},
|
|
2992
3007
|
{
|
|
2993
3008
|
"modelName": "gpt-3.5-turbo-16k",
|
|
2994
|
-
"systemMessage": "You are a skilled e
|
|
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.",
|
|
2995
3010
|
"temperature": 0.7
|
|
2996
3011
|
}
|
|
2997
3012
|
]
|
|
@@ -3005,10 +3020,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3005
3020
|
"preparations": [
|
|
3006
3021
|
{
|
|
3007
3022
|
"id": 1,
|
|
3008
|
-
"promptbookVersion": "0.100.
|
|
3023
|
+
"promptbookVersion": "0.100.4-0",
|
|
3009
3024
|
"usage": {
|
|
3010
3025
|
"price": {
|
|
3011
|
-
"value": 0.
|
|
3026
|
+
"value": 0.02755125
|
|
3012
3027
|
},
|
|
3013
3028
|
"input": {
|
|
3014
3029
|
"tokensCount": {
|
|
@@ -3035,19 +3050,19 @@ function getTemplatesPipelineCollection() {
|
|
|
3035
3050
|
},
|
|
3036
3051
|
"output": {
|
|
3037
3052
|
"tokensCount": {
|
|
3038
|
-
"value":
|
|
3053
|
+
"value": 2033
|
|
3039
3054
|
},
|
|
3040
3055
|
"charactersCount": {
|
|
3041
|
-
"value":
|
|
3056
|
+
"value": 2269
|
|
3042
3057
|
},
|
|
3043
3058
|
"wordsCount": {
|
|
3044
|
-
"value":
|
|
3059
|
+
"value": 310
|
|
3045
3060
|
},
|
|
3046
3061
|
"sentencesCount": {
|
|
3047
|
-
"value":
|
|
3062
|
+
"value": 29
|
|
3048
3063
|
},
|
|
3049
3064
|
"linesCount": {
|
|
3050
|
-
"value":
|
|
3065
|
+
"value": 54
|
|
3051
3066
|
},
|
|
3052
3067
|
"paragraphsCount": {
|
|
3053
3068
|
"value": 1
|
|
@@ -3101,7 +3116,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3101
3116
|
"preparations": [
|
|
3102
3117
|
{
|
|
3103
3118
|
"id": 1,
|
|
3104
|
-
"promptbookVersion": "0.100.
|
|
3119
|
+
"promptbookVersion": "0.100.4-0",
|
|
3105
3120
|
"usage": {
|
|
3106
3121
|
"price": {
|
|
3107
3122
|
"value": 0
|
|
@@ -3210,22 +3225,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3210
3225
|
"models": [
|
|
3211
3226
|
{
|
|
3212
3227
|
"modelName": "gpt-4.1",
|
|
3213
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
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.",
|
|
3214
3229
|
"temperature": 0.4
|
|
3215
3230
|
},
|
|
3216
3231
|
{
|
|
3217
3232
|
"modelName": "chatgpt-4o-latest",
|
|
3218
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3219
|
-
"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
|
|
3220
3235
|
},
|
|
3221
3236
|
{
|
|
3222
|
-
"modelName": "
|
|
3223
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
3224
|
-
"temperature": 0.
|
|
3237
|
+
"modelName": "gpt-4",
|
|
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.",
|
|
3239
|
+
"temperature": 0.4
|
|
3225
3240
|
},
|
|
3226
3241
|
{
|
|
3227
3242
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3228
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant.
|
|
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.",
|
|
3229
3249
|
"temperature": 0.5
|
|
3230
3250
|
}
|
|
3231
3251
|
]
|
|
@@ -3239,10 +3259,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3239
3259
|
"preparations": [
|
|
3240
3260
|
{
|
|
3241
3261
|
"id": 1,
|
|
3242
|
-
"promptbookVersion": "0.100.
|
|
3262
|
+
"promptbookVersion": "0.100.4-0",
|
|
3243
3263
|
"usage": {
|
|
3244
3264
|
"price": {
|
|
3245
|
-
"value": 0.
|
|
3265
|
+
"value": 0.04375125
|
|
3246
3266
|
},
|
|
3247
3267
|
"input": {
|
|
3248
3268
|
"tokensCount": {
|
|
@@ -3269,25 +3289,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3269
3289
|
},
|
|
3270
3290
|
"output": {
|
|
3271
3291
|
"tokensCount": {
|
|
3272
|
-
"value":
|
|
3292
|
+
"value": 3653
|
|
3273
3293
|
},
|
|
3274
3294
|
"charactersCount": {
|
|
3275
|
-
"value":
|
|
3295
|
+
"value": 4959
|
|
3276
3296
|
},
|
|
3277
3297
|
"wordsCount": {
|
|
3278
|
-
"value":
|
|
3298
|
+
"value": 644
|
|
3279
3299
|
},
|
|
3280
3300
|
"sentencesCount": {
|
|
3281
|
-
"value":
|
|
3301
|
+
"value": 59
|
|
3282
3302
|
},
|
|
3283
3303
|
"linesCount": {
|
|
3284
|
-
"value":
|
|
3304
|
+
"value": 99
|
|
3285
3305
|
},
|
|
3286
3306
|
"paragraphsCount": {
|
|
3287
3307
|
"value": 1
|
|
3288
3308
|
},
|
|
3289
3309
|
"pagesCount": {
|
|
3290
|
-
"value":
|
|
3310
|
+
"value": 3
|
|
3291
3311
|
}
|
|
3292
3312
|
}
|
|
3293
3313
|
}
|
|
@@ -3357,34 +3377,32 @@ function getTemplatesPipelineCollection() {
|
|
|
3357
3377
|
"description": "customer service representative and skilled copywriter for eshop",
|
|
3358
3378
|
"modelsRequirements": [
|
|
3359
3379
|
{
|
|
3360
|
-
"
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
}
|
|
3387
|
-
]
|
|
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"
|
|
3388
3406
|
}
|
|
3389
3407
|
],
|
|
3390
3408
|
"preparationIds": [
|
|
@@ -3395,10 +3413,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3395
3413
|
"preparations": [
|
|
3396
3414
|
{
|
|
3397
3415
|
"id": 1,
|
|
3398
|
-
"promptbookVersion": "0.100.
|
|
3416
|
+
"promptbookVersion": "0.100.4-0",
|
|
3399
3417
|
"usage": {
|
|
3400
3418
|
"price": {
|
|
3401
|
-
"value": 0.
|
|
3419
|
+
"value": 0.03833625
|
|
3402
3420
|
},
|
|
3403
3421
|
"input": {
|
|
3404
3422
|
"tokensCount": {
|
|
@@ -3425,25 +3443,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3425
3443
|
},
|
|
3426
3444
|
"output": {
|
|
3427
3445
|
"tokensCount": {
|
|
3428
|
-
"value":
|
|
3446
|
+
"value": 3111
|
|
3429
3447
|
},
|
|
3430
3448
|
"charactersCount": {
|
|
3431
|
-
"value":
|
|
3449
|
+
"value": 5171
|
|
3432
3450
|
},
|
|
3433
3451
|
"wordsCount": {
|
|
3434
|
-
"value":
|
|
3452
|
+
"value": 748
|
|
3435
3453
|
},
|
|
3436
3454
|
"sentencesCount": {
|
|
3437
|
-
"value":
|
|
3455
|
+
"value": 64
|
|
3438
3456
|
},
|
|
3439
3457
|
"linesCount": {
|
|
3440
|
-
"value":
|
|
3458
|
+
"value": 102
|
|
3441
3459
|
},
|
|
3442
3460
|
"paragraphsCount": {
|
|
3443
3461
|
"value": 1
|
|
3444
3462
|
},
|
|
3445
3463
|
"pagesCount": {
|
|
3446
|
-
"value":
|
|
3464
|
+
"value": 3
|
|
3447
3465
|
}
|
|
3448
3466
|
}
|
|
3449
3467
|
}
|
|
@@ -3693,24 +3711,29 @@ function getTemplatesPipelineCollection() {
|
|
|
3693
3711
|
"modelVariant": "CHAT",
|
|
3694
3712
|
"models": [
|
|
3695
3713
|
{
|
|
3696
|
-
"modelName": "
|
|
3697
|
-
"systemMessage": "You are a
|
|
3714
|
+
"modelName": "gpt-4.1",
|
|
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.",
|
|
3698
3716
|
"temperature": 0.4
|
|
3699
3717
|
},
|
|
3700
3718
|
{
|
|
3701
|
-
"modelName": "
|
|
3702
|
-
"systemMessage": "You are a
|
|
3703
|
-
"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
|
|
3704
3722
|
},
|
|
3705
3723
|
{
|
|
3706
3724
|
"modelName": "gpt-4",
|
|
3707
|
-
"systemMessage": "You are a
|
|
3708
|
-
"temperature": 0.
|
|
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.",
|
|
3726
|
+
"temperature": 0.4
|
|
3709
3727
|
},
|
|
3710
3728
|
{
|
|
3711
3729
|
"modelName": "gpt-3.5-turbo-16k",
|
|
3712
|
-
"systemMessage": "You are a
|
|
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.",
|
|
3713
3731
|
"temperature": 0.5
|
|
3732
|
+
},
|
|
3733
|
+
{
|
|
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
|
|
3714
3737
|
}
|
|
3715
3738
|
]
|
|
3716
3739
|
}
|
|
@@ -3723,10 +3746,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3723
3746
|
"preparations": [
|
|
3724
3747
|
{
|
|
3725
3748
|
"id": 1,
|
|
3726
|
-
"promptbookVersion": "0.100.
|
|
3749
|
+
"promptbookVersion": "0.100.4-0",
|
|
3727
3750
|
"usage": {
|
|
3728
3751
|
"price": {
|
|
3729
|
-
"value": 0.
|
|
3752
|
+
"value": 0.035251250000000005
|
|
3730
3753
|
},
|
|
3731
3754
|
"input": {
|
|
3732
3755
|
"tokensCount": {
|
|
@@ -3753,16 +3776,16 @@ function getTemplatesPipelineCollection() {
|
|
|
3753
3776
|
},
|
|
3754
3777
|
"output": {
|
|
3755
3778
|
"tokensCount": {
|
|
3756
|
-
"value":
|
|
3779
|
+
"value": 2803
|
|
3757
3780
|
},
|
|
3758
3781
|
"charactersCount": {
|
|
3759
|
-
"value":
|
|
3782
|
+
"value": 2752
|
|
3760
3783
|
},
|
|
3761
3784
|
"wordsCount": {
|
|
3762
|
-
"value":
|
|
3785
|
+
"value": 364
|
|
3763
3786
|
},
|
|
3764
3787
|
"sentencesCount": {
|
|
3765
|
-
"value":
|
|
3788
|
+
"value": 38
|
|
3766
3789
|
},
|
|
3767
3790
|
"linesCount": {
|
|
3768
3791
|
"value": 64
|
|
@@ -3836,28 +3859,23 @@ function getTemplatesPipelineCollection() {
|
|
|
3836
3859
|
"models": [
|
|
3837
3860
|
{
|
|
3838
3861
|
"modelName": "gpt-4.1",
|
|
3839
|
-
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery,
|
|
3840
|
-
"temperature": 0.
|
|
3841
|
-
},
|
|
3842
|
-
{
|
|
3843
|
-
"modelName": "chatgpt-4o-latest",
|
|
3844
|
-
"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.",
|
|
3845
|
-
"temperature": 0.9
|
|
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.",
|
|
3863
|
+
"temperature": 0.95
|
|
3846
3864
|
},
|
|
3847
3865
|
{
|
|
3848
3866
|
"modelName": "gpt-4",
|
|
3849
|
-
"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.",
|
|
3850
3868
|
"temperature": 0.9
|
|
3851
3869
|
},
|
|
3852
3870
|
{
|
|
3853
|
-
"modelName": "
|
|
3854
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3855
|
-
"temperature": 0.
|
|
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.",
|
|
3873
|
+
"temperature": 0.85
|
|
3856
3874
|
},
|
|
3857
3875
|
{
|
|
3858
|
-
"modelName": "gpt-3.5-turbo",
|
|
3859
|
-
"systemMessage": "You are an accomplished poet and storyteller.
|
|
3860
|
-
"temperature":
|
|
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
|
|
3861
3879
|
}
|
|
3862
3880
|
]
|
|
3863
3881
|
}
|
|
@@ -3870,10 +3888,10 @@ function getTemplatesPipelineCollection() {
|
|
|
3870
3888
|
"preparations": [
|
|
3871
3889
|
{
|
|
3872
3890
|
"id": 1,
|
|
3873
|
-
"promptbookVersion": "0.100.
|
|
3891
|
+
"promptbookVersion": "0.100.4-0",
|
|
3874
3892
|
"usage": {
|
|
3875
3893
|
"price": {
|
|
3876
|
-
"value": 0.
|
|
3894
|
+
"value": 0.030610000000000002
|
|
3877
3895
|
},
|
|
3878
3896
|
"input": {
|
|
3879
3897
|
"tokensCount": {
|
|
@@ -3900,25 +3918,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3900
3918
|
},
|
|
3901
3919
|
"output": {
|
|
3902
3920
|
"tokensCount": {
|
|
3903
|
-
"value":
|
|
3921
|
+
"value": 2339
|
|
3904
3922
|
},
|
|
3905
3923
|
"charactersCount": {
|
|
3906
|
-
"value":
|
|
3924
|
+
"value": 1197
|
|
3907
3925
|
},
|
|
3908
3926
|
"wordsCount": {
|
|
3909
|
-
"value":
|
|
3927
|
+
"value": 156
|
|
3910
3928
|
},
|
|
3911
3929
|
"sentencesCount": {
|
|
3912
|
-
"value":
|
|
3930
|
+
"value": 17
|
|
3913
3931
|
},
|
|
3914
3932
|
"linesCount": {
|
|
3915
|
-
"value":
|
|
3933
|
+
"value": 36
|
|
3916
3934
|
},
|
|
3917
3935
|
"paragraphsCount": {
|
|
3918
3936
|
"value": 1
|
|
3919
3937
|
},
|
|
3920
3938
|
"pagesCount": {
|
|
3921
|
-
"value":
|
|
3939
|
+
"value": 1
|
|
3922
3940
|
}
|
|
3923
3941
|
}
|
|
3924
3942
|
}
|