@adaline/openai 1.9.0 → 1.9.1

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 CHANGED
@@ -586,11 +586,11 @@ declare const OpenAIChatModelConfigs: {
586
586
  logProbs?: boolean | null | undefined;
587
587
  topLogProbs?: number | undefined;
588
588
  toolChoice?: string | null | undefined;
589
+ reasoningEffort?: string | null | undefined;
589
590
  responseFormat?: string | null | undefined;
590
591
  responseSchema?: {
591
592
  [x: string]: any;
592
593
  } | undefined;
593
- reasoningEffort?: string | null | undefined;
594
594
  }, {
595
595
  temperature?: number | undefined;
596
596
  seed?: number | undefined;
@@ -602,10 +602,163 @@ declare const OpenAIChatModelConfigs: {
602
602
  logProbs?: boolean | null | undefined;
603
603
  topLogProbs?: number | undefined;
604
604
  toolChoice?: string | null | undefined;
605
+ reasoningEffort?: string | null | undefined;
605
606
  responseFormat?: string | null | undefined;
606
607
  responseSchema?: {
607
608
  [x: string]: any;
608
609
  } | undefined;
610
+ }>;
611
+ };
612
+ readonly gpt5: (maxOutputTokens: number, maxSequences: number) => {
613
+ def: {
614
+ reasoningEffort: {
615
+ type: "select-string";
616
+ param: string;
617
+ title: string;
618
+ description: string;
619
+ default: string;
620
+ choices: string[];
621
+ };
622
+ verbosity: {
623
+ type: "select-string";
624
+ param: string;
625
+ title: string;
626
+ description: string;
627
+ default: string;
628
+ choices: string[];
629
+ };
630
+ temperature: {
631
+ type: "range";
632
+ param: string;
633
+ title: string;
634
+ description: string;
635
+ max: number;
636
+ default: number;
637
+ min: number;
638
+ step: number;
639
+ };
640
+ maxTokens: {
641
+ type: "range";
642
+ param: string;
643
+ title: string;
644
+ description: string;
645
+ max: number;
646
+ default: number;
647
+ min: number;
648
+ step: number;
649
+ };
650
+ stop: {
651
+ type: "multi-string";
652
+ param: string;
653
+ title: string;
654
+ description: string;
655
+ max: number;
656
+ };
657
+ topP: {
658
+ type: "range";
659
+ param: string;
660
+ title: string;
661
+ description: string;
662
+ max: number;
663
+ default: number;
664
+ min: number;
665
+ step: number;
666
+ };
667
+ frequencyPenalty: {
668
+ type: "range";
669
+ param: string;
670
+ title: string;
671
+ description: string;
672
+ max: number;
673
+ default: number;
674
+ min: number;
675
+ step: number;
676
+ };
677
+ presencePenalty: {
678
+ type: "range";
679
+ param: string;
680
+ title: string;
681
+ description: string;
682
+ max: number;
683
+ default: number;
684
+ min: number;
685
+ step: number;
686
+ };
687
+ seed: {
688
+ type: "range";
689
+ param: string;
690
+ title: string;
691
+ description: string;
692
+ max: number;
693
+ default: number;
694
+ min: number;
695
+ step: number;
696
+ };
697
+ logProbs: {
698
+ type: "select-boolean";
699
+ param: string;
700
+ title: string;
701
+ description: string;
702
+ default: boolean | null;
703
+ };
704
+ topLogProbs: {
705
+ type: "range";
706
+ param: string;
707
+ title: string;
708
+ description: string;
709
+ max: number;
710
+ default: number;
711
+ min: number;
712
+ step: number;
713
+ };
714
+ toolChoice: {
715
+ type: "select-string";
716
+ param: string;
717
+ title: string;
718
+ description: string;
719
+ default: string;
720
+ choices: string[];
721
+ };
722
+ };
723
+ schema: zod.ZodObject<zod.objectUtil.extendShape<{
724
+ temperature: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
725
+ maxTokens: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
726
+ stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
727
+ topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
728
+ frequencyPenalty: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
729
+ presencePenalty: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
730
+ seed: zod.ZodEffects<zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>, number | undefined, number | undefined>;
731
+ logProbs: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodBoolean>>>;
732
+ topLogProbs: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
733
+ toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
734
+ }, {
735
+ reasoningEffort: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
736
+ verbosity: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
737
+ }>, "strip", zod.ZodTypeAny, {
738
+ temperature?: number | undefined;
739
+ seed?: number | undefined;
740
+ verbosity?: string | null | undefined;
741
+ stop?: string[] | undefined;
742
+ maxTokens?: number | undefined;
743
+ topP?: number | undefined;
744
+ frequencyPenalty?: number | undefined;
745
+ presencePenalty?: number | undefined;
746
+ logProbs?: boolean | null | undefined;
747
+ topLogProbs?: number | undefined;
748
+ toolChoice?: string | null | undefined;
749
+ reasoningEffort?: string | null | undefined;
750
+ }, {
751
+ temperature?: number | undefined;
752
+ seed?: number | undefined;
753
+ verbosity?: string | null | undefined;
754
+ stop?: string[] | undefined;
755
+ maxTokens?: number | undefined;
756
+ topP?: number | undefined;
757
+ frequencyPenalty?: number | undefined;
758
+ presencePenalty?: number | undefined;
759
+ logProbs?: boolean | null | undefined;
760
+ topLogProbs?: number | undefined;
761
+ toolChoice?: string | null | undefined;
609
762
  reasoningEffort?: string | null | undefined;
610
763
  }>;
611
764
  };
