@promptbook/wizard 0.100.0-17 → 0.100.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 -0
- package/esm/index.es.js +14 -2
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +14 -2
- package/umd/index.umd.js.map +1 -1
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
16
16
|
/**
|
17
17
|
* Represents the version string of the Promptbook engine.
|
18
|
-
* It follows semantic versioning (e.g., `0.100.0-
|
18
|
+
* It follows semantic versioning (e.g., `0.100.0-18`).
|
19
19
|
*
|
20
20
|
* @generated
|
21
21
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@promptbook/wizard",
|
3
|
-
"version": "0.100.0-
|
3
|
+
"version": "0.100.0-19",
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
5
5
|
"private": false,
|
6
6
|
"sideEffects": false,
|
@@ -95,7 +95,7 @@
|
|
95
95
|
"module": "./esm/index.es.js",
|
96
96
|
"typings": "./esm/typings/src/_packages/wizard.index.d.ts",
|
97
97
|
"peerDependencies": {
|
98
|
-
"@promptbook/core": "0.100.0-
|
98
|
+
"@promptbook/core": "0.100.0-19"
|
99
99
|
},
|
100
100
|
"dependencies": {
|
101
101
|
"@ai-sdk/deepseek": "0.1.6",
|
package/umd/index.umd.js
CHANGED
@@ -49,7 +49,7 @@
|
|
49
49
|
* @generated
|
50
50
|
* @see https://github.com/webgptorg/promptbook
|
51
51
|
*/
|
52
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
52
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-19';
|
53
53
|
/**
|
54
54
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
55
55
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
@@ -2720,6 +2720,18 @@
|
|
2720
2720
|
const OPENAI_MODELS = exportJson({
|
2721
2721
|
name: 'OPENAI_MODELS',
|
2722
2722
|
value: [
|
2723
|
+
/**/
|
2724
|
+
{
|
2725
|
+
modelVariant: 'CHAT',
|
2726
|
+
modelTitle: 'gpt-5',
|
2727
|
+
modelName: 'gpt-5',
|
2728
|
+
modelDescription: "OpenAI's most advanced language model with unprecedented reasoning capabilities and 200K context window. Features revolutionary improvements in complex problem-solving, scientific reasoning, and creative tasks. Demonstrates human-level performance across diverse domains with enhanced safety measures and alignment. Represents the next generation of AI with superior understanding, nuanced responses, and advanced multimodal capabilities.",
|
2729
|
+
pricing: {
|
2730
|
+
prompt: pricing(`$10.00 / 1M tokens`),
|
2731
|
+
output: pricing(`$30.00 / 1M tokens`),
|
2732
|
+
},
|
2733
|
+
},
|
2734
|
+
/**/
|
2723
2735
|
/*/
|
2724
2736
|
{
|
2725
2737
|
modelTitle: 'dall-e-3',
|
@@ -5184,7 +5196,7 @@
|
|
5184
5196
|
* Default model for chat variant.
|
5185
5197
|
*/
|
5186
5198
|
getDefaultChatModel() {
|
5187
|
-
return this.getDefaultModel('gpt-
|
5199
|
+
return this.getDefaultModel('gpt-5');
|
5188
5200
|
}
|
5189
5201
|
/**
|
5190
5202
|
* Default model for completion variant.
|