@promptbook/templates 0.100.0-5 → 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 +344 -294
- 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 +348 -298
- 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,33 +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
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
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
|
+
]
|
|
1564
1577
|
}
|
|
1565
1578
|
],
|
|
1566
1579
|
"preparationIds": [
|
|
@@ -1571,52 +1584,52 @@ function getTemplatesPipelineCollection() {
|
|
|
1571
1584
|
"preparations": [
|
|
1572
1585
|
{
|
|
1573
1586
|
"id": 1,
|
|
1574
|
-
"promptbookVersion": "0.100.0-
|
|
1587
|
+
"promptbookVersion": "0.100.0-55",
|
|
1575
1588
|
"usage": {
|
|
1576
1589
|
"price": {
|
|
1577
|
-
"value": 0.
|
|
1590
|
+
"value": 0.0308725
|
|
1578
1591
|
},
|
|
1579
1592
|
"input": {
|
|
1580
1593
|
"tokensCount": {
|
|
1581
|
-
"value":
|
|
1594
|
+
"value": 5778
|
|
1582
1595
|
},
|
|
1583
1596
|
"charactersCount": {
|
|
1584
|
-
"value":
|
|
1597
|
+
"value": 2377
|
|
1585
1598
|
},
|
|
1586
1599
|
"wordsCount": {
|
|
1587
|
-
"value":
|
|
1600
|
+
"value": 348
|
|
1588
1601
|
},
|
|
1589
1602
|
"sentencesCount": {
|
|
1590
|
-
"value":
|
|
1603
|
+
"value": 22
|
|
1591
1604
|
},
|
|
1592
1605
|
"linesCount": {
|
|
1593
|
-
"value":
|
|
1606
|
+
"value": 65
|
|
1594
1607
|
},
|
|
1595
1608
|
"paragraphsCount": {
|
|
1596
1609
|
"value": 20
|
|
1597
1610
|
},
|
|
1598
1611
|
"pagesCount": {
|
|
1599
|
-
"value":
|
|
1612
|
+
"value": 2
|
|
1600
1613
|
}
|
|
1601
1614
|
},
|
|
1602
1615
|
"output": {
|
|
1603
1616
|
"tokensCount": {
|
|
1604
|
-
"value":
|
|
1617
|
+
"value": 2365
|
|
1605
1618
|
},
|
|
1606
1619
|
"charactersCount": {
|
|
1607
|
-
"value":
|
|
1620
|
+
"value": 1560
|
|
1608
1621
|
},
|
|
1609
1622
|
"wordsCount": {
|
|
1610
|
-
"value":
|
|
1623
|
+
"value": 195
|
|
1611
1624
|
},
|
|
1612
1625
|
"sentencesCount": {
|
|
1613
1626
|
"value": 23
|
|
1614
1627
|
},
|
|
1615
1628
|
"linesCount": {
|
|
1616
|
-
"value":
|
|
1629
|
+
"value": 48
|
|
1617
1630
|
},
|
|
1618
1631
|
"paragraphsCount": {
|
|
1619
|
-
"value":
|
|
1632
|
+
"value": 1
|
|
1620
1633
|
},
|
|
1621
1634
|
"pagesCount": {
|
|
1622
1635
|
"value": 2
|
|
@@ -2099,33 +2112,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2099
2112
|
"modelsRequirements": [
|
|
2100
2113
|
{
|
|
2101
2114
|
"modelVariant": "CHAT",
|
|
2102
|
-
"
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
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
|
+
]
|
|
2129
2147
|
}
|
|
2130
2148
|
],
|
|
2131
2149
|
"preparationIds": [
|
|
@@ -2136,52 +2154,52 @@ function getTemplatesPipelineCollection() {
|
|
|
2136
2154
|
"preparations": [
|
|
2137
2155
|
{
|
|
2138
2156
|
"id": 1,
|
|
2139
|
-
"promptbookVersion": "0.100.0-
|
|
2157
|
+
"promptbookVersion": "0.100.0-55",
|
|
2140
2158
|
"usage": {
|
|
2141
2159
|
"price": {
|
|
2142
|
-
"value": 0.
|
|
2160
|
+
"value": 0.0308725
|
|
2143
2161
|
},
|
|
2144
2162
|
"input": {
|
|
2145
2163
|
"tokensCount": {
|
|
2146
|
-
"value":
|
|
2164
|
+
"value": 5778
|
|
2147
2165
|
},
|
|
2148
2166
|
"charactersCount": {
|
|
2149
|
-
"value":
|
|
2167
|
+
"value": 2377
|
|
2150
2168
|
},
|
|
2151
2169
|
"wordsCount": {
|
|
2152
|
-
"value":
|
|
2170
|
+
"value": 348
|
|
2153
2171
|
},
|
|
2154
2172
|
"sentencesCount": {
|
|
2155
|
-
"value":
|
|
2173
|
+
"value": 22
|
|
2156
2174
|
},
|
|
2157
2175
|
"linesCount": {
|
|
2158
|
-
"value":
|
|
2176
|
+
"value": 65
|
|
2159
2177
|
},
|
|
2160
2178
|
"paragraphsCount": {
|
|
2161
2179
|
"value": 20
|
|
2162
2180
|
},
|
|
2163
2181
|
"pagesCount": {
|
|
2164
|
-
"value":
|
|
2182
|
+
"value": 2
|
|
2165
2183
|
}
|
|
2166
2184
|
},
|
|
2167
2185
|
"output": {
|
|
2168
2186
|
"tokensCount": {
|
|
2169
|
-
"value":
|
|
2187
|
+
"value": 2365
|
|
2170
2188
|
},
|
|
2171
2189
|
"charactersCount": {
|
|
2172
|
-
"value":
|
|
2190
|
+
"value": 1560
|
|
2173
2191
|
},
|
|
2174
2192
|
"wordsCount": {
|
|
2175
|
-
"value":
|
|
2193
|
+
"value": 195
|
|
2176
2194
|
},
|
|
2177
2195
|
"sentencesCount": {
|
|
2178
2196
|
"value": 23
|
|
2179
2197
|
},
|
|
2180
2198
|
"linesCount": {
|
|
2181
|
-
"value":
|
|
2199
|
+
"value": 48
|
|
2182
2200
|
},
|
|
2183
2201
|
"paragraphsCount": {
|
|
2184
|
-
"value":
|
|
2202
|
+
"value": 1
|
|
2185
2203
|
},
|
|
2186
2204
|
"pagesCount": {
|
|
2187
2205
|
"value": 2
|
|
@@ -2805,21 +2823,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2805
2823
|
"modelsRequirements": [
|
|
2806
2824
|
{
|
|
2807
2825
|
"modelVariant": "CHAT",
|
|
2808
|
-
"
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
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
|
+
]
|
|
2823
2853
|
}
|
|
2824
2854
|
],
|
|
2825
2855
|
"preparationIds": [
|
|
@@ -2830,55 +2860,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2830
2860
|
"preparations": [
|
|
2831
2861
|
{
|
|
2832
2862
|
"id": 1,
|
|
2833
|
-
"promptbookVersion": "0.100.0-
|
|
2863
|
+
"promptbookVersion": "0.100.0-55",
|
|
2834
2864
|
"usage": {
|
|
2835
2865
|
"price": {
|
|
2836
|
-
"value": 0.
|
|
2866
|
+
"value": 0.02903125
|
|
2837
2867
|
},
|
|
2838
2868
|
"input": {
|
|
2839
2869
|
"tokensCount": {
|
|
2840
|
-
"value":
|
|
2870
|
+
"value": 5777
|
|
2841
2871
|
},
|
|
2842
2872
|
"charactersCount": {
|
|
2843
|
-
"value":
|
|
2873
|
+
"value": 2377
|
|
2844
2874
|
},
|
|
2845
2875
|
"wordsCount": {
|
|
2846
|
-
"value":
|
|
2876
|
+
"value": 348
|
|
2847
2877
|
},
|
|
2848
2878
|
"sentencesCount": {
|
|
2849
|
-
"value":
|
|
2879
|
+
"value": 22
|
|
2850
2880
|
},
|
|
2851
2881
|
"linesCount": {
|
|
2852
|
-
"value":
|
|
2882
|
+
"value": 65
|
|
2853
2883
|
},
|
|
2854
2884
|
"paragraphsCount": {
|
|
2855
2885
|
"value": 20
|
|
2856
2886
|
},
|
|
2857
2887
|
"pagesCount": {
|
|
2858
|
-
"value":
|
|
2888
|
+
"value": 2
|
|
2859
2889
|
}
|
|
2860
2890
|
},
|
|
2861
2891
|
"output": {
|
|
2862
2892
|
"tokensCount": {
|
|
2863
|
-
"value":
|
|
2893
|
+
"value": 2181
|
|
2864
2894
|
},
|
|
2865
2895
|
"charactersCount": {
|
|
2866
|
-
"value":
|
|
2896
|
+
"value": 3096
|
|
2867
2897
|
},
|
|
2868
2898
|
"wordsCount": {
|
|
2869
|
-
"value":
|
|
2899
|
+
"value": 408
|
|
2870
2900
|
},
|
|
2871
2901
|
"sentencesCount": {
|
|
2872
|
-
"value":
|
|
2902
|
+
"value": 39
|
|
2873
2903
|
},
|
|
2874
2904
|
"linesCount": {
|
|
2875
|
-
"value":
|
|
2905
|
+
"value": 69
|
|
2876
2906
|
},
|
|
2877
2907
|
"paragraphsCount": {
|
|
2878
|
-
"value":
|
|
2908
|
+
"value": 1
|
|
2879
2909
|
},
|
|
2880
2910
|
"pagesCount": {
|
|
2881
|
-
"value":
|
|
2911
|
+
"value": 2
|
|
2882
2912
|
}
|
|
2883
2913
|
}
|
|
2884
2914
|
}
|
|
@@ -2941,27 +2971,38 @@ function getTemplatesPipelineCollection() {
|
|
|
2941
2971
|
"modelsRequirements": [
|
|
2942
2972
|
{
|
|
2943
2973
|
"modelVariant": "CHAT",
|
|
2944
|
-
"
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
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
|
+
]
|
|
2965
3006
|
}
|
|
2966
3007
|
],
|
|
2967
3008
|
"preparationIds": [
|
|
@@ -2972,55 +3013,55 @@ function getTemplatesPipelineCollection() {
|
|
|
2972
3013
|
"preparations": [
|
|
2973
3014
|
{
|
|
2974
3015
|
"id": 1,
|
|
2975
|
-
"promptbookVersion": "0.100.0-
|
|
3016
|
+
"promptbookVersion": "0.100.0-55",
|
|
2976
3017
|
"usage": {
|
|
2977
3018
|
"price": {
|
|
2978
|
-
"value": 0.
|
|
3019
|
+
"value": 0.04264125
|
|
2979
3020
|
},
|
|
2980
3021
|
"input": {
|
|
2981
3022
|
"tokensCount": {
|
|
2982
|
-
"value":
|
|
3023
|
+
"value": 5777
|
|
2983
3024
|
},
|
|
2984
3025
|
"charactersCount": {
|
|
2985
|
-
"value":
|
|
3026
|
+
"value": 2377
|
|
2986
3027
|
},
|
|
2987
3028
|
"wordsCount": {
|
|
2988
|
-
"value":
|
|
3029
|
+
"value": 348
|
|
2989
3030
|
},
|
|
2990
3031
|
"sentencesCount": {
|
|
2991
|
-
"value":
|
|
3032
|
+
"value": 22
|
|
2992
3033
|
},
|
|
2993
3034
|
"linesCount": {
|
|
2994
|
-
"value":
|
|
3035
|
+
"value": 65
|
|
2995
3036
|
},
|
|
2996
3037
|
"paragraphsCount": {
|
|
2997
3038
|
"value": 20
|
|
2998
3039
|
},
|
|
2999
3040
|
"pagesCount": {
|
|
3000
|
-
"value":
|
|
3041
|
+
"value": 2
|
|
3001
3042
|
}
|
|
3002
3043
|
},
|
|
3003
3044
|
"output": {
|
|
3004
3045
|
"tokensCount": {
|
|
3005
|
-
"value":
|
|
3046
|
+
"value": 3542
|
|
3006
3047
|
},
|
|
3007
3048
|
"charactersCount": {
|
|
3008
|
-
"value":
|
|
3049
|
+
"value": 5673
|
|
3009
3050
|
},
|
|
3010
3051
|
"wordsCount": {
|
|
3011
|
-
"value":
|
|
3052
|
+
"value": 821
|
|
3012
3053
|
},
|
|
3013
3054
|
"sentencesCount": {
|
|
3014
|
-
"value":
|
|
3055
|
+
"value": 65
|
|
3015
3056
|
},
|
|
3016
3057
|
"linesCount": {
|
|
3017
|
-
"value":
|
|
3058
|
+
"value": 112
|
|
3018
3059
|
},
|
|
3019
3060
|
"paragraphsCount": {
|
|
3020
|
-
"value":
|
|
3061
|
+
"value": 1
|
|
3021
3062
|
},
|
|
3022
3063
|
"pagesCount": {
|
|
3023
|
-
"value":
|
|
3064
|
+
"value": 3
|
|
3024
3065
|
}
|
|
3025
3066
|
}
|
|
3026
3067
|
}
|
|
@@ -3068,7 +3109,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3068
3109
|
"preparations": [
|
|
3069
3110
|
{
|
|
3070
3111
|
"id": 1,
|
|
3071
|
-
"promptbookVersion": "0.100.0-
|
|
3112
|
+
"promptbookVersion": "0.100.0-55",
|
|
3072
3113
|
"usage": {
|
|
3073
3114
|
"price": {
|
|
3074
3115
|
"value": 0
|
|
@@ -3174,27 +3215,33 @@ function getTemplatesPipelineCollection() {
|
|
|
3174
3215
|
"modelsRequirements": [
|
|
3175
3216
|
{
|
|
3176
3217
|
"modelVariant": "CHAT",
|
|
3177
|
-
"
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
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
|
+
]
|
|
3198
3245
|
}
|
|
3199
3246
|
],
|
|
3200
3247
|
"preparationIds": [
|
|
@@ -3205,55 +3252,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3205
3252
|
"preparations": [
|
|
3206
3253
|
{
|
|
3207
3254
|
"id": 1,
|
|
3208
|
-
"promptbookVersion": "0.100.0-
|
|
3255
|
+
"promptbookVersion": "0.100.0-55",
|
|
3209
3256
|
"usage": {
|
|
3210
3257
|
"price": {
|
|
3211
|
-
"value": 0.
|
|
3258
|
+
"value": 0.02966125
|
|
3212
3259
|
},
|
|
3213
3260
|
"input": {
|
|
3214
3261
|
"tokensCount": {
|
|
3215
|
-
"value":
|
|
3262
|
+
"value": 5777
|
|
3216
3263
|
},
|
|
3217
3264
|
"charactersCount": {
|
|
3218
|
-
"value":
|
|
3265
|
+
"value": 2377
|
|
3219
3266
|
},
|
|
3220
3267
|
"wordsCount": {
|
|
3221
|
-
"value":
|
|
3268
|
+
"value": 348
|
|
3222
3269
|
},
|
|
3223
3270
|
"sentencesCount": {
|
|
3224
|
-
"value":
|
|
3271
|
+
"value": 22
|
|
3225
3272
|
},
|
|
3226
3273
|
"linesCount": {
|
|
3227
|
-
"value":
|
|
3274
|
+
"value": 65
|
|
3228
3275
|
},
|
|
3229
3276
|
"paragraphsCount": {
|
|
3230
3277
|
"value": 20
|
|
3231
3278
|
},
|
|
3232
3279
|
"pagesCount": {
|
|
3233
|
-
"value":
|
|
3280
|
+
"value": 2
|
|
3234
3281
|
}
|
|
3235
3282
|
},
|
|
3236
3283
|
"output": {
|
|
3237
3284
|
"tokensCount": {
|
|
3238
|
-
"value":
|
|
3285
|
+
"value": 2244
|
|
3239
3286
|
},
|
|
3240
3287
|
"charactersCount": {
|
|
3241
|
-
"value":
|
|
3288
|
+
"value": 2055
|
|
3242
3289
|
},
|
|
3243
3290
|
"wordsCount": {
|
|
3244
|
-
"value":
|
|
3291
|
+
"value": 256
|
|
3245
3292
|
},
|
|
3246
3293
|
"sentencesCount": {
|
|
3247
|
-
"value":
|
|
3294
|
+
"value": 26
|
|
3248
3295
|
},
|
|
3249
3296
|
"linesCount": {
|
|
3250
|
-
"value":
|
|
3297
|
+
"value": 52
|
|
3251
3298
|
},
|
|
3252
3299
|
"paragraphsCount": {
|
|
3253
|
-
"value":
|
|
3300
|
+
"value": 1
|
|
3254
3301
|
},
|
|
3255
3302
|
"pagesCount": {
|
|
3256
|
-
"value":
|
|
3303
|
+
"value": 2
|
|
3257
3304
|
}
|
|
3258
3305
|
}
|
|
3259
3306
|
}
|
|
@@ -3324,27 +3371,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3324
3371
|
"modelsRequirements": [
|
|
3325
3372
|
{
|
|
3326
3373
|
"modelVariant": "CHAT",
|
|
3327
|
-
"
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
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
|
+
]
|
|
3348
3396
|
}
|
|
3349
3397
|
],
|
|
3350
3398
|
"preparationIds": [
|
|
@@ -3355,55 +3403,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3355
3403
|
"preparations": [
|
|
3356
3404
|
{
|
|
3357
3405
|
"id": 1,
|
|
3358
|
-
"promptbookVersion": "0.100.0-
|
|
3406
|
+
"promptbookVersion": "0.100.0-55",
|
|
3359
3407
|
"usage": {
|
|
3360
3408
|
"price": {
|
|
3361
|
-
"value": 0.
|
|
3409
|
+
"value": 0.045436250000000004
|
|
3362
3410
|
},
|
|
3363
3411
|
"input": {
|
|
3364
3412
|
"tokensCount": {
|
|
3365
|
-
"value":
|
|
3413
|
+
"value": 5781
|
|
3366
3414
|
},
|
|
3367
3415
|
"charactersCount": {
|
|
3368
|
-
"value":
|
|
3416
|
+
"value": 2377
|
|
3369
3417
|
},
|
|
3370
3418
|
"wordsCount": {
|
|
3371
|
-
"value":
|
|
3419
|
+
"value": 348
|
|
3372
3420
|
},
|
|
3373
3421
|
"sentencesCount": {
|
|
3374
|
-
"value":
|
|
3422
|
+
"value": 22
|
|
3375
3423
|
},
|
|
3376
3424
|
"linesCount": {
|
|
3377
|
-
"value":
|
|
3425
|
+
"value": 65
|
|
3378
3426
|
},
|
|
3379
3427
|
"paragraphsCount": {
|
|
3380
3428
|
"value": 20
|
|
3381
3429
|
},
|
|
3382
3430
|
"pagesCount": {
|
|
3383
|
-
"value":
|
|
3431
|
+
"value": 2
|
|
3384
3432
|
}
|
|
3385
3433
|
},
|
|
3386
3434
|
"output": {
|
|
3387
3435
|
"tokensCount": {
|
|
3388
|
-
"value":
|
|
3436
|
+
"value": 3821
|
|
3389
3437
|
},
|
|
3390
3438
|
"charactersCount": {
|
|
3391
|
-
"value":
|
|
3439
|
+
"value": 2473
|
|
3392
3440
|
},
|
|
3393
3441
|
"wordsCount": {
|
|
3394
|
-
"value":
|
|
3442
|
+
"value": 341
|
|
3395
3443
|
},
|
|
3396
3444
|
"sentencesCount": {
|
|
3397
|
-
"value":
|
|
3445
|
+
"value": 26
|
|
3398
3446
|
},
|
|
3399
3447
|
"linesCount": {
|
|
3400
|
-
"value":
|
|
3448
|
+
"value": 56
|
|
3401
3449
|
},
|
|
3402
3450
|
"paragraphsCount": {
|
|
3403
|
-
"value":
|
|
3451
|
+
"value": 1
|
|
3404
3452
|
},
|
|
3405
3453
|
"pagesCount": {
|
|
3406
|
-
"value":
|
|
3454
|
+
"value": 2
|
|
3407
3455
|
}
|
|
3408
3456
|
}
|
|
3409
3457
|
}
|
|
@@ -3651,21 +3699,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3651
3699
|
"modelsRequirements": [
|
|
3652
3700
|
{
|
|
3653
3701
|
"modelVariant": "CHAT",
|
|
3654
|
-
"
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
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
|
+
]
|
|
3669
3724
|
}
|
|
3670
3725
|
],
|
|
3671
3726
|
"preparationIds": [
|
|
@@ -3676,55 +3731,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3676
3731
|
"preparations": [
|
|
3677
3732
|
{
|
|
3678
3733
|
"id": 1,
|
|
3679
|
-
"promptbookVersion": "0.100.0-
|
|
3734
|
+
"promptbookVersion": "0.100.0-55",
|
|
3680
3735
|
"usage": {
|
|
3681
3736
|
"price": {
|
|
3682
|
-
"value": 0.
|
|
3737
|
+
"value": 0.030741250000000005
|
|
3683
3738
|
},
|
|
3684
3739
|
"input": {
|
|
3685
3740
|
"tokensCount": {
|
|
3686
|
-
"value":
|
|
3741
|
+
"value": 5777
|
|
3687
3742
|
},
|
|
3688
3743
|
"charactersCount": {
|
|
3689
|
-
"value":
|
|
3744
|
+
"value": 2377
|
|
3690
3745
|
},
|
|
3691
3746
|
"wordsCount": {
|
|
3692
|
-
"value":
|
|
3747
|
+
"value": 348
|
|
3693
3748
|
},
|
|
3694
3749
|
"sentencesCount": {
|
|
3695
|
-
"value":
|
|
3750
|
+
"value": 22
|
|
3696
3751
|
},
|
|
3697
3752
|
"linesCount": {
|
|
3698
|
-
"value":
|
|
3753
|
+
"value": 65
|
|
3699
3754
|
},
|
|
3700
3755
|
"paragraphsCount": {
|
|
3701
3756
|
"value": 20
|
|
3702
3757
|
},
|
|
3703
3758
|
"pagesCount": {
|
|
3704
|
-
"value":
|
|
3759
|
+
"value": 2
|
|
3705
3760
|
}
|
|
3706
3761
|
},
|
|
3707
3762
|
"output": {
|
|
3708
3763
|
"tokensCount": {
|
|
3709
|
-
"value":
|
|
3764
|
+
"value": 2352
|
|
3710
3765
|
},
|
|
3711
3766
|
"charactersCount": {
|
|
3712
|
-
"value":
|
|
3767
|
+
"value": 2152
|
|
3713
3768
|
},
|
|
3714
3769
|
"wordsCount": {
|
|
3715
|
-
"value":
|
|
3770
|
+
"value": 283
|
|
3716
3771
|
},
|
|
3717
3772
|
"sentencesCount": {
|
|
3718
|
-
"value":
|
|
3773
|
+
"value": 25
|
|
3719
3774
|
},
|
|
3720
3775
|
"linesCount": {
|
|
3721
|
-
"value":
|
|
3776
|
+
"value": 51
|
|
3722
3777
|
},
|
|
3723
3778
|
"paragraphsCount": {
|
|
3724
|
-
"value":
|
|
3779
|
+
"value": 1
|
|
3725
3780
|
},
|
|
3726
3781
|
"pagesCount": {
|
|
3727
|
-
"value":
|
|
3782
|
+
"value": 2
|
|
3728
3783
|
}
|
|
3729
3784
|
}
|
|
3730
3785
|
}
|
|
@@ -3786,33 +3841,28 @@ function getTemplatesPipelineCollection() {
|
|
|
3786
3841
|
"modelsRequirements": [
|
|
3787
3842
|
{
|
|
3788
3843
|
"modelVariant": "CHAT",
|
|
3789
|
-
"
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
{
|
|
3812
|
-
"modelVariant": "CHAT",
|
|
3813
|
-
"modelName": "gpt-3.5-turbo",
|
|
3814
|
-
"systemMessage": "You are an experienced poet and storyteller, ready to help users with creative writing, literary discussion, and narrative techniques.",
|
|
3815
|
-
"temperature": 0.6
|
|
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
|
+
]
|
|
3816
3866
|
}
|
|
3817
3867
|
],
|
|
3818
3868
|
"preparationIds": [
|
|
@@ -3823,55 +3873,55 @@ function getTemplatesPipelineCollection() {
|
|
|
3823
3873
|
"preparations": [
|
|
3824
3874
|
{
|
|
3825
3875
|
"id": 1,
|
|
3826
|
-
"promptbookVersion": "0.100.0-
|
|
3876
|
+
"promptbookVersion": "0.100.0-55",
|
|
3827
3877
|
"usage": {
|
|
3828
3878
|
"price": {
|
|
3829
|
-
"value": 0.
|
|
3879
|
+
"value": 0.03003
|
|
3830
3880
|
},
|
|
3831
3881
|
"input": {
|
|
3832
3882
|
"tokensCount": {
|
|
3833
|
-
"value":
|
|
3883
|
+
"value": 5776
|
|
3834
3884
|
},
|
|
3835
3885
|
"charactersCount": {
|
|
3836
|
-
"value":
|
|
3886
|
+
"value": 2377
|
|
3837
3887
|
},
|
|
3838
3888
|
"wordsCount": {
|
|
3839
|
-
"value":
|
|
3889
|
+
"value": 348
|
|
3840
3890
|
},
|
|
3841
3891
|
"sentencesCount": {
|
|
3842
|
-
"value":
|
|
3892
|
+
"value": 22
|
|
3843
3893
|
},
|
|
3844
3894
|
"linesCount": {
|
|
3845
|
-
"value":
|
|
3895
|
+
"value": 65
|
|
3846
3896
|
},
|
|
3847
3897
|
"paragraphsCount": {
|
|
3848
3898
|
"value": 20
|
|
3849
3899
|
},
|
|
3850
3900
|
"pagesCount": {
|
|
3851
|
-
"value":
|
|
3901
|
+
"value": 2
|
|
3852
3902
|
}
|
|
3853
3903
|
},
|
|
3854
3904
|
"output": {
|
|
3855
3905
|
"tokensCount": {
|
|
3856
|
-
"value":
|
|
3906
|
+
"value": 2281
|
|
3857
3907
|
},
|
|
3858
3908
|
"charactersCount": {
|
|
3859
|
-
"value":
|
|
3909
|
+
"value": 1572
|
|
3860
3910
|
},
|
|
3861
3911
|
"wordsCount": {
|
|
3862
|
-
"value":
|
|
3912
|
+
"value": 209
|
|
3863
3913
|
},
|
|
3864
3914
|
"sentencesCount": {
|
|
3865
|
-
"value":
|
|
3915
|
+
"value": 19
|
|
3866
3916
|
},
|
|
3867
3917
|
"linesCount": {
|
|
3868
|
-
"value":
|
|
3918
|
+
"value": 42
|
|
3869
3919
|
},
|
|
3870
3920
|
"paragraphsCount": {
|
|
3871
|
-
"value":
|
|
3921
|
+
"value": 1
|
|
3872
3922
|
},
|
|
3873
3923
|
"pagesCount": {
|
|
3874
|
-
"value":
|
|
3924
|
+
"value": 1
|
|
3875
3925
|
}
|
|
3876
3926
|
}
|
|
3877
3927
|
}
|