@@ -916,6 +1069,180 @@ declare const toolChoice: {
916
1069
  };
917
1070
  schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
918
1071
  };
1072
+ declare const reasoningEffort: {
1073
+ def: {
1074
+ type: "select-string";
1075
+ param: string;
1076
+ title: string;
1077
+ description: string;
1078
+ default: string;
1079
+ choices: string[];
1080
+ };
1081
+ schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
1082
+ };
1083
+ declare const verbosity: {
1084
+ def: {
1085
+ type: "select-string";
1086
+ param: string;
1087
+ title: string;
1088
+ description: string;
1089
+ default: string;
1090
+ choices: string[];
1091
+ };
1092
+ schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
1093
+ };
1094
+
1095
+ declare const ChatModelGPT5ConfigDef: (maxOutputTokens: number, maxSequences: number) => {
1096
+ reasoningEffort: {
1097
+ type: "select-string";
1098
+ param: string;
1099
+ title: string;
1100
+ description: string;
1101
+ default: string;
1102
+ choices: string[];
1103
+ };
1104
+ verbosity: {
1105
+ type: "select-string";
1106
+ param: string;
1107
+ title: string;
1108
+ description: string;
1109
+ default: string;
1110
+ choices: string[];
1111
+ };
1112
+ temperature: {
1113
+ type: "range";
1114
+ param: string;
1115
+ title: string;
1116
+ description: string;
1117
+ max: number;
1118
+ default: number;
1119
+ min: number;
1120
+ step: number;
1121
+ };
1122
+ maxTokens: {
1123
+ type: "range";
1124
+ param: string;
1125
+ title: string;
1126
+ description: string;
1127
+ max: number;
1128
+ default: number;
1129
+ min: number;
1130
+ step: number;
1131
+ };
1132
+ stop: {
1133
+ type: "multi-string";
1134
+ param: string;
1135
+ title: string;
1136
+ description: string;
1137
+ max: number;
1138
+ };
1139
+ topP: {
1140
+ type: "range";
1141
+ param: string;
1142
+ title: string;
1143
+ description: string;
1144
+ max: number;
1145
+ default: number;
1146
+ min: number;
1147
+ step: number;
1148
+ };
1149
+ frequencyPenalty: {
1150
+ type: "range";
1151
+ param: string;
1152
+ title: string;
1153
+ description: string;
1154
+ max: number;
1155
+ default: number;
1156
+ min: number;
1157
+ step: number;
1158
+ };
1159
+ presencePenalty: {
1160
+ type: "range";
1161
+ param: string;
1162
+ title: string;
1163
+ description: string;
1164
+ max: number;
1165
+ default: number;
1166
+ min: number;
1167
+ step: number;
1168
+ };
1169
+ seed: {
1170
+ type: "range";
1171
+ param: string;
1172
+ title: string;
1173
+ description: string;
1174
+ max: number;
1175
+ default: number;
1176
+ min: number;
1177
+ step: number;
1178
+ };
1179
+ logProbs: {
1180
+ type: "select-boolean";
1181
+ param: string;
1182
+ title: string;
1183
+ description: string;
1184
+ default: boolean | null;
1185
+ };
1186
+ topLogProbs: {
1187
+ type: "range";
1188
+ param: string;
1189
+ title: string;
1190
+ description: string;
1191
+ max: number;
1192
+ default: number;
1193
+ min: number;
1194
+ step: number;
1195
+ };
1196
+ toolChoice: {
1197
+ type: "select-string";
1198
+ param: string;
1199
+ title: string;
1200
+ description: string;
1201
+ default: string;
1202
+ choices: string[];
1203
+ };
1204
+ };
1205
+ declare const ChatModelGPT5ConfigSchema: (maxOutputTokens: number, maxSequences: number) => zod.ZodObject<zod.objectUtil.extendShape<{
1206
+ temperature: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
1207
+ maxTokens: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
1208
+ stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
1209
+ topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
1210
+ frequencyPenalty: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
1211
+ presencePenalty: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
1212
+ seed: zod.ZodEffects<zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>, number | undefined, number | undefined>;
1213
+ logProbs: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodBoolean>>>;
1214
+ topLogProbs: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
1215
+ toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
1216
+ }, {
1217
+ reasoningEffort: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
1218
+ verbosity: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
1219
+ }>, "strip", zod.ZodTypeAny, {
1220
+ temperature?: number | undefined;
1221
+ seed?: number | undefined;
1222
+ verbosity?: string | null | undefined;
1223
+ stop?: string[] | undefined;
1224
+ maxTokens?: number | undefined;
1225
+ topP?: number | undefined;
1226
+ frequencyPenalty?: number | undefined;
1227
+ presencePenalty?: number | undefined;
1228
+ logProbs?: boolean | null | undefined;
1229
+ topLogProbs?: number | undefined;
1230
+ toolChoice?: string | null | undefined;
1231
+ reasoningEffort?: string | null | undefined;
1232
+ }, {
1233
+ temperature?: number | undefined;
1234
+ seed?: number | undefined;
1235
+ verbosity?: string | null | undefined;
1236
+ stop?: string[] | undefined;
1237
+ maxTokens?: number | undefined;
1238
+ topP?: number | undefined;
1239
+ frequencyPenalty?: number | undefined;
1240
+ presencePenalty?: number | undefined;
1241
+ logProbs?: boolean | null | undefined;
1242
+ topLogProbs?: number | undefined;
1243
+ toolChoice?: string | null | undefined;
1244
+ reasoningEffort?: string | null | undefined;
1245
+ }>;
919
1246
 
