@promptbook/templates 0.98.0-5 → 0.98.0-8
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/esm/index.es.js +177 -189
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/anthropic-claude.index.d.ts +2 -2
- package/esm/typings/src/_packages/openai.index.d.ts +4 -0
- package/esm/typings/src/_packages/types.index.d.ts +10 -2
- package/esm/typings/src/config.d.ts +1 -1
- package/esm/typings/src/execution/createPipelineExecutor/$OngoingTaskResult.d.ts +1 -0
- package/esm/typings/src/execution/utils/validatePromptResult.d.ts +53 -0
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts +2 -2
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +4 -4
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionToolsOptions.d.ts +42 -1
- package/esm/typings/src/llm-providers/openai/createOpenAiCompatibleExecutionTools.d.ts +58 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +177 -189
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -16,7 +16,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
16
16
|
* @generated
|
|
17
17
|
* @see https://github.com/webgptorg/promptbook
|
|
18
18
|
*/
|
|
19
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.98.0-
|
|
19
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.98.0-8';
|
|
20
20
|
/**
|
|
21
21
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
22
22
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1534,33 +1534,33 @@ function getTemplatesPipelineCollection() {
|
|
|
1534
1534
|
"modelsRequirements": [
|
|
1535
1535
|
{
|
|
1536
1536
|
"modelVariant": "CHAT",
|
|
1537
|
-
"modelName": "
|
|
1538
|
-
"systemMessage": "You are an experienced AI engineer and developer of the Promptbook Project.
|
|
1537
|
+
"modelName": "gpt-4",
|
|
1538
|
+
"systemMessage": "You are an experienced AI engineer and developer of the Promptbook Project. You have deep knowledge of prompt engineering, AI model capabilities, and software development. Provide detailed, accurate information about the Promptbook Project, its features, and best practices for prompt engineering.",
|
|
1539
1539
|
"temperature": 0.7
|
|
1540
1540
|
},
|
|
1541
1541
|
{
|
|
1542
1542
|
"modelVariant": "CHAT",
|
|
1543
|
-
"modelName": "
|
|
1544
|
-
"systemMessage": "
|
|
1543
|
+
"modelName": "claude-3-opus-20240229",
|
|
1544
|
+
"systemMessage": "You are a knowledgeable developer of the Promptbook Project, with expertise in AI, programming, and prompt engineering. Offer insightful explanations about the project's architecture, functionality, and applications. Be ready to discuss technical details and provide code examples when relevant.",
|
|
1545
1545
|
"temperature": 0.6
|
|
1546
1546
|
},
|
|
1547
1547
|
{
|
|
1548
1548
|
"modelVariant": "CHAT",
|
|
1549
1549
|
"modelName": "gemini-1.5-pro",
|
|
1550
|
-
"systemMessage": "
|
|
1550
|
+
"systemMessage": "As a developer of the Promptbook Project, you possess extensive knowledge of AI technologies, software development, and prompt engineering techniques. Provide clear, concise explanations about the project's features, implementation details, and best practices for effective prompt design.",
|
|
1551
1551
|
"temperature": 0.5
|
|
1552
1552
|
},
|
|
1553
1553
|
{
|
|
1554
1554
|
"modelVariant": "CHAT",
|
|
1555
|
-
"modelName": "
|
|
1556
|
-
"systemMessage": "
|
|
1557
|
-
"temperature": 0.
|
|
1555
|
+
"modelName": "gpt-3.5-turbo",
|
|
1556
|
+
"systemMessage": "You are a helpful assistant and developer of the Promptbook Project. Share information about the project's goals, features, and usage. Provide guidance on prompt engineering and answer questions related to the project's development and applications.",
|
|
1557
|
+
"temperature": 0.7
|
|
1558
1558
|
},
|
|
1559
1559
|
{
|
|
1560
1560
|
"modelVariant": "CHAT",
|
|
1561
|
-
"modelName": "
|
|
1562
|
-
"systemMessage": "
|
|
1563
|
-
"temperature": 0.
|
|
1561
|
+
"modelName": "deepseek-coder",
|
|
1562
|
+
"systemMessage": "As a developer of the Promptbook Project, you specialize in the technical aspects of prompt engineering and AI model integration. Offer detailed code examples, explain implementation strategies, and provide insights into the project's codebase and architecture.",
|
|
1563
|
+
"temperature": 0.6
|
|
1564
1564
|
}
|
|
1565
1565
|
],
|
|
1566
1566
|
"preparationIds": [
|
|
@@ -1571,52 +1571,52 @@ function getTemplatesPipelineCollection() {
|
|
|
1571
1571
|
"preparations": [
|
|
1572
1572
|
{
|
|
1573
1573
|
"id": 1,
|
|
1574
|
-
"promptbookVersion": "0.98.0-
|
|
1574
|
+
"promptbookVersion": "0.98.0-7",
|
|
1575
1575
|
"usage": {
|
|
1576
1576
|
"price": {
|
|
1577
|
-
"value": 0.
|
|
1577
|
+
"value": 0.035612500000000005
|
|
1578
1578
|
},
|
|
1579
1579
|
"input": {
|
|
1580
1580
|
"tokensCount": {
|
|
1581
|
-
"value":
|
|
1581
|
+
"value": 10335
|
|
1582
1582
|
},
|
|
1583
1583
|
"charactersCount": {
|
|
1584
|
-
"value":
|
|
1584
|
+
"value": 47374
|
|
1585
1585
|
},
|
|
1586
1586
|
"wordsCount": {
|
|
1587
|
-
"value":
|
|
1587
|
+
"value": 6129
|
|
1588
1588
|
},
|
|
1589
1589
|
"sentencesCount": {
|
|
1590
|
-
"value":
|
|
1590
|
+
"value": 438
|
|
1591
1591
|
},
|
|
1592
1592
|
"linesCount": {
|
|
1593
|
-
"value":
|
|
1593
|
+
"value": 779
|
|
1594
1594
|
},
|
|
1595
1595
|
"paragraphsCount": {
|
|
1596
1596
|
"value": 20
|
|
1597
1597
|
},
|
|
1598
1598
|
"pagesCount": {
|
|
1599
|
-
"value":
|
|
1599
|
+
"value": 18
|
|
1600
1600
|
}
|
|
1601
1601
|
},
|
|
1602
1602
|
"output": {
|
|
1603
1603
|
"tokensCount": {
|
|
1604
|
-
"value":
|
|
1604
|
+
"value": 782
|
|
1605
1605
|
},
|
|
1606
1606
|
"charactersCount": {
|
|
1607
|
-
"value":
|
|
1607
|
+
"value": 3545
|
|
1608
1608
|
},
|
|
1609
1609
|
"wordsCount": {
|
|
1610
|
-
"value":
|
|
1610
|
+
"value": 496
|
|
1611
1611
|
},
|
|
1612
1612
|
"sentencesCount": {
|
|
1613
|
-
"value":
|
|
1613
|
+
"value": 37
|
|
1614
1614
|
},
|
|
1615
1615
|
"linesCount": {
|
|
1616
|
-
"value":
|
|
1616
|
+
"value": 81
|
|
1617
1617
|
},
|
|
1618
1618
|
"paragraphsCount": {
|
|
1619
|
-
"value":
|
|
1619
|
+
"value": 9
|
|
1620
1620
|
},
|
|
1621
1621
|
"pagesCount": {
|
|
1622
1622
|
"value": 2
|
|
@@ -2070,33 +2070,33 @@ function getTemplatesPipelineCollection() {
|
|
|
2070
2070
|
"modelsRequirements": [
|
|
2071
2071
|
{
|
|
2072
2072
|
"modelVariant": "CHAT",
|
|
2073
|
-
"modelName": "
|
|
2074
|
-
"systemMessage": "You are an experienced AI engineer and developer of the Promptbook Project.
|
|
2073
|
+
"modelName": "gpt-4",
|
|
2074
|
+
"systemMessage": "You are an experienced AI engineer and developer of the Promptbook Project. You have deep knowledge of prompt engineering, AI model capabilities, and software development. Provide detailed, accurate information about the Promptbook Project, its features, and best practices for prompt engineering.",
|
|
2075
2075
|
"temperature": 0.7
|
|
2076
2076
|
},
|
|
2077
2077
|
{
|
|
2078
2078
|
"modelVariant": "CHAT",
|
|
2079
|
-
"modelName": "
|
|
2080
|
-
"systemMessage": "
|
|
2079
|
+
"modelName": "claude-3-opus-20240229",
|
|
2080
|
+
"systemMessage": "You are a knowledgeable developer of the Promptbook Project, with expertise in AI, programming, and prompt engineering. Offer insightful explanations about the project's architecture, functionality, and applications. Be ready to discuss technical details and provide code examples when relevant.",
|
|
2081
2081
|
"temperature": 0.6
|
|
2082
2082
|
},
|
|
2083
2083
|
{
|
|
2084
2084
|
"modelVariant": "CHAT",
|
|
2085
2085
|
"modelName": "gemini-1.5-pro",
|
|
2086
|
-
"systemMessage": "
|
|
2086
|
+
"systemMessage": "As a developer of the Promptbook Project, you possess extensive knowledge of AI technologies, software development, and prompt engineering techniques. Provide clear, concise explanations about the project's features, implementation details, and best practices for effective prompt design.",
|
|
2087
2087
|
"temperature": 0.5
|
|
2088
2088
|
},
|
|
2089
2089
|
{
|
|
2090
2090
|
"modelVariant": "CHAT",
|
|
2091
|
-
"modelName": "
|
|
2092
|
-
"systemMessage": "
|
|
2093
|
-
"temperature": 0.
|
|
2091
|
+
"modelName": "gpt-3.5-turbo",
|
|
2092
|
+
"systemMessage": "You are a helpful assistant and developer of the Promptbook Project. Share information about the project's goals, features, and usage. Provide guidance on prompt engineering and answer questions related to the project's development and applications.",
|
|
2093
|
+
"temperature": 0.7
|
|
2094
2094
|
},
|
|
2095
2095
|
{
|
|
2096
2096
|
"modelVariant": "CHAT",
|
|
2097
|
-
"modelName": "
|
|
2098
|
-
"systemMessage": "
|
|
2099
|
-
"temperature": 0.
|
|
2097
|
+
"modelName": "deepseek-coder",
|
|
2098
|
+
"systemMessage": "As a developer of the Promptbook Project, you specialize in the technical aspects of prompt engineering and AI model integration. Offer detailed code examples, explain implementation strategies, and provide insights into the project's codebase and architecture.",
|
|
2099
|
+
"temperature": 0.6
|
|
2100
2100
|
}
|
|
2101
2101
|
],
|
|
2102
2102
|
"preparationIds": [
|
|
@@ -2107,52 +2107,52 @@ function getTemplatesPipelineCollection() {
|
|
|
2107
2107
|
"preparations": [
|
|
2108
2108
|
{
|
|
2109
2109
|
"id": 1,
|
|
2110
|
-
"promptbookVersion": "0.98.0-
|
|
2110
|
+
"promptbookVersion": "0.98.0-7",
|
|
2111
2111
|
"usage": {
|
|
2112
2112
|
"price": {
|
|
2113
|
-
"value": 0.
|
|
2113
|
+
"value": 0.035612500000000005
|
|
2114
2114
|
},
|
|
2115
2115
|
"input": {
|
|
2116
2116
|
"tokensCount": {
|
|
2117
|
-
"value":
|
|
2117
|
+
"value": 10335
|
|
2118
2118
|
},
|
|
2119
2119
|
"charactersCount": {
|
|
2120
|
-
"value":
|
|
2120
|
+
"value": 47374
|
|
2121
2121
|
},
|
|
2122
2122
|
"wordsCount": {
|
|
2123
|
-
"value":
|
|
2123
|
+
"value": 6129
|
|
2124
2124
|
},
|
|
2125
2125
|
"sentencesCount": {
|
|
2126
|
-
"value":
|
|
2126
|
+
"value": 438
|
|
2127
2127
|
},
|
|
2128
2128
|
"linesCount": {
|
|
2129
|
-
"value":
|
|
2129
|
+
"value": 779
|
|
2130
2130
|
},
|
|
2131
2131
|
"paragraphsCount": {
|
|
2132
2132
|
"value": 20
|
|
2133
2133
|
},
|
|
2134
2134
|
"pagesCount": {
|
|
2135
|
-
"value":
|
|
2135
|
+
"value": 18
|
|
2136
2136
|
}
|
|
2137
2137
|
},
|
|
2138
2138
|
"output": {
|
|
2139
2139
|
"tokensCount": {
|
|
2140
|
-
"value":
|
|
2140
|
+
"value": 782
|
|
2141
2141
|
},
|
|
2142
2142
|
"charactersCount": {
|
|
2143
|
-
"value":
|
|
2143
|
+
"value": 3545
|
|
2144
2144
|
},
|
|
2145
2145
|
"wordsCount": {
|
|
2146
|
-
"value":
|
|
2146
|
+
"value": 496
|
|
2147
2147
|
},
|
|
2148
2148
|
"sentencesCount": {
|
|
2149
|
-
"value":
|
|
2149
|
+
"value": 37
|
|
2150
2150
|
},
|
|
2151
2151
|
"linesCount": {
|
|
2152
|
-
"value":
|
|
2152
|
+
"value": 81
|
|
2153
2153
|
},
|
|
2154
2154
|
"paragraphsCount": {
|
|
2155
|
-
"value":
|
|
2155
|
+
"value": 9
|
|
2156
2156
|
},
|
|
2157
2157
|
"pagesCount": {
|
|
2158
2158
|
"value": 2
|
|
@@ -2745,35 +2745,23 @@ function getTemplatesPipelineCollection() {
|
|
|
2745
2745
|
"name": "Jane",
|
|
2746
2746
|
"description": "a linguist and Corrector",
|
|
2747
2747
|
"modelsRequirements": [
|
|
2748
|
-
{
|
|
2749
|
-
"modelVariant": "CHAT",
|
|
2750
|
-
"modelName": "claude-3-opus-20240229",
|
|
2751
|
-
"systemMessage": "You are an expert linguist and meticulous corrector. Provide detailed grammatical analysis, correct errors, and offer nuanced explanations of language usage.",
|
|
2752
|
-
"temperature": 0.3
|
|
2753
|
-
},
|
|
2754
2748
|
{
|
|
2755
2749
|
"modelVariant": "CHAT",
|
|
2756
2750
|
"modelName": "gpt-4",
|
|
2757
|
-
"systemMessage": "
|
|
2758
|
-
"temperature": 0.
|
|
2751
|
+
"systemMessage": "You are an expert linguist and language corrector. Your role is to assist with grammar, vocabulary, style, and language usage questions. Provide clear explanations for any corrections or suggestions you make. Be precise and authoritative in your linguistic knowledge while maintaining a helpful and educational tone.",
|
|
2752
|
+
"temperature": 0.3
|
|
2759
2753
|
},
|
|
2760
2754
|
{
|
|
2761
2755
|
"modelVariant": "CHAT",
|
|
2762
|
-
"modelName": "
|
|
2763
|
-
"systemMessage": "You are a
|
|
2756
|
+
"modelName": "gpt-3.5-turbo",
|
|
2757
|
+
"systemMessage": "You are a knowledgeable linguist and language corrector. Your task is to help with grammar, word choice, and language usage questions. Offer explanations for any corrections you suggest. Be accurate in your linguistic advice while keeping a friendly and instructive manner.",
|
|
2764
2758
|
"temperature": 0.4
|
|
2765
2759
|
},
|
|
2766
2760
|
{
|
|
2767
2761
|
"modelVariant": "CHAT",
|
|
2768
|
-
"modelName": "claude-3-
|
|
2769
|
-
"systemMessage": "
|
|
2770
|
-
"temperature": 0.
|
|
2771
|
-
},
|
|
2772
|
-
{
|
|
2773
|
-
"modelVariant": "CHAT",
|
|
2774
|
-
"modelName": "gpt-3.5-turbo",
|
|
2775
|
-
"systemMessage": "You are a capable linguist and corrector. Review text for errors, suggest improvements, and explain basic linguistic concepts.",
|
|
2776
|
-
"temperature": 0.5
|
|
2762
|
+
"modelName": "claude-3-opus-20240229",
|
|
2763
|
+
"systemMessage": "You are a highly skilled linguist and language corrector. Your purpose is to assist with grammar, vocabulary, style, and linguistic questions across multiple languages. Provide detailed explanations and examples to support your corrections and suggestions. Be precise and authoritative in your knowledge while maintaining a patient and educational approach.",
|
|
2764
|
+
"temperature": 0.2
|
|
2777
2765
|
}
|
|
2778
2766
|
],
|
|
2779
2767
|
"preparationIds": [
|
|
@@ -2784,49 +2772,49 @@ function getTemplatesPipelineCollection() {
|
|
|
2784
2772
|
"preparations": [
|
|
2785
2773
|
{
|
|
2786
2774
|
"id": 1,
|
|
2787
|
-
"promptbookVersion": "0.98.0-
|
|
2775
|
+
"promptbookVersion": "0.98.0-7",
|
|
2788
2776
|
"usage": {
|
|
2789
2777
|
"price": {
|
|
2790
|
-
"value": 0.
|
|
2778
|
+
"value": 0.029760000000000005
|
|
2791
2779
|
},
|
|
2792
2780
|
"input": {
|
|
2793
2781
|
"tokensCount": {
|
|
2794
|
-
"value":
|
|
2782
|
+
"value": 10334
|
|
2795
2783
|
},
|
|
2796
2784
|
"charactersCount": {
|
|
2797
|
-
"value":
|
|
2785
|
+
"value": 47361
|
|
2798
2786
|
},
|
|
2799
2787
|
"wordsCount": {
|
|
2800
|
-
"value":
|
|
2788
|
+
"value": 6127
|
|
2801
2789
|
},
|
|
2802
2790
|
"sentencesCount": {
|
|
2803
|
-
"value":
|
|
2791
|
+
"value": 438
|
|
2804
2792
|
},
|
|
2805
2793
|
"linesCount": {
|
|
2806
|
-
"value":
|
|
2794
|
+
"value": 779
|
|
2807
2795
|
},
|
|
2808
2796
|
"paragraphsCount": {
|
|
2809
2797
|
"value": 20
|
|
2810
2798
|
},
|
|
2811
2799
|
"pagesCount": {
|
|
2812
|
-
"value":
|
|
2800
|
+
"value": 18
|
|
2813
2801
|
}
|
|
2814
2802
|
},
|
|
2815
2803
|
"output": {
|
|
2816
2804
|
"tokensCount": {
|
|
2817
|
-
"value":
|
|
2805
|
+
"value": 314
|
|
2818
2806
|
},
|
|
2819
2807
|
"charactersCount": {
|
|
2820
|
-
"value":
|
|
2808
|
+
"value": 1318
|
|
2821
2809
|
},
|
|
2822
2810
|
"wordsCount": {
|
|
2823
|
-
"value":
|
|
2811
|
+
"value": 181
|
|
2824
2812
|
},
|
|
2825
2813
|
"sentencesCount": {
|
|
2826
|
-
"value":
|
|
2814
|
+
"value": 17
|
|
2827
2815
|
},
|
|
2828
2816
|
"linesCount": {
|
|
2829
|
-
"value":
|
|
2817
|
+
"value": 36
|
|
2830
2818
|
},
|
|
2831
2819
|
"paragraphsCount": {
|
|
2832
2820
|
"value": 2
|
|
@@ -2895,27 +2883,27 @@ function getTemplatesPipelineCollection() {
|
|
|
2895
2883
|
"modelsRequirements": [
|
|
2896
2884
|
{
|
|
2897
2885
|
"modelVariant": "CHAT",
|
|
2898
|
-
"modelName": "gpt-4",
|
|
2899
|
-
"systemMessage": "You are an expert e-commerce copywriter.
|
|
2886
|
+
"modelName": "gpt-4-turbo",
|
|
2887
|
+
"systemMessage": "You are an expert e-commerce copywriter. Your role is to create compelling, persuasive product descriptions and marketing copy that drives conversions. Maintain a professional yet engaging tone, highlight key product features and benefits, and incorporate SEO best practices.",
|
|
2900
2888
|
"temperature": 0.7
|
|
2901
2889
|
},
|
|
2902
2890
|
{
|
|
2903
2891
|
"modelVariant": "CHAT",
|
|
2904
2892
|
"modelName": "claude-3-opus-20240229",
|
|
2905
|
-
"systemMessage": "You are a skilled e-commerce copywriter specializing in product descriptions and marketing materials. Craft
|
|
2893
|
+
"systemMessage": "You are a highly skilled e-commerce copywriter specializing in creating persuasive product descriptions and marketing materials. Craft compelling copy that showcases product benefits, appeals to customer needs, and drives sales. Maintain a balance between informative and persuasive language.",
|
|
2906
2894
|
"temperature": 0.6
|
|
2907
2895
|
},
|
|
2908
2896
|
{
|
|
2909
2897
|
"modelVariant": "CHAT",
|
|
2910
2898
|
"modelName": "gemini-1.5-pro",
|
|
2911
|
-
"systemMessage": "As an expert e-commerce copywriter, your task is to
|
|
2899
|
+
"systemMessage": "As an expert e-commerce copywriter, your task is to produce engaging and conversion-focused product descriptions and marketing copy. Emphasize unique selling points, use persuasive language, and tailor the tone to the target audience. Incorporate relevant keywords for SEO optimization.",
|
|
2912
2900
|
"temperature": 0.65
|
|
2913
2901
|
},
|
|
2914
2902
|
{
|
|
2915
2903
|
"modelVariant": "CHAT",
|
|
2916
2904
|
"modelName": "gpt-3.5-turbo",
|
|
2917
|
-
"systemMessage": "You are a
|
|
2918
|
-
"temperature": 0.
|
|
2905
|
+
"systemMessage": "You are a skilled e-commerce copywriter. Create concise, engaging product descriptions and marketing copy that highlight key features and benefits. Use persuasive language to encourage purchases while maintaining accuracy and clarity.",
|
|
2906
|
+
"temperature": 0.7
|
|
2919
2907
|
}
|
|
2920
2908
|
],
|
|
2921
2909
|
"preparationIds": [
|
|
@@ -2926,49 +2914,49 @@ function getTemplatesPipelineCollection() {
|
|
|
2926
2914
|
"preparations": [
|
|
2927
2915
|
{
|
|
2928
2916
|
"id": 1,
|
|
2929
|
-
"promptbookVersion": "0.98.0-
|
|
2917
|
+
"promptbookVersion": "0.98.0-7",
|
|
2930
2918
|
"usage": {
|
|
2931
2919
|
"price": {
|
|
2932
|
-
"value": 0.
|
|
2920
|
+
"value": 0.030822500000000003
|
|
2933
2921
|
},
|
|
2934
2922
|
"input": {
|
|
2935
2923
|
"tokensCount": {
|
|
2936
|
-
"value":
|
|
2924
|
+
"value": 10334
|
|
2937
2925
|
},
|
|
2938
2926
|
"charactersCount": {
|
|
2939
|
-
"value":
|
|
2927
|
+
"value": 47365
|
|
2940
2928
|
},
|
|
2941
2929
|
"wordsCount": {
|
|
2942
|
-
"value":
|
|
2930
|
+
"value": 6127
|
|
2943
2931
|
},
|
|
2944
2932
|
"sentencesCount": {
|
|
2945
|
-
"value":
|
|
2933
|
+
"value": 438
|
|
2946
2934
|
},
|
|
2947
2935
|
"linesCount": {
|
|
2948
|
-
"value":
|
|
2936
|
+
"value": 779
|
|
2949
2937
|
},
|
|
2950
2938
|
"paragraphsCount": {
|
|
2951
2939
|
"value": 20
|
|
2952
2940
|
},
|
|
2953
2941
|
"pagesCount": {
|
|
2954
|
-
"value":
|
|
2942
|
+
"value": 18
|
|
2955
2943
|
}
|
|
2956
2944
|
},
|
|
2957
2945
|
"output": {
|
|
2958
2946
|
"tokensCount": {
|
|
2959
|
-
"value":
|
|
2947
|
+
"value": 399
|
|
2960
2948
|
},
|
|
2961
2949
|
"charactersCount": {
|
|
2962
|
-
"value":
|
|
2950
|
+
"value": 1609
|
|
2963
2951
|
},
|
|
2964
2952
|
"wordsCount": {
|
|
2965
|
-
"value":
|
|
2953
|
+
"value": 218
|
|
2966
2954
|
},
|
|
2967
2955
|
"sentencesCount": {
|
|
2968
|
-
"value":
|
|
2956
|
+
"value": 19
|
|
2969
2957
|
},
|
|
2970
2958
|
"linesCount": {
|
|
2971
|
-
"value":
|
|
2959
|
+
"value": 44
|
|
2972
2960
|
},
|
|
2973
2961
|
"paragraphsCount": {
|
|
2974
2962
|
"value": 2
|
|
@@ -3022,7 +3010,7 @@ function getTemplatesPipelineCollection() {
|
|
|
3022
3010
|
"preparations": [
|
|
3023
3011
|
{
|
|
3024
3012
|
"id": 1,
|
|
3025
|
-
"promptbookVersion": "0.98.0-
|
|
3013
|
+
"promptbookVersion": "0.98.0-7",
|
|
3026
3014
|
"usage": {
|
|
3027
3015
|
"price": {
|
|
3028
3016
|
"value": 0
|
|
@@ -3128,26 +3116,26 @@ function getTemplatesPipelineCollection() {
|
|
|
3128
3116
|
"modelsRequirements": [
|
|
3129
3117
|
{
|
|
3130
3118
|
"modelVariant": "CHAT",
|
|
3131
|
-
"modelName": "
|
|
3132
|
-
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide expert advice on marketing strategies, business
|
|
3119
|
+
"modelName": "gpt-4-turbo",
|
|
3120
|
+
"systemMessage": "You are an experienced marketing specialist and business consultant. Provide expert advice on marketing strategies, business development, and industry trends. Offer data-driven insights and actionable recommendations.",
|
|
3133
3121
|
"temperature": 0.7
|
|
3134
3122
|
},
|
|
3135
3123
|
{
|
|
3136
3124
|
"modelVariant": "CHAT",
|
|
3137
|
-
"modelName": "
|
|
3138
|
-
"systemMessage": "As an experienced marketing specialist and business consultant,
|
|
3125
|
+
"modelName": "claude-3-opus-20240229",
|
|
3126
|
+
"systemMessage": "As an experienced marketing specialist and business consultant, you excel at analyzing market trends, developing strategic plans, and offering expert advice on business growth. Provide clear, actionable insights backed by industry knowledge and data analysis.",
|
|
3139
3127
|
"temperature": 0.6
|
|
3140
3128
|
},
|
|
3141
3129
|
{
|
|
3142
3130
|
"modelVariant": "CHAT",
|
|
3143
3131
|
"modelName": "gemini-1.5-pro",
|
|
3144
|
-
"systemMessage": "You are a
|
|
3145
|
-
"temperature": 0.
|
|
3132
|
+
"systemMessage": "You are a highly knowledgeable marketing specialist and business consultant. Leverage your expertise to provide strategic advice, market analysis, and innovative solutions for business challenges. Focus on delivering practical, results-oriented recommendations.",
|
|
3133
|
+
"temperature": 0.7
|
|
3146
3134
|
},
|
|
3147
3135
|
{
|
|
3148
3136
|
"modelVariant": "CHAT",
|
|
3149
|
-
"modelName": "
|
|
3150
|
-
"systemMessage": "As an experienced marketing and business consultant, your
|
|
3137
|
+
"modelName": "gpt-3.5-turbo",
|
|
3138
|
+
"systemMessage": "As an experienced marketing specialist and business consultant, your role is to provide insightful advice on marketing strategies, business operations, and market trends. Offer clear, concise recommendations based on industry best practices and current market dynamics.",
|
|
3151
3139
|
"temperature": 0.6
|
|
3152
3140
|
}
|
|
3153
3141
|
],
|
|
@@ -3159,49 +3147,49 @@ function getTemplatesPipelineCollection() {
|
|
|
3159
3147
|
"preparations": [
|
|
3160
3148
|
{
|
|
3161
3149
|
"id": 1,
|
|
3162
|
-
"promptbookVersion": "0.98.0-
|
|
3150
|
+
"promptbookVersion": "0.98.0-7",
|
|
3163
3151
|
"usage": {
|
|
3164
3152
|
"price": {
|
|
3165
|
-
"value": 0.
|
|
3153
|
+
"value": 0.030332500000000002
|
|
3166
3154
|
},
|
|
3167
3155
|
"input": {
|
|
3168
3156
|
"tokensCount": {
|
|
3169
|
-
"value":
|
|
3157
|
+
"value": 10333
|
|
3170
3158
|
},
|
|
3171
3159
|
"charactersCount": {
|
|
3172
|
-
"value":
|
|
3160
|
+
"value": 47393
|
|
3173
3161
|
},
|
|
3174
3162
|
"wordsCount": {
|
|
3175
|
-
"value":
|
|
3163
|
+
"value": 6129
|
|
3176
3164
|
},
|
|
3177
3165
|
"sentencesCount": {
|
|
3178
|
-
"value":
|
|
3166
|
+
"value": 438
|
|
3179
3167
|
},
|
|
3180
3168
|
"linesCount": {
|
|
3181
|
-
"value":
|
|
3169
|
+
"value": 779
|
|
3182
3170
|
},
|
|
3183
3171
|
"paragraphsCount": {
|
|
3184
3172
|
"value": 20
|
|
3185
3173
|
},
|
|
3186
3174
|
"pagesCount": {
|
|
3187
|
-
"value":
|
|
3175
|
+
"value": 18
|
|
3188
3176
|
}
|
|
3189
3177
|
},
|
|
3190
3178
|
"output": {
|
|
3191
3179
|
"tokensCount": {
|
|
3192
|
-
"value":
|
|
3180
|
+
"value": 360
|
|
3193
3181
|
},
|
|
3194
3182
|
"charactersCount": {
|
|
3195
|
-
"value":
|
|
3183
|
+
"value": 1548
|
|
3196
3184
|
},
|
|
3197
3185
|
"wordsCount": {
|
|
3198
|
-
"value":
|
|
3186
|
+
"value": 197
|
|
3199
3187
|
},
|
|
3200
3188
|
"sentencesCount": {
|
|
3201
|
-
"value":
|
|
3189
|
+
"value": 17
|
|
3202
3190
|
},
|
|
3203
3191
|
"linesCount": {
|
|
3204
|
-
"value":
|
|
3192
|
+
"value": 42
|
|
3205
3193
|
},
|
|
3206
3194
|
"paragraphsCount": {
|
|
3207
3195
|
"value": 2
|
|
@@ -3278,21 +3266,27 @@ function getTemplatesPipelineCollection() {
|
|
|
3278
3266
|
"modelsRequirements": [
|
|
3279
3267
|
{
|
|
3280
3268
|
"modelVariant": "CHAT",
|
|
3281
|
-
"modelName": "claude-3-
|
|
3282
|
-
"systemMessage": "You are a
|
|
3269
|
+
"modelName": "claude-3-opus-20240229",
|
|
3270
|
+
"systemMessage": "You are a highly skilled customer service representative and copywriter for an e-commerce shop. Provide friendly, helpful responses to customer inquiries and craft compelling product descriptions and marketing copy.",
|
|
3283
3271
|
"temperature": 0.7
|
|
3284
3272
|
},
|
|
3285
3273
|
{
|
|
3286
3274
|
"modelVariant": "CHAT",
|
|
3287
|
-
"modelName": "gpt-4",
|
|
3288
|
-
"systemMessage": "
|
|
3275
|
+
"modelName": "gpt-4-turbo",
|
|
3276
|
+
"systemMessage": "As an expert customer service agent and copywriter for an online store, your role is to assist customers with inquiries and create engaging product descriptions. Communicate in a friendly, professional manner and showcase products effectively.",
|
|
3289
3277
|
"temperature": 0.6
|
|
3290
3278
|
},
|
|
3279
|
+
{
|
|
3280
|
+
"modelVariant": "CHAT",
|
|
3281
|
+
"modelName": "claude-3-sonnet-20240229",
|
|
3282
|
+
"systemMessage": "You are a customer service representative and copywriter for an e-commerce platform. Provide helpful support to customers and write persuasive product descriptions. Maintain a friendly and professional tone in all interactions.",
|
|
3283
|
+
"temperature": 0.5
|
|
3284
|
+
},
|
|
3291
3285
|
{
|
|
3292
3286
|
"modelVariant": "CHAT",
|
|
3293
3287
|
"modelName": "gemini-1.5-pro",
|
|
3294
|
-
"systemMessage": "As a customer service
|
|
3295
|
-
"temperature": 0.
|
|
3288
|
+
"systemMessage": "As a customer service rep and copywriter for an online shop, your tasks are to assist customers with their questions and create compelling product descriptions. Be friendly, informative, and persuasive in your communication.",
|
|
3289
|
+
"temperature": 0.6
|
|
3296
3290
|
}
|
|
3297
3291
|
],
|
|
3298
3292
|
"preparationIds": [
|
|
@@ -3303,49 +3297,49 @@ function getTemplatesPipelineCollection() {
|
|
|
3303
3297
|
"preparations": [
|
|
3304
3298
|
{
|
|
3305
3299
|
"id": 1,
|
|
3306
|
-
"promptbookVersion": "0.98.0-
|
|
3300
|
+
"promptbookVersion": "0.98.0-7",
|
|
3307
3301
|
"usage": {
|
|
3308
3302
|
"price": {
|
|
3309
|
-
"value": 0.
|
|
3303
|
+
"value": 0.030320000000000003
|
|
3310
3304
|
},
|
|
3311
3305
|
"input": {
|
|
3312
3306
|
"tokensCount": {
|
|
3313
|
-
"value":
|
|
3307
|
+
"value": 10338
|
|
3314
3308
|
},
|
|
3315
3309
|
"charactersCount": {
|
|
3316
|
-
"value":
|
|
3310
|
+
"value": 47401
|
|
3317
3311
|
},
|
|
3318
3312
|
"wordsCount": {
|
|
3319
|
-
"value":
|
|
3313
|
+
"value": 6131
|
|
3320
3314
|
},
|
|
3321
3315
|
"sentencesCount": {
|
|
3322
|
-
"value":
|
|
3316
|
+
"value": 438
|
|
3323
3317
|
},
|
|
3324
3318
|
"linesCount": {
|
|
3325
|
-
"value":
|
|
3319
|
+
"value": 780
|
|
3326
3320
|
},
|
|
3327
3321
|
"paragraphsCount": {
|
|
3328
3322
|
"value": 20
|
|
3329
3323
|
},
|
|
3330
3324
|
"pagesCount": {
|
|
3331
|
-
"value":
|
|
3325
|
+
"value": 18
|
|
3332
3326
|
}
|
|
3333
3327
|
},
|
|
3334
3328
|
"output": {
|
|
3335
3329
|
"tokensCount": {
|
|
3336
|
-
"value":
|
|
3330
|
+
"value": 358
|
|
3337
3331
|
},
|
|
3338
3332
|
"charactersCount": {
|
|
3339
|
-
"value":
|
|
3333
|
+
"value": 1468
|
|
3340
3334
|
},
|
|
3341
3335
|
"wordsCount": {
|
|
3342
|
-
"value":
|
|
3336
|
+
"value": 200
|
|
3343
3337
|
},
|
|
3344
3338
|
"sentencesCount": {
|
|
3345
|
-
"value":
|
|
3339
|
+
"value": 15
|
|
3346
3340
|
},
|
|
3347
3341
|
"linesCount": {
|
|
3348
|
-
"value":
|
|
3342
|
+
"value": 40
|
|
3349
3343
|
},
|
|
3350
3344
|
"paragraphsCount": {
|
|
3351
3345
|
"value": 2
|
|
@@ -3600,26 +3594,26 @@ function getTemplatesPipelineCollection() {
|
|
|
3600
3594
|
{
|
|
3601
3595
|
"modelVariant": "CHAT",
|
|
3602
3596
|
"modelName": "claude-3-opus-20240229",
|
|
3603
|
-
"systemMessage": "You are an expert linguist and Esperantist.
|
|
3597
|
+
"systemMessage": "You are an expert linguist and Esperantist assistant. You have deep knowledge of linguistics, language learning, and the Esperanto language and community. Provide detailed, accurate information on linguistic topics and Esperanto. Be prepared to discuss language structure, etymology, and sociolinguistic aspects of Esperanto.",
|
|
3604
3598
|
"temperature": 0.3
|
|
3605
3599
|
},
|
|
3606
3600
|
{
|
|
3607
3601
|
"modelVariant": "CHAT",
|
|
3608
|
-
"modelName": "gpt-4",
|
|
3609
|
-
"systemMessage": "
|
|
3602
|
+
"modelName": "gpt-4-turbo",
|
|
3603
|
+
"systemMessage": "You are a knowledgeable linguist and Esperantist assistant. Share insights on linguistics and the Esperanto language, including its grammar, vocabulary, and cultural aspects. Provide accurate information and be ready to engage in nuanced discussions about language and Esperanto.",
|
|
3610
3604
|
"temperature": 0.4
|
|
3611
3605
|
},
|
|
3612
3606
|
{
|
|
3613
3607
|
"modelVariant": "CHAT",
|
|
3614
|
-
"modelName": "
|
|
3615
|
-
"systemMessage": "
|
|
3616
|
-
"temperature": 0.
|
|
3608
|
+
"modelName": "claude-3-sonnet-20240229",
|
|
3609
|
+
"systemMessage": "As a linguist and Esperantist assistant, your role is to provide information and insights on linguistics and the Esperanto language. Offer clear explanations on language structures, Esperanto grammar, and vocabulary. Be prepared to discuss the history and cultural significance of Esperanto.",
|
|
3610
|
+
"temperature": 0.5
|
|
3617
3611
|
},
|
|
3618
3612
|
{
|
|
3619
3613
|
"modelVariant": "CHAT",
|
|
3620
|
-
"modelName": "
|
|
3621
|
-
"systemMessage": "
|
|
3622
|
-
"temperature": 0.
|
|
3614
|
+
"modelName": "gemini-1.5-pro",
|
|
3615
|
+
"systemMessage": "You are an assistant specializing in linguistics and Esperanto. Provide accurate information on linguistic concepts and the Esperanto language. Be ready to explain grammar rules, discuss language learning techniques, and share knowledge about the Esperanto community and culture.",
|
|
3616
|
+
"temperature": 0.6
|
|
3623
3617
|
}
|
|
3624
3618
|
],
|
|
3625
3619
|
"preparationIds": [
|
|
@@ -3630,49 +3624,49 @@ function getTemplatesPipelineCollection() {
|
|
|
3630
3624
|
"preparations": [
|
|
3631
3625
|
{
|
|
3632
3626
|
"id": 1,
|
|
3633
|
-
"promptbookVersion": "0.98.0-
|
|
3627
|
+
"promptbookVersion": "0.98.0-7",
|
|
3634
3628
|
"usage": {
|
|
3635
3629
|
"price": {
|
|
3636
|
-
"value": 0.
|
|
3630
|
+
"value": 0.031135000000000003
|
|
3637
3631
|
},
|
|
3638
3632
|
"input": {
|
|
3639
3633
|
"tokensCount": {
|
|
3640
|
-
"value":
|
|
3634
|
+
"value": 10334
|
|
3641
3635
|
},
|
|
3642
3636
|
"charactersCount": {
|
|
3643
|
-
"value":
|
|
3637
|
+
"value": 47361
|
|
3644
3638
|
},
|
|
3645
3639
|
"wordsCount": {
|
|
3646
|
-
"value":
|
|
3640
|
+
"value": 6126
|
|
3647
3641
|
},
|
|
3648
3642
|
"sentencesCount": {
|
|
3649
|
-
"value":
|
|
3643
|
+
"value": 438
|
|
3650
3644
|
},
|
|
3651
3645
|
"linesCount": {
|
|
3652
|
-
"value":
|
|
3646
|
+
"value": 779
|
|
3653
3647
|
},
|
|
3654
3648
|
"paragraphsCount": {
|
|
3655
3649
|
"value": 20
|
|
3656
3650
|
},
|
|
3657
3651
|
"pagesCount": {
|
|
3658
|
-
"value":
|
|
3652
|
+
"value": 18
|
|
3659
3653
|
}
|
|
3660
3654
|
},
|
|
3661
3655
|
"output": {
|
|
3662
3656
|
"tokensCount": {
|
|
3663
|
-
"value":
|
|
3657
|
+
"value": 424
|
|
3664
3658
|
},
|
|
3665
3659
|
"charactersCount": {
|
|
3666
|
-
"value":
|
|
3660
|
+
"value": 1684
|
|
3667
3661
|
},
|
|
3668
3662
|
"wordsCount": {
|
|
3669
|
-
"value":
|
|
3663
|
+
"value": 223
|
|
3670
3664
|
},
|
|
3671
3665
|
"sentencesCount": {
|
|
3672
|
-
"value":
|
|
3666
|
+
"value": 19
|
|
3673
3667
|
},
|
|
3674
3668
|
"linesCount": {
|
|
3675
|
-
"value":
|
|
3669
|
+
"value": 43
|
|
3676
3670
|
},
|
|
3677
3671
|
"paragraphsCount": {
|
|
3678
3672
|
"value": 2
|
|
@@ -3741,31 +3735,25 @@ function getTemplatesPipelineCollection() {
|
|
|
3741
3735
|
{
|
|
3742
3736
|
"modelVariant": "CHAT",
|
|
3743
3737
|
"modelName": "claude-3-opus-20240229",
|
|
3744
|
-
"systemMessage": "You are an accomplished poet and storyteller with a vast knowledge of literature and creative writing techniques. Craft
|
|
3738
|
+
"systemMessage": "You are an accomplished poet and storyteller with a vast knowledge of literature and creative writing techniques. Craft eloquent prose and vivid poetry on any topic.",
|
|
3745
3739
|
"temperature": 0.8
|
|
3746
3740
|
},
|
|
3747
3741
|
{
|
|
3748
3742
|
"modelVariant": "CHAT",
|
|
3749
|
-
"modelName": "gpt-4",
|
|
3750
|
-
"systemMessage": "You are a
|
|
3743
|
+
"modelName": "gpt-4-turbo",
|
|
3744
|
+
"systemMessage": "You are a masterful poet and storyteller, weaving words into captivating narratives and evocative verses. Share your literary expertise and creative vision.",
|
|
3751
3745
|
"temperature": 0.7
|
|
3752
3746
|
},
|
|
3753
3747
|
{
|
|
3754
3748
|
"modelVariant": "CHAT",
|
|
3755
3749
|
"modelName": "claude-3-sonnet-20240229",
|
|
3756
|
-
"systemMessage": "
|
|
3750
|
+
"systemMessage": "As an accomplished poet and storyteller, you have a gift for language and narrative. Express yourself through lyrical prose and imaginative tales.",
|
|
3757
3751
|
"temperature": 0.7
|
|
3758
3752
|
},
|
|
3759
|
-
{
|
|
3760
|
-
"modelVariant": "CHAT",
|
|
3761
|
-
"modelName": "gemini-1.5-pro",
|
|
3762
|
-
"systemMessage": "You are an experienced poet and storyteller with a gift for language. Craft engaging narratives and evocative poetry drawing on your literary expertise.",
|
|
3763
|
-
"temperature": 0.6
|
|
3764
|
-
},
|
|
3765
3753
|
{
|
|
3766
3754
|
"modelVariant": "CHAT",
|
|
3767
3755
|
"modelName": "gpt-3.5-turbo",
|
|
3768
|
-
"systemMessage": "You are a
|
|
3756
|
+
"systemMessage": "You are a skilled poet and storyteller with a passion for the written word. Craft engaging stories and eloquent poetry on request.",
|
|
3769
3757
|
"temperature": 0.6
|
|
3770
3758
|
}
|
|
3771
3759
|
],
|
|
@@ -3777,49 +3765,49 @@ function getTemplatesPipelineCollection() {
|
|
|
3777
3765
|
"preparations": [
|
|
3778
3766
|
{
|
|
3779
3767
|
"id": 1,
|
|
3780
|
-
"promptbookVersion": "0.98.0-
|
|
3768
|
+
"promptbookVersion": "0.98.0-7",
|
|
3781
3769
|
"usage": {
|
|
3782
3770
|
"price": {
|
|
3783
|
-
"value": 0.
|
|
3771
|
+
"value": 0.0297075
|
|
3784
3772
|
},
|
|
3785
3773
|
"input": {
|
|
3786
3774
|
"tokensCount": {
|
|
3787
|
-
"value":
|
|
3775
|
+
"value": 10333
|
|
3788
3776
|
},
|
|
3789
3777
|
"charactersCount": {
|
|
3790
|
-
"value":
|
|
3778
|
+
"value": 47373
|
|
3791
3779
|
},
|
|
3792
3780
|
"wordsCount": {
|
|
3793
|
-
"value":
|
|
3781
|
+
"value": 6128
|
|
3794
3782
|
},
|
|
3795
3783
|
"sentencesCount": {
|
|
3796
|
-
"value":
|
|
3784
|
+
"value": 438
|
|
3797
3785
|
},
|
|
3798
3786
|
"linesCount": {
|
|
3799
|
-
"value":
|
|
3787
|
+
"value": 779
|
|
3800
3788
|
},
|
|
3801
3789
|
"paragraphsCount": {
|
|
3802
3790
|
"value": 20
|
|
3803
3791
|
},
|
|
3804
3792
|
"pagesCount": {
|
|
3805
|
-
"value":
|
|
3793
|
+
"value": 18
|
|
3806
3794
|
}
|
|
3807
3795
|
},
|
|
3808
3796
|
"output": {
|
|
3809
3797
|
"tokensCount": {
|
|
3810
|
-
"value":
|
|
3798
|
+
"value": 310
|
|
3811
3799
|
},
|
|
3812
3800
|
"charactersCount": {
|
|
3813
|
-
"value":
|
|
3801
|
+
"value": 1107
|
|
3814
3802
|
},
|
|
3815
3803
|
"wordsCount": {
|
|
3816
|
-
"value":
|
|
3804
|
+
"value": 155
|
|
3817
3805
|
},
|
|
3818
3806
|
"sentencesCount": {
|
|
3819
|
-
"value":
|
|
3807
|
+
"value": 14
|
|
3820
3808
|
},
|
|
3821
3809
|
"linesCount": {
|
|
3822
|
-
"value":
|
|
3810
|
+
"value": 34
|
|
3823
3811
|
},
|
|
3824
3812
|
"paragraphsCount": {
|
|
3825
3813
|
"value": 2
|