@adaline/openai 1.5.2 → 1.6.0
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.d.mts +357 -1
- package/dist/index.d.ts +357 -1
- package/dist/index.js +169 -153
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -4094,6 +4094,362 @@ declare class GPT_4_1_Nano extends BaseChatModel {
|
|
|
4094
4094
|
constructor(options: GPT_4_1_NanoOptionsType);
|
|
4095
4095
|
}
|
|
4096
4096
|
|
|
4097
|
+
declare const GPT_5Literal = "gpt-5";
|
|
4098
|
+
declare const GPT_5Schema: {
|
|
4099
|
+
description: string;
|
|
4100
|
+
name: string;
|
|
4101
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
4102
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
|
|
4103
|
+
maxInputTokens: number;
|
|
4104
|
+
maxOutputTokens: number;
|
|
4105
|
+
config: {
|
|
4106
|
+
def: Record<string, {
|
|
4107
|
+
type: "multi-string";
|
|
4108
|
+
param: string;
|
|
4109
|
+
title: string;
|
|
4110
|
+
description: string;
|
|
4111
|
+
max: number;
|
|
4112
|
+
} | {
|
|
4113
|
+
type: "object-schema";
|
|
4114
|
+
param: string;
|
|
4115
|
+
title: string;
|
|
4116
|
+
description: string;
|
|
4117
|
+
objectSchema?: any;
|
|
4118
|
+
} | {
|
|
4119
|
+
type: "range";
|
|
4120
|
+
param: string;
|
|
4121
|
+
title: string;
|
|
4122
|
+
description: string;
|
|
4123
|
+
max: number;
|
|
4124
|
+
default: number;
|
|
4125
|
+
min: number;
|
|
4126
|
+
step: number;
|
|
4127
|
+
} | {
|
|
4128
|
+
type: "select-boolean";
|
|
4129
|
+
param: string;
|
|
4130
|
+
title: string;
|
|
4131
|
+
description: string;
|
|
4132
|
+
default: boolean | null;
|
|
4133
|
+
} | {
|
|
4134
|
+
type: "select-string";
|
|
4135
|
+
param: string;
|
|
4136
|
+
title: string;
|
|
4137
|
+
description: string;
|
|
4138
|
+
default: string;
|
|
4139
|
+
choices: string[];
|
|
4140
|
+
}>;
|
|
4141
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4142
|
+
};
|
|
4143
|
+
price: {
|
|
4144
|
+
modelName: string;
|
|
4145
|
+
currency: string;
|
|
4146
|
+
tokenRanges: {
|
|
4147
|
+
minTokens: number;
|
|
4148
|
+
prices: {
|
|
4149
|
+
base: {
|
|
4150
|
+
inputPricePerMillion: number;
|
|
4151
|
+
outputPricePerMillion: number;
|
|
4152
|
+
};
|
|
4153
|
+
};
|
|
4154
|
+
maxTokens?: number | null | undefined;
|
|
4155
|
+
}[];
|
|
4156
|
+
};
|
|
4157
|
+
maxReasoningTokens?: number | undefined;
|
|
4158
|
+
};
|
|
4159
|
+
declare const GPT_5Options: z.ZodObject<{
|
|
4160
|
+
modelName: z.ZodString;
|
|
4161
|
+
apiKey: z.ZodString;
|
|
4162
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
4163
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
4164
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
4165
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
4166
|
+
}, "strip", z.ZodTypeAny, {
|
|
4167
|
+
modelName: string;
|
|
4168
|
+
apiKey: string;
|
|
4169
|
+
baseUrl?: string | undefined;
|
|
4170
|
+
completeChatUrl?: string | undefined;
|
|
4171
|
+
streamChatUrl?: string | undefined;
|
|
4172
|
+
organization?: string | undefined;
|
|
4173
|
+
}, {
|
|
4174
|
+
modelName: string;
|
|
4175
|
+
apiKey: string;
|
|
4176
|
+
baseUrl?: string | undefined;
|
|
4177
|
+
completeChatUrl?: string | undefined;
|
|
4178
|
+
streamChatUrl?: string | undefined;
|
|
4179
|
+
organization?: string | undefined;
|
|
4180
|
+
}>;
|
|
4181
|
+
type GPT_5OptionsType = z.infer<typeof GPT_5Options>;
|
|
4182
|
+
declare class GPT_5 extends BaseChatModel {
|
|
4183
|
+
constructor(options: GPT_5OptionsType);
|
|
4184
|
+
}
|
|
4185
|
+
|
|
4186
|
+
declare const GPT_5_MiniLiteral = "gpt-5-mini";
|
|
4187
|
+
declare const GPT_5_MiniSchema: {
|
|
4188
|
+
description: string;
|
|
4189
|
+
name: string;
|
|
4190
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
4191
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
|
|
4192
|
+
maxInputTokens: number;
|
|
4193
|
+
maxOutputTokens: number;
|
|
4194
|
+
config: {
|
|
4195
|
+
def: Record<string, {
|
|
4196
|
+
type: "multi-string";
|
|
4197
|
+
param: string;
|
|
4198
|
+
title: string;
|
|
4199
|
+
description: string;
|
|
4200
|
+
max: number;
|
|
4201
|
+
} | {
|
|
4202
|
+
type: "object-schema";
|
|
4203
|
+
param: string;
|
|
4204
|
+
title: string;
|
|
4205
|
+
description: string;
|
|
4206
|
+
objectSchema?: any;
|
|
4207
|
+
} | {
|
|
4208
|
+
type: "range";
|
|
4209
|
+
param: string;
|
|
4210
|
+
title: string;
|
|
4211
|
+
description: string;
|
|
4212
|
+
max: number;
|
|
4213
|
+
default: number;
|
|
4214
|
+
min: number;
|
|
4215
|
+
step: number;
|
|
4216
|
+
} | {
|
|
4217
|
+
type: "select-boolean";
|
|
4218
|
+
param: string;
|
|
4219
|
+
title: string;
|
|
4220
|
+
description: string;
|
|
4221
|
+
default: boolean | null;
|
|
4222
|
+
} | {
|
|
4223
|
+
type: "select-string";
|
|
4224
|
+
param: string;
|
|
4225
|
+
title: string;
|
|
4226
|
+
description: string;
|
|
4227
|
+
default: string;
|
|
4228
|
+
choices: string[];
|
|
4229
|
+
}>;
|
|
4230
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4231
|
+
};
|
|
4232
|
+
price: {
|
|
4233
|
+
modelName: string;
|
|
4234
|
+
currency: string;
|
|
4235
|
+
tokenRanges: {
|
|
4236
|
+
minTokens: number;
|
|
4237
|
+
prices: {
|
|
4238
|
+
base: {
|
|
4239
|
+
inputPricePerMillion: number;
|
|
4240
|
+
outputPricePerMillion: number;
|
|
4241
|
+
};
|
|
4242
|
+
};
|
|
4243
|
+
maxTokens?: number | null | undefined;
|
|
4244
|
+
}[];
|
|
4245
|
+
};
|
|
4246
|
+
maxReasoningTokens?: number | undefined;
|
|
4247
|
+
};
|
|
4248
|
+
declare const GPT_5_MiniOptions: z.ZodObject<{
|
|
4249
|
+
modelName: z.ZodString;
|
|
4250
|
+
apiKey: z.ZodString;
|
|
4251
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
4252
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
4253
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
4254
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
4255
|
+
}, "strip", z.ZodTypeAny, {
|
|
4256
|
+
modelName: string;
|
|
4257
|
+
apiKey: string;
|
|
4258
|
+
baseUrl?: string | undefined;
|
|
4259
|
+
completeChatUrl?: string | undefined;
|
|
4260
|
+
streamChatUrl?: string | undefined;
|
|
4261
|
+
organization?: string | undefined;
|
|
4262
|
+
}, {
|
|
4263
|
+
modelName: string;
|
|
4264
|
+
apiKey: string;
|
|
4265
|
+
baseUrl?: string | undefined;
|
|
4266
|
+
completeChatUrl?: string | undefined;
|
|
4267
|
+
streamChatUrl?: string | undefined;
|
|
4268
|
+
organization?: string | undefined;
|
|
4269
|
+
}>;
|
|
4270
|
+
type GPT_5_MiniOptionsType = z.infer<typeof GPT_5_MiniOptions>;
|
|
4271
|
+
declare class GPT_5_Mini extends BaseChatModel {
|
|
4272
|
+
constructor(options: GPT_5_MiniOptionsType);
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4275
|
+
declare const GPT_5_NanoLiteral = "gpt-5-nano";
|
|
4276
|
+
declare const GPT_5_NanoSchema: {
|
|
4277
|
+
description: string;
|
|
4278
|
+
name: string;
|
|
4279
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
4280
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
|
|
4281
|
+
maxInputTokens: number;
|
|
4282
|
+
maxOutputTokens: number;
|
|
4283
|
+
config: {
|
|
4284
|
+
def: Record<string, {
|
|
4285
|
+
type: "multi-string";
|
|
4286
|
+
param: string;
|
|
4287
|
+
title: string;
|
|
4288
|
+
description: string;
|
|
4289
|
+
max: number;
|
|
4290
|
+
} | {
|
|
4291
|
+
type: "object-schema";
|
|
4292
|
+
param: string;
|
|
4293
|
+
title: string;
|
|
4294
|
+
description: string;
|
|
4295
|
+
objectSchema?: any;
|
|
4296
|
+
} | {
|
|
4297
|
+
type: "range";
|
|
4298
|
+
param: string;
|
|
4299
|
+
title: string;
|
|
4300
|
+
description: string;
|
|
4301
|
+
max: number;
|
|
4302
|
+
default: number;
|
|
4303
|
+
min: number;
|
|
4304
|
+
step: number;
|
|
4305
|
+
} | {
|
|
4306
|
+
type: "select-boolean";
|
|
4307
|
+
param: string;
|
|
4308
|
+
title: string;
|
|
4309
|
+
description: string;
|
|
4310
|
+
default: boolean | null;
|
|
4311
|
+
} | {
|
|
4312
|
+
type: "select-string";
|
|
4313
|
+
param: string;
|
|
4314
|
+
title: string;
|
|
4315
|
+
description: string;
|
|
4316
|
+
default: string;
|
|
4317
|
+
choices: string[];
|
|
4318
|
+
}>;
|
|
4319
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4320
|
+
};
|
|
4321
|
+
price: {
|
|
4322
|
+
modelName: string;
|
|
4323
|
+
currency: string;
|
|
4324
|
+
tokenRanges: {
|
|
4325
|
+
minTokens: number;
|
|
4326
|
+
prices: {
|
|
4327
|
+
base: {
|
|
4328
|
+
inputPricePerMillion: number;
|
|
4329
|
+
outputPricePerMillion: number;
|
|
4330
|
+
};
|
|
4331
|
+
};
|
|
4332
|
+
maxTokens?: number | null | undefined;
|
|
4333
|
+
}[];
|
|
4334
|
+
};
|
|
4335
|
+
maxReasoningTokens?: number | undefined;
|
|
4336
|
+
};
|
|
4337
|
+
declare const GPT_5_NanoOptions: z.ZodObject<{
|
|
4338
|
+
modelName: z.ZodString;
|
|
4339
|
+
apiKey: z.ZodString;
|
|
4340
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
4341
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
4342
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
4343
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
4344
|
+
}, "strip", z.ZodTypeAny, {
|
|
4345
|
+
modelName: string;
|
|
4346
|
+
apiKey: string;
|
|
4347
|
+
baseUrl?: string | undefined;
|
|
4348
|
+
completeChatUrl?: string | undefined;
|
|
4349
|
+
streamChatUrl?: string | undefined;
|
|
4350
|
+
organization?: string | undefined;
|
|
4351
|
+
}, {
|
|
4352
|
+
modelName: string;
|
|
4353
|
+
apiKey: string;
|
|
4354
|
+
baseUrl?: string | undefined;
|
|
4355
|
+
completeChatUrl?: string | undefined;
|
|
4356
|
+
streamChatUrl?: string | undefined;
|
|
4357
|
+
organization?: string | undefined;
|
|
4358
|
+
}>;
|
|
4359
|
+
type GPT_5_NanoOptionsType = z.infer<typeof GPT_5_NanoOptions>;
|
|
4360
|
+
declare class GPT_5_Nano extends BaseChatModel {
|
|
4361
|
+
constructor(options: GPT_5_NanoOptionsType);
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
declare const GPT_5_ChatLatestLiteral = "gpt-5-chat-latest";
|
|
4365
|
+
declare const GPT_5_ChatLatestSchema: {
|
|
4366
|
+
description: string;
|
|
4367
|
+
name: string;
|
|
4368
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
4369
|
+
modalities: ["text" | "image", ...("text" | "image")[]];
|
|
4370
|
+
maxInputTokens: number;
|
|
4371
|
+
maxOutputTokens: number;
|
|
4372
|
+
config: {
|
|
4373
|
+
def: Record<string, {
|
|
4374
|
+
type: "multi-string";
|
|
4375
|
+
param: string;
|
|
4376
|
+
title: string;
|
|
4377
|
+
description: string;
|
|
4378
|
+
max: number;
|
|
4379
|
+
} | {
|
|
4380
|
+
type: "object-schema";
|
|
4381
|
+
param: string;
|
|
4382
|
+
title: string;
|
|
4383
|
+
description: string;
|
|
4384
|
+
objectSchema?: any;
|
|
4385
|
+
} | {
|
|
4386
|
+
type: "range";
|
|
4387
|
+
param: string;
|
|
4388
|
+
title: string;
|
|
4389
|
+
description: string;
|
|
4390
|
+
max: number;
|
|
4391
|
+
default: number;
|
|
4392
|
+
min: number;
|
|
4393
|
+
step: number;
|
|
4394
|
+
} | {
|
|
4395
|
+
type: "select-boolean";
|
|
4396
|
+
param: string;
|
|
4397
|
+
title: string;
|
|
4398
|
+
description: string;
|
|
4399
|
+
default: boolean | null;
|
|
4400
|
+
} | {
|
|
4401
|
+
type: "select-string";
|
|
4402
|
+
param: string;
|
|
4403
|
+
title: string;
|
|
4404
|
+
description: string;
|
|
4405
|
+
default: string;
|
|
4406
|
+
choices: string[];
|
|
4407
|
+
}>;
|
|
4408
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4409
|
+
};
|
|
4410
|
+
price: {
|
|
4411
|
+
modelName: string;
|
|
4412
|
+
currency: string;
|
|
4413
|
+
tokenRanges: {
|
|
4414
|
+
minTokens: number;
|
|
4415
|
+
prices: {
|
|
4416
|
+
base: {
|
|
4417
|
+
inputPricePerMillion: number;
|
|
4418
|
+
outputPricePerMillion: number;
|
|
4419
|
+
};
|
|
4420
|
+
};
|
|
4421
|
+
maxTokens?: number | null | undefined;
|
|
4422
|
+
}[];
|
|
4423
|
+
};
|
|
4424
|
+
maxReasoningTokens?: number | undefined;
|
|
4425
|
+
};
|
|
4426
|
+
declare const GPT_5_ChatLatestOptions: z.ZodObject<{
|
|
4427
|
+
modelName: z.ZodString;
|
|
4428
|
+
apiKey: z.ZodString;
|
|
4429
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
4430
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
4431
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
4432
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
4433
|
+
}, "strip", z.ZodTypeAny, {
|
|
4434
|
+
modelName: string;
|
|
4435
|
+
apiKey: string;
|
|
4436
|
+
baseUrl?: string | undefined;
|
|
4437
|
+
completeChatUrl?: string | undefined;
|
|
4438
|
+
streamChatUrl?: string | undefined;
|
|
4439
|
+
organization?: string | undefined;
|
|
4440
|
+
}, {
|
|
4441
|
+
modelName: string;
|
|
4442
|
+
apiKey: string;
|
|
4443
|
+
baseUrl?: string | undefined;
|
|
4444
|
+
completeChatUrl?: string | undefined;
|
|
4445
|
+
streamChatUrl?: string | undefined;
|
|
4446
|
+
organization?: string | undefined;
|
|
4447
|
+
}>;
|
|
4448
|
+
type GPT_5_ChatLatestOptionsType = z.infer<typeof GPT_5_ChatLatestOptions>;
|
|
4449
|
+
declare class GPT_5_ChatLatest extends BaseChatModel {
|
|
4450
|
+
constructor(options: GPT_5_ChatLatestOptionsType);
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4097
4453
|
declare const GPT_4_Turbo_2024_04_09Literal = "gpt-4-turbo-2024-04-09";
|
|
4098
4454
|
declare const GPT_4_Turbo_2024_04_09Schema: {
|
|
4099
4455
|
description: string;
|
|
@@ -5944,4 +6300,4 @@ declare class OpenAI<C extends BaseChatModelOptionsType, E extends BaseEmbedding
|
|
|
5944
6300
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
5945
6301
|
}
|
|
5946
6302
|
|
|
5947
|
-
export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelOSeriesConfigDef, ChatModelOSeriesConfigSchema, ChatModelResponseFormatConfigDef, ChatModelResponseFormatConfigSchema, ChatModelResponseSchemaConfigDef, ChatModelResponseSchemaConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, EmbeddingModelDimensionsConfigDef, EmbeddingModelDimensionsConfigSchema, GPT_3_5_Turbo, GPT_3_5_TurboLiteral, GPT_3_5_TurboOptions, type GPT_3_5_TurboOptionsType, GPT_3_5_TurboSchema, GPT_3_5_Turbo_0125, GPT_3_5_Turbo_0125Literal, GPT_3_5_Turbo_0125Options, type GPT_3_5_Turbo_0125OptionsType, GPT_3_5_Turbo_0125Schema, GPT_3_5_Turbo_1106, GPT_3_5_Turbo_1106Literal, GPT_3_5_Turbo_1106Options, type GPT_3_5_Turbo_1106OptionsType, GPT_3_5_Turbo_1106Schema, GPT_4, GPT_4Literal, GPT_4Options, type GPT_4OptionsType, GPT_4Schema, GPT_4_0125_Preview, GPT_4_0125_PreviewLiteral, GPT_4_0125_PreviewOptions, type GPT_4_0125_PreviewOptionsType, GPT_4_0125_PreviewSchema, GPT_4_0613, GPT_4_0613Literal, GPT_4_0613Options, type GPT_4_0613OptionsType, GPT_4_0613Schema, GPT_4_1, GPT_4_1106_Preview, GPT_4_1106_PreviewLiteral, GPT_4_1106_PreviewOptions, type GPT_4_1106_PreviewOptionsType, GPT_4_1106_PreviewSchema, GPT_4_1Literal, GPT_4_1Options, type GPT_4_1OptionsType, GPT_4_1Schema, GPT_4_1_Mini, GPT_4_1_MiniLiteral, GPT_4_1_MiniOptions, type GPT_4_1_MiniOptionsType, GPT_4_1_MiniSchema, GPT_4_1_Nano, GPT_4_1_NanoLiteral, GPT_4_1_NanoOptions, type GPT_4_1_NanoOptionsType, GPT_4_1_NanoSchema, GPT_4_Turbo, GPT_4_TurboLiteral, GPT_4_TurboOptions, type GPT_4_TurboOptionsType, GPT_4_TurboSchema, GPT_4_Turbo_2024_04_09, GPT_4_Turbo_2024_04_09Literal, GPT_4_Turbo_2024_04_09Options, type GPT_4_Turbo_2024_04_09OptionsType, GPT_4_Turbo_2024_04_09Schema, GPT_4_Turbo_Preview, GPT_4_Turbo_PreviewLiteral, GPT_4_Turbo_PreviewOptions, type GPT_4_Turbo_PreviewOptionsType, GPT_4_Turbo_PreviewSchema, GPT_4o, GPT_4oLiteral, GPT_4oOptions, type GPT_4oOptionsType, GPT_4oSchema, GPT_4o_2024_05_13, GPT_4o_2024_05_13Literal, GPT_4o_2024_05_13Options, type GPT_4o_2024_05_13OptionsType, GPT_4o_2024_05_13Schema, GPT_4o_2024_08_06, GPT_4o_2024_08_06Literal, GPT_4o_2024_08_06Options, type GPT_4o_2024_08_06OptionsType, GPT_4o_2024_08_06Schema, GPT_4o_Mini, GPT_4o_MiniLiteral, GPT_4o_MiniOptions, type GPT_4o_MiniOptionsType, GPT_4o_MiniSchema, GPT_4o_Mini_2024_07_18, GPT_4o_Mini_2024_07_18Literal, GPT_4o_Mini_2024_07_18Options, type GPT_4o_Mini_2024_07_18OptionsType, GPT_4o_Mini_2024_07_18Schema, O1, O1Literal, O1Options, type O1OptionsType, O1Schema, O1_2024_12_17, O1_2024_12_17Literal, O1_2024_12_17Options, type O1_2024_12_17OptionsType, O1_2024_12_17Schema, O3, O3Literal, O3Mini, O3Mini2025_01_31, O3Mini2025_01_31Literal, O3Mini2025_01_31Options, type O3Mini2025_01_31OptionsType, O3Mini2025_01_31Schema, O3MiniLiteral, O3MiniOptions, type O3MiniOptionsType, O3MiniSchema, O3Options, type O3OptionsType, O3Schema, O3_2025_04_16, O3_2025_04_16Literal, O3_2025_04_16Options, type O3_2025_04_16OptionsType, O3_2025_04_16Schema, O4_Mini, O4_MiniLiteral, O4_MiniOptions, type O4_MiniOptionsType, O4_MiniSchema, O4_Mini_2025_04_16, O4_Mini_2025_04_16Literal, O4_Mini_2025_04_16Options, type O4_Mini_2025_04_16OptionsType, O4_Mini_2025_04_16Schema, OpenAI, OpenAIChatModelConfigs, OpenAIChatModelModalities, OpenAIChatModelModalitiesEnum, OpenAIChatModelRoles, OpenAIChatModelRolesMap, OpenAIChatModelTextModalities, OpenAIChatModelTextModalitiesEnum, OpenAIChatModelTextToolModalities, OpenAIChatModelTextToolModalitiesEnum, OpenAIChatRequest, OpenAIChatRequestAssistantMessage, type OpenAIChatRequestAssistantMessageType, OpenAIChatRequestImageContent, type OpenAIChatRequestImageContentType, OpenAIChatRequestMessage, type OpenAIChatRequestMessageType, OpenAIChatRequestResponseFormat, type OpenAIChatRequestResponseFormatType, OpenAIChatRequestSystemMessage, type OpenAIChatRequestSystemMessageType, OpenAIChatRequestTextContent, type OpenAIChatRequestTextContentType, OpenAIChatRequestTool, OpenAIChatRequestToolCallContent, type OpenAIChatRequestToolCallContentType, OpenAIChatRequestToolChoiceEnum, type OpenAIChatRequestToolChoiceEnumType, OpenAIChatRequestToolChoiceFunction, type OpenAIChatRequestToolChoiceFunctionType, OpenAIChatRequestToolMessage, type OpenAIChatRequestToolMessageType, type OpenAIChatRequestToolType, type OpenAIChatRequestType, OpenAIChatRequestUserMessage, type OpenAIChatRequestUserMessageType, OpenAICompleteChatResponse, type OpenAICompleteChatResponseType, OpenAIEmbeddingModelConfigs, OpenAIEmbeddingModelModalities, OpenAIEmbeddingModelModalitiesEnum, OpenAIEmbeddingRequest, OpenAIEmbeddingRequestInput, type OpenAIEmbeddingRequestInputType, type OpenAIEmbeddingRequestType, OpenAIGetEmbeddingsResponse, OpenAIStreamChatResponse, type OpenAIStreamChatResponseType, OpenAIToolCallsCompleteChatResponse, OpenAIToolCallsStreamChatResponse, ProviderLiteral, Text_Embedding_3_Large, Text_Embedding_3_LargeLiteral, Text_Embedding_3_LargeSchema, Text_Embedding_3_Large_Options, type Text_Embedding_3_Large_OptionsType, Text_Embedding_3_Small, Text_Embedding_3_SmallLiteral, Text_Embedding_3_SmallSchema, Text_Embedding_3_Small_Options, type Text_Embedding_3_Small_OptionsType, Text_Embedding_Ada002, Text_Embedding_Ada002Literal, Text_Embedding_Ada002Schema, Text_Embedding_Ada002_Options, type Text_Embedding_Ada002_OptionsType, dimensions, encodingFormat, frequencyPenalty, logProbs, maxTokens, presencePenalty, seed, stop, temperature, toolChoice, topLogProbs, topP };
|
|
6303
|
+
export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelOSeriesConfigDef, ChatModelOSeriesConfigSchema, ChatModelResponseFormatConfigDef, ChatModelResponseFormatConfigSchema, ChatModelResponseSchemaConfigDef, ChatModelResponseSchemaConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, EmbeddingModelDimensionsConfigDef, EmbeddingModelDimensionsConfigSchema, GPT_3_5_Turbo, GPT_3_5_TurboLiteral, GPT_3_5_TurboOptions, type GPT_3_5_TurboOptionsType, GPT_3_5_TurboSchema, GPT_3_5_Turbo_0125, GPT_3_5_Turbo_0125Literal, GPT_3_5_Turbo_0125Options, type GPT_3_5_Turbo_0125OptionsType, GPT_3_5_Turbo_0125Schema, GPT_3_5_Turbo_1106, GPT_3_5_Turbo_1106Literal, GPT_3_5_Turbo_1106Options, type GPT_3_5_Turbo_1106OptionsType, GPT_3_5_Turbo_1106Schema, GPT_4, GPT_4Literal, GPT_4Options, type GPT_4OptionsType, GPT_4Schema, GPT_4_0125_Preview, GPT_4_0125_PreviewLiteral, GPT_4_0125_PreviewOptions, type GPT_4_0125_PreviewOptionsType, GPT_4_0125_PreviewSchema, GPT_4_0613, GPT_4_0613Literal, GPT_4_0613Options, type GPT_4_0613OptionsType, GPT_4_0613Schema, GPT_4_1, GPT_4_1106_Preview, GPT_4_1106_PreviewLiteral, GPT_4_1106_PreviewOptions, type GPT_4_1106_PreviewOptionsType, GPT_4_1106_PreviewSchema, GPT_4_1Literal, GPT_4_1Options, type GPT_4_1OptionsType, GPT_4_1Schema, GPT_4_1_Mini, GPT_4_1_MiniLiteral, GPT_4_1_MiniOptions, type GPT_4_1_MiniOptionsType, GPT_4_1_MiniSchema, GPT_4_1_Nano, GPT_4_1_NanoLiteral, GPT_4_1_NanoOptions, type GPT_4_1_NanoOptionsType, GPT_4_1_NanoSchema, GPT_4_Turbo, GPT_4_TurboLiteral, GPT_4_TurboOptions, type GPT_4_TurboOptionsType, GPT_4_TurboSchema, GPT_4_Turbo_2024_04_09, GPT_4_Turbo_2024_04_09Literal, GPT_4_Turbo_2024_04_09Options, type GPT_4_Turbo_2024_04_09OptionsType, GPT_4_Turbo_2024_04_09Schema, GPT_4_Turbo_Preview, GPT_4_Turbo_PreviewLiteral, GPT_4_Turbo_PreviewOptions, type GPT_4_Turbo_PreviewOptionsType, GPT_4_Turbo_PreviewSchema, GPT_4o, GPT_4oLiteral, GPT_4oOptions, type GPT_4oOptionsType, GPT_4oSchema, GPT_4o_2024_05_13, GPT_4o_2024_05_13Literal, GPT_4o_2024_05_13Options, type GPT_4o_2024_05_13OptionsType, GPT_4o_2024_05_13Schema, GPT_4o_2024_08_06, GPT_4o_2024_08_06Literal, GPT_4o_2024_08_06Options, type GPT_4o_2024_08_06OptionsType, GPT_4o_2024_08_06Schema, GPT_4o_Mini, GPT_4o_MiniLiteral, GPT_4o_MiniOptions, type GPT_4o_MiniOptionsType, GPT_4o_MiniSchema, GPT_4o_Mini_2024_07_18, GPT_4o_Mini_2024_07_18Literal, GPT_4o_Mini_2024_07_18Options, type GPT_4o_Mini_2024_07_18OptionsType, GPT_4o_Mini_2024_07_18Schema, GPT_5, GPT_5Literal, GPT_5Options, type GPT_5OptionsType, GPT_5Schema, GPT_5_ChatLatest, GPT_5_ChatLatestLiteral, GPT_5_ChatLatestOptions, type GPT_5_ChatLatestOptionsType, GPT_5_ChatLatestSchema, GPT_5_Mini, GPT_5_MiniLiteral, GPT_5_MiniOptions, type GPT_5_MiniOptionsType, GPT_5_MiniSchema, GPT_5_Nano, GPT_5_NanoLiteral, GPT_5_NanoOptions, type GPT_5_NanoOptionsType, GPT_5_NanoSchema, O1, O1Literal, O1Options, type O1OptionsType, O1Schema, O1_2024_12_17, O1_2024_12_17Literal, O1_2024_12_17Options, type O1_2024_12_17OptionsType, O1_2024_12_17Schema, O3, O3Literal, O3Mini, O3Mini2025_01_31, O3Mini2025_01_31Literal, O3Mini2025_01_31Options, type O3Mini2025_01_31OptionsType, O3Mini2025_01_31Schema, O3MiniLiteral, O3MiniOptions, type O3MiniOptionsType, O3MiniSchema, O3Options, type O3OptionsType, O3Schema, O3_2025_04_16, O3_2025_04_16Literal, O3_2025_04_16Options, type O3_2025_04_16OptionsType, O3_2025_04_16Schema, O4_Mini, O4_MiniLiteral, O4_MiniOptions, type O4_MiniOptionsType, O4_MiniSchema, O4_Mini_2025_04_16, O4_Mini_2025_04_16Literal, O4_Mini_2025_04_16Options, type O4_Mini_2025_04_16OptionsType, O4_Mini_2025_04_16Schema, OpenAI, OpenAIChatModelConfigs, OpenAIChatModelModalities, OpenAIChatModelModalitiesEnum, OpenAIChatModelRoles, OpenAIChatModelRolesMap, OpenAIChatModelTextModalities, OpenAIChatModelTextModalitiesEnum, OpenAIChatModelTextToolModalities, OpenAIChatModelTextToolModalitiesEnum, OpenAIChatRequest, OpenAIChatRequestAssistantMessage, type OpenAIChatRequestAssistantMessageType, OpenAIChatRequestImageContent, type OpenAIChatRequestImageContentType, OpenAIChatRequestMessage, type OpenAIChatRequestMessageType, OpenAIChatRequestResponseFormat, type OpenAIChatRequestResponseFormatType, OpenAIChatRequestSystemMessage, type OpenAIChatRequestSystemMessageType, OpenAIChatRequestTextContent, type OpenAIChatRequestTextContentType, OpenAIChatRequestTool, OpenAIChatRequestToolCallContent, type OpenAIChatRequestToolCallContentType, OpenAIChatRequestToolChoiceEnum, type OpenAIChatRequestToolChoiceEnumType, OpenAIChatRequestToolChoiceFunction, type OpenAIChatRequestToolChoiceFunctionType, OpenAIChatRequestToolMessage, type OpenAIChatRequestToolMessageType, type OpenAIChatRequestToolType, type OpenAIChatRequestType, OpenAIChatRequestUserMessage, type OpenAIChatRequestUserMessageType, OpenAICompleteChatResponse, type OpenAICompleteChatResponseType, OpenAIEmbeddingModelConfigs, OpenAIEmbeddingModelModalities, OpenAIEmbeddingModelModalitiesEnum, OpenAIEmbeddingRequest, OpenAIEmbeddingRequestInput, type OpenAIEmbeddingRequestInputType, type OpenAIEmbeddingRequestType, OpenAIGetEmbeddingsResponse, OpenAIStreamChatResponse, type OpenAIStreamChatResponseType, OpenAIToolCallsCompleteChatResponse, OpenAIToolCallsStreamChatResponse, ProviderLiteral, Text_Embedding_3_Large, Text_Embedding_3_LargeLiteral, Text_Embedding_3_LargeSchema, Text_Embedding_3_Large_Options, type Text_Embedding_3_Large_OptionsType, Text_Embedding_3_Small, Text_Embedding_3_SmallLiteral, Text_Embedding_3_SmallSchema, Text_Embedding_3_Small_Options, type Text_Embedding_3_Small_OptionsType, Text_Embedding_Ada002, Text_Embedding_Ada002Literal, Text_Embedding_Ada002Schema, Text_Embedding_Ada002_Options, type Text_Embedding_Ada002_OptionsType, dimensions, encodingFormat, frequencyPenalty, logProbs, maxTokens, presencePenalty, seed, stop, temperature, toolChoice, topLogProbs, topP };
|