@ai-sdk/openai 2.0.26 → 2.0.27

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.
@@ -353,23 +353,11 @@ var compoundFilterSchema = z3.object({
353
353
  });
354
354
  var filtersSchema = z3.union([comparisonFilterSchema, compoundFilterSchema]);
355
355
  var fileSearchArgsSchema = z3.object({
356
- /**
357
- * List of vector store IDs to search through. If not provided, searches all available vector stores.
358
- */
359
356
  vectorStoreIds: z3.array(z3.string()).optional(),
360
- /**
361
- * Maximum number of search results to return. Defaults to 10.
362
- */
363
357
  maxNumResults: z3.number().optional(),
364
- /**
365
- * Ranking options for the search.
366
- */
367
358
  ranking: z3.object({
368
359
  ranker: z3.enum(["auto", "default-2024-08-21"]).optional()
369
360
  }).optional(),
370
- /**
371
- * A filter to apply based on file attributes.
372
- */
373
361
  filters: filtersSchema.optional()
374
362
  });
375
363
  var fileSearch = createProviderDefinedToolFactory({