@promptbook/wizard 0.100.0-15 → 0.100.0-18
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/_packages/core.index.d.ts +6 -4
- package/esm/typings/src/_packages/types.index.d.ts +2 -2
- package/esm/typings/src/book-2.0/agent-source/parseAgentSource.d.ts +2 -2
- package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +26 -0
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirements.d.ts +7 -7
- package/esm/typings/src/book-2.0/commitments/_misc/createAgentModelRequirementsWithCommitments.d.ts +4 -4
- package/esm/typings/src/book-2.0/commitments/_misc/parseAgentSourceWithCommitments.d.ts +4 -4
- package/esm/typings/src/pipeline/book-notation.d.ts +2 -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
- package/esm/typings/src/book-2.0/agent-source/string_agent_source.d.ts +0 -42
package/README.md
CHANGED
@@ -18,6 +18,7 @@ Write AI applications using plain human language across multiple models and plat
|
|
18
18
|
|
19
19
|
## 🌟 New Features
|
20
20
|
|
21
|
+
- 🚀 **GPT-5 Support** - Now includes OpenAI's most advanced language model with unprecedented reasoning capabilities and 200K context window
|
21
22
|
- 💡 VS Code support for `.book` files with syntax highlighting and IntelliSense
|
22
23
|
- 🐳 Official Docker image (`hejny/promptbook`) for seamless containerized usage
|
23
24
|
- 🔥 Native support for OpenAI `o3-mini`, GPT-4 and other leading LLMs
|
package/esm/index.es.js
CHANGED
@@ -38,7 +38,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
38
38
|
* @generated
|
39
39
|
* @see https://github.com/webgptorg/promptbook
|
40
40
|
*/
|
41
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-
|
41
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.100.0-18';
|
42
42
|
/**
|
43
43
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
44
44
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
@@ -2709,6 +2709,18 @@ const _AzureOpenAiMetadataRegistration = $llmToolsMetadataRegister.register({
|
|
2709
2709
|
const OPENAI_MODELS = exportJson({
|
2710
2710
|
name: 'OPENAI_MODELS',
|
2711
2711
|
value: [
|
2712
|
+
/**/
|
2713
|
+
{
|
2714
|
+
modelVariant: 'CHAT',
|
2715
|
+
modelTitle: 'gpt-5',
|
2716
|
+
modelName: 'gpt-5',
|
2717
|
+
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.",
|
2718
|
+
pricing: {
|
2719
|
+
prompt: pricing(`$10.00 / 1M tokens`),
|
2720
|
+
output: pricing(`$30.00 / 1M tokens`),
|
2721
|
+
},
|
2722
|
+
},
|
2723
|
+
/**/
|
2712
2724
|
/*/
|
2713
2725
|
{
|
2714
2726
|
modelTitle: 'dall-e-3',
|
@@ -5173,7 +5185,7 @@ class OpenAiExecutionTools extends OpenAiCompatibleExecutionTools {
|
|
5173
5185
|
* Default model for chat variant.
|
5174
5186
|
*/
|
5175
5187
|
getDefaultChatModel() {
|
5176
|
-
return this.getDefaultModel('gpt-
|
5188
|
+
return this.getDefaultModel('gpt-5');
|
5177
5189
|
}
|
5178
5190
|
/**
|
5179
5191
|
* Default model for completion variant.
|