@ai-sdk/openai 2.0.0-alpha.9 → 2.0.0-beta.10
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/CHANGELOG.md +150 -0
- package/dist/index.d.mts +63 -76
- package/dist/index.d.ts +63 -76
- package/dist/index.js +1003 -452
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +942 -389
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +43 -201
- package/dist/internal/index.d.ts +43 -201
- package/dist/internal/index.js +997 -428
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +937 -366
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/internal/index.d.ts
CHANGED
|
@@ -1,84 +1,29 @@
|
|
|
1
|
-
import { LanguageModelV2, EmbeddingModelV2, ImageModelV2,
|
|
1
|
+
import { LanguageModelV2, EmbeddingModelV2, ImageModelV2, TranscriptionModelV2CallOptions, TranscriptionModelV2, SpeechModelV2 } from '@ai-sdk/provider';
|
|
2
2
|
import { FetchFunction } from '@ai-sdk/provider-utils';
|
|
3
|
-
import { z } from 'zod';
|
|
3
|
+
import { z } from 'zod/v4';
|
|
4
4
|
|
|
5
5
|
type OpenAIChatModelId = 'o1' | 'o1-2024-12-17' | 'o1-mini' | 'o1-mini-2024-09-12' | 'o1-preview' | 'o1-preview-2024-09-12' | 'o3-mini' | 'o3-mini-2025-01-31' | 'o3' | 'o3-2025-04-16' | 'o4-mini' | 'o4-mini-2025-04-16' | 'gpt-4.1' | 'gpt-4.1-2025-04-14' | 'gpt-4.1-mini' | 'gpt-4.1-mini-2025-04-14' | 'gpt-4.1-nano' | 'gpt-4.1-nano-2025-04-14' | 'gpt-4o' | 'gpt-4o-2024-05-13' | 'gpt-4o-2024-08-06' | 'gpt-4o-2024-11-20' | 'gpt-4o-audio-preview' | 'gpt-4o-audio-preview-2024-10-01' | 'gpt-4o-audio-preview-2024-12-17' | 'gpt-4o-search-preview' | 'gpt-4o-search-preview-2025-03-11' | 'gpt-4o-mini-search-preview' | 'gpt-4o-mini-search-preview-2025-03-11' | 'gpt-4o-mini' | 'gpt-4o-mini-2024-07-18' | 'gpt-4-turbo' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-turbo-preview' | 'gpt-4-0125-preview' | 'gpt-4-1106-preview' | 'gpt-4' | 'gpt-4-0613' | 'gpt-4.5-preview' | 'gpt-4.5-preview-2025-02-27' | 'gpt-3.5-turbo-0125' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-1106' | 'chatgpt-4o-latest' | (string & {});
|
|
6
6
|
declare const openaiProviderOptions: z.ZodObject<{
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
* Accepts a JSON object that maps tokens (specified by their token ID in
|
|
11
|
-
* the GPT tokenizer) to an associated bias value from -100 to 100.
|
|
12
|
-
*/
|
|
13
|
-
logitBias: z.ZodOptional<z.ZodRecord<z.ZodNumber, z.ZodNumber>>;
|
|
14
|
-
/**
|
|
15
|
-
* Return the log probabilities of the tokens.
|
|
16
|
-
*
|
|
17
|
-
* Setting to true will return the log probabilities of the tokens that
|
|
18
|
-
* were generated.
|
|
19
|
-
*
|
|
20
|
-
* Setting to a number will return the log probabilities of the top n
|
|
21
|
-
* tokens that were generated.
|
|
22
|
-
*/
|
|
23
|
-
logprobs: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
24
|
-
/**
|
|
25
|
-
* Whether to enable parallel function calling during tool use. Default to true.
|
|
26
|
-
*/
|
|
7
|
+
logitBias: z.ZodOptional<z.ZodRecord<z.ZodCoercedNumber<string>, z.ZodNumber>>;
|
|
8
|
+
logprobs: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNumber]>>;
|
|
27
9
|
parallelToolCalls: z.ZodOptional<z.ZodBoolean>;
|
|
28
|
-
/**
|
|
29
|
-
* A unique identifier representing your end-user, which can help OpenAI to
|
|
30
|
-
* monitor and detect abuse.
|
|
31
|
-
*/
|
|
32
10
|
user: z.ZodOptional<z.ZodString>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
* Maximum number of completion tokens to generate. Useful for reasoning models.
|
|
39
|
-
*/
|
|
11
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
12
|
+
low: "low";
|
|
13
|
+
medium: "medium";
|
|
14
|
+
high: "high";
|
|
15
|
+
}>>;
|
|
40
16
|
maxCompletionTokens: z.ZodOptional<z.ZodNumber>;
|
|
41
|
-
/**
|
|
42
|
-
* Whether to enable persistence in responses API.
|
|
43
|
-
*/
|
|
44
17
|
store: z.ZodOptional<z.ZodBoolean>;
|
|
45
|
-
/**
|
|
46
|
-
* Metadata to associate with the request.
|
|
47
|
-
*/
|
|
48
18
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
49
|
-
/**
|
|
50
|
-
* Parameters for prediction mode.
|
|
51
|
-
*/
|
|
52
19
|
prediction: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
53
|
-
/**
|
|
54
|
-
* Whether to use structured outputs.
|
|
55
|
-
*
|
|
56
|
-
* @default true
|
|
57
|
-
*/
|
|
58
20
|
structuredOutputs: z.ZodOptional<z.ZodBoolean>;
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
maxCompletionTokens?: number | undefined;
|
|
66
|
-
store?: boolean | undefined;
|
|
67
|
-
metadata?: Record<string, string> | undefined;
|
|
68
|
-
prediction?: Record<string, any> | undefined;
|
|
69
|
-
structuredOutputs?: boolean | undefined;
|
|
70
|
-
}, {
|
|
71
|
-
user?: string | undefined;
|
|
72
|
-
logitBias?: Record<number, number> | undefined;
|
|
73
|
-
logprobs?: number | boolean | undefined;
|
|
74
|
-
parallelToolCalls?: boolean | undefined;
|
|
75
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
76
|
-
maxCompletionTokens?: number | undefined;
|
|
77
|
-
store?: boolean | undefined;
|
|
78
|
-
metadata?: Record<string, string> | undefined;
|
|
79
|
-
prediction?: Record<string, any> | undefined;
|
|
80
|
-
structuredOutputs?: boolean | undefined;
|
|
81
|
-
}>;
|
|
21
|
+
serviceTier: z.ZodOptional<z.ZodEnum<{
|
|
22
|
+
auto: "auto";
|
|
23
|
+
flex: "flex";
|
|
24
|
+
}>>;
|
|
25
|
+
strictJsonSchema: z.ZodOptional<z.ZodBoolean>;
|
|
26
|
+
}, z.core.$strip>;
|
|
82
27
|
type OpenAIProviderOptions = z.infer<typeof openaiProviderOptions>;
|
|
83
28
|
|
|
84
29
|
type OpenAIChatConfig = {
|
|
@@ -106,57 +51,12 @@ declare class OpenAIChatLanguageModel implements LanguageModelV2 {
|
|
|
106
51
|
|
|
107
52
|
type OpenAICompletionModelId = 'gpt-3.5-turbo-instruct' | (string & {});
|
|
108
53
|
declare const openaiCompletionProviderOptions: z.ZodObject<{
|
|
109
|
-
/**
|
|
110
|
-
Echo back the prompt in addition to the completion.
|
|
111
|
-
*/
|
|
112
54
|
echo: z.ZodOptional<z.ZodBoolean>;
|
|
113
|
-
/**
|
|
114
|
-
Modify the likelihood of specified tokens appearing in the completion.
|
|
115
|
-
|
|
116
|
-
Accepts a JSON object that maps tokens (specified by their token ID in
|
|
117
|
-
the GPT tokenizer) to an associated bias value from -100 to 100. You
|
|
118
|
-
can use this tokenizer tool to convert text to token IDs. Mathematically,
|
|
119
|
-
the bias is added to the logits generated by the model prior to sampling.
|
|
120
|
-
The exact effect will vary per model, but values between -1 and 1 should
|
|
121
|
-
decrease or increase likelihood of selection; values like -100 or 100
|
|
122
|
-
should result in a ban or exclusive selection of the relevant token.
|
|
123
|
-
|
|
124
|
-
As an example, you can pass {"50256": -100} to prevent the <|endoftext|>
|
|
125
|
-
token from being generated.
|
|
126
|
-
*/
|
|
127
55
|
logitBias: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
128
|
-
/**
|
|
129
|
-
The suffix that comes after a completion of inserted text.
|
|
130
|
-
*/
|
|
131
56
|
suffix: z.ZodOptional<z.ZodString>;
|
|
132
|
-
/**
|
|
133
|
-
A unique identifier representing your end-user, which can help OpenAI to
|
|
134
|
-
monitor and detect abuse. Learn more.
|
|
135
|
-
*/
|
|
136
57
|
user: z.ZodOptional<z.ZodString>;
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
the response size and can slow down response times. However, it can
|
|
140
|
-
be useful to better understand how the model is behaving.
|
|
141
|
-
Setting to true will return the log probabilities of the tokens that
|
|
142
|
-
were generated.
|
|
143
|
-
Setting to a number will return the log probabilities of the top n
|
|
144
|
-
tokens that were generated.
|
|
145
|
-
*/
|
|
146
|
-
logprobs: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNumber]>>;
|
|
147
|
-
}, "strip", z.ZodTypeAny, {
|
|
148
|
-
user?: string | undefined;
|
|
149
|
-
logitBias?: Record<string, number> | undefined;
|
|
150
|
-
logprobs?: number | boolean | undefined;
|
|
151
|
-
echo?: boolean | undefined;
|
|
152
|
-
suffix?: string | undefined;
|
|
153
|
-
}, {
|
|
154
|
-
user?: string | undefined;
|
|
155
|
-
logitBias?: Record<string, number> | undefined;
|
|
156
|
-
logprobs?: number | boolean | undefined;
|
|
157
|
-
echo?: boolean | undefined;
|
|
158
|
-
suffix?: string | undefined;
|
|
159
|
-
}>;
|
|
58
|
+
logprobs: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNumber]>>;
|
|
59
|
+
}, z.core.$strip>;
|
|
160
60
|
type OpenAICompletionProviderOptions = z.infer<typeof openaiCompletionProviderOptions>;
|
|
161
61
|
|
|
162
62
|
type OpenAICompletionConfig = {
|
|
@@ -194,23 +94,9 @@ type OpenAIConfig = {
|
|
|
194
94
|
|
|
195
95
|
type OpenAIEmbeddingModelId = 'text-embedding-3-small' | 'text-embedding-3-large' | 'text-embedding-ada-002' | (string & {});
|
|
196
96
|
declare const openaiEmbeddingProviderOptions: z.ZodObject<{
|
|
197
|
-
/**
|
|
198
|
-
The number of dimensions the resulting output embeddings should have.
|
|
199
|
-
Only supported in text-embedding-3 and later models.
|
|
200
|
-
*/
|
|
201
97
|
dimensions: z.ZodOptional<z.ZodNumber>;
|
|
202
|
-
/**
|
|
203
|
-
A unique identifier representing your end-user, which can help OpenAI to
|
|
204
|
-
monitor and detect abuse. Learn more.
|
|
205
|
-
*/
|
|
206
98
|
user: z.ZodOptional<z.ZodString>;
|
|
207
|
-
},
|
|
208
|
-
user?: string | undefined;
|
|
209
|
-
dimensions?: number | undefined;
|
|
210
|
-
}, {
|
|
211
|
-
user?: string | undefined;
|
|
212
|
-
dimensions?: number | undefined;
|
|
213
|
-
}>;
|
|
99
|
+
}, z.core.$strip>;
|
|
214
100
|
type OpenAIEmbeddingProviderOptions = z.infer<typeof openaiEmbeddingProviderOptions>;
|
|
215
101
|
|
|
216
102
|
declare class OpenAIEmbeddingModel implements EmbeddingModelV2<string> {
|
|
@@ -245,44 +131,18 @@ declare class OpenAIImageModel implements ImageModelV2 {
|
|
|
245
131
|
|
|
246
132
|
type OpenAITranscriptionModelId = 'whisper-1' | 'gpt-4o-mini-transcribe' | 'gpt-4o-transcribe' | (string & {});
|
|
247
133
|
declare const openAITranscriptionProviderOptions: z.ZodObject<{
|
|
248
|
-
|
|
249
|
-
* Additional information to include in the transcription response.
|
|
250
|
-
*/
|
|
251
|
-
include: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
252
|
-
/**
|
|
253
|
-
* The language of the input audio in ISO-639-1 format.
|
|
254
|
-
*/
|
|
134
|
+
include: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
255
135
|
language: z.ZodOptional<z.ZodString>;
|
|
256
|
-
/**
|
|
257
|
-
* An optional text to guide the model's style or continue a previous audio segment.
|
|
258
|
-
*/
|
|
259
136
|
prompt: z.ZodOptional<z.ZodString>;
|
|
260
|
-
/**
|
|
261
|
-
* The sampling temperature, between 0 and 1.
|
|
262
|
-
* @default 0
|
|
263
|
-
*/
|
|
264
137
|
temperature: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
}, "strip", z.ZodTypeAny, {
|
|
271
|
-
prompt?: string | undefined;
|
|
272
|
-
temperature?: number | undefined;
|
|
273
|
-
include?: string[] | undefined;
|
|
274
|
-
language?: string | undefined;
|
|
275
|
-
timestampGranularities?: ("word" | "segment")[] | undefined;
|
|
276
|
-
}, {
|
|
277
|
-
prompt?: string | undefined;
|
|
278
|
-
temperature?: number | undefined;
|
|
279
|
-
include?: string[] | undefined;
|
|
280
|
-
language?: string | undefined;
|
|
281
|
-
timestampGranularities?: ("word" | "segment")[] | undefined;
|
|
282
|
-
}>;
|
|
138
|
+
timestampGranularities: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
139
|
+
word: "word";
|
|
140
|
+
segment: "segment";
|
|
141
|
+
}>>>>;
|
|
142
|
+
}, z.core.$strip>;
|
|
283
143
|
type OpenAITranscriptionProviderOptions = z.infer<typeof openAITranscriptionProviderOptions>;
|
|
284
144
|
|
|
285
|
-
type OpenAITranscriptionCallOptions = Omit<
|
|
145
|
+
type OpenAITranscriptionCallOptions = Omit<TranscriptionModelV2CallOptions, 'providerOptions'> & {
|
|
286
146
|
providerOptions?: {
|
|
287
147
|
openai?: OpenAITranscriptionProviderOptions;
|
|
288
148
|
};
|
|
@@ -292,14 +152,14 @@ interface OpenAITranscriptionModelConfig extends OpenAIConfig {
|
|
|
292
152
|
currentDate?: () => Date;
|
|
293
153
|
};
|
|
294
154
|
}
|
|
295
|
-
declare class OpenAITranscriptionModel implements
|
|
155
|
+
declare class OpenAITranscriptionModel implements TranscriptionModelV2 {
|
|
296
156
|
readonly modelId: OpenAITranscriptionModelId;
|
|
297
157
|
private readonly config;
|
|
298
|
-
readonly specificationVersion = "
|
|
158
|
+
readonly specificationVersion = "v2";
|
|
299
159
|
get provider(): string;
|
|
300
160
|
constructor(modelId: OpenAITranscriptionModelId, config: OpenAITranscriptionModelConfig);
|
|
301
161
|
private getArgs;
|
|
302
|
-
doGenerate(options: OpenAITranscriptionCallOptions): Promise<Awaited<ReturnType<
|
|
162
|
+
doGenerate(options: OpenAITranscriptionCallOptions): Promise<Awaited<ReturnType<TranscriptionModelV2['doGenerate']>>>;
|
|
303
163
|
}
|
|
304
164
|
|
|
305
165
|
type OpenAISpeechModelId = 'tts-1' | 'tts-1-hd' | 'gpt-4o-mini-tts' | (string & {});
|
|
@@ -307,30 +167,25 @@ type OpenAISpeechModelId = 'tts-1' | 'tts-1-hd' | 'gpt-4o-mini-tts' | (string &
|
|
|
307
167
|
declare const OpenAIProviderOptionsSchema: z.ZodObject<{
|
|
308
168
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
309
169
|
speed: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
310
|
-
},
|
|
311
|
-
instructions?: string | null | undefined;
|
|
312
|
-
speed?: number | null | undefined;
|
|
313
|
-
}, {
|
|
314
|
-
instructions?: string | null | undefined;
|
|
315
|
-
speed?: number | null | undefined;
|
|
316
|
-
}>;
|
|
170
|
+
}, z.core.$strip>;
|
|
317
171
|
type OpenAISpeechCallOptions = z.infer<typeof OpenAIProviderOptionsSchema>;
|
|
318
172
|
interface OpenAISpeechModelConfig extends OpenAIConfig {
|
|
319
173
|
_internal?: {
|
|
320
174
|
currentDate?: () => Date;
|
|
321
175
|
};
|
|
322
176
|
}
|
|
323
|
-
declare class OpenAISpeechModel implements
|
|
177
|
+
declare class OpenAISpeechModel implements SpeechModelV2 {
|
|
324
178
|
readonly modelId: OpenAISpeechModelId;
|
|
325
179
|
private readonly config;
|
|
326
|
-
readonly specificationVersion = "
|
|
180
|
+
readonly specificationVersion = "v2";
|
|
327
181
|
get provider(): string;
|
|
328
182
|
constructor(modelId: OpenAISpeechModelId, config: OpenAISpeechModelConfig);
|
|
329
183
|
private getArgs;
|
|
330
|
-
doGenerate(options: Parameters<
|
|
184
|
+
doGenerate(options: Parameters<SpeechModelV2['doGenerate']>[0]): Promise<Awaited<ReturnType<SpeechModelV2['doGenerate']>>>;
|
|
331
185
|
}
|
|
332
186
|
|
|
333
|
-
|
|
187
|
+
declare const openaiResponsesModelIds: readonly ["gpt-4.1", "gpt-4.1-2025-04-14", "gpt-4.1-mini", "gpt-4.1-mini-2025-04-14", "gpt-4.1-nano", "gpt-4.1-nano-2025-04-14", "gpt-4o", "gpt-4o-2024-05-13", "gpt-4o-2024-08-06", "gpt-4o-2024-11-20", "gpt-4o-audio-preview", "gpt-4o-audio-preview-2024-10-01", "gpt-4o-audio-preview-2024-12-17", "gpt-4o-search-preview", "gpt-4o-search-preview-2025-03-11", "gpt-4o-mini-search-preview", "gpt-4o-mini-search-preview-2025-03-11", "gpt-4o-mini", "gpt-4o-mini-2024-07-18", "gpt-4-turbo", "gpt-4-turbo-2024-04-09", "gpt-4-turbo-preview", "gpt-4-0125-preview", "gpt-4-1106-preview", "gpt-4", "gpt-4-0613", "gpt-4.5-preview", "gpt-4.5-preview-2025-02-27", "gpt-3.5-turbo-0125", "gpt-3.5-turbo", "gpt-3.5-turbo-1106", "chatgpt-4o-latest", "o1", "o1-2024-12-17", "o1-mini", "o1-mini-2024-09-12", "o1-preview", "o1-preview-2024-09-12", "o3-mini", "o3-mini-2025-01-31", "o3", "o3-2025-04-16", "o4-mini", "o4-mini-2025-04-16", "codex-mini-latest", "computer-use-preview"];
|
|
188
|
+
type OpenAIResponsesModelId = (typeof openaiResponsesModelIds)[number] | (string & {});
|
|
334
189
|
|
|
335
190
|
declare class OpenAIResponsesLanguageModel implements LanguageModelV2 {
|
|
336
191
|
readonly specificationVersion = "v2";
|
|
@@ -350,30 +205,17 @@ declare const openaiResponsesProviderOptionsSchema: z.ZodObject<{
|
|
|
350
205
|
store: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
351
206
|
user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
352
207
|
reasoningEffort: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
353
|
-
|
|
208
|
+
strictJsonSchema: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
354
209
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
355
210
|
reasoningSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
strictSchemas?: boolean | null | undefined;
|
|
365
|
-
reasoningSummary?: string | null | undefined;
|
|
366
|
-
}, {
|
|
367
|
-
user?: string | null | undefined;
|
|
368
|
-
parallelToolCalls?: boolean | null | undefined;
|
|
369
|
-
reasoningEffort?: string | null | undefined;
|
|
370
|
-
store?: boolean | null | undefined;
|
|
371
|
-
metadata?: any;
|
|
372
|
-
instructions?: string | null | undefined;
|
|
373
|
-
previousResponseId?: string | null | undefined;
|
|
374
|
-
strictSchemas?: boolean | null | undefined;
|
|
375
|
-
reasoningSummary?: string | null | undefined;
|
|
376
|
-
}>;
|
|
211
|
+
serviceTier: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
212
|
+
auto: "auto";
|
|
213
|
+
flex: "flex";
|
|
214
|
+
}>>>;
|
|
215
|
+
include: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
216
|
+
"reasoning.encrypted_content": "reasoning.encrypted_content";
|
|
217
|
+
}>>>>;
|
|
218
|
+
}, z.core.$strip>;
|
|
377
219
|
type OpenAIResponsesProviderOptions = z.infer<typeof openaiResponsesProviderOptionsSchema>;
|
|
378
220
|
|
|
379
221
|
export { OpenAIChatLanguageModel, type OpenAIChatModelId, OpenAICompletionLanguageModel, type OpenAICompletionModelId, type OpenAICompletionProviderOptions, OpenAIEmbeddingModel, type OpenAIEmbeddingModelId, type OpenAIEmbeddingProviderOptions, OpenAIImageModel, type OpenAIImageModelId, type OpenAIProviderOptions, OpenAIResponsesLanguageModel, type OpenAIResponsesProviderOptions, type OpenAISpeechCallOptions, OpenAISpeechModel, type OpenAISpeechModelId, type OpenAITranscriptionCallOptions, OpenAITranscriptionModel, type OpenAITranscriptionModelId, type OpenAITranscriptionProviderOptions, hasDefaultResponseFormat, modelMaxImagesPerCall, openAITranscriptionProviderOptions, openaiCompletionProviderOptions, openaiEmbeddingProviderOptions, openaiProviderOptions };
|