@ai-sdk/openai 3.0.0-beta.18 → 3.0.0-beta.19

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.
@@ -449,13 +449,15 @@ var openaiChatLanguageModelOptions = lazyValidator2(
449
449
  structuredOutputs: z3.boolean().optional(),
450
450
  /**
451
451
  * Service tier for the request.
452
- * - 'auto': Default service tier
452
+ * - 'auto': Default service tier. The request will be processed with the service tier configured in the
453
+ * Project settings. Unless otherwise configured, the Project will use 'default'.
453
454
  * - 'flex': 50% cheaper processing at the cost of increased latency. Only available for o3 and o4-mini models.
454
455
  * - 'priority': Higher-speed processing with predictably low latency at premium cost. Available for Enterprise customers.
456
+ * - 'default': The request will be processed with the standard pricing and performance for the selected model.
455
457
  *
456
458
  * @default 'auto'
457
459
  */
458
- serviceTier: z3.enum(["auto", "flex", "priority"]).optional(),
460
+ serviceTier: z3.enum(["auto", "flex", "priority", "default"]).optional(),
459
461
  /**
460
462
  * Whether to use strict JSON schema validation.
461
463
  *
@@ -2993,7 +2995,7 @@ var openaiResponsesProviderOptionsSchema = lazyValidator12(
2993
2995
  reasoningEffort: z15.string().nullish(),
2994
2996
  reasoningSummary: z15.string().nullish(),
2995
2997
  safetyIdentifier: z15.string().nullish(),
2996
- serviceTier: z15.enum(["auto", "flex", "priority"]).nullish(),
2998
+ serviceTier: z15.enum(["auto", "flex", "priority", "default"]).nullish(),
2997
2999
  store: z15.boolean().nullish(),
2998
3000
  strictJsonSchema: z15.boolean().nullish(),
2999
3001
  textVerbosity: z15.enum(["low", "medium", "high"]).nullish(),