@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/umd/index.umd.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier'), require('prettier/parser-
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier', 'prettier/parser-
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.
|
|
5
|
-
})(this, (function (exports, spaceTrim,
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('spacetrim'), require('prettier/parser-html'), require('prettier/parser-markdown'), require('prettier/standalone')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', 'spacetrim', 'prettier/parser-html', 'prettier/parser-markdown', 'prettier/standalone'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["promptbook-templates"] = {}, global.spaceTrim, global.parserHtml, global.parserMarkdown, global.standalone));
|
|
5
|
+
})(this, (function (exports, spaceTrim, parserHtml, parserMarkdown, standalone) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
8
|
|
|
9
9
|
var spaceTrim__default = /*#__PURE__*/_interopDefaultLegacy(spaceTrim);
|
|
10
10
|
var parserHtml__default = /*#__PURE__*/_interopDefaultLegacy(parserHtml);
|
|
11
|
+
var parserMarkdown__default = /*#__PURE__*/_interopDefaultLegacy(parserMarkdown);
|
|
11
12
|
|
|
12
13
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
13
14
|
/**
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
* @generated
|
|
24
25
|
* @see https://github.com/webgptorg/promptbook
|
|
25
26
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
|
27
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-61';
|
|
27
28
|
/**
|
|
28
29
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
30
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -197,6 +198,13 @@
|
|
|
197
198
|
newline: '\n',
|
|
198
199
|
skipEmptyLines: true,
|
|
199
200
|
});
|
|
201
|
+
/**
|
|
202
|
+
* API request timeout in milliseconds
|
|
203
|
+
* Can be overridden via API_REQUEST_TIMEOUT environment variable
|
|
204
|
+
*
|
|
205
|
+
* @public exported from `@promptbook/core`
|
|
206
|
+
*/
|
|
207
|
+
parseInt(process.env.API_REQUEST_TIMEOUT || '90000');
|
|
200
208
|
/**
|
|
201
209
|
* Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
|
|
202
210
|
*
|
|
@@ -387,9 +395,9 @@
|
|
|
387
395
|
*/
|
|
388
396
|
function prettifyMarkdown(content) {
|
|
389
397
|
try {
|
|
390
|
-
return
|
|
398
|
+
return standalone.format(content, {
|
|
391
399
|
parser: 'markdown',
|
|
392
|
-
plugins: [parserHtml__default["default"]],
|
|
400
|
+
plugins: [parserMarkdown__default["default"], parserHtml__default["default"]],
|
|
393
401
|
// TODO: DRY - make some import or auto-copy of .prettierrc
|
|
394
402
|
endOfLine: 'lf',
|
|
395
403
|
tabWidth: 4,
|
|
@@ -1541,21 +1549,38 @@
|
|
|
1541
1549
|
"modelsRequirements": [
|
|
1542
1550
|
{
|
|
1543
1551
|
"modelVariant": "CHAT",
|
|
1544
|
-
"
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1552
|
+
"models": [
|
|
1553
|
+
{
|
|
1554
|
+
"modelName": "gpt-4.1",
|
|
1555
|
+
"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.",
|
|
1556
|
+
"temperature": 0.3
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
"modelName": "chatgpt-4o-latest",
|
|
1560
|
+
"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.",
|
|
1561
|
+
"temperature": 0.4
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"modelName": "gpt-4",
|
|
1565
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
|
|
1566
|
+
"temperature": 0.3
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
1570
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
|
|
1571
|
+
"temperature": 0.4
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"modelName": "o4-mini",
|
|
1575
|
+
"systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
|
|
1576
|
+
"temperature": 0.2
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"modelName": "o1-mini",
|
|
1580
|
+
"systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
|
|
1581
|
+
"temperature": 0.2
|
|
1582
|
+
}
|
|
1583
|
+
]
|
|
1559
1584
|
}
|
|
1560
1585
|
],
|
|
1561
1586
|
"preparationIds": [
|
|
@@ -1566,55 +1591,55 @@
|
|
|
1566
1591
|
"preparations": [
|
|
1567
1592
|
{
|
|
1568
1593
|
"id": 1,
|
|
1569
|
-
"promptbookVersion": "0.100.0-
|
|
1594
|
+
"promptbookVersion": "0.100.0-55",
|
|
1570
1595
|
"usage": {
|
|
1571
1596
|
"price": {
|
|
1572
|
-
"value": 0.
|
|
1597
|
+
"value": 0.0308725
|
|
1573
1598
|
},
|
|
1574
1599
|
"input": {
|
|
1575
1600
|
"tokensCount": {
|
|
1576
|
-
"value":
|
|
1601
|
+
"value": 5778
|
|
1577
1602
|
},
|
|
1578
1603
|
"charactersCount": {
|
|
1579
|
-
"value":
|
|
1604
|
+
"value": 2377
|
|
1580
1605
|
},
|
|
1581
1606
|
"wordsCount": {
|
|
1582
|
-
"value":
|
|
1607
|
+
"value": 348
|
|
1583
1608
|
},
|
|
1584
1609
|
"sentencesCount": {
|
|
1585
|
-
"value":
|
|
1610
|
+
"value": 22
|
|
1586
1611
|
},
|
|
1587
1612
|
"linesCount": {
|
|
1588
|
-
"value":
|
|
1613
|
+
"value": 65
|
|
1589
1614
|
},
|
|
1590
1615
|
"paragraphsCount": {
|
|
1591
1616
|
"value": 20
|
|
1592
1617
|
},
|
|
1593
1618
|
"pagesCount": {
|
|
1594
|
-
"value":
|
|
1619
|
+
"value": 2
|
|
1595
1620
|
}
|
|
1596
1621
|
},
|
|
1597
1622
|
"output": {
|
|
1598
1623
|
"tokensCount": {
|
|
1599
|
-
"value":
|
|
1624
|
+
"value": 2365
|
|
1600
1625
|
},
|
|
1601
1626
|
"charactersCount": {
|
|
1602
|
-
"value":
|
|
1627
|
+
"value": 1560
|
|
1603
1628
|
},
|
|
1604
1629
|
"wordsCount": {
|
|
1605
1630
|
"value": 195
|
|
1606
1631
|
},
|
|
1607
1632
|
"sentencesCount": {
|
|
1608
|
-
"value":
|
|
1633
|
+
"value": 23
|
|
1609
1634
|
},
|
|
1610
1635
|
"linesCount": {
|
|
1611
|
-
"value":
|
|
1636
|
+
"value": 48
|
|
1612
1637
|
},
|
|
1613
1638
|
"paragraphsCount": {
|
|
1614
|
-
"value":
|
|
1639
|
+
"value": 1
|
|
1615
1640
|
},
|
|
1616
1641
|
"pagesCount": {
|
|
1617
|
-
"value":
|
|
1642
|
+
"value": 2
|
|
1618
1643
|
}
|
|
1619
1644
|
}
|
|
1620
1645
|
}
|
|
@@ -2094,21 +2119,38 @@
|
|
|
2094
2119
|
"modelsRequirements": [
|
|
2095
2120
|
{
|
|
2096
2121
|
"modelVariant": "CHAT",
|
|
2097
|
-
"
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2122
|
+
"models": [
|
|
2123
|
+
{
|
|
2124
|
+
"modelName": "gpt-4.1",
|
|
2125
|
+
"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.",
|
|
2126
|
+
"temperature": 0.3
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"modelName": "chatgpt-4o-latest",
|
|
2130
|
+
"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.",
|
|
2131
|
+
"temperature": 0.4
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"modelName": "gpt-4",
|
|
2135
|
+
"systemMessage": "You are a developer of the Promptbook Project. Provide accurate, well-structured, and implementation-ready assistance with minimal fluff.",
|
|
2136
|
+
"temperature": 0.3
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2140
|
+
"systemMessage": "You are a developer of the Promptbook Project. Deliver clear, actionable help for virtual assistant development with concise explanations.",
|
|
2141
|
+
"temperature": 0.4
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"modelName": "o4-mini",
|
|
2145
|
+
"systemMessage": "You are a developer of the Promptbook Project. Solve tasks efficiently with concise reasoning and practical, stepwise outputs tailored for virtual assistants.",
|
|
2146
|
+
"temperature": 0.2
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"modelName": "o1-mini",
|
|
2150
|
+
"systemMessage": "You are a developer of the Promptbook Project. Focus on accurate, structured problem-solving and dependable guidance for assistant behaviors.",
|
|
2151
|
+
"temperature": 0.2
|
|
2152
|
+
}
|
|
2153
|
+
]
|
|
2112
2154
|
}
|
|
2113
2155
|
],
|
|
2114
2156
|
"preparationIds": [
|
|
@@ -2119,55 +2161,55 @@
|
|
|
2119
2161
|
"preparations": [
|
|
2120
2162
|
{
|
|
2121
2163
|
"id": 1,
|
|
2122
|
-
"promptbookVersion": "0.100.0-
|
|
2164
|
+
"promptbookVersion": "0.100.0-55",
|
|
2123
2165
|
"usage": {
|
|
2124
2166
|
"price": {
|
|
2125
|
-
"value": 0.
|
|
2167
|
+
"value": 0.0308725
|
|
2126
2168
|
},
|
|
2127
2169
|
"input": {
|
|
2128
2170
|
"tokensCount": {
|
|
2129
|
-
"value":
|
|
2171
|
+
"value": 5778
|
|
2130
2172
|
},
|
|
2131
2173
|
"charactersCount": {
|
|
2132
|
-
"value":
|
|
2174
|
+
"value": 2377
|
|
2133
2175
|
},
|
|
2134
2176
|
"wordsCount": {
|
|
2135
|
-
"value":
|
|
2177
|
+
"value": 348
|
|
2136
2178
|
},
|
|
2137
2179
|
"sentencesCount": {
|
|
2138
|
-
"value":
|
|
2180
|
+
"value": 22
|
|
2139
2181
|
},
|
|
2140
2182
|
"linesCount": {
|
|
2141
|
-
"value":
|
|
2183
|
+
"value": 65
|
|
2142
2184
|
},
|
|
2143
2185
|
"paragraphsCount": {
|
|
2144
2186
|
"value": 20
|
|
2145
2187
|
},
|
|
2146
2188
|
"pagesCount": {
|
|
2147
|
-
"value":
|
|
2189
|
+
"value": 2
|
|
2148
2190
|
}
|
|
2149
2191
|
},
|
|
2150
2192
|
"output": {
|
|
2151
2193
|
"tokensCount": {
|
|
2152
|
-
"value":
|
|
2194
|
+
"value": 2365
|
|
2153
2195
|
},
|
|
2154
2196
|
"charactersCount": {
|
|
2155
|
-
"value":
|
|
2197
|
+
"value": 1560
|
|
2156
2198
|
},
|
|
2157
2199
|
"wordsCount": {
|
|
2158
2200
|
"value": 195
|
|
2159
2201
|
},
|
|
2160
2202
|
"sentencesCount": {
|
|
2161
|
-
"value":
|
|
2203
|
+
"value": 23
|
|
2162
2204
|
},
|
|
2163
2205
|
"linesCount": {
|
|
2164
|
-
"value":
|
|
2206
|
+
"value": 48
|
|
2165
2207
|
},
|
|
2166
2208
|
"paragraphsCount": {
|
|
2167
|
-
"value":
|
|
2209
|
+
"value": 1
|
|
2168
2210
|
},
|
|
2169
2211
|
"pagesCount": {
|
|
2170
|
-
"value":
|
|
2212
|
+
"value": 2
|
|
2171
2213
|
}
|
|
2172
2214
|
}
|
|
2173
2215
|
}
|
|
@@ -2788,27 +2830,33 @@
|
|
|
2788
2830
|
"modelsRequirements": [
|
|
2789
2831
|
{
|
|
2790
2832
|
"modelVariant": "CHAT",
|
|
2791
|
-
"
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2833
|
+
"models": [
|
|
2834
|
+
{
|
|
2835
|
+
"modelName": "gpt-4.1",
|
|
2836
|
+
"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.",
|
|
2837
|
+
"temperature": 0.2
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"modelName": "chatgpt-4o-latest",
|
|
2841
|
+
"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.",
|
|
2842
|
+
"temperature": 0.25
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
"modelName": "gpt-4",
|
|
2846
|
+
"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.",
|
|
2847
|
+
"temperature": 0.2
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2851
|
+
"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.",
|
|
2852
|
+
"temperature": 0.25
|
|
2853
|
+
},
|
|
2854
|
+
{
|
|
2855
|
+
"modelName": "gpt-3.5-turbo",
|
|
2856
|
+
"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.",
|
|
2857
|
+
"temperature": 0.3
|
|
2858
|
+
}
|
|
2859
|
+
]
|
|
2812
2860
|
}
|
|
2813
2861
|
],
|
|
2814
2862
|
"preparationIds": [
|
|
@@ -2819,55 +2867,55 @@
|
|
|
2819
2867
|
"preparations": [
|
|
2820
2868
|
{
|
|
2821
2869
|
"id": 1,
|
|
2822
|
-
"promptbookVersion": "0.100.0-
|
|
2870
|
+
"promptbookVersion": "0.100.0-55",
|
|
2823
2871
|
"usage": {
|
|
2824
2872
|
"price": {
|
|
2825
|
-
"value": 0.
|
|
2873
|
+
"value": 0.02903125
|
|
2826
2874
|
},
|
|
2827
2875
|
"input": {
|
|
2828
2876
|
"tokensCount": {
|
|
2829
|
-
"value":
|
|
2877
|
+
"value": 5777
|
|
2830
2878
|
},
|
|
2831
2879
|
"charactersCount": {
|
|
2832
|
-
"value":
|
|
2880
|
+
"value": 2377
|
|
2833
2881
|
},
|
|
2834
2882
|
"wordsCount": {
|
|
2835
|
-
"value":
|
|
2883
|
+
"value": 348
|
|
2836
2884
|
},
|
|
2837
2885
|
"sentencesCount": {
|
|
2838
|
-
"value":
|
|
2886
|
+
"value": 22
|
|
2839
2887
|
},
|
|
2840
2888
|
"linesCount": {
|
|
2841
|
-
"value":
|
|
2889
|
+
"value": 65
|
|
2842
2890
|
},
|
|
2843
2891
|
"paragraphsCount": {
|
|
2844
2892
|
"value": 20
|
|
2845
2893
|
},
|
|
2846
2894
|
"pagesCount": {
|
|
2847
|
-
"value":
|
|
2895
|
+
"value": 2
|
|
2848
2896
|
}
|
|
2849
2897
|
},
|
|
2850
2898
|
"output": {
|
|
2851
2899
|
"tokensCount": {
|
|
2852
|
-
"value":
|
|
2900
|
+
"value": 2181
|
|
2853
2901
|
},
|
|
2854
2902
|
"charactersCount": {
|
|
2855
|
-
"value":
|
|
2903
|
+
"value": 3096
|
|
2856
2904
|
},
|
|
2857
2905
|
"wordsCount": {
|
|
2858
|
-
"value":
|
|
2906
|
+
"value": 408
|
|
2859
2907
|
},
|
|
2860
2908
|
"sentencesCount": {
|
|
2861
|
-
"value":
|
|
2909
|
+
"value": 39
|
|
2862
2910
|
},
|
|
2863
2911
|
"linesCount": {
|
|
2864
|
-
"value":
|
|
2912
|
+
"value": 69
|
|
2865
2913
|
},
|
|
2866
2914
|
"paragraphsCount": {
|
|
2867
|
-
"value":
|
|
2915
|
+
"value": 1
|
|
2868
2916
|
},
|
|
2869
2917
|
"pagesCount": {
|
|
2870
|
-
"value":
|
|
2918
|
+
"value": 2
|
|
2871
2919
|
}
|
|
2872
2920
|
}
|
|
2873
2921
|
}
|
|
@@ -2930,21 +2978,38 @@
|
|
|
2930
2978
|
"modelsRequirements": [
|
|
2931
2979
|
{
|
|
2932
2980
|
"modelVariant": "CHAT",
|
|
2933
|
-
"
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2981
|
+
"models": [
|
|
2982
|
+
{
|
|
2983
|
+
"modelName": "gpt-4.1",
|
|
2984
|
+
"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.",
|
|
2985
|
+
"temperature": 0.7
|
|
2986
|
+
},
|
|
2987
|
+
{
|
|
2988
|
+
"modelName": "chatgpt-4o-latest",
|
|
2989
|
+
"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.",
|
|
2990
|
+
"temperature": 0.75
|
|
2991
|
+
},
|
|
2992
|
+
{
|
|
2993
|
+
"modelName": "gpt-4",
|
|
2994
|
+
"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.",
|
|
2995
|
+
"temperature": 0.7
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
2999
|
+
"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.",
|
|
3000
|
+
"temperature": 0.65
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"modelName": "gpt-3.5-turbo-1106",
|
|
3004
|
+
"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.",
|
|
3005
|
+
"temperature": 0.6
|
|
3006
|
+
},
|
|
3007
|
+
{
|
|
3008
|
+
"modelName": "gpt-3.5-turbo",
|
|
3009
|
+
"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.",
|
|
3010
|
+
"temperature": 0.6
|
|
3011
|
+
}
|
|
3012
|
+
]
|
|
2948
3013
|
}
|
|
2949
3014
|
],
|
|
2950
3015
|
"preparationIds": [
|
|
@@ -2955,55 +3020,55 @@
|
|
|
2955
3020
|
"preparations": [
|
|
2956
3021
|
{
|
|
2957
3022
|
"id": 1,
|
|
2958
|
-
"promptbookVersion": "0.100.0-
|
|
3023
|
+
"promptbookVersion": "0.100.0-55",
|
|
2959
3024
|
"usage": {
|
|
2960
3025
|
"price": {
|
|
2961
|
-
"value": 0.
|
|
3026
|
+
"value": 0.04264125
|
|
2962
3027
|
},
|
|
2963
3028
|
"input": {
|
|
2964
3029
|
"tokensCount": {
|
|
2965
|
-
"value":
|
|
3030
|
+
"value": 5777
|
|
2966
3031
|
},
|
|
2967
3032
|
"charactersCount": {
|
|
2968
|
-
"value":
|
|
3033
|
+
"value": 2377
|
|
2969
3034
|
},
|
|
2970
3035
|
"wordsCount": {
|
|
2971
|
-
"value":
|
|
3036
|
+
"value": 348
|
|
2972
3037
|
},
|
|
2973
3038
|
"sentencesCount": {
|
|
2974
|
-
"value":
|
|
3039
|
+
"value": 22
|
|
2975
3040
|
},
|
|
2976
3041
|
"linesCount": {
|
|
2977
|
-
"value":
|
|
3042
|
+
"value": 65
|
|
2978
3043
|
},
|
|
2979
3044
|
"paragraphsCount": {
|
|
2980
3045
|
"value": 20
|
|
2981
3046
|
},
|
|
2982
3047
|
"pagesCount": {
|
|
2983
|
-
"value":
|
|
3048
|
+
"value": 2
|
|
2984
3049
|
}
|
|
2985
3050
|
},
|
|
2986
3051
|
"output": {
|
|
2987
3052
|
"tokensCount": {
|
|
2988
|
-
"value":
|
|
3053
|
+
"value": 3542
|
|
2989
3054
|
},
|
|
2990
3055
|
"charactersCount": {
|
|
2991
|
-
"value":
|
|
3056
|
+
"value": 5673
|
|
2992
3057
|
},
|
|
2993
3058
|
"wordsCount": {
|
|
2994
|
-
"value":
|
|
3059
|
+
"value": 821
|
|
2995
3060
|
},
|
|
2996
3061
|
"sentencesCount": {
|
|
2997
|
-
"value":
|
|
3062
|
+
"value": 65
|
|
2998
3063
|
},
|
|
2999
3064
|
"linesCount": {
|
|
3000
|
-
"value":
|
|
3065
|
+
"value": 112
|
|
3001
3066
|
},
|
|
3002
3067
|
"paragraphsCount": {
|
|
3003
|
-
"value":
|
|
3068
|
+
"value": 1
|
|
3004
3069
|
},
|
|
3005
3070
|
"pagesCount": {
|
|
3006
|
-
"value":
|
|
3071
|
+
"value": 3
|
|
3007
3072
|
}
|
|
3008
3073
|
}
|
|
3009
3074
|
}
|
|
@@ -3051,7 +3116,7 @@
|
|
|
3051
3116
|
"preparations": [
|
|
3052
3117
|
{
|
|
3053
3118
|
"id": 1,
|
|
3054
|
-
"promptbookVersion": "0.100.0-
|
|
3119
|
+
"promptbookVersion": "0.100.0-55",
|
|
3055
3120
|
"usage": {
|
|
3056
3121
|
"price": {
|
|
3057
3122
|
"value": 0
|
|
@@ -3157,27 +3222,33 @@
|
|
|
3157
3222
|
"modelsRequirements": [
|
|
3158
3223
|
{
|
|
3159
3224
|
"modelVariant": "CHAT",
|
|
3160
|
-
"
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3225
|
+
"models": [
|
|
3226
|
+
{
|
|
3227
|
+
"modelName": "gpt-4.1",
|
|
3228
|
+
"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.",
|
|
3229
|
+
"temperature": 0.3
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
"modelName": "chatgpt-4o-latest",
|
|
3233
|
+
"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.",
|
|
3234
|
+
"temperature": 0.7
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"modelName": "gpt-4",
|
|
3238
|
+
"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.",
|
|
3239
|
+
"temperature": 0.35
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"modelName": "o4-mini",
|
|
3243
|
+
"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.",
|
|
3244
|
+
"temperature": 0.2
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3248
|
+
"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.",
|
|
3249
|
+
"temperature": 0.4
|
|
3250
|
+
}
|
|
3251
|
+
]
|
|
3181
3252
|
}
|
|
3182
3253
|
],
|
|
3183
3254
|
"preparationIds": [
|
|
@@ -3188,55 +3259,55 @@
|
|
|
3188
3259
|
"preparations": [
|
|
3189
3260
|
{
|
|
3190
3261
|
"id": 1,
|
|
3191
|
-
"promptbookVersion": "0.100.0-
|
|
3262
|
+
"promptbookVersion": "0.100.0-55",
|
|
3192
3263
|
"usage": {
|
|
3193
3264
|
"price": {
|
|
3194
|
-
"value": 0.
|
|
3265
|
+
"value": 0.02966125
|
|
3195
3266
|
},
|
|
3196
3267
|
"input": {
|
|
3197
3268
|
"tokensCount": {
|
|
3198
|
-
"value":
|
|
3269
|
+
"value": 5777
|
|
3199
3270
|
},
|
|
3200
3271
|
"charactersCount": {
|
|
3201
|
-
"value":
|
|
3272
|
+
"value": 2377
|
|
3202
3273
|
},
|
|
3203
3274
|
"wordsCount": {
|
|
3204
|
-
"value":
|
|
3275
|
+
"value": 348
|
|
3205
3276
|
},
|
|
3206
3277
|
"sentencesCount": {
|
|
3207
|
-
"value":
|
|
3278
|
+
"value": 22
|
|
3208
3279
|
},
|
|
3209
3280
|
"linesCount": {
|
|
3210
|
-
"value":
|
|
3281
|
+
"value": 65
|
|
3211
3282
|
},
|
|
3212
3283
|
"paragraphsCount": {
|
|
3213
3284
|
"value": 20
|
|
3214
3285
|
},
|
|
3215
3286
|
"pagesCount": {
|
|
3216
|
-
"value":
|
|
3287
|
+
"value": 2
|
|
3217
3288
|
}
|
|
3218
3289
|
},
|
|
3219
3290
|
"output": {
|
|
3220
3291
|
"tokensCount": {
|
|
3221
|
-
"value":
|
|
3292
|
+
"value": 2244
|
|
3222
3293
|
},
|
|
3223
3294
|
"charactersCount": {
|
|
3224
|
-
"value":
|
|
3295
|
+
"value": 2055
|
|
3225
3296
|
},
|
|
3226
3297
|
"wordsCount": {
|
|
3227
|
-
"value":
|
|
3298
|
+
"value": 256
|
|
3228
3299
|
},
|
|
3229
3300
|
"sentencesCount": {
|
|
3230
|
-
"value":
|
|
3301
|
+
"value": 26
|
|
3231
3302
|
},
|
|
3232
3303
|
"linesCount": {
|
|
3233
|
-
"value":
|
|
3304
|
+
"value": 52
|
|
3234
3305
|
},
|
|
3235
3306
|
"paragraphsCount": {
|
|
3236
|
-
"value":
|
|
3307
|
+
"value": 1
|
|
3237
3308
|
},
|
|
3238
3309
|
"pagesCount": {
|
|
3239
|
-
"value":
|
|
3310
|
+
"value": 2
|
|
3240
3311
|
}
|
|
3241
3312
|
}
|
|
3242
3313
|
}
|
|
@@ -3307,33 +3378,28 @@
|
|
|
3307
3378
|
"modelsRequirements": [
|
|
3308
3379
|
{
|
|
3309
3380
|
"modelVariant": "CHAT",
|
|
3310
|
-
"
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
{
|
|
3333
|
-
"modelVariant": "CHAT",
|
|
3334
|
-
"modelName": "gpt-3.5-turbo",
|
|
3335
|
-
"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.",
|
|
3336
|
-
"temperature": 0.7
|
|
3381
|
+
"models": [
|
|
3382
|
+
{
|
|
3383
|
+
"modelName": "gpt-4.1",
|
|
3384
|
+
"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.",
|
|
3385
|
+
"temperature": 0.5
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"modelName": "chatgpt-4o-latest",
|
|
3389
|
+
"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.",
|
|
3390
|
+
"temperature": 0.5
|
|
3391
|
+
},
|
|
3392
|
+
{
|
|
3393
|
+
"modelName": "gpt-4",
|
|
3394
|
+
"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.",
|
|
3395
|
+
"temperature": 0.5
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3399
|
+
"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.",
|
|
3400
|
+
"temperature": 0.5
|
|
3401
|
+
}
|
|
3402
|
+
]
|
|
3337
3403
|
}
|
|
3338
3404
|
],
|
|
3339
3405
|
"preparationIds": [
|
|
@@ -3344,52 +3410,52 @@
|
|
|
3344
3410
|
"preparations": [
|
|
3345
3411
|
{
|
|
3346
3412
|
"id": 1,
|
|
3347
|
-
"promptbookVersion": "0.100.0-
|
|
3413
|
+
"promptbookVersion": "0.100.0-55",
|
|
3348
3414
|
"usage": {
|
|
3349
3415
|
"price": {
|
|
3350
|
-
"value": 0.
|
|
3416
|
+
"value": 0.045436250000000004
|
|
3351
3417
|
},
|
|
3352
3418
|
"input": {
|
|
3353
3419
|
"tokensCount": {
|
|
3354
|
-
"value":
|
|
3420
|
+
"value": 5781
|
|
3355
3421
|
},
|
|
3356
3422
|
"charactersCount": {
|
|
3357
|
-
"value":
|
|
3423
|
+
"value": 2377
|
|
3358
3424
|
},
|
|
3359
3425
|
"wordsCount": {
|
|
3360
|
-
"value":
|
|
3426
|
+
"value": 348
|
|
3361
3427
|
},
|
|
3362
3428
|
"sentencesCount": {
|
|
3363
|
-
"value":
|
|
3429
|
+
"value": 22
|
|
3364
3430
|
},
|
|
3365
3431
|
"linesCount": {
|
|
3366
|
-
"value":
|
|
3432
|
+
"value": 65
|
|
3367
3433
|
},
|
|
3368
3434
|
"paragraphsCount": {
|
|
3369
3435
|
"value": 20
|
|
3370
3436
|
},
|
|
3371
3437
|
"pagesCount": {
|
|
3372
|
-
"value":
|
|
3438
|
+
"value": 2
|
|
3373
3439
|
}
|
|
3374
3440
|
},
|
|
3375
3441
|
"output": {
|
|
3376
3442
|
"tokensCount": {
|
|
3377
|
-
"value":
|
|
3443
|
+
"value": 3821
|
|
3378
3444
|
},
|
|
3379
3445
|
"charactersCount": {
|
|
3380
|
-
"value":
|
|
3446
|
+
"value": 2473
|
|
3381
3447
|
},
|
|
3382
3448
|
"wordsCount": {
|
|
3383
|
-
"value":
|
|
3449
|
+
"value": 341
|
|
3384
3450
|
},
|
|
3385
3451
|
"sentencesCount": {
|
|
3386
|
-
"value":
|
|
3452
|
+
"value": 26
|
|
3387
3453
|
},
|
|
3388
3454
|
"linesCount": {
|
|
3389
|
-
"value":
|
|
3455
|
+
"value": 56
|
|
3390
3456
|
},
|
|
3391
3457
|
"paragraphsCount": {
|
|
3392
|
-
"value":
|
|
3458
|
+
"value": 1
|
|
3393
3459
|
},
|
|
3394
3460
|
"pagesCount": {
|
|
3395
3461
|
"value": 2
|
|
@@ -3640,27 +3706,28 @@
|
|
|
3640
3706
|
"modelsRequirements": [
|
|
3641
3707
|
{
|
|
3642
3708
|
"modelVariant": "CHAT",
|
|
3643
|
-
"
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3709
|
+
"models": [
|
|
3710
|
+
{
|
|
3711
|
+
"modelName": "gpt-4.1",
|
|
3712
|
+
"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.",
|
|
3713
|
+
"temperature": 0.35
|
|
3714
|
+
},
|
|
3715
|
+
{
|
|
3716
|
+
"modelName": "gpt-4",
|
|
3717
|
+
"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.",
|
|
3718
|
+
"temperature": 0.4
|
|
3719
|
+
},
|
|
3720
|
+
{
|
|
3721
|
+
"modelName": "chatgpt-4o-latest",
|
|
3722
|
+
"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.",
|
|
3723
|
+
"temperature": 0.5
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3727
|
+
"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.",
|
|
3728
|
+
"temperature": 0.6
|
|
3729
|
+
}
|
|
3730
|
+
]
|
|
3664
3731
|
}
|
|
3665
3732
|
],
|
|
3666
3733
|
"preparationIds": [
|
|
@@ -3671,55 +3738,55 @@
|
|
|
3671
3738
|
"preparations": [
|
|
3672
3739
|
{
|
|
3673
3740
|
"id": 1,
|
|
3674
|
-
"promptbookVersion": "0.100.0-
|
|
3741
|
+
"promptbookVersion": "0.100.0-55",
|
|
3675
3742
|
"usage": {
|
|
3676
3743
|
"price": {
|
|
3677
|
-
"value": 0.
|
|
3744
|
+
"value": 0.030741250000000005
|
|
3678
3745
|
},
|
|
3679
3746
|
"input": {
|
|
3680
3747
|
"tokensCount": {
|
|
3681
|
-
"value":
|
|
3748
|
+
"value": 5777
|
|
3682
3749
|
},
|
|
3683
3750
|
"charactersCount": {
|
|
3684
|
-
"value":
|
|
3751
|
+
"value": 2377
|
|
3685
3752
|
},
|
|
3686
3753
|
"wordsCount": {
|
|
3687
|
-
"value":
|
|
3754
|
+
"value": 348
|
|
3688
3755
|
},
|
|
3689
3756
|
"sentencesCount": {
|
|
3690
|
-
"value":
|
|
3757
|
+
"value": 22
|
|
3691
3758
|
},
|
|
3692
3759
|
"linesCount": {
|
|
3693
|
-
"value":
|
|
3760
|
+
"value": 65
|
|
3694
3761
|
},
|
|
3695
3762
|
"paragraphsCount": {
|
|
3696
3763
|
"value": 20
|
|
3697
3764
|
},
|
|
3698
3765
|
"pagesCount": {
|
|
3699
|
-
"value":
|
|
3766
|
+
"value": 2
|
|
3700
3767
|
}
|
|
3701
3768
|
},
|
|
3702
3769
|
"output": {
|
|
3703
3770
|
"tokensCount": {
|
|
3704
|
-
"value":
|
|
3771
|
+
"value": 2352
|
|
3705
3772
|
},
|
|
3706
3773
|
"charactersCount": {
|
|
3707
|
-
"value":
|
|
3774
|
+
"value": 2152
|
|
3708
3775
|
},
|
|
3709
3776
|
"wordsCount": {
|
|
3710
|
-
"value":
|
|
3777
|
+
"value": 283
|
|
3711
3778
|
},
|
|
3712
3779
|
"sentencesCount": {
|
|
3713
|
-
"value":
|
|
3780
|
+
"value": 25
|
|
3714
3781
|
},
|
|
3715
3782
|
"linesCount": {
|
|
3716
|
-
"value":
|
|
3783
|
+
"value": 51
|
|
3717
3784
|
},
|
|
3718
3785
|
"paragraphsCount": {
|
|
3719
|
-
"value":
|
|
3786
|
+
"value": 1
|
|
3720
3787
|
},
|
|
3721
3788
|
"pagesCount": {
|
|
3722
|
-
"value":
|
|
3789
|
+
"value": 2
|
|
3723
3790
|
}
|
|
3724
3791
|
}
|
|
3725
3792
|
}
|
|
@@ -3781,33 +3848,28 @@
|
|
|
3781
3848
|
"modelsRequirements": [
|
|
3782
3849
|
{
|
|
3783
3850
|
"modelVariant": "CHAT",
|
|
3784
|
-
"
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
{
|
|
3807
|
-
"modelVariant": "CHAT",
|
|
3808
|
-
"modelName": "gpt-3.5-turbo",
|
|
3809
|
-
"systemMessage": "You are a talented poet and storyteller. Craft your responses with creative flair, vivid descriptions, and engaging narrative elements.",
|
|
3810
|
-
"temperature": 0.8
|
|
3851
|
+
"models": [
|
|
3852
|
+
{
|
|
3853
|
+
"modelName": "gpt-4.1",
|
|
3854
|
+
"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.",
|
|
3855
|
+
"temperature": 0.95
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
"modelName": "chatgpt-4o-latest",
|
|
3859
|
+
"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.",
|
|
3860
|
+
"temperature": 0.9
|
|
3861
|
+
},
|
|
3862
|
+
{
|
|
3863
|
+
"modelName": "gpt-4",
|
|
3864
|
+
"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.",
|
|
3865
|
+
"temperature": 0.85
|
|
3866
|
+
},
|
|
3867
|
+
{
|
|
3868
|
+
"modelName": "gpt-3.5-turbo-16k",
|
|
3869
|
+
"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.",
|
|
3870
|
+
"temperature": 0.75
|
|
3871
|
+
}
|
|
3872
|
+
]
|
|
3811
3873
|
}
|
|
3812
3874
|
],
|
|
3813
3875
|
"preparationIds": [
|
|
@@ -3818,55 +3880,55 @@
|
|
|
3818
3880
|
"preparations": [
|
|
3819
3881
|
{
|
|
3820
3882
|
"id": 1,
|
|
3821
|
-
"promptbookVersion": "0.100.0-
|
|
3883
|
+
"promptbookVersion": "0.100.0-55",
|
|
3822
3884
|
"usage": {
|
|
3823
3885
|
"price": {
|
|
3824
|
-
"value": 0.
|
|
3886
|
+
"value": 0.03003
|
|
3825
3887
|
},
|
|
3826
3888
|
"input": {
|
|
3827
3889
|
"tokensCount": {
|
|
3828
|
-
"value":
|
|
3890
|
+
"value": 5776
|
|
3829
3891
|
},
|
|
3830
3892
|
"charactersCount": {
|
|
3831
|
-
"value":
|
|
3893
|
+
"value": 2377
|
|
3832
3894
|
},
|
|
3833
3895
|
"wordsCount": {
|
|
3834
|
-
"value":
|
|
3896
|
+
"value": 348
|
|
3835
3897
|
},
|
|
3836
3898
|
"sentencesCount": {
|
|
3837
|
-
"value":
|
|
3899
|
+
"value": 22
|
|
3838
3900
|
},
|
|
3839
3901
|
"linesCount": {
|
|
3840
|
-
"value":
|
|
3902
|
+
"value": 65
|
|
3841
3903
|
},
|
|
3842
3904
|
"paragraphsCount": {
|
|
3843
3905
|
"value": 20
|
|
3844
3906
|
},
|
|
3845
3907
|
"pagesCount": {
|
|
3846
|
-
"value":
|
|
3908
|
+
"value": 2
|
|
3847
3909
|
}
|
|
3848
3910
|
},
|
|
3849
3911
|
"output": {
|
|
3850
3912
|
"tokensCount": {
|
|
3851
|
-
"value":
|
|
3913
|
+
"value": 2281
|
|
3852
3914
|
},
|
|
3853
3915
|
"charactersCount": {
|
|
3854
|
-
"value":
|
|
3916
|
+
"value": 1572
|
|
3855
3917
|
},
|
|
3856
3918
|
"wordsCount": {
|
|
3857
|
-
"value":
|
|
3919
|
+
"value": 209
|
|
3858
3920
|
},
|
|
3859
3921
|
"sentencesCount": {
|
|
3860
|
-
"value":
|
|
3922
|
+
"value": 19
|
|
3861
3923
|
},
|
|
3862
3924
|
"linesCount": {
|
|
3863
|
-
"value":
|
|
3925
|
+
"value": 42
|
|
3864
3926
|
},
|
|
3865
3927
|
"paragraphsCount": {
|
|
3866
|
-
"value":
|
|
3928
|
+
"value": 1
|
|
3867
3929
|
},
|
|
3868
3930
|
"pagesCount": {
|
|
3869
|
-
"value":
|
|
3931
|
+
"value": 1
|
|
3870
3932
|
}
|
|
3871
3933
|
}
|
|
3872
3934
|
}
|