@promptbook/cli 0.84.0-17 → 0.84.0-19
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 +1 -2
- package/bin/promptbook-cli.js +16 -0
- package/esm/index.es.js +25 -1
- package/esm/index.es.js.map +1 -1
- package/package.json +7 -2
- package/umd/index.umd.js +25 -1
- package/umd/index.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/cli",
|
|
3
|
-
"version": "0.84.0-
|
|
3
|
+
"version": "0.84.0-19",
|
|
4
4
|
"description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"natural-language-processing",
|
|
26
26
|
"nlp",
|
|
27
27
|
"openai",
|
|
28
|
+
"o3",
|
|
29
|
+
"o3-mini",
|
|
30
|
+
"deepseek",
|
|
28
31
|
"gpt-3",
|
|
29
32
|
"gpt-4",
|
|
30
33
|
"gpt-4o",
|
|
@@ -67,6 +70,8 @@
|
|
|
67
70
|
},
|
|
68
71
|
"bin": {
|
|
69
72
|
"promptbook": "bin/promptbook-cli.js",
|
|
70
|
-
"ptbk": "bin/promptbook-cli.js"
|
|
73
|
+
"ptbk": "bin/promptbook-cli.js",
|
|
74
|
+
"book": "bin/promptbook-cli.js",
|
|
75
|
+
"bk": "bin/promptbook-cli.js"
|
|
71
76
|
}
|
|
72
77
|
}
|
package/umd/index.umd.js
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
* @generated
|
|
52
52
|
* @see https://github.com/webgptorg/promptbook
|
|
53
53
|
*/
|
|
54
|
-
var PROMPTBOOK_ENGINE_VERSION = '0.84.0-
|
|
54
|
+
var PROMPTBOOK_ENGINE_VERSION = '0.84.0-18';
|
|
55
55
|
/**
|
|
56
56
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
57
57
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -14678,6 +14678,30 @@
|
|
|
14678
14678
|
},
|
|
14679
14679
|
/**/
|
|
14680
14680
|
/**/
|
|
14681
|
+
{
|
|
14682
|
+
modelVariant: 'CHAT',
|
|
14683
|
+
modelTitle: 'o1',
|
|
14684
|
+
modelName: 'o1',
|
|
14685
|
+
pricing: {
|
|
14686
|
+
prompt: computeUsage("$3.00 / 1M tokens"),
|
|
14687
|
+
output: computeUsage("$12.00 / 1M tokens"),
|
|
14688
|
+
// <- TODO: !!! Unsure, check the pricing
|
|
14689
|
+
},
|
|
14690
|
+
},
|
|
14691
|
+
/**/
|
|
14692
|
+
/**/
|
|
14693
|
+
{
|
|
14694
|
+
modelVariant: 'CHAT',
|
|
14695
|
+
modelTitle: 'o3-mini',
|
|
14696
|
+
modelName: 'o3-mini',
|
|
14697
|
+
pricing: {
|
|
14698
|
+
prompt: computeUsage("$3.00 / 1M tokens"),
|
|
14699
|
+
output: computeUsage("$12.00 / 1M tokens"),
|
|
14700
|
+
// <- TODO: !!! Unsure, check the pricing
|
|
14701
|
+
},
|
|
14702
|
+
},
|
|
14703
|
+
/**/
|
|
14704
|
+
/**/
|
|
14681
14705
|
{
|
|
14682
14706
|
modelVariant: 'CHAT',
|
|
14683
14707
|
modelTitle: 'o1-mini-2024-09-12',
|