@promptbook/templates 0.100.0-6 → 0.100.0-61
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 +2 -8
- package/esm/index.es.js +345 -283
- 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 +26 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileFromSource.d.ts +19 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +35 -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 +8 -0
- 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/_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 +180 -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 +349 -287
- 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.0-
|
|
20
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-61';
|
|
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,38 @@ 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. Act as a senior AI engineer and virtual assistant designer: precise, structured, and tool-aware. Provide clear, reproducible steps and production-ready answers.",
|
|
1549
|
+
"temperature": 0.3
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"modelName": "chatgpt-4o-latest",
|
|
1553
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be fast, helpful, and reliable. Prioritize clarity, concise answers, and practical guidance for building virtual assistants.",
|
|
1554
|
+
"temperature": 0.4
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"modelName": "gpt-4",
|
|
1558
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
|
|
1559
|
+
"temperature": 0.3
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1563
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
|
|
1564
|
+
"temperature": 0.4
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"modelName": "o4-mini",
|
|
1568
|
+
"systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
|
|
1569
|
+
"temperature": 0.2
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"modelName": "o1-mini",
|
|
1573
|
+
"systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
|
|
1574
|
+
"temperature": 0.2
|
|
1575
|
+
}
|
|
1576
|
+
]
|
|
1552
1577
|
}
|
|
1553
1578
|
],
|
|
1554
1579
|
"preparationIds": [
|
|
@@ -1559,55 +1584,55 @@ function getTemplatesPipelineCollection() {
|
|
|
1559
1584
|
"preparations": [
|
|
1560
1585
|
{
|
|
1561
1586
|
"id": 1,
|
|
1562
|
-
"promptbookVersion": "0.100.0-
|
|
1587
|
+
"promptbookVersion": "0.100.0-55",
|
|
1563
1588
|
"usage": {
|
|
1564
1589
|
"price": {
|
|
1565
|
-
"value": 0.
|
|
1590
|
+
"value": 0.0308725
|
|
1566
1591
|
},
|
|
1567
1592
|
"input": {
|
|
1568
1593
|
"tokensCount": {
|
|
1569
|
-
"value":
|
|
1594
|
+
"value": 5778
|
|
1570
1595
|
},
|
|
1571
1596
|
"charactersCount": {
|
|
1572
|
-
"value":
|
|
1597
|
+
"value": 2377
|
|
1573
1598
|
},
|
|
1574
1599
|
"wordsCount": {
|
|
1575
|
-
"value":
|
|
1600
|
+
"value": 348
|
|
1576
1601
|
},
|
|
1577
1602
|
"sentencesCount": {
|
|
1578
|
-
"value":
|
|
1603
|
+
"value": 22
|
|
1579
1604
|
},
|
|
1580
1605
|
"linesCount": {
|
|
1581
|
-
"value":
|
|
1606
|
+
"value": 65
|
|
1582
1607
|
},
|
|
1583
1608
|
"paragraphsCount": {
|
|
1584
1609
|
"value": 20
|
|
1585
1610
|
},
|
|
1586
1611
|
"pagesCount": {
|
|
1587
|
-
"value":
|
|
1612
|
+
"value": 2
|
|
1588
1613
|
}
|
|
1589
1614
|
},
|
|
1590
1615
|
"output": {
|
|
1591
1616
|
"tokensCount": {
|
|
1592
|
-
"value":
|
|
1617
|
+
"value": 2365
|
|
1593
1618
|
},
|
|
1594
1619
|
"charactersCount": {
|
|
1595
|
-
"value":
|
|
1620
|
+
"value": 1560
|
|
1596
1621
|
},
|
|
1597
1622
|
"wordsCount": {
|
|
1598
1623
|
"value": 195
|
|
1599
1624
|
},
|
|
1600
1625
|
"sentencesCount": {
|
|
1601
|
-
"value":
|
|
1626
|
+
"value": 23
|
|
1602
1627
|
},
|
|
1603
1628
|
"linesCount": {
|
|
1604
|
-
"value":
|
|
1629
|
+
"value": 48
|
|
1605
1630
|
},
|
|
1606
1631
|
"paragraphsCount": {
|
|
1607
|
-
"value":
|
|
1632
|
+
"value": 1
|
|
1608
1633
|
},
|
|
1609
1634
|
"pagesCount": {
|
|
1610
|
-
"value":
|
|
1635
|
+
"value": 2
|
|
1611
1636
|
}
|
|
1612
1637
|
}
|
|
1613
1638
|
}
|
|
@@ -2087,21 +2112,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2087
2112
|
"modelsRequirements": [
|
|
2088
2113
|
{
|
|
2089
2114
|
"modelVariant": "CHAT",
|
|
2090
|
-
"
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2115
|
+
"models": [
|
|
2116
|
+
{
|
|
2117
|
+
"modelName": "gpt-4.1",
|
|
2118
|
+
"systemMessage": "You are a developer of the Promptbook Project. Act as a senior AI engineer and virtual assistant designer: precise, structured, and tool-aware. Provide clear, reproducible steps and production-ready answers.",
|
|
2119
|
+
"temperature": 0.3
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"modelName": "chatgpt-4o-latest",
|
|
2123
|
+
"systemMessage": "You are a developer of the Promptbook Project. Be fast, helpful, and reliable. Prioritize clarity, concise answers, and practical guidance for building virtual assistants.",
|
|
2124
|
+
"temperature": 0.4
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
"modelName": "gpt-4",
|
|
2128
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
|
|
2129
|
+
"temperature": 0.3
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2133
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
|
|
2134
|
+
"temperature": 0.4
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"modelName": "o4-mini",
|
|
2138
|
+
"systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
|
|
2139
|
+
"temperature": 0.2
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"modelName": "o1-mini",
|
|
2143
|
+
"systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
|
|
2144
|
+
"temperature": 0.2
|
|
2145
|
+
}
|
|
2146
|
+
]
|
|
2105
2147
|
}
|
|
2106
2148
|
],
|
|
2107
2149
|
"preparationIds": [
|
|
@@ -2112,55 +2154,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2112
2154
|
"preparations": [
|
|
2113
2155
|
{
|
|
2114
2156
|
"id": 1,
|
|
2115
|
-
"promptbookVersion": "0.100.0-
|
|
2157
|
+
"promptbookVersion": "0.100.0-55",
|
|
2116
2158
|
"usage": {
|
|
2117
2159
|
"price": {
|
|
2118
|
-
"value": 0.
|
|
2160
|
+
"value": 0.0308725
|
|
2119
2161
|
},
|
|
2120
2162
|
"input": {
|
|
2121
2163
|
"tokensCount": {
|
|
2122
|
-
"value":
|
|
2164
|
+
"value": 5778
|
|
2123
2165
|
},
|
|
2124
2166
|
"charactersCount": {
|
|
2125
|
-
"value":
|
|
2167
|
+
"value": 2377
|
|
2126
2168
|
},
|
|
2127
2169
|
"wordsCount": {
|
|
2128
|
-
"value":
|
|
2170
|
+
"value": 348
|
|
2129
2171
|
},
|
|
2130
2172
|
"sentencesCount": {
|
|
2131
|
-
"value":
|
|
2173
|
+
"value": 22
|
|
2132
2174
|
},
|
|
2133
2175
|
"linesCount": {
|
|
2134
|
-
"value":
|
|
2176
|
+
"value": 65
|
|
2135
2177
|
},
|
|
2136
2178
|
"paragraphsCount": {
|
|
2137
2179
|
"value": 20
|
|
2138
2180
|
},
|
|
2139
2181
|
"pagesCount": {
|
|
2140
|
-
"value":
|
|
2182
|
+
"value": 2
|
|
2141
2183
|
}
|
|
2142
2184
|
},
|
|
2143
2185
|
"output": {
|
|
2144
2186
|
"tokensCount": {
|
|
2145
|
-
"value":
|
|
2187
|
+
"value": 2365
|
|
2146
2188
|
},
|
|
2147
2189
|
"charactersCount": {
|
|
2148
|
-
"value":
|
|
2190
|
+
"value": 1560
|
|
2149
2191
|
},
|
|
2150
2192
|
"wordsCount": {
|
|
2151
2193
|
"value": 195
|
|
2152
2194
|
},
|
|
2153
2195
|
"sentencesCount": {
|
|
2154
|
-
"value":
|
|
2196
|
+
"value": 23
|
|
2155
2197
|
},
|
|
2156
2198
|
"linesCount": {
|
|
2157
|
-
"value":
|
|
2199
|
+
"value": 48
|
|
2158
2200
|
},
|
|
2159
2201
|
"paragraphsCount": {
|
|
2160
|
-
"value":
|
|
2202
|
+
"value": 1
|
|
2161
2203
|
},
|
|
2162
2204
|
"pagesCount": {
|
|
2163
|
-
"value":
|
|
2205
|
+
"value": 2
|
|
2164
2206
|
}
|
|
2165
2207
|
}
|
|
2166
2208
|
}
|
|
@@ -2781,27 +2823,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2781
2823
|
"modelsRequirements": [
|
|
2782
2824
|
{
|
|
2783
2825
|
"modelVariant": "CHAT",
|
|
2784
|
-
"
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2826
|
+
"models": [
|
|
2827
|
+
{
|
|
2828
|
+
"modelName": "gpt-4.1",
|
|
2829
|
+
"systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
|
|
2830
|
+
"temperature": 0.2
|
|
2831
|
+
},
|
|
2832
|
+
{
|
|
2833
|
+
"modelName": "chatgpt-4o-latest",
|
|
2834
|
+
"systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
|
|
2835
|
+
"temperature": 0.25
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
"modelName": "gpt-4",
|
|
2839
|
+
"systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
|
|
2840
|
+
"temperature": 0.2
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2844
|
+
"systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
|
|
2845
|
+
"temperature": 0.25
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"modelName": "gpt-3.5-turbo",
|
|
2849
|
+
"systemMessage": "You are a linguist and meticulous text corrector and editor. Correct grammar, spelling, punctuation, agreement, and syntax; improve clarity, concision, and flow while preserving meaning and voice. Support multiple languages and dialects and detect language automatically. Follow any provided style guide or tone; otherwise default to concise, professional edits. By default return only the corrected text; include explanations or change lists only when asked. Ask clarifying questions if requirements are ambiguous.",
|
|
2850
|
+
"temperature": 0.3
|
|
2851
|
+
}
|
|
2852
|
+
]
|
|
2805
2853
|
}
|
|
2806
2854
|
],
|
|
2807
2855
|
"preparationIds": [
|
|
@@ -2812,55 +2860,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2812
2860
|
"preparations": [
|
|
2813
2861
|
{
|
|
2814
2862
|
"id": 1,
|
|
2815
|
-
"promptbookVersion": "0.100.0-
|
|
2863
|
+
"promptbookVersion": "0.100.0-55",
|
|
2816
2864
|
"usage": {
|
|
2817
2865
|
"price": {
|
|
2818
|
-
"value": 0.
|
|
2866
|
+
"value": 0.02903125
|
|
2819
2867
|
},
|
|
2820
2868
|
"input": {
|
|
2821
2869
|
"tokensCount": {
|
|
2822
|
-
"value":
|
|
2870
|
+
"value": 5777
|
|
2823
2871
|
},
|
|
2824
2872
|
"charactersCount": {
|
|
2825
|
-
"value":
|
|
2873
|
+
"value": 2377
|
|
2826
2874
|
},
|
|
2827
2875
|
"wordsCount": {
|
|
2828
|
-
"value":
|
|
2876
|
+
"value": 348
|
|
2829
2877
|
},
|
|
2830
2878
|
"sentencesCount": {
|
|
2831
|
-
"value":
|
|
2879
|
+
"value": 22
|
|
2832
2880
|
},
|
|
2833
2881
|
"linesCount": {
|
|
2834
|
-
"value":
|
|
2882
|
+
"value": 65
|
|
2835
2883
|
},
|
|
2836
2884
|
"paragraphsCount": {
|
|
2837
2885
|
"value": 20
|
|
2838
2886
|
},
|
|
2839
2887
|
"pagesCount": {
|
|
2840
|
-
"value":
|
|
2888
|
+
"value": 2
|
|
2841
2889
|
}
|
|
2842
2890
|
},
|
|
2843
2891
|
"output": {
|
|
2844
2892
|
"tokensCount": {
|
|
2845
|
-
"value":
|
|
2893
|
+
"value": 2181
|
|
2846
2894
|
},
|
|
2847
2895
|
"charactersCount": {
|
|
2848
|
-
"value":
|
|
2896
|
+
"value": 3096
|
|
2849
2897
|
},
|
|
2850
2898
|
"wordsCount": {
|
|
2851
|
-
"value":
|
|
2899
|
+
"value": 408
|
|
2852
2900
|
},
|
|
2853
2901
|
"sentencesCount": {
|
|
2854
|
-
"value":
|
|
2902
|
+
"value": 39
|
|
2855
2903
|
},
|
|
2856
2904
|
"linesCount": {
|
|
2857
|
-
"value":
|
|
2905
|
+
"value": 69
|
|
2858
2906
|
},
|
|
2859
2907
|
"paragraphsCount": {
|
|
2860
|
-
"value":
|
|
2908
|
+
"value": 1
|
|
2861
2909
|
},
|
|
2862
2910
|
"pagesCount": {
|
|
2863
|
-
"value":
|
|
2911
|
+
"value": 2
|
|
2864
2912
|
}
|
|
2865
2913
|
}
|
|
2866
2914
|
}
|
|
@@ -2923,21 +2971,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2923
2971
|
"modelsRequirements": [
|
|
2924
2972
|
{
|
|
2925
2973
|
"modelVariant": "CHAT",
|
|
2926
|
-
"
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2974
|
+
"models": [
|
|
2975
|
+
{
|
|
2976
|
+
"modelName": "gpt-4.1",
|
|
2977
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
|
|
2978
|
+
"temperature": 0.7
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"modelName": "chatgpt-4o-latest",
|
|
2982
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
|
|
2983
|
+
"temperature": 0.75
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"modelName": "gpt-4",
|
|
2987
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
|
|
2988
|
+
"temperature": 0.7
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2992
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
|
|
2993
|
+
"temperature": 0.65
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
2997
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
|
|
2998
|
+
"temperature": 0.6
|
|
2999
|
+
},
|
|
3000
|
+
{
|
|
3001
|
+
"modelName": "gpt-3.5-turbo",
|
|
3002
|
+
"systemMessage": "You are a skilled e-commerce copywriter for an online shop. Produce persuasive, brand-aligned copy that increases conversion and SEO performance. - Focus on benefits before features; use clear, scannable structure (headline, 3–5 bullets, short paragraphs, CTA). - Naturally integrate primary and semantic keywords without stuffing; include SEO title (55–60 chars), meta description (150–160 chars), and 5–10 tags when asked. - Match the requested tone, audience, and locale (units, currency); write in the user's language. - Provide A/B variants and alt text when requested; suggest cross-sell/upsell ideas. - Keep claims accurate and compliant; no unverifiable superlatives, medical, or legal claims. - If critical details are missing, ask up to 3 concise clarifying questions. Return only the content unless the user asks for explanations.",
|
|
3003
|
+
"temperature": 0.6
|
|
3004
|
+
}
|
|
3005
|
+
]
|
|
2941
3006
|
}
|
|
2942
3007
|
],
|
|
2943
3008
|
"preparationIds": [
|
|
@@ -2948,55 +3013,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2948
3013
|
"preparations": [
|
|
2949
3014
|
{
|
|
2950
3015
|
"id": 1,
|
|
2951
|
-
"promptbookVersion": "0.100.0-
|
|
3016
|
+
"promptbookVersion": "0.100.0-55",
|
|
2952
3017
|
"usage": {
|
|
2953
3018
|
"price": {
|
|
2954
|
-
"value": 0.
|
|
3019
|
+
"value": 0.04264125
|
|
2955
3020
|
},
|
|
2956
3021
|
"input": {
|
|
2957
3022
|
"tokensCount": {
|
|
2958
|
-
"value":
|
|
3023
|
+
"value": 5777
|
|
2959
3024
|
},
|
|
2960
3025
|
"charactersCount": {
|
|
2961
|
-
"value":
|
|
3026
|
+
"value": 2377
|
|
2962
3027
|
},
|
|
2963
3028
|
"wordsCount": {
|
|
2964
|
-
"value":
|
|
3029
|
+
"value": 348
|
|
2965
3030
|
},
|
|
2966
3031
|
"sentencesCount": {
|
|
2967
|
-
"value":
|
|
3032
|
+
"value": 22
|
|
2968
3033
|
},
|
|
2969
3034
|
"linesCount": {
|
|
2970
|
-
"value":
|
|
3035
|
+
"value": 65
|
|
2971
3036
|
},
|
|
2972
3037
|
"paragraphsCount": {
|
|
2973
3038
|
"value": 20
|
|
2974
3039
|
},
|
|
2975
3040
|
"pagesCount": {
|
|
2976
|
-
"value":
|
|
3041
|
+
"value": 2
|
|
2977
3042
|
}
|
|
2978
3043
|
},
|
|
2979
3044
|
"output": {
|
|
2980
3045
|
"tokensCount": {
|
|
2981
|
-
"value":
|
|
3046
|
+
"value": 3542
|
|
2982
3047
|
},
|
|
2983
3048
|
"charactersCount": {
|
|
2984
|
-
"value":
|
|
3049
|
+
"value": 5673
|
|
2985
3050
|
},
|
|
2986
3051
|
"wordsCount": {
|
|
2987
|
-
"value":
|
|
3052
|
+
"value": 821
|
|
2988
3053
|
},
|
|
2989
3054
|
"sentencesCount": {
|
|
2990
|
-
"value":
|
|
3055
|
+
"value": 65
|
|
2991
3056
|
},
|
|
2992
3057
|
"linesCount": {
|
|
2993
|
-
"value":
|
|
3058
|
+
"value": 112
|
|
2994
3059
|
},
|
|
2995
3060
|
"paragraphsCount": {
|
|
2996
|
-
"value":
|
|
3061
|
+
"value": 1
|
|
2997
3062
|
},
|
|
2998
3063
|
"pagesCount": {
|
|
2999
|
-
"value":
|
|
3064
|
+
"value": 3
|
|
3000
3065
|
}
|
|
3001
3066
|
}
|
|
3002
3067
|
}
|
|
@@ -3044,7 +3109,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3044
3109
|
"preparations": [
|
|
3045
3110
|
{
|
|
3046
3111
|
"id": 1,
|
|
3047
|
-
"promptbookVersion": "0.100.0-
|
|
3112
|
+
"promptbookVersion": "0.100.0-55",
|
|
3048
3113
|
"usage": {
|
|
3049
3114
|
"price": {
|
|
3050
3115
|
"value": 0
|
|
@@ -3150,27 +3215,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3150
3215
|
"modelsRequirements": [
|
|
3151
3216
|
{
|
|
3152
3217
|
"modelVariant": "CHAT",
|
|
3153
|
-
"
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3218
|
+
"models": [
|
|
3219
|
+
{
|
|
3220
|
+
"modelName": "gpt-4.1",
|
|
3221
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide strategic, data-driven guidance across brand strategy, go-to-market, performance marketing, pricing, positioning, and growth. Deliver concise, actionable recommendations with clear frameworks (e.g., STP, 4Ps, AARRR), measurable KPIs, and ROI assumptions. Ask clarifying questions when requirements are ambiguous and state assumptions.",
|
|
3222
|
+
"temperature": 0.3
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
"modelName": "chatgpt-4o-latest",
|
|
3226
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant with a friendly, persuasive tone. Ideate campaigns and produce on-brand copy (headlines, emails, ads, landing pages, social calendars). Provide multiple variations, A/B test ideas, and clear next steps while keeping messages audience-centric.",
|
|
3227
|
+
"temperature": 0.7
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"modelName": "gpt-4",
|
|
3231
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Be rigorous and practical: conduct market sizing, competitive analysis, unit economics, and funnel diagnostics. Present step-by-step plans, show key calculations succinctly, and recommend KPIs and measurement plans.",
|
|
3232
|
+
"temperature": 0.35
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
"modelName": "o4-mini",
|
|
3236
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant focused on quantitative analysis. Build forecasts, CAC/LTV models, cohort analyses, media mix/budget allocations, and scenario plans. Explain assumptions and include formulas or simple modeling steps when helpful.",
|
|
3237
|
+
"temperature": 0.2
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3241
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise recommendations, checklists, and templates for common tasks (ICP, messaging, channel plans, editorial calendars). Use clear bullet points and avoid unnecessary verbosity.",
|
|
3242
|
+
"temperature": 0.4
|
|
3243
|
+
}
|
|
3244
|
+
]
|
|
3174
3245
|
}
|
|
3175
3246
|
],
|
|
3176
3247
|
"preparationIds": [
|
|
@@ -3181,55 +3252,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3181
3252
|
"preparations": [
|
|
3182
3253
|
{
|
|
3183
3254
|
"id": 1,
|
|
3184
|
-
"promptbookVersion": "0.100.0-
|
|
3255
|
+
"promptbookVersion": "0.100.0-55",
|
|
3185
3256
|
"usage": {
|
|
3186
3257
|
"price": {
|
|
3187
|
-
"value": 0.
|
|
3258
|
+
"value": 0.02966125
|
|
3188
3259
|
},
|
|
3189
3260
|
"input": {
|
|
3190
3261
|
"tokensCount": {
|
|
3191
|
-
"value":
|
|
3262
|
+
"value": 5777
|
|
3192
3263
|
},
|
|
3193
3264
|
"charactersCount": {
|
|
3194
|
-
"value":
|
|
3265
|
+
"value": 2377
|
|
3195
3266
|
},
|
|
3196
3267
|
"wordsCount": {
|
|
3197
|
-
"value":
|
|
3268
|
+
"value": 348
|
|
3198
3269
|
},
|
|
3199
3270
|
"sentencesCount": {
|
|
3200
|
-
"value":
|
|
3271
|
+
"value": 22
|
|
3201
3272
|
},
|
|
3202
3273
|
"linesCount": {
|
|
3203
|
-
"value":
|
|
3274
|
+
"value": 65
|
|
3204
3275
|
},
|
|
3205
3276
|
"paragraphsCount": {
|
|
3206
3277
|
"value": 20
|
|
3207
3278
|
},
|
|
3208
3279
|
"pagesCount": {
|
|
3209
|
-
"value":
|
|
3280
|
+
"value": 2
|
|
3210
3281
|
}
|
|
3211
3282
|
},
|
|
3212
3283
|
"output": {
|
|
3213
3284
|
"tokensCount": {
|
|
3214
|
-
"value":
|
|
3285
|
+
"value": 2244
|
|
3215
3286
|
},
|
|
3216
3287
|
"charactersCount": {
|
|
3217
|
-
"value":
|
|
3288
|
+
"value": 2055
|
|
3218
3289
|
},
|
|
3219
3290
|
"wordsCount": {
|
|
3220
|
-
"value":
|
|
3291
|
+
"value": 256
|
|
3221
3292
|
},
|
|
3222
3293
|
"sentencesCount": {
|
|
3223
|
-
"value":
|
|
3294
|
+
"value": 26
|
|
3224
3295
|
},
|
|
3225
3296
|
"linesCount": {
|
|
3226
|
-
"value":
|
|
3297
|
+
"value": 52
|
|
3227
3298
|
},
|
|
3228
3299
|
"paragraphsCount": {
|
|
3229
|
-
"value":
|
|
3300
|
+
"value": 1
|
|
3230
3301
|
},
|
|
3231
3302
|
"pagesCount": {
|
|
3232
|
-
"value":
|
|
3303
|
+
"value": 2
|
|
3233
3304
|
}
|
|
3234
3305
|
}
|
|
3235
3306
|
}
|
|
@@ -3300,33 +3371,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3300
3371
|
"modelsRequirements": [
|
|
3301
3372
|
{
|
|
3302
3373
|
"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
|
|
3374
|
+
"models": [
|
|
3375
|
+
{
|
|
3376
|
+
"modelName": "gpt-4.1",
|
|
3377
|
+
"systemMessage": "You are a customer service representative and skilled ecommerce copywriter for our online shop. Priorities: accuracy, empathy, and clear next steps. For support: ask targeted clarifying questions (order ID, email, item, dates), never invent policies or stock info, protect PII (never request full card numbers), and propose practical resolutions (returns, exchanges, refunds, shipping updates, troubleshooting). For copywriting: produce persuasive, on-brand, benefit-led copy with clear CTAs; keep it scannable (short paragraphs, bullets), and include key specs and optional SEO suggestions when relevant. If information or policy is missing, ask for it or state limits. Keep tone warm, professional, and helpful.",
|
|
3378
|
+
"temperature": 0.5
|
|
3379
|
+
},
|
|
3380
|
+
{
|
|
3381
|
+
"modelName": "chatgpt-4o-latest",
|
|
3382
|
+
"systemMessage": "You are a friendly, fast, and reliable virtual assistant for an online shop—both customer support rep and ecommerce copywriter. Be empathetic and concise; ask clarifying questions before answering; never fabricate order, inventory, or policy details; protect customer data. Provide clear, step-by-step guidance for orders, returns, shipping, and product questions. When writing copy, keep it benefit-driven, on-brand, scannable, and include strong calls to action; offer optional SEO keywords and variants when helpful.",
|
|
3383
|
+
"temperature": 0.5
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"modelName": "gpt-4",
|
|
3387
|
+
"systemMessage": "Act as a customer service representative and ecommerce copywriter. For support, be accurate, empathetic, and solution-oriented; ask for missing details; don’t invent policies; protect PII; outline next steps clearly with bullets when useful. For copy, write persuasive, benefit-first text aligned with brand voice, include key specs and clear CTAs, and avoid unverifiable claims. If unsure, state limitations and request the needed info.",
|
|
3388
|
+
"temperature": 0.5
|
|
3389
|
+
},
|
|
3390
|
+
{
|
|
3391
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3392
|
+
"systemMessage": "You are a helpful customer service rep and ecommerce copywriter for an online store. Keep responses concise, polite, and accurate. Ask clarifying questions before resolving issues; do not invent data or policies; protect customer privacy. For copywriting, deliver on-brand, benefit-led, scannable copy with clear CTAs and optional SEO suggestions. If information is missing, request it.",
|
|
3393
|
+
"temperature": 0.5
|
|
3394
|
+
}
|
|
3395
|
+
]
|
|
3330
3396
|
}
|
|
3331
3397
|
],
|
|
3332
3398
|
"preparationIds": [
|
|
@@ -3337,52 +3403,52 @@ function getTemplatesPipelineCollection() {
|
|
|
3337
3403
|
"preparations": [
|
|
3338
3404
|
{
|
|
3339
3405
|
"id": 1,
|
|
3340
|
-
"promptbookVersion": "0.100.0-
|
|
3406
|
+
"promptbookVersion": "0.100.0-55",
|
|
3341
3407
|
"usage": {
|
|
3342
3408
|
"price": {
|
|
3343
|
-
"value": 0.
|
|
3409
|
+
"value": 0.045436250000000004
|
|
3344
3410
|
},
|
|
3345
3411
|
"input": {
|
|
3346
3412
|
"tokensCount": {
|
|
3347
|
-
"value":
|
|
3413
|
+
"value": 5781
|
|
3348
3414
|
},
|
|
3349
3415
|
"charactersCount": {
|
|
3350
|
-
"value":
|
|
3416
|
+
"value": 2377
|
|
3351
3417
|
},
|
|
3352
3418
|
"wordsCount": {
|
|
3353
|
-
"value":
|
|
3419
|
+
"value": 348
|
|
3354
3420
|
},
|
|
3355
3421
|
"sentencesCount": {
|
|
3356
|
-
"value":
|
|
3422
|
+
"value": 22
|
|
3357
3423
|
},
|
|
3358
3424
|
"linesCount": {
|
|
3359
|
-
"value":
|
|
3425
|
+
"value": 65
|
|
3360
3426
|
},
|
|
3361
3427
|
"paragraphsCount": {
|
|
3362
3428
|
"value": 20
|
|
3363
3429
|
},
|
|
3364
3430
|
"pagesCount": {
|
|
3365
|
-
"value":
|
|
3431
|
+
"value": 2
|
|
3366
3432
|
}
|
|
3367
3433
|
},
|
|
3368
3434
|
"output": {
|
|
3369
3435
|
"tokensCount": {
|
|
3370
|
-
"value":
|
|
3436
|
+
"value": 3821
|
|
3371
3437
|
},
|
|
3372
3438
|
"charactersCount": {
|
|
3373
|
-
"value":
|
|
3439
|
+
"value": 2473
|
|
3374
3440
|
},
|
|
3375
3441
|
"wordsCount": {
|
|
3376
|
-
"value":
|
|
3442
|
+
"value": 341
|
|
3377
3443
|
},
|
|
3378
3444
|
"sentencesCount": {
|
|
3379
|
-
"value":
|
|
3445
|
+
"value": 26
|
|
3380
3446
|
},
|
|
3381
3447
|
"linesCount": {
|
|
3382
|
-
"value":
|
|
3448
|
+
"value": 56
|
|
3383
3449
|
},
|
|
3384
3450
|
"paragraphsCount": {
|
|
3385
|
-
"value":
|
|
3451
|
+
"value": 1
|
|
3386
3452
|
},
|
|
3387
3453
|
"pagesCount": {
|
|
3388
3454
|
"value": 2
|
|
@@ -3633,27 +3699,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3633
3699
|
"modelsRequirements": [
|
|
3634
3700
|
{
|
|
3635
3701
|
"modelVariant": "CHAT",
|
|
3636
|
-
"
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3702
|
+
"models": [
|
|
3703
|
+
{
|
|
3704
|
+
"modelName": "gpt-4.1",
|
|
3705
|
+
"systemMessage": "You are a linguist and Esperantist. Provide precise, well-sourced linguistic analysis (phonetics/IPA, phonology, morphology, syntax, semantics, pragmatics, sociolinguistics) and clear, concise explanations. Translate to and from Esperanto and other languages; default to the user's language (English if unclear), and respond fully in Esperanto when the task is Esperanto-focused. When useful, include: IPA transcription, morphological segmentation with Leipzig glossing, and brief usage/etymology notes. Be descriptive rather than prescriptive, but note prescriptive norms if relevant. Ask clarifying questions when a request is ambiguous.",
|
|
3706
|
+
"temperature": 0.35
|
|
3707
|
+
},
|
|
3708
|
+
{
|
|
3709
|
+
"modelName": "gpt-4",
|
|
3710
|
+
"systemMessage": "You are a linguist and Esperantist assistant. Offer accurate linguistic analysis and pedagogy: IPA, phonology, morphology, syntax, semantics, pragmatics, typology, and sociolinguistics. Translate to/from Esperanto; use the user's language by default and switch to Esperanto when appropriate. Provide interlinear glossed text (Leipzig rules) for examples when helpful. Be neutral and descriptive, cite norms when needed, and ask for clarification if requirements are unclear.",
|
|
3711
|
+
"temperature": 0.4
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
"modelName": "chatgpt-4o-latest",
|
|
3715
|
+
"systemMessage": "You are a friendly, expert linguist and Esperantist. Explain language phenomena clearly, give IPA and interlinear glosses when useful, and translate accurately to/from Esperanto. Match the user's language; use Esperanto for Esperanto-specific tasks. Be concise, helpful, and ask clarifying questions if the goal is not explicit.",
|
|
3716
|
+
"temperature": 0.5
|
|
3717
|
+
},
|
|
3718
|
+
{
|
|
3719
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3720
|
+
"systemMessage": "You are a cost-efficient linguist and Esperantist assistant. Provide clear explanations of grammar and phonology, basic IPA, interlinear glossing (Leipzig), and reliable translations to/from Esperanto. Keep answers concise, ask clarifying questions when needed, and match the user's language.",
|
|
3721
|
+
"temperature": 0.6
|
|
3722
|
+
}
|
|
3723
|
+
]
|
|
3657
3724
|
}
|
|
3658
3725
|
],
|
|
3659
3726
|
"preparationIds": [
|
|
@@ -3664,55 +3731,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3664
3731
|
"preparations": [
|
|
3665
3732
|
{
|
|
3666
3733
|
"id": 1,
|
|
3667
|
-
"promptbookVersion": "0.100.0-
|
|
3734
|
+
"promptbookVersion": "0.100.0-55",
|
|
3668
3735
|
"usage": {
|
|
3669
3736
|
"price": {
|
|
3670
|
-
"value": 0.
|
|
3737
|
+
"value": 0.030741250000000005
|
|
3671
3738
|
},
|
|
3672
3739
|
"input": {
|
|
3673
3740
|
"tokensCount": {
|
|
3674
|
-
"value":
|
|
3741
|
+
"value": 5777
|
|
3675
3742
|
},
|
|
3676
3743
|
"charactersCount": {
|
|
3677
|
-
"value":
|
|
3744
|
+
"value": 2377
|
|
3678
3745
|
},
|
|
3679
3746
|
"wordsCount": {
|
|
3680
|
-
"value":
|
|
3747
|
+
"value": 348
|
|
3681
3748
|
},
|
|
3682
3749
|
"sentencesCount": {
|
|
3683
|
-
"value":
|
|
3750
|
+
"value": 22
|
|
3684
3751
|
},
|
|
3685
3752
|
"linesCount": {
|
|
3686
|
-
"value":
|
|
3753
|
+
"value": 65
|
|
3687
3754
|
},
|
|
3688
3755
|
"paragraphsCount": {
|
|
3689
3756
|
"value": 20
|
|
3690
3757
|
},
|
|
3691
3758
|
"pagesCount": {
|
|
3692
|
-
"value":
|
|
3759
|
+
"value": 2
|
|
3693
3760
|
}
|
|
3694
3761
|
},
|
|
3695
3762
|
"output": {
|
|
3696
3763
|
"tokensCount": {
|
|
3697
|
-
"value":
|
|
3764
|
+
"value": 2352
|
|
3698
3765
|
},
|
|
3699
3766
|
"charactersCount": {
|
|
3700
|
-
"value":
|
|
3767
|
+
"value": 2152
|
|
3701
3768
|
},
|
|
3702
3769
|
"wordsCount": {
|
|
3703
|
-
"value":
|
|
3770
|
+
"value": 283
|
|
3704
3771
|
},
|
|
3705
3772
|
"sentencesCount": {
|
|
3706
|
-
"value":
|
|
3773
|
+
"value": 25
|
|
3707
3774
|
},
|
|
3708
3775
|
"linesCount": {
|
|
3709
|
-
"value":
|
|
3776
|
+
"value": 51
|
|
3710
3777
|
},
|
|
3711
3778
|
"paragraphsCount": {
|
|
3712
|
-
"value":
|
|
3779
|
+
"value": 1
|
|
3713
3780
|
},
|
|
3714
3781
|
"pagesCount": {
|
|
3715
|
-
"value":
|
|
3782
|
+
"value": 2
|
|
3716
3783
|
}
|
|
3717
3784
|
}
|
|
3718
3785
|
}
|
|
@@ -3774,33 +3841,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3774
3841
|
"modelsRequirements": [
|
|
3775
3842
|
{
|
|
3776
3843
|
"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
|
|
3844
|
+
"models": [
|
|
3845
|
+
{
|
|
3846
|
+
"modelName": "gpt-4.1",
|
|
3847
|
+
"systemMessage": "You are an accomplished poet and storyteller. Compose vivid, original verse and narrative with strong imagery, rhythm, and voice. Adapt to requested forms (meter, rhyme, syllable counts, POV), honor constraints and tone, and avoid clichés. Use precise, sensory language. Ask one brief clarifying question if constraints are ambiguous; otherwise proceed.",
|
|
3848
|
+
"temperature": 0.95
|
|
3849
|
+
},
|
|
3850
|
+
{
|
|
3851
|
+
"modelName": "chatgpt-4o-latest",
|
|
3852
|
+
"systemMessage": "You are an accomplished poet and storyteller with a warm, collaborative tone. Craft lyrical, sensory-rich writing across forms and genres; mirror the user's style and constraints; maintain coherence and an emotional arc; and offer succinct revision options only when asked.",
|
|
3853
|
+
"temperature": 0.9
|
|
3854
|
+
},
|
|
3855
|
+
{
|
|
3856
|
+
"modelName": "gpt-4",
|
|
3857
|
+
"systemMessage": "You are an accomplished poet and storyteller. Produce polished, evocative poems and stories; respect strict formal constraints; favor concrete imagery and fresh metaphors; revise for rhythm and musicality; keep explanations minimal unless requested.",
|
|
3858
|
+
"temperature": 0.85
|
|
3859
|
+
},
|
|
3860
|
+
{
|
|
3861
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3862
|
+
"systemMessage": "You are an accomplished poet and storyteller focused on clarity under constraints. Briefly restate key requirements, then deliver vivid, original text that avoids clichés and follows the specified form. If meter or rhyme is required, scan and self-correct before final output.",
|
|
3863
|
+
"temperature": 0.75
|
|
3864
|
+
}
|
|
3865
|
+
]
|
|
3804
3866
|
}
|
|
3805
3867
|
],
|
|
3806
3868
|
"preparationIds": [
|
|
@@ -3811,55 +3873,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3811
3873
|
"preparations": [
|
|
3812
3874
|
{
|
|
3813
3875
|
"id": 1,
|
|
3814
|
-
"promptbookVersion": "0.100.0-
|
|
3876
|
+
"promptbookVersion": "0.100.0-55",
|
|
3815
3877
|
"usage": {
|
|
3816
3878
|
"price": {
|
|
3817
|
-
"value": 0.
|
|
3879
|
+
"value": 0.03003
|
|
3818
3880
|
},
|
|
3819
3881
|
"input": {
|
|
3820
3882
|
"tokensCount": {
|
|
3821
|
-
"value":
|
|
3883
|
+
"value": 5776
|
|
3822
3884
|
},
|
|
3823
3885
|
"charactersCount": {
|
|
3824
|
-
"value":
|
|
3886
|
+
"value": 2377
|
|
3825
3887
|
},
|
|
3826
3888
|
"wordsCount": {
|
|
3827
|
-
"value":
|
|
3889
|
+
"value": 348
|
|
3828
3890
|
},
|
|
3829
3891
|
"sentencesCount": {
|
|
3830
|
-
"value":
|
|
3892
|
+
"value": 22
|
|
3831
3893
|
},
|
|
3832
3894
|
"linesCount": {
|
|
3833
|
-
"value":
|
|
3895
|
+
"value": 65
|
|
3834
3896
|
},
|
|
3835
3897
|
"paragraphsCount": {
|
|
3836
3898
|
"value": 20
|
|
3837
3899
|
},
|
|
3838
3900
|
"pagesCount": {
|
|
3839
|
-
"value":
|
|
3901
|
+
"value": 2
|
|
3840
3902
|
}
|
|
3841
3903
|
},
|
|
3842
3904
|
"output": {
|
|
3843
3905
|
"tokensCount": {
|
|
3844
|
-
"value":
|
|
3906
|
+
"value": 2281
|
|
3845
3907
|
},
|
|
3846
3908
|
"charactersCount": {
|
|
3847
|
-
"value":
|
|
3909
|
+
"value": 1572
|
|
3848
3910
|
},
|
|
3849
3911
|
"wordsCount": {
|
|
3850
|
-
"value":
|
|
3912
|
+
"value": 209
|
|
3851
3913
|
},
|
|
3852
3914
|
"sentencesCount": {
|
|
3853
|
-
"value":
|
|
3915
|
+
"value": 19
|
|
3854
3916
|
},
|
|
3855
3917
|
"linesCount": {
|
|
3856
|
-
"value":
|
|
3918
|
+
"value": 42
|
|
3857
3919
|
},
|
|
3858
3920
|
"paragraphsCount": {
|
|
3859
|
-
"value":
|
|
3921
|
+
"value": 1
|
|
3860
3922
|
},
|
|
3861
3923
|
"pagesCount": {
|
|
3862
|
-
"value":
|
|
3924
|
+
"value": 1
|
|
3863
3925
|
}
|
|
3864
3926
|
}
|
|
3865
3927
|
}
|