@ai-sdk/openai 3.0.75 → 3.0.76

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/dist/index.mjs CHANGED
@@ -4421,13 +4421,14 @@ var openaiLanguageModelResponsesOptionsSchema = lazySchema21(
4421
4421
  conversation: z23.string().nullish(),
4422
4422
  /**
4423
4423
  * The set of extra fields to include in the response (advanced, usually not needed).
4424
- * Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'message.output_text.logprobs'.
4424
+ * Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'web_search_call.results', 'message.output_text.logprobs'.
4425
4425
  */
4426
4426
  include: z23.array(
4427
4427
  z23.enum([
4428
4428
  "reasoning.encrypted_content",
4429
4429
  // handled internally by default, only needed for unknown reasoning models
4430
4430
  "file_search_call.results",
4431
+ "web_search_call.results",
4431
4432
  "message.output_text.logprobs"
4432
4433
  ])
4433
4434
  ).nullish(),
@@ -6988,7 +6989,7 @@ var OpenAITranscriptionModel = class {
6988
6989
  };
6989
6990
 
6990
6991
  // src/version.ts
6991
- var VERSION = true ? "3.0.75" : "0.0.0-test";
6992
+ var VERSION = true ? "3.0.76" : "0.0.0-test";
6992
6993
 
6993
6994
  // src/openai-provider.ts
6994
6995
  function createOpenAI(options = {}) {