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