@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 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-15';
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-4-turbo');
5188
+ return this.getDefaultModel('gpt-5');
5177
5189
  }
5178
5190
  /**
5179
5191
  * Default model for completion variant.