920
1247
  declare const ChatModelOSeriesConfigDef: (maxOutputTokens: number, maxSequences: number) => {
921
1248
  temperature: {
@@ -1066,11 +1393,11 @@ declare const ChatModelOSeriesConfigSchema: (maxOutputTokens: number, maxSequenc
1066
1393
  logProbs?: boolean | null | undefined;
1067
1394
  topLogProbs?: number | undefined;
1068
1395
  toolChoice?: string | null | undefined;
1396
+ reasoningEffort?: string | null | undefined;
1069
1397
  responseFormat?: string | null | undefined;
1070
1398
  responseSchema?: {
1071
1399
  [x: string]: any;
1072
1400
  } | undefined;
1073
- reasoningEffort?: string | null | undefined;
1074
1401
  }, {
1075
1402
  temperature?: number | undefined;
1076
1403
  seed?: number | undefined;
@@ -1082,11 +1409,11 @@ declare const ChatModelOSeriesConfigSchema: (maxOutputTokens: number, maxSequenc
1082
1409
  logProbs?: boolean | null | undefined;
1083
1410
  topLogProbs?: number | undefined;
1084
1411
  toolChoice?: string | null | undefined;
1412
+ reasoningEffort?: string | null | undefined;
1085
1413
  responseFormat?: string | null | undefined;
1086
1414
  responseSchema?: {
1087
1415
  [x: string]: any;
1088
1416
  } | undefined;
1089
- reasoningEffort?: string | null | undefined;
1090
1417
  }>;
1091
1418
 
1092
1419
  declare const ChatModelResponseFormatConfigDef: (maxOutputTokens: number, maxSequences: number) => {
@@ -3070,6 +3397,8 @@ declare const OpenAIChatRequest: z.ZodObject<{
3070
3397
  };
3071
3398
  type: "function";
3072
3399
  }>]>>;
3400
+ reasoning_effort: z.ZodOptional<z.ZodEnum<["minimal", "low", "medium", "high"]>>;
3401
+ verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
3073
3402
  }, "strip", z.ZodTypeAny, {
3074
3403
  messages: ({
3075
3404
  role: "system";
@@ -3121,6 +3450,8 @@ declare const OpenAIChatRequest: z.ZodObject<{
3121
3450
  };
3122
3451
  type: "function";
3123
3452
  } | undefined;
3453
+ reasoning_effort?: "medium" | "minimal" | "low" | "high" | undefined;
3454
+ verbosity?: "medium" | "low" | "high" | undefined;
3124
3455
  max_completion_tokens?: number | null | undefined;
3125
3456
  stop?: string | string[] | null | undefined;
3126
3457
  response_format?: {
@@ -3195,6 +3526,8 @@ declare const OpenAIChatRequest: z.ZodObject<{
3195
3526
  };
3196
3527
  type: "function";
3197
3528
  } | undefined;
3529
+ reasoning_effort?: "medium" | "minimal" | "low" | "high" | undefined;
3530
+ verbosity?: "medium" | "low" | "high" | undefined;
3198
3531
  max_completion_tokens?: number | null | undefined;
3199
3532
  stop?: string | string[] | null | undefined;
3200
3533
  response_format?: {
@@ -6300,4 +6633,4 @@ declare class OpenAI<C extends BaseChatModelOptionsType, E extends BaseEmbedding
6300
6633
  embeddingModel(options: E): EmbeddingModelV1;
6301
6634
  }
6302
6635
 
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 };
6636
+ export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelGPT5ConfigDef, ChatModelGPT5ConfigSchema, 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, reasoningEffort, seed, stop, temperature, toolChoice, topLogProbs, topP, verbosity };