@ai-sdk/openai 2.0.0-beta.14 → 2.0.0-beta.16

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.
@@ -347,7 +347,7 @@ var fileSearchArgsSchema = z3.object({
347
347
  * Ranking options for the search.
348
348
  */
349
349
  ranking: z3.object({
350
- ranker: z3.enum(["auto", "keyword", "semantic"]).optional()
350
+ ranker: z3.enum(["auto", "default-2024-08-21"]).optional()
351
351
  }).optional(),
352
352
  /**
353
353
  * A filter to apply based on file attributes.
@@ -3202,7 +3202,7 @@ var openaiResponsesProviderOptionsSchema = z15.object({
3202
3202
  instructions: z15.string().nullish(),
3203
3203
  reasoningSummary: z15.string().nullish(),
3204
3204
  serviceTier: z15.enum(["auto", "flex", "priority"]).nullish(),
3205
- include: z15.array(z15.enum(["reasoning.encrypted_content"])).nullish()
3205
+ include: z15.array(z15.enum(["reasoning.encrypted_content", "file_search_call.results"])).nullish()
3206
3206
  });
3207
3207
  export {
3208
3208
  OpenAIChatLanguageModel,