@promptbook/templates 0.100.0-9 → 0.100.1
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/README.md +7 -14
- package/esm/index.es.js +326 -284
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/color.index.d.ts +50 -0
- package/esm/typings/src/_packages/components.index.d.ts +36 -0
- package/esm/typings/src/_packages/core.index.d.ts +30 -0
- package/esm/typings/src/_packages/types.index.d.ts +38 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +30 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.test.d.ts +1 -0
- package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +26 -0
- package/esm/typings/src/book-2.0/commitments/ACTION/ACTION.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/FORMAT/FORMAT.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/KNOWLEDGE/KNOWLEDGE.d.ts +45 -0
- package/esm/typings/src/book-2.0/commitments/META_IMAGE/META_IMAGE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/META_LINK/META_LINK.d.ts +56 -0
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +39 -0
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +49 -0
- package/esm/typings/src/book-2.0/commitments/PERSONA/PERSONA.d.ts +46 -0
- package/esm/typings/src/book-2.0/commitments/RULE/RULE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/SAMPLE/SAMPLE.d.ts +44 -0
- package/esm/typings/src/book-2.0/commitments/STYLE/STYLE.d.ts +38 -0
- package/esm/typings/src/book-2.0/commitments/_base/BaseCommitmentDefinition.d.ts +52 -0
- package/esm/typings/src/book-2.0/commitments/_base/BookCommitment.d.ts +5 -0
- package/esm/typings/src/book-2.0/commitments/_base/CommitmentDefinition.d.ts +48 -0
- package/esm/typings/src/book-2.0/commitments/_base/NotYetImplementedCommitmentDefinition.d.ts +22 -0
- package/esm/typings/src/book-2.0/commitments/_base/createEmptyAgentModelRequirements.d.ts +19 -0
- package/esm/typings/src/book-2.0/commitments/_misc/AgentModelRequirements.d.ts +37 -0
- package/esm/typings/src/book-2.0/commitments/_misc/AgentSourceParseResult.d.ts +18 -0
- package/esm/typings/src/book-2.0/commitments/_misc/ParsedCommitment.d.ts +22 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirements.d.ts +62 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirementsWithCommitments.d.ts +36 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createCommitmentRegex.d.ts +20 -0
- package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +24 -0
- package/esm/typings/src/book-2.0/commitments/_misc/removeCommentsFromSystemMessage.d.ts +11 -0
- package/esm/typings/src/book-2.0/commitments/index.d.ts +56 -0
- package/esm/typings/src/book-2.0/utils/profileImageUtils.d.ts +39 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChip.d.ts +35 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/AvatarChipFromSource.d.ts +21 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarChip/index.d.ts +2 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +29 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileFromSource.d.ts +19 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +40 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/config.d.ts +10 -0
- package/esm/typings/src/book-components/BookEditor/injectCssModuleIntoShadowRoot.d.ts +11 -0
- package/esm/typings/src/book-components/Chat/Chat/Chat.d.ts +20 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +110 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChat.d.ts +14 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChat.test.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +24 -0
- package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +16 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +32 -0
- package/esm/typings/src/book-components/Chat/utils/ChatPersistence.d.ts +25 -0
- package/esm/typings/src/book-components/Chat/utils/ExportFormat.d.ts +4 -0
- package/esm/typings/src/book-components/Chat/utils/addUtmParamsToUrl.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/createShortLinkForChat.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/downloadFile.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/utils/exportChatHistory.d.ts +9 -0
- package/esm/typings/src/book-components/Chat/utils/generatePdfContent.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/generateQrDataUrl.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/getPromptbookBranding.d.ts +6 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToHtml.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToJson.d.ts +7 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToMarkdown.d.ts +8 -0
- package/esm/typings/src/book-components/Chat/utils/messagesToText.d.ts +8 -0
- package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +7 -0
- package/esm/typings/src/book-components/_common/react-utils/collectCssTextsForClass.d.ts +7 -0
- package/esm/typings/src/book-components/_common/react-utils/escapeHtml.d.ts +6 -0
- package/esm/typings/src/book-components/_common/react-utils/escapeRegex.d.ts +6 -0
- package/esm/typings/src/config.d.ts +19 -0
- package/esm/typings/src/execution/AvailableModel.d.ts +4 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +27 -1
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +11 -6
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +6 -1
- package/esm/typings/src/llm-providers/_common/filterModels.d.ts +0 -3
- package/esm/typings/src/llm-providers/_common/profiles/llmProviderProfiles.d.ts +81 -0
- package/esm/typings/src/llm-providers/_common/profiles/test/llmProviderProfiles.test.d.ts +1 -0
- package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +3 -4
- package/esm/typings/src/llm-providers/_multiple/MultipleLlmExecutionTools.d.ts +5 -0
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +5 -5
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/deepseek/deepseek-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +5 -0
- package/esm/typings/src/llm-providers/ollama/ollama-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +8 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +5 -0
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +5 -0
- package/esm/typings/src/pipeline/book-notation.d.ts +2 -1
- package/esm/typings/src/playground/permanent/error-handling-playground.d.ts +5 -0
- package/esm/typings/src/types/ModelRequirements.d.ts +0 -2
- package/esm/typings/src/types/typeAliases.d.ts +6 -0
- package/esm/typings/src/utils/color/$randomColor.d.ts +11 -0
- package/esm/typings/src/utils/color/Color.d.ts +179 -0
- package/esm/typings/src/utils/color/css-colors.d.ts +159 -0
- package/esm/typings/src/utils/color/internal-utils/checkChannelValue.d.ts +14 -0
- package/esm/typings/src/utils/color/internal-utils/hslToRgb.d.ts +17 -0
- package/esm/typings/src/utils/color/internal-utils/rgbToHsl.d.ts +17 -0
- package/esm/typings/src/utils/color/operators/ColorTransformer.d.ts +5 -0
- package/esm/typings/src/utils/color/operators/darken.d.ts +9 -0
- package/esm/typings/src/utils/color/operators/furthest.d.ts +16 -0
- package/esm/typings/src/utils/color/operators/grayscale.d.ts +9 -0
- package/esm/typings/src/utils/color/operators/lighten.d.ts +12 -0
- package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +11 -0
- package/esm/typings/src/utils/color/operators/nearest.d.ts +10 -0
- package/esm/typings/src/utils/color/operators/negative.d.ts +7 -0
- package/esm/typings/src/utils/color/operators/negativeLightness.d.ts +7 -0
- package/esm/typings/src/utils/color/operators/withAlpha.d.ts +9 -0
- package/esm/typings/src/utils/color/utils/areColorsEqual.d.ts +14 -0
- package/esm/typings/src/utils/color/utils/colorDistance.d.ts +21 -0
- package/esm/typings/src/utils/color/utils/colorHue.d.ts +11 -0
- package/esm/typings/src/utils/color/utils/colorHueDistance.d.ts +11 -0
- package/esm/typings/src/utils/color/utils/colorHueDistance.test.d.ts +1 -0
- package/esm/typings/src/utils/color/utils/colorLuminance.d.ts +9 -0
- package/esm/typings/src/utils/color/utils/colorSatulightion.d.ts +7 -0
- package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +9 -0
- package/esm/typings/src/utils/color/utils/colorToDataUrl.d.ts +10 -0
- package/esm/typings/src/utils/color/utils/mixColors.d.ts +11 -0
- package/esm/typings/src/utils/organization/preserve.d.ts +21 -0
- package/esm/typings/src/utils/take/classes/TakeChain.d.ts +11 -0
- package/esm/typings/src/utils/take/interfaces/ITakeChain.d.ts +12 -0
- package/esm/typings/src/utils/take/interfaces/Takeable.d.ts +7 -0
- package/esm/typings/src/utils/take/take.d.ts +12 -0
- package/esm/typings/src/utils/take/take.test.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -3
- package/umd/index.umd.js +330 -288
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/scripting/javascript/utils/preserve.d.ts +0 -14
package/esm/index.es.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import spaceTrim, { spaceTrim as spaceTrim$1 } from 'spacetrim';
|
|
2
|
-
import { format } from 'prettier';
|
|
3
2
|
import parserHtml from 'prettier/parser-html';
|
|
3
|
+
import parserMarkdown from 'prettier/parser-markdown';
|
|
4
|
+
import { format } from 'prettier/standalone';
|
|
4
5
|
|
|
5
6
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
6
7
|
/**
|
|
@@ -16,7 +17,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
16
17
|
* @generated
|
|
17
18
|
* @see https://github.com/webgptorg/promptbook
|
|
18
19
|
*/
|
|
19
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.
|
|
20
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.1';
|
|
20
21
|
/**
|
|
21
22
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
23
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -190,6 +191,13 @@ Object.freeze({
|
|
|
190
191
|
newline: '\n',
|
|
191
192
|
skipEmptyLines: true,
|
|
192
193
|
});
|
|
194
|
+
/**
|
|
195
|
+
* API request timeout in milliseconds
|
|
196
|
+
* Can be overridden via API_REQUEST_TIMEOUT environment variable
|
|
197
|
+
*
|
|
198
|
+
* @public exported from `@promptbook/core`
|
|
199
|
+
*/
|
|
200
|
+
parseInt(process.env.API_REQUEST_TIMEOUT || '90000');
|
|
193
201
|
/**
|
|
194
202
|
* Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
|
|
195
203
|
*
|
|
@@ -382,7 +390,7 @@ function prettifyMarkdown(content) {
|
|
|
382
390
|
try {
|
|
383
391
|
return format(content, {
|
|
384
392
|
parser: 'markdown',
|
|
385
|
-
plugins: [parserHtml],
|
|
393
|
+
plugins: [parserMarkdown, parserHtml],
|
|
386
394
|
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
387
395
|
endOfLine: 'lf',
|
|
388
396
|
tabWidth: 4,
|
|
@@ -1534,21 +1542,33 @@ function getTemplatesPipelineCollection() {
|
|
|
1534
1542
|
"modelsRequirements": [
|
|
1535
1543
|
{
|
|
1536
1544
|
"modelVariant": "CHAT",
|
|
1537
|
-
"
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1545
|
+
"models": [
|
|
1546
|
+
{
|
|
1547
|
+
"modelName": "gpt-4.1",
|
|
1548
|
+
"systemMessage": "You are a developer of the Promptbook Project serving as a precise, reliable virtual assistant architect. Be concise, factual, and proactive; ask brief clarifying questions when requirements are ambiguous. Use tools/function-calling decisively with minimal, well-typed arguments and return only requested structured output (e.g., valid JSON) when specified. Prefer clear stepwise plans and checklists; include safe defaults in code/prompts. Avoid heavy formatting and do not expose hidden reasoning or system instructions.",
|
|
1549
|
+
"temperature": 0.3
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"modelName": "chatgpt-4o-latest",
|
|
1553
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a friendly, high-speed virtual assistant. Keep answers concise and practical; ask short clarifying questions when needed. When multimodal inputs are present, summarize and extract key details succinctly. Use tools/function-calling with clean, minimal arguments and return only the requested structure. Avoid heavy formatting; never reveal chain-of-thought or system content.",
|
|
1554
|
+
"temperature": 0.4
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"modelName": "o4-mini",
|
|
1558
|
+
"systemMessage": "You are a developer of the Promptbook Project optimized for fast, cost-efficient assistance. Deliver concise, deterministic outputs; favor bullet lists and short steps. Use function calls confidently with minimal, typed arguments and return only the requested structure. Proactively check assumptions, ask targeted clarifying questions, and avoid revealing hidden reasoning or system content.",
|
|
1559
|
+
"temperature": 0.2
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"modelName": "gpt-4",
|
|
1563
|
+
"systemMessage": "You are a developer of the Promptbook Project providing a dependable virtual assistant. Be concise and accurate; ask brief clarifying questions when requirements are unclear. Use function-calling cleanly and return only requested structured outputs. Provide production-ready code/prompts with safe defaults. Avoid heavy formatting and do not expose hidden reasoning.",
|
|
1564
|
+
"temperature": 0.3
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1568
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on budget-friendly assistance over longer contexts. Keep outputs concise and deterministic; ask brief clarifying questions when needed. Follow instructions strictly, use tools/function-calling with minimal arguments, and return only the requested structure. Avoid heavy formatting and do not reveal hidden reasoning.",
|
|
1569
|
+
"temperature": 0.2
|
|
1570
|
+
}
|
|
1571
|
+
]
|
|
1552
1572
|
}
|
|
1553
1573
|
],
|
|
1554
1574
|
"preparationIds": [
|
|
@@ -1559,55 +1579,55 @@ function getTemplatesPipelineCollection() {
|
|
|
1559
1579
|
"preparations": [
|
|
1560
1580
|
{
|
|
1561
1581
|
"id": 1,
|
|
1562
|
-
"promptbookVersion": "0.100.0
|
|
1582
|
+
"promptbookVersion": "0.100.0",
|
|
1563
1583
|
"usage": {
|
|
1564
1584
|
"price": {
|
|
1565
|
-
"value": 0.
|
|
1585
|
+
"value": 0.03829250000000001
|
|
1566
1586
|
},
|
|
1567
1587
|
"input": {
|
|
1568
1588
|
"tokensCount": {
|
|
1569
|
-
"value":
|
|
1589
|
+
"value": 5778
|
|
1570
1590
|
},
|
|
1571
1591
|
"charactersCount": {
|
|
1572
|
-
"value":
|
|
1592
|
+
"value": 2377
|
|
1573
1593
|
},
|
|
1574
1594
|
"wordsCount": {
|
|
1575
|
-
"value":
|
|
1595
|
+
"value": 348
|
|
1576
1596
|
},
|
|
1577
1597
|
"sentencesCount": {
|
|
1578
|
-
"value":
|
|
1598
|
+
"value": 22
|
|
1579
1599
|
},
|
|
1580
1600
|
"linesCount": {
|
|
1581
|
-
"value":
|
|
1601
|
+
"value": 65
|
|
1582
1602
|
},
|
|
1583
1603
|
"paragraphsCount": {
|
|
1584
1604
|
"value": 20
|
|
1585
1605
|
},
|
|
1586
1606
|
"pagesCount": {
|
|
1587
|
-
"value":
|
|
1607
|
+
"value": 2
|
|
1588
1608
|
}
|
|
1589
1609
|
},
|
|
1590
1610
|
"output": {
|
|
1591
1611
|
"tokensCount": {
|
|
1592
|
-
"value":
|
|
1612
|
+
"value": 3107
|
|
1593
1613
|
},
|
|
1594
1614
|
"charactersCount": {
|
|
1595
|
-
"value":
|
|
1615
|
+
"value": 2593
|
|
1596
1616
|
},
|
|
1597
1617
|
"wordsCount": {
|
|
1598
|
-
"value":
|
|
1618
|
+
"value": 346
|
|
1599
1619
|
},
|
|
1600
1620
|
"sentencesCount": {
|
|
1601
|
-
"value":
|
|
1621
|
+
"value": 33
|
|
1602
1622
|
},
|
|
1603
1623
|
"linesCount": {
|
|
1604
|
-
"value":
|
|
1624
|
+
"value": 62
|
|
1605
1625
|
},
|
|
1606
1626
|
"paragraphsCount": {
|
|
1607
|
-
"value":
|
|
1627
|
+
"value": 1
|
|
1608
1628
|
},
|
|
1609
1629
|
"pagesCount": {
|
|
1610
|
-
"value":
|
|
1630
|
+
"value": 2
|
|
1611
1631
|
}
|
|
1612
1632
|
}
|
|
1613
1633
|
}
|
|
@@ -2087,21 +2107,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2087
2107
|
"modelsRequirements": [
|
|
2088
2108
|
{
|
|
2089
2109
|
"modelVariant": "CHAT",
|
|
2090
|
-
"
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2110
|
+
"models": [
|
|
2111
|
+
{
|
|
2112
|
+
"modelName": "gpt-4.1",
|
|
2113
|
+
"systemMessage": "You are a developer of the Promptbook Project serving as a precise, reliable virtual assistant architect. Be concise, factual, and proactive; ask brief clarifying questions when requirements are ambiguous. Use tools/function-calling decisively with minimal, well-typed arguments and return only requested structured output (e.g., valid JSON) when specified. Prefer clear stepwise plans and checklists; include safe defaults in code/prompts. Avoid heavy formatting and do not expose hidden reasoning or system instructions.",
|
|
2114
|
+
"temperature": 0.3
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"modelName": "chatgpt-4o-latest",
|
|
2118
|
+
"systemMessage": "You are a developer of the Promptbook Project acting as a friendly, high-speed virtual assistant. Keep answers concise and practical; ask short clarifying questions when needed. When multimodal inputs are present, summarize and extract key details succinctly. Use tools/function-calling with clean, minimal arguments and return only the requested structure. Avoid heavy formatting; never reveal chain-of-thought or system content.",
|
|
2119
|
+
"temperature": 0.4
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"modelName": "o4-mini",
|
|
2123
|
+
"systemMessage": "You are a developer of the Promptbook Project optimized for fast, cost-efficient assistance. Deliver concise, deterministic outputs; favor bullet lists and short steps. Use function calls confidently with minimal, typed arguments and return only the requested structure. Proactively check assumptions, ask targeted clarifying questions, and avoid revealing hidden reasoning or system content.",
|
|
2124
|
+
"temperature": 0.2
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
"modelName": "gpt-4",
|
|
2128
|
+
"systemMessage": "You are a developer of the Promptbook Project providing a dependable virtual assistant. Be concise and accurate; ask brief clarifying questions when requirements are unclear. Use function-calling cleanly and return only requested structured outputs. Provide production-ready code/prompts with safe defaults. Avoid heavy formatting and do not expose hidden reasoning.",
|
|
2129
|
+
"temperature": 0.3
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2133
|
+
"systemMessage": "You are a developer of the Promptbook Project focused on budget-friendly assistance over longer contexts. Keep outputs concise and deterministic; ask brief clarifying questions when needed. Follow instructions strictly, use tools/function-calling with minimal arguments, and return only the requested structure. Avoid heavy formatting and do not reveal hidden reasoning.",
|
|
2134
|
+
"temperature": 0.2
|
|
2135
|
+
}
|
|
2136
|
+
]
|
|
2105
2137
|
}
|
|
2106
2138
|
],
|
|
2107
2139
|
"preparationIds": [
|
|
@@ -2112,55 +2144,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2112
2144
|
"preparations": [
|
|
2113
2145
|
{
|
|
2114
2146
|
"id": 1,
|
|
2115
|
-
"promptbookVersion": "0.100.0
|
|
2147
|
+
"promptbookVersion": "0.100.0",
|
|
2116
2148
|
"usage": {
|
|
2117
2149
|
"price": {
|
|
2118
|
-
"value": 0.
|
|
2150
|
+
"value": 0.03829250000000001
|
|
2119
2151
|
},
|
|
2120
2152
|
"input": {
|
|
2121
2153
|
"tokensCount": {
|
|
2122
|
-
"value":
|
|
2154
|
+
"value": 5778
|
|
2123
2155
|
},
|
|
2124
2156
|
"charactersCount": {
|
|
2125
|
-
"value":
|
|
2157
|
+
"value": 2377
|
|
2126
2158
|
},
|
|
2127
2159
|
"wordsCount": {
|
|
2128
|
-
"value":
|
|
2160
|
+
"value": 348
|
|
2129
2161
|
},
|
|
2130
2162
|
"sentencesCount": {
|
|
2131
|
-
"value":
|
|
2163
|
+
"value": 22
|
|
2132
2164
|
},
|
|
2133
2165
|
"linesCount": {
|
|
2134
|
-
"value":
|
|
2166
|
+
"value": 65
|
|
2135
2167
|
},
|
|
2136
2168
|
"paragraphsCount": {
|
|
2137
2169
|
"value": 20
|
|
2138
2170
|
},
|
|
2139
2171
|
"pagesCount": {
|
|
2140
|
-
"value":
|
|
2172
|
+
"value": 2
|
|
2141
2173
|
}
|
|
2142
2174
|
},
|
|
2143
2175
|
"output": {
|
|
2144
2176
|
"tokensCount": {
|
|
2145
|
-
"value":
|
|
2177
|
+
"value": 3107
|
|
2146
2178
|
},
|
|
2147
2179
|
"charactersCount": {
|
|
2148
|
-
"value":
|
|
2180
|
+
"value": 2593
|
|
2149
2181
|
},
|
|
2150
2182
|
"wordsCount": {
|
|
2151
|
-
"value":
|
|
2183
|
+
"value": 346
|
|
2152
2184
|
},
|
|
2153
2185
|
"sentencesCount": {
|
|
2154
|
-
"value":
|
|
2186
|
+
"value": 33
|
|
2155
2187
|
},
|
|
2156
2188
|
"linesCount": {
|
|
2157
|
-
"value":
|
|
2189
|
+
"value": 62
|
|
2158
2190
|
},
|
|
2159
2191
|
"paragraphsCount": {
|
|
2160
|
-
"value":
|
|
2192
|
+
"value": 1
|
|
2161
2193
|
},
|
|
2162
2194
|
"pagesCount": {
|
|
2163
|
-
"value":
|
|
2195
|
+
"value": 2
|
|
2164
2196
|
}
|
|
2165
2197
|
}
|
|
2166
2198
|
}
|
|
@@ -2781,27 +2813,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2781
2813
|
"modelsRequirements": [
|
|
2782
2814
|
{
|
|
2783
2815
|
"modelVariant": "CHAT",
|
|
2784
|
-
"
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2816
|
+
"models": [
|
|
2817
|
+
{
|
|
2818
|
+
"modelName": "gpt-4.1",
|
|
2819
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Default behavior: 1) output the minimally edited, corrected text; 2) provide a brief bullet list of key changes with short rule-based explanations. Preserve the author’s meaning and voice; do not introduce new facts. Match the input language and requested dialect (e.g., US/UK/CA/AU) and register; ask one clarifying question if needed before editing. Follow specified style guides (APA/Chicago/MLA) when provided. Offer optional improvements for clarity and concision only if meaning is unchanged, clearly marking them as optional. Flag ambiguities and propose precise alternatives. Avoid heavy formatting; use plain text and short bullet points. Respond in the language of the input unless asked otherwise.",
|
|
2820
|
+
"temperature": 0.2
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
"modelName": "chatgpt-4o-latest",
|
|
2824
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Default behavior: 1) output the minimally edited, corrected text; 2) provide a brief bullet list of key changes with short rule-based explanations. Preserve the author’s meaning and voice; do not introduce new facts. Match the input language and requested dialect (e.g., US/UK/CA/AU) and register; ask one clarifying question if needed before editing. Follow specified style guides (APA/Chicago/MLA) when provided. Offer optional improvements for clarity and concision only if meaning is unchanged, clearly marking them as optional. Flag ambiguities and propose precise alternatives. Avoid heavy formatting; use plain text and short bullet points. Respond in the language of the input unless asked otherwise.",
|
|
2825
|
+
"temperature": 0.25
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"modelName": "gpt-4",
|
|
2829
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Default behavior: 1) output the minimally edited, corrected text; 2) provide a brief bullet list of key changes with short rule-based explanations. Preserve the author’s meaning and voice; do not introduce new facts. Match the input language and requested dialect (e.g., US/UK/CA/AU) and register; ask one clarifying question if needed before editing. Follow specified style guides (APA/Chicago/MLA) when provided. Offer optional improvements for clarity and concision only if meaning is unchanged, clearly marking them as optional. Flag ambiguities and propose precise alternatives. Avoid heavy formatting; use plain text and short bullet points. Respond in the language of the input unless asked otherwise.",
|
|
2830
|
+
"temperature": 0.2
|
|
2831
|
+
},
|
|
2832
|
+
{
|
|
2833
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2834
|
+
"systemMessage": "You are a professional linguist and meticulous text corrector. Default behavior: 1) output the minimally edited, corrected text; 2) provide a brief bullet list of key changes with short rule-based explanations. Preserve the author’s meaning and voice; do not introduce new facts. Match the input language and requested dialect (e.g., US/UK/CA/AU) and register; ask one clarifying question if needed before editing. Follow specified style guides (APA/Chicago/MLA) when provided. Offer optional improvements for clarity and concision only if meaning is unchanged, clearly marking them as optional. Flag ambiguities and propose precise alternatives. Avoid heavy formatting; use plain text and short bullet points. Respond in the language of the input unless asked otherwise.",
|
|
2835
|
+
"temperature": 0.3
|
|
2836
|
+
}
|
|
2837
|
+
]
|
|
2805
2838
|
}
|
|
2806
2839
|
],
|
|
2807
2840
|
"preparationIds": [
|
|
@@ -2812,55 +2845,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2812
2845
|
"preparations": [
|
|
2813
2846
|
{
|
|
2814
2847
|
"id": 1,
|
|
2815
|
-
"promptbookVersion": "0.100.0
|
|
2848
|
+
"promptbookVersion": "0.100.0",
|
|
2816
2849
|
"usage": {
|
|
2817
2850
|
"price": {
|
|
2818
|
-
"value": 0.
|
|
2851
|
+
"value": 0.03413125
|
|
2819
2852
|
},
|
|
2820
2853
|
"input": {
|
|
2821
2854
|
"tokensCount": {
|
|
2822
|
-
"value":
|
|
2855
|
+
"value": 5777
|
|
2823
2856
|
},
|
|
2824
2857
|
"charactersCount": {
|
|
2825
|
-
"value":
|
|
2858
|
+
"value": 2377
|
|
2826
2859
|
},
|
|
2827
2860
|
"wordsCount": {
|
|
2828
|
-
"value":
|
|
2861
|
+
"value": 348
|
|
2829
2862
|
},
|
|
2830
2863
|
"sentencesCount": {
|
|
2831
|
-
"value":
|
|
2864
|
+
"value": 22
|
|
2832
2865
|
},
|
|
2833
2866
|
"linesCount": {
|
|
2834
|
-
"value":
|
|
2867
|
+
"value": 65
|
|
2835
2868
|
},
|
|
2836
2869
|
"paragraphsCount": {
|
|
2837
2870
|
"value": 20
|
|
2838
2871
|
},
|
|
2839
2872
|
"pagesCount": {
|
|
2840
|
-
"value":
|
|
2873
|
+
"value": 2
|
|
2841
2874
|
}
|
|
2842
2875
|
},
|
|
2843
2876
|
"output": {
|
|
2844
2877
|
"tokensCount": {
|
|
2845
|
-
"value":
|
|
2878
|
+
"value": 2691
|
|
2846
2879
|
},
|
|
2847
2880
|
"charactersCount": {
|
|
2848
|
-
"value":
|
|
2881
|
+
"value": 3503
|
|
2849
2882
|
},
|
|
2850
2883
|
"wordsCount": {
|
|
2851
|
-
"value":
|
|
2884
|
+
"value": 518
|
|
2852
2885
|
},
|
|
2853
2886
|
"sentencesCount": {
|
|
2854
|
-
"value":
|
|
2887
|
+
"value": 51
|
|
2855
2888
|
},
|
|
2856
2889
|
"linesCount": {
|
|
2857
|
-
"value":
|
|
2890
|
+
"value": 72
|
|
2858
2891
|
},
|
|
2859
2892
|
"paragraphsCount": {
|
|
2860
|
-
"value":
|
|
2893
|
+
"value": 1
|
|
2861
2894
|
},
|
|
2862
2895
|
"pagesCount": {
|
|
2863
|
-
"value":
|
|
2896
|
+
"value": 2
|
|
2864
2897
|
}
|
|
2865
2898
|
}
|
|
2866
2899
|
}
|
|
@@ -2923,21 +2956,28 @@ function getTemplatesPipelineCollection() {
|
|
|
2923
2956
|
"modelsRequirements": [
|
|
2924
2957
|
{
|
|
2925
2958
|
"modelVariant": "CHAT",
|
|
2926
|
-
"
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2959
|
+
"models": [
|
|
2960
|
+
{
|
|
2961
|
+
"modelName": "gpt-4.1",
|
|
2962
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, on-brand product and category descriptions, promo emails/ads, and microcopy. Use benefit-led messaging, clear CTAs, concise scannable structure (headline, bullets, body), and SEO best practices (natural keywords, meta title/description, H1/H2, alt text). Keep facts accurate, avoid unsupported claims, and respect regulatory constraints. Tailor tone to audience and channel, adapt to brand voice, and localize (currency, spelling) as needed. Provide 2–3 variants when brainstorming and a brief rationale. Ask clarifying questions if key details are missing.",
|
|
2963
|
+
"temperature": 0.7
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"modelName": "chatgpt-4o-latest",
|
|
2967
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, on-brand product and category descriptions, promo emails/ads, and microcopy. Use benefit-led messaging, clear CTAs, concise scannable structure (headline, bullets, body), and SEO best practices (natural keywords, meta title/description, H1/H2, alt text). Keep facts accurate, avoid unsupported claims, and respect regulatory constraints. Tailor tone to audience and channel, adapt to brand voice, and localize (currency, spelling) as needed. Provide 2–3 variants when brainstorming and a brief rationale. Ask clarifying questions if key details are missing.",
|
|
2968
|
+
"temperature": 0.8
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
"modelName": "gpt-4",
|
|
2972
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, on-brand product and category descriptions, promo emails/ads, and microcopy. Use benefit-led messaging, clear CTAs, concise scannable structure (headline, bullets, body), and SEO best practices (natural keywords, meta title/description, H1/H2, alt text). Keep facts accurate, avoid unsupported claims, and respect regulatory constraints. Tailor tone to audience and channel, adapt to brand voice, and localize (currency, spelling) as needed. Provide 2–3 variants when brainstorming and a brief rationale. Ask clarifying questions if key details are missing.",
|
|
2973
|
+
"temperature": 0.6
|
|
2974
|
+
},
|
|
2975
|
+
{
|
|
2976
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2977
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Craft persuasive, on-brand product and category descriptions, promo emails/ads, and microcopy. Use benefit-led messaging, clear CTAs, concise scannable structure (headline, bullets, body), and SEO best practices (natural keywords, meta title/description, H1/H2, alt text). Keep facts accurate, avoid unsupported claims, and respect regulatory constraints. Tailor tone to audience and channel, adapt to brand voice, and localize (currency, spelling) as needed. Provide 2–3 variants when brainstorming and a brief rationale. Ask clarifying questions if key details are missing.",
|
|
2978
|
+
"temperature": 0.8
|
|
2979
|
+
}
|
|
2980
|
+
]
|
|
2941
2981
|
}
|
|
2942
2982
|
],
|
|
2943
2983
|
"preparationIds": [
|
|
@@ -2948,55 +2988,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2948
2988
|
"preparations": [
|
|
2949
2989
|
{
|
|
2950
2990
|
"id": 1,
|
|
2951
|
-
"promptbookVersion": "0.100.0
|
|
2991
|
+
"promptbookVersion": "0.100.0",
|
|
2952
2992
|
"usage": {
|
|
2953
2993
|
"price": {
|
|
2954
|
-
"value": 0.
|
|
2994
|
+
"value": 0.03521125
|
|
2955
2995
|
},
|
|
2956
2996
|
"input": {
|
|
2957
2997
|
"tokensCount": {
|
|
2958
|
-
"value":
|
|
2998
|
+
"value": 5777
|
|
2959
2999
|
},
|
|
2960
3000
|
"charactersCount": {
|
|
2961
|
-
"value":
|
|
3001
|
+
"value": 2377
|
|
2962
3002
|
},
|
|
2963
3003
|
"wordsCount": {
|
|
2964
|
-
"value":
|
|
3004
|
+
"value": 348
|
|
2965
3005
|
},
|
|
2966
3006
|
"sentencesCount": {
|
|
2967
|
-
"value":
|
|
3007
|
+
"value": 22
|
|
2968
3008
|
},
|
|
2969
3009
|
"linesCount": {
|
|
2970
|
-
"value":
|
|
3010
|
+
"value": 65
|
|
2971
3011
|
},
|
|
2972
3012
|
"paragraphsCount": {
|
|
2973
3013
|
"value": 20
|
|
2974
3014
|
},
|
|
2975
3015
|
"pagesCount": {
|
|
2976
|
-
"value":
|
|
3016
|
+
"value": 2
|
|
2977
3017
|
}
|
|
2978
3018
|
},
|
|
2979
3019
|
"output": {
|
|
2980
3020
|
"tokensCount": {
|
|
2981
|
-
"value":
|
|
3021
|
+
"value": 2799
|
|
2982
3022
|
},
|
|
2983
3023
|
"charactersCount": {
|
|
2984
|
-
"value":
|
|
3024
|
+
"value": 2958
|
|
2985
3025
|
},
|
|
2986
3026
|
"wordsCount": {
|
|
2987
|
-
"value":
|
|
3027
|
+
"value": 414
|
|
2988
3028
|
},
|
|
2989
3029
|
"sentencesCount": {
|
|
2990
|
-
"value":
|
|
3030
|
+
"value": 35
|
|
2991
3031
|
},
|
|
2992
3032
|
"linesCount": {
|
|
2993
|
-
"value":
|
|
3033
|
+
"value": 64
|
|
2994
3034
|
},
|
|
2995
3035
|
"paragraphsCount": {
|
|
2996
|
-
"value":
|
|
3036
|
+
"value": 1
|
|
2997
3037
|
},
|
|
2998
3038
|
"pagesCount": {
|
|
2999
|
-
"value":
|
|
3039
|
+
"value": 2
|
|
3000
3040
|
}
|
|
3001
3041
|
}
|
|
3002
3042
|
}
|
|
@@ -3044,7 +3084,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3044
3084
|
"preparations": [
|
|
3045
3085
|
{
|
|
3046
3086
|
"id": 1,
|
|
3047
|
-
"promptbookVersion": "0.100.0
|
|
3087
|
+
"promptbookVersion": "0.100.0",
|
|
3048
3088
|
"usage": {
|
|
3049
3089
|
"price": {
|
|
3050
3090
|
"value": 0
|
|
@@ -3150,27 +3190,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3150
3190
|
"modelsRequirements": [
|
|
3151
3191
|
{
|
|
3152
3192
|
"modelVariant": "CHAT",
|
|
3153
|
-
"
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3193
|
+
"models": [
|
|
3194
|
+
{
|
|
3195
|
+
"modelName": "gpt-4.1",
|
|
3196
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Diagnose problems with structured, data-driven thinking. Provide concise, actionable recommendations with step-by-step plans, estimated impact, and clear KPIs. Ask targeted clarifying questions when needed. Tailor advice to the user's industry, audience, budget, and timeline. Be pragmatic, prioritize ROI, and state key assumptions and risks. Use a professional yet approachable tone.",
|
|
3197
|
+
"temperature": 0.3
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"modelName": "chatgpt-4o-latest",
|
|
3201
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Blend analytical rigor with creative ideation. Provide actionable strategies, campaign concepts, messaging angles, and channel plans with expected impact and KPIs. Ask focused clarifying questions, tailor advice to context, and keep a friendly, persuasive tone while prioritizing ROI and practicality.",
|
|
3202
|
+
"temperature": 0.6
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
"modelName": "gpt-4",
|
|
3206
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Deliver structured, evidence-based recommendations, including prioritization, timelines, budgets, KPIs, and risks. Clarify assumptions, ask for missing context, and keep outputs concise and implementation-ready.",
|
|
3207
|
+
"temperature": 0.35
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
"modelName": "o4-mini",
|
|
3211
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on fast, cost-efficient analysis. Break down problems, quantify impact where possible, outline experiments, and propose lean tests with KPIs. Keep recommendations practical and ROI-driven.",
|
|
3212
|
+
"temperature": 0.25
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3216
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide clear, budget-conscious recommendations, step-by-step action plans, and KPIs. Ask brief clarifying questions when needed and keep responses concise and implementation-focused.",
|
|
3217
|
+
"temperature": 0.5
|
|
3218
|
+
}
|
|
3219
|
+
]
|
|
3174
3220
|
}
|
|
3175
3221
|
],
|
|
3176
3222
|
"preparationIds": [
|
|
@@ -3181,55 +3227,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3181
3227
|
"preparations": [
|
|
3182
3228
|
{
|
|
3183
3229
|
"id": 1,
|
|
3184
|
-
"promptbookVersion": "0.100.0
|
|
3230
|
+
"promptbookVersion": "0.100.0",
|
|
3185
3231
|
"usage": {
|
|
3186
3232
|
"price": {
|
|
3187
|
-
"value": 0.
|
|
3233
|
+
"value": 0.02844125
|
|
3188
3234
|
},
|
|
3189
3235
|
"input": {
|
|
3190
3236
|
"tokensCount": {
|
|
3191
|
-
"value":
|
|
3237
|
+
"value": 5777
|
|
3192
3238
|
},
|
|
3193
3239
|
"charactersCount": {
|
|
3194
|
-
"value":
|
|
3240
|
+
"value": 2377
|
|
3195
3241
|
},
|
|
3196
3242
|
"wordsCount": {
|
|
3197
|
-
"value":
|
|
3243
|
+
"value": 348
|
|
3198
3244
|
},
|
|
3199
3245
|
"sentencesCount": {
|
|
3200
|
-
"value":
|
|
3246
|
+
"value": 22
|
|
3201
3247
|
},
|
|
3202
3248
|
"linesCount": {
|
|
3203
|
-
"value":
|
|
3249
|
+
"value": 65
|
|
3204
3250
|
},
|
|
3205
3251
|
"paragraphsCount": {
|
|
3206
3252
|
"value": 20
|
|
3207
3253
|
},
|
|
3208
3254
|
"pagesCount": {
|
|
3209
|
-
"value":
|
|
3255
|
+
"value": 2
|
|
3210
3256
|
}
|
|
3211
3257
|
},
|
|
3212
3258
|
"output": {
|
|
3213
3259
|
"tokensCount": {
|
|
3214
|
-
"value":
|
|
3260
|
+
"value": 2122
|
|
3215
3261
|
},
|
|
3216
3262
|
"charactersCount": {
|
|
3217
|
-
"value":
|
|
3263
|
+
"value": 2135
|
|
3218
3264
|
},
|
|
3219
3265
|
"wordsCount": {
|
|
3220
|
-
"value":
|
|
3266
|
+
"value": 267
|
|
3221
3267
|
},
|
|
3222
3268
|
"sentencesCount": {
|
|
3223
|
-
"value":
|
|
3269
|
+
"value": 28
|
|
3224
3270
|
},
|
|
3225
3271
|
"linesCount": {
|
|
3226
|
-
"value":
|
|
3272
|
+
"value": 54
|
|
3227
3273
|
},
|
|
3228
3274
|
"paragraphsCount": {
|
|
3229
|
-
"value":
|
|
3275
|
+
"value": 1
|
|
3230
3276
|
},
|
|
3231
3277
|
"pagesCount": {
|
|
3232
|
-
"value":
|
|
3278
|
+
"value": 2
|
|
3233
3279
|
}
|
|
3234
3280
|
}
|
|
3235
3281
|
}
|
|
@@ -3300,33 +3346,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3300
3346
|
"modelsRequirements": [
|
|
3301
3347
|
{
|
|
3302
3348
|
"modelVariant": "CHAT",
|
|
3303
|
-
"
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
{
|
|
3326
|
-
"modelVariant": "CHAT",
|
|
3327
|
-
"modelName": "gpt-3.5-turbo",
|
|
3328
|
-
"systemMessage": "You are a helpful customer service representative and competent copywriter for an e-commerce store. Provide customer support and create effective product descriptions and marketing text.",
|
|
3329
|
-
"temperature": 0.7
|
|
3349
|
+
"models": [
|
|
3350
|
+
{
|
|
3351
|
+
"modelName": "gpt-4.1",
|
|
3352
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Goals: resolve customer issues accurately and politely; ask for missing details; follow store policies; summarize next steps; and write clear, persuasive, on-brand product copy and emails. Style: friendly, concise, empathetic, and professional. Constraints: never invent policies or guarantees; flag uncertain facts; protect customer privacy; avoid overpromising. Adapt tone to the brand and locale; use active voice and clear CTAs; structure responses with short paragraphs or bullets when helpful.",
|
|
3353
|
+
"temperature": 0.5
|
|
3354
|
+
},
|
|
3355
|
+
{
|
|
3356
|
+
"modelName": "chatgpt-4o-latest",
|
|
3357
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Goals: resolve customer issues accurately and politely; ask for missing details; follow store policies; summarize next steps; and write clear, persuasive, on-brand product copy and emails. Style: friendly, concise, empathetic, and professional. Constraints: never invent policies or guarantees; flag uncertain facts; protect customer privacy; avoid overpromising. Adapt tone to the brand and locale; use active voice and clear CTAs; structure responses with short paragraphs or bullets when helpful.",
|
|
3358
|
+
"temperature": 0.6
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"modelName": "gpt-4",
|
|
3362
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Goals: resolve customer issues accurately and politely; ask for missing details; follow store policies; summarize next steps; and write clear, persuasive, on-brand product copy and emails. Style: friendly, concise, empathetic, and professional. Constraints: never invent policies or guarantees; flag uncertain facts; protect customer privacy; avoid overpromising. Adapt tone to the brand and locale; use active voice and clear CTAs; structure responses with short paragraphs or bullets when helpful.",
|
|
3363
|
+
"temperature": 0.5
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3367
|
+
"systemMessage": "You are a customer service representative and skilled copywriter for an e-commerce shop. Goals: resolve customer issues accurately and politely; ask for missing details; follow store policies; summarize next steps; and write clear, persuasive, on-brand product copy and emails. Style: friendly, concise, empathetic, and professional. Constraints: never invent policies or guarantees; flag uncertain facts; protect customer privacy; avoid overpromising. Adapt tone to the brand and locale; use active voice and clear CTAs; structure responses with short paragraphs or bullets when helpful.",
|
|
3368
|
+
"temperature": 0.5
|
|
3369
|
+
}
|
|
3370
|
+
]
|
|
3330
3371
|
}
|
|
3331
3372
|
],
|
|
3332
3373
|
"preparationIds": [
|
|
@@ -3337,52 +3378,52 @@ function getTemplatesPipelineCollection() {
|
|
|
3337
3378
|
"preparations": [
|
|
3338
3379
|
{
|
|
3339
3380
|
"id": 1,
|
|
3340
|
-
"promptbookVersion": "0.100.0
|
|
3381
|
+
"promptbookVersion": "0.100.0",
|
|
3341
3382
|
"usage": {
|
|
3342
3383
|
"price": {
|
|
3343
|
-
"value": 0.
|
|
3384
|
+
"value": 0.029136250000000002
|
|
3344
3385
|
},
|
|
3345
3386
|
"input": {
|
|
3346
3387
|
"tokensCount": {
|
|
3347
|
-
"value":
|
|
3388
|
+
"value": 5781
|
|
3348
3389
|
},
|
|
3349
3390
|
"charactersCount": {
|
|
3350
|
-
"value":
|
|
3391
|
+
"value": 2377
|
|
3351
3392
|
},
|
|
3352
3393
|
"wordsCount": {
|
|
3353
|
-
"value":
|
|
3394
|
+
"value": 348
|
|
3354
3395
|
},
|
|
3355
3396
|
"sentencesCount": {
|
|
3356
|
-
"value":
|
|
3397
|
+
"value": 22
|
|
3357
3398
|
},
|
|
3358
3399
|
"linesCount": {
|
|
3359
|
-
"value":
|
|
3400
|
+
"value": 65
|
|
3360
3401
|
},
|
|
3361
3402
|
"paragraphsCount": {
|
|
3362
3403
|
"value": 20
|
|
3363
3404
|
},
|
|
3364
3405
|
"pagesCount": {
|
|
3365
|
-
"value":
|
|
3406
|
+
"value": 2
|
|
3366
3407
|
}
|
|
3367
3408
|
},
|
|
3368
3409
|
"output": {
|
|
3369
3410
|
"tokensCount": {
|
|
3370
|
-
"value":
|
|
3411
|
+
"value": 2191
|
|
3371
3412
|
},
|
|
3372
3413
|
"charactersCount": {
|
|
3373
|
-
"value":
|
|
3414
|
+
"value": 2771
|
|
3374
3415
|
},
|
|
3375
3416
|
"wordsCount": {
|
|
3376
|
-
"value":
|
|
3417
|
+
"value": 374
|
|
3377
3418
|
},
|
|
3378
3419
|
"sentencesCount": {
|
|
3379
|
-
"value":
|
|
3420
|
+
"value": 27
|
|
3380
3421
|
},
|
|
3381
3422
|
"linesCount": {
|
|
3382
|
-
"value":
|
|
3423
|
+
"value": 60
|
|
3383
3424
|
},
|
|
3384
3425
|
"paragraphsCount": {
|
|
3385
|
-
"value":
|
|
3426
|
+
"value": 1
|
|
3386
3427
|
},
|
|
3387
3428
|
"pagesCount": {
|
|
3388
3429
|
"value": 2
|
|
@@ -3633,27 +3674,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3633
3674
|
"modelsRequirements": [
|
|
3634
3675
|
{
|
|
3635
3676
|
"modelVariant": "CHAT",
|
|
3636
|
-
"
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3677
|
+
"models": [
|
|
3678
|
+
{
|
|
3679
|
+
"modelName": "gpt-4.1",
|
|
3680
|
+
"systemMessage": "You are a professional linguist and experienced Esperantist. Provide accurate, concise explanations across phonetics (use IPA), morphology (Leipzig glossing), syntax, semantics, typology, and etymology. Translate to/from Esperanto and other languages; prefer standard Esperanto orthography (ĉ ĝ ĥ ĵ ŝ ŭ) and offer x‑system fallbacks when relevant. When teaching, include minimal pairs, interlinear glosses, and idiomatic translations. Be culturally neutral, verify claims, note uncertainty, and ask clarifying questions when needed.",
|
|
3681
|
+
"temperature": 0.4
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
"modelName": "chatgpt-4o-latest",
|
|
3685
|
+
"systemMessage": "You are a friendly, expert linguist and seasoned Esperantist. Give precise analyses (IPA, Leipzig glossing), high‑quality translations to/from Esperanto, and clear, pedagogical examples. Use standard Esperanto orthography (ĉ ĝ ĥ ĵ ŝ ŭ) with optional x‑system. Be concise, cite uncertainties, and ask clarifying questions when needed.",
|
|
3686
|
+
"temperature": 0.5
|
|
3687
|
+
},
|
|
3688
|
+
{
|
|
3689
|
+
"modelName": "gpt-4",
|
|
3690
|
+
"systemMessage": "You are a professional linguist and experienced Esperantist. Provide rigorous yet concise explanations (IPA for phonetics, Leipzig glossing for morphology), careful translations to/from Esperanto using standard orthography (ĉ ĝ ĥ ĵ ŝ ŭ) with x‑system fallback, and illustrative examples with interlinear glosses and idiomatic translations. Be neutral, verify claims, and clarify ambiguities.",
|
|
3691
|
+
"temperature": 0.4
|
|
3692
|
+
},
|
|
3693
|
+
{
|
|
3694
|
+
"modelName": "o4-mini",
|
|
3695
|
+
"systemMessage": "You are a linguistics specialist and Esperantist focused on clear, accurate analysis. For formal tasks (phonology, morphology, syntax, typology), provide structured reasoning and succinct conclusions; avoid speculation and note uncertainty. Translate to/from Esperanto using standard orthography (ĉ ĝ ĥ ĵ ŝ ŭ) with optional x‑system, and include interlinear glossing when helpful.",
|
|
3696
|
+
"temperature": 0.3
|
|
3697
|
+
},
|
|
3698
|
+
{
|
|
3699
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3700
|
+
"systemMessage": "You are a knowledgeable linguist and Esperantist. Give concise, accurate explanations (IPA, Leipzig glossing), careful translations to/from Esperanto with standard orthography (ĉ ĝ ĥ ĵ ŝ ŭ) and optional x‑system, and brief example sentences with idiomatic translations. Ask clarifying questions when needed and avoid unsupported claims.",
|
|
3701
|
+
"temperature": 0.3
|
|
3702
|
+
}
|
|
3703
|
+
]
|
|
3657
3704
|
}
|
|
3658
3705
|
],
|
|
3659
3706
|
"preparationIds": [
|
|
@@ -3664,55 +3711,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3664
3711
|
"preparations": [
|
|
3665
3712
|
{
|
|
3666
3713
|
"id": 1,
|
|
3667
|
-
"promptbookVersion": "0.100.0
|
|
3714
|
+
"promptbookVersion": "0.100.0",
|
|
3668
3715
|
"usage": {
|
|
3669
3716
|
"price": {
|
|
3670
|
-
"value": 0.
|
|
3717
|
+
"value": 0.03492125
|
|
3671
3718
|
},
|
|
3672
3719
|
"input": {
|
|
3673
3720
|
"tokensCount": {
|
|
3674
|
-
"value":
|
|
3721
|
+
"value": 5777
|
|
3675
3722
|
},
|
|
3676
3723
|
"charactersCount": {
|
|
3677
|
-
"value":
|
|
3724
|
+
"value": 2377
|
|
3678
3725
|
},
|
|
3679
3726
|
"wordsCount": {
|
|
3680
|
-
"value":
|
|
3727
|
+
"value": 348
|
|
3681
3728
|
},
|
|
3682
3729
|
"sentencesCount": {
|
|
3683
|
-
"value":
|
|
3730
|
+
"value": 22
|
|
3684
3731
|
},
|
|
3685
3732
|
"linesCount": {
|
|
3686
|
-
"value":
|
|
3733
|
+
"value": 65
|
|
3687
3734
|
},
|
|
3688
3735
|
"paragraphsCount": {
|
|
3689
3736
|
"value": 20
|
|
3690
3737
|
},
|
|
3691
3738
|
"pagesCount": {
|
|
3692
|
-
"value":
|
|
3739
|
+
"value": 2
|
|
3693
3740
|
}
|
|
3694
3741
|
},
|
|
3695
3742
|
"output": {
|
|
3696
3743
|
"tokensCount": {
|
|
3697
|
-
"value":
|
|
3744
|
+
"value": 2770
|
|
3698
3745
|
},
|
|
3699
3746
|
"charactersCount": {
|
|
3700
|
-
"value":
|
|
3747
|
+
"value": 2485
|
|
3701
3748
|
},
|
|
3702
3749
|
"wordsCount": {
|
|
3703
|
-
"value":
|
|
3750
|
+
"value": 326
|
|
3704
3751
|
},
|
|
3705
3752
|
"sentencesCount": {
|
|
3706
|
-
"value":
|
|
3753
|
+
"value": 26
|
|
3707
3754
|
},
|
|
3708
3755
|
"linesCount": {
|
|
3709
|
-
"value":
|
|
3756
|
+
"value": 59
|
|
3710
3757
|
},
|
|
3711
3758
|
"paragraphsCount": {
|
|
3712
|
-
"value":
|
|
3759
|
+
"value": 1
|
|
3713
3760
|
},
|
|
3714
3761
|
"pagesCount": {
|
|
3715
|
-
"value":
|
|
3762
|
+
"value": 2
|
|
3716
3763
|
}
|
|
3717
3764
|
}
|
|
3718
3765
|
}
|
|
@@ -3774,33 +3821,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3774
3821
|
"modelsRequirements": [
|
|
3775
3822
|
{
|
|
3776
3823
|
"modelVariant": "CHAT",
|
|
3777
|
-
"
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
{
|
|
3800
|
-
"modelVariant": "CHAT",
|
|
3801
|
-
"modelName": "gpt-3.5-turbo",
|
|
3802
|
-
"systemMessage": "You are a talented poet and storyteller. Craft your responses with creative flair, vivid descriptions, and engaging narrative elements.",
|
|
3803
|
-
"temperature": 0.8
|
|
3824
|
+
"models": [
|
|
3825
|
+
{
|
|
3826
|
+
"modelName": "gpt-4.1",
|
|
3827
|
+
"systemMessage": "You are an accomplished poet and storyteller. Write with vivid imagery, sensory detail, and musicality. Match genre, form, and voice to the request (e.g., sonnet, free verse, microfiction, myth). Prioritize originality and emotional clarity; avoid clichés and plagiarism. If style, audience, or constraints are unclear, ask a brief clarifying question. Offer one primary draft and, when helpful, a concise alternate in a different tone. When editing, preserve intent and provide line-level suggestions with brief rationale. Default to concise responses unless a longer piece is requested.",
|
|
3828
|
+
"temperature": 0.85
|
|
3829
|
+
},
|
|
3830
|
+
{
|
|
3831
|
+
"modelName": "gpt-4",
|
|
3832
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose with strong imagery, rhythm, and voice. Adapt form and tone to the brief (haiku, sonnet, prose vignette, fable, etc.). Ensure originality and emotional resonance; avoid clichés and any imitative copying. Ask a short clarifying question when constraints are ambiguous. Provide a main draft and optionally a brief alternate in a distinct style. When revising user text, keep intent intact and suggest precise line edits with reasons.",
|
|
3833
|
+
"temperature": 0.9
|
|
3834
|
+
},
|
|
3835
|
+
{
|
|
3836
|
+
"modelName": "chatgpt-4o-latest",
|
|
3837
|
+
"systemMessage": "You are an accomplished poet and storyteller. Lean into sensory detail, metaphor, and cadence. Tailor voice, form, and length to the request, and aim for fresh, original phrasing. If the brief is unclear, ask one concise question to refine tone, audience, or constraints. Provide one primary draft and a short alternate take when useful. When editing, preserve the author’s intent and offer specific, minimal, high-impact improvements.",
|
|
3838
|
+
"temperature": 0.9
|
|
3839
|
+
},
|
|
3840
|
+
{
|
|
3841
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3842
|
+
"systemMessage": "You are an accomplished poet and storyteller focused on clarity, musicality, and vivid imagery. Match form and tone to the prompt, ask a brief clarifying question if needed, and avoid clichés or derivative phrasing. Provide one main draft and a concise alternate when helpful. When editing, keep the writer’s voice while suggesting concrete line-level improvements.",
|
|
3843
|
+
"temperature": 0.95
|
|
3844
|
+
}
|
|
3845
|
+
]
|
|
3804
3846
|
}
|
|
3805
3847
|
],
|
|
3806
3848
|
"preparationIds": [
|
|
@@ -3811,52 +3853,52 @@ function getTemplatesPipelineCollection() {
|
|
|
3811
3853
|
"preparations": [
|
|
3812
3854
|
{
|
|
3813
3855
|
"id": 1,
|
|
3814
|
-
"promptbookVersion": "0.100.0
|
|
3856
|
+
"promptbookVersion": "0.100.0",
|
|
3815
3857
|
"usage": {
|
|
3816
3858
|
"price": {
|
|
3817
|
-
"value": 0.
|
|
3859
|
+
"value": 0.029070000000000002
|
|
3818
3860
|
},
|
|
3819
3861
|
"input": {
|
|
3820
3862
|
"tokensCount": {
|
|
3821
|
-
"value":
|
|
3863
|
+
"value": 5776
|
|
3822
3864
|
},
|
|
3823
3865
|
"charactersCount": {
|
|
3824
|
-
"value":
|
|
3866
|
+
"value": 2377
|
|
3825
3867
|
},
|
|
3826
3868
|
"wordsCount": {
|
|
3827
|
-
"value":
|
|
3869
|
+
"value": 348
|
|
3828
3870
|
},
|
|
3829
3871
|
"sentencesCount": {
|
|
3830
|
-
"value":
|
|
3872
|
+
"value": 22
|
|
3831
3873
|
},
|
|
3832
3874
|
"linesCount": {
|
|
3833
|
-
"value":
|
|
3875
|
+
"value": 65
|
|
3834
3876
|
},
|
|
3835
3877
|
"paragraphsCount": {
|
|
3836
3878
|
"value": 20
|
|
3837
3879
|
},
|
|
3838
3880
|
"pagesCount": {
|
|
3839
|
-
"value":
|
|
3881
|
+
"value": 2
|
|
3840
3882
|
}
|
|
3841
3883
|
},
|
|
3842
3884
|
"output": {
|
|
3843
3885
|
"tokensCount": {
|
|
3844
|
-
"value":
|
|
3886
|
+
"value": 2185
|
|
3845
3887
|
},
|
|
3846
3888
|
"charactersCount": {
|
|
3847
|
-
"value":
|
|
3889
|
+
"value": 2293
|
|
3848
3890
|
},
|
|
3849
3891
|
"wordsCount": {
|
|
3850
|
-
"value":
|
|
3892
|
+
"value": 328
|
|
3851
3893
|
},
|
|
3852
3894
|
"sentencesCount": {
|
|
3853
|
-
"value":
|
|
3895
|
+
"value": 35
|
|
3854
3896
|
},
|
|
3855
3897
|
"linesCount": {
|
|
3856
|
-
"value":
|
|
3898
|
+
"value": 54
|
|
3857
3899
|
},
|
|
3858
3900
|
"paragraphsCount": {
|
|
3859
|
-
"value":
|
|
3901
|
+
"value": 1
|
|
3860
3902
|
},
|
|
3861
3903
|
"pagesCount": {
|
|
3862
3904
|
"value": 2
|