@adaline/openai 1.12.0 → 1.14.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 CHANGED
@@ -4804,6 +4804,230 @@ declare class GPT_5_1 extends BaseChatModel {
4804
4804
  constructor(options: GPT_5_1OptionsType);
4805
4805
  }
4806
4806
 
4807
+ declare const GPT_5_2Literal = "gpt-5.2";
4808
+ declare const GPT_5_2Schema: {
4809
+ description: string;
4810
+ name: string;
4811
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
4812
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
4813
+ maxInputTokens: number;
4814
+ maxOutputTokens: number;
4815
+ config: {
4816
+ def: Record<string, {
4817
+ type: "multi-string";
4818
+ param: string;
4819
+ title: string;
4820
+ description: string;
4821
+ max: number;
4822
+ } | {
4823
+ type: "object-schema";
4824
+ param: string;
4825
+ title: string;
4826
+ description: string;
4827
+ objectSchema?: any;
4828
+ } | {
4829
+ type: "paired-select";
4830
+ param: string;
4831
+ title: string;
4832
+ description: string;
4833
+ fields: [{
4834
+ label: string;
4835
+ key: string;
4836
+ choices: {
4837
+ value: string;
4838
+ label: string;
4839
+ }[];
4840
+ description?: string | undefined;
4841
+ }, {
4842
+ label: string;
4843
+ key: string;
4844
+ choices: {
4845
+ value: string;
4846
+ label: string;
4847
+ }[];
4848
+ description?: string | undefined;
4849
+ }];
4850
+ uniqueByField?: string | undefined;
4851
+ } | {
4852
+ type: "range";
4853
+ param: string;
4854
+ title: string;
4855
+ description: string;
4856
+ max: number;
4857
+ default: number;
4858
+ min: number;
4859
+ step: number;
4860
+ } | {
4861
+ type: "select-boolean";
4862
+ param: string;
4863
+ title: string;
4864
+ description: string;
4865
+ default: boolean | null;
4866
+ } | {
4867
+ type: "select-string";
4868
+ param: string;
4869
+ title: string;
4870
+ description: string;
4871
+ default: string;
4872
+ choices: string[];
4873
+ }>;
4874
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
4875
+ };
4876
+ price: {
4877
+ modelName: string;
4878
+ currency: string;
4879
+ tokenRanges: {
4880
+ minTokens: number;
4881
+ prices: {
4882
+ base: {
4883
+ inputPricePerMillion: number;
4884
+ outputPricePerMillion: number;
4885
+ };
4886
+ };
4887
+ maxTokens?: number | null | undefined;
4888
+ }[];
4889
+ };
4890
+ maxReasoningTokens?: number | undefined;
4891
+ };
4892
+ declare const GPT_5_2Options: z.ZodObject<{
4893
+ modelName: z.ZodString;
4894
+ apiKey: z.ZodString;
4895
+ baseUrl: z.ZodOptional<z.ZodString>;
4896
+ completeChatUrl: z.ZodOptional<z.ZodString>;
4897
+ streamChatUrl: z.ZodOptional<z.ZodString>;
4898
+ organization: z.ZodOptional<z.ZodString>;
4899
+ }, "strip", z.ZodTypeAny, {
4900
+ modelName: string;
4901
+ apiKey: string;
4902
+ baseUrl?: string | undefined;
4903
+ completeChatUrl?: string | undefined;
4904
+ streamChatUrl?: string | undefined;
4905
+ organization?: string | undefined;
4906
+ }, {
4907
+ modelName: string;
4908
+ apiKey: string;
4909
+ baseUrl?: string | undefined;
4910
+ completeChatUrl?: string | undefined;
4911
+ streamChatUrl?: string | undefined;
4912
+ organization?: string | undefined;
4913
+ }>;
4914
+ type GPT_5_2OptionsType = z.infer<typeof GPT_5_2Options>;
4915
+ declare class GPT_5_2 extends BaseChatModel {
4916
+ constructor(options: GPT_5_2OptionsType);
4917
+ }
4918
+
4919
+ declare const GPT_5_2_ChatLatestLiteral = "gpt-5.2-chat-latest";
4920
+ declare const GPT_5_2_ChatLatestSchema: {
4921
+ description: string;
4922
+ name: string;
4923
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
4924
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
4925
+ maxInputTokens: number;
4926
+ maxOutputTokens: number;
4927
+ config: {
4928
+ def: Record<string, {
4929
+ type: "multi-string";
4930
+ param: string;
4931
+ title: string;
4932
+ description: string;
4933
+ max: number;
4934
+ } | {
4935
+ type: "object-schema";
4936
+ param: string;
4937
+ title: string;
4938
+ description: string;
4939
+ objectSchema?: any;
4940
+ } | {
4941
+ type: "paired-select";
4942
+ param: string;
4943
+ title: string;
4944
+ description: string;
4945
+ fields: [{
4946
+ label: string;
4947
+ key: string;
4948
+ choices: {
4949
+ value: string;
4950
+ label: string;
4951
+ }[];
4952
+ description?: string | undefined;
4953
+ }, {
4954
+ label: string;
4955
+ key: string;
4956
+ choices: {
4957
+ value: string;
4958
+ label: string;
4959
+ }[];
4960
+ description?: string | undefined;
4961
+ }];
4962
+ uniqueByField?: string | undefined;
4963
+ } | {
4964
+ type: "range";
4965
+ param: string;
4966
+ title: string;
4967
+ description: string;
4968
+ max: number;
4969
+ default: number;
4970
+ min: number;
4971
+ step: number;
4972
+ } | {
4973
+ type: "select-boolean";
4974
+ param: string;
4975
+ title: string;
4976
+ description: string;
4977
+ default: boolean | null;
4978
+ } | {
4979
+ type: "select-string";
4980
+ param: string;
4981
+ title: string;
4982
+ description: string;
4983
+ default: string;
4984
+ choices: string[];
4985
+ }>;
4986
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
4987
+ };
4988
+ price: {
4989
+ modelName: string;
4990
+ currency: string;
4991
+ tokenRanges: {
4992
+ minTokens: number;
4993
+ prices: {
4994
+ base: {
4995
+ inputPricePerMillion: number;
4996
+ outputPricePerMillion: number;
4997
+ };
4998
+ };
4999
+ maxTokens?: number | null | undefined;
5000
+ }[];
5001
+ };
5002
+ maxReasoningTokens?: number | undefined;
5003
+ };
5004
+ declare const GPT_5_2_ChatLatestOptions: z.ZodObject<{
5005
+ modelName: z.ZodString;
5006
+ apiKey: z.ZodString;
5007
+ baseUrl: z.ZodOptional<z.ZodString>;
5008
+ completeChatUrl: z.ZodOptional<z.ZodString>;
5009
+ streamChatUrl: z.ZodOptional<z.ZodString>;
5010
+ organization: z.ZodOptional<z.ZodString>;
5011
+ }, "strip", z.ZodTypeAny, {
5012
+ modelName: string;
5013
+ apiKey: string;
5014
+ baseUrl?: string | undefined;
5015
+ completeChatUrl?: string | undefined;
5016
+ streamChatUrl?: string | undefined;
5017
+ organization?: string | undefined;
5018
+ }, {
5019
+ modelName: string;
5020
+ apiKey: string;
5021
+ baseUrl?: string | undefined;
5022
+ completeChatUrl?: string | undefined;
5023
+ streamChatUrl?: string | undefined;
5024
+ organization?: string | undefined;
5025
+ }>;
5026
+ type GPT_5_2_ChatLatestOptionsType = z.infer<typeof GPT_5_2_ChatLatestOptions>;
5027
+ declare class GPT_5_2_ChatLatest extends BaseChatModel {
5028
+ constructor(options: GPT_5_2_ChatLatestOptionsType);
5029
+ }
5030
+
4807
5031
  declare const GPT_5Literal = "gpt-5";
4808
5032
  declare const GPT_5Schema: {
4809
5033
  description: string;
@@ -7562,4 +7786,4 @@ declare class OpenAI<C extends BaseChatModelOptionsType, E extends BaseEmbedding
7562
7786
  embeddingModel(options: E): EmbeddingModelV1;
7563
7787
  }
7564
7788
 
7565
- 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_1, GPT_5_1Literal, GPT_5_1Options, type GPT_5_1OptionsType, GPT_5_1Schema, 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 };
7789
+ 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_1, GPT_5_1Literal, GPT_5_1Options, type GPT_5_1OptionsType, GPT_5_1Schema, GPT_5_2, GPT_5_2Literal, GPT_5_2Options, type GPT_5_2OptionsType, GPT_5_2Schema, GPT_5_2_ChatLatest, GPT_5_2_ChatLatestLiteral, GPT_5_2_ChatLatestOptions, type GPT_5_2_ChatLatestOptionsType, GPT_5_2_ChatLatestSchema, 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 };
package/dist/index.d.ts CHANGED
@@ -4804,6 +4804,230 @@ declare class GPT_5_1 extends BaseChatModel {
4804
4804
  constructor(options: GPT_5_1OptionsType);
4805
4805
  }
4806
4806
 
4807
+ declare const GPT_5_2Literal = "gpt-5.2";
4808
+ declare const GPT_5_2Schema: {
4809
+ description: string;
4810
+ name: string;
4811
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
4812
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
4813
+ maxInputTokens: number;
4814
+ maxOutputTokens: number;
4815
+ config: {
4816
+ def: Record<string, {
4817
+ type: "multi-string";
4818
+ param: string;
4819
+ title: string;
4820
+ description: string;
4821
+ max: number;
4822
+ } | {
4823
+ type: "object-schema";
4824
+ param: string;
4825
+ title: string;
4826
+ description: string;
4827
+ objectSchema?: any;
4828
+ } | {
4829
+ type: "paired-select";
4830
+ param: string;
4831
+ title: string;
4832
+ description: string;
4833
+ fields: [{
4834
+ label: string;
4835
+ key: string;
4836
+ choices: {
4837
+ value: string;
4838
+ label: string;
4839
+ }[];
4840
+ description?: string | undefined;
4841
+ }, {
4842
+ label: string;
4843
+ key: string;
4844
+ choices: {
4845
+ value: string;
4846
+ label: string;
4847
+ }[];
4848
+ description?: string | undefined;
4849
+ }];
4850
+ uniqueByField?: string | undefined;
4851
+ } | {
4852
+ type: "range";
4853
+ param: string;
4854
+ title: string;
4855
+ description: string;
4856
+ max: number;
4857
+ default: number;
4858
+ min: number;
4859
+ step: number;
4860
+ } | {
4861
+ type: "select-boolean";
4862
+ param: string;
4863
+ title: string;
4864
+ description: string;
4865
+ default: boolean | null;
4866
+ } | {
4867
+ type: "select-string";
4868
+ param: string;
4869
+ title: string;
4870
+ description: string;
4871
+ default: string;
4872
+ choices: string[];
4873
+ }>;
4874
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
4875
+ };
4876
+ price: {
4877
+ modelName: string;
4878
+ currency: string;
4879
+ tokenRanges: {
4880
+ minTokens: number;
4881
+ prices: {
4882
+ base: {
4883
+ inputPricePerMillion: number;
4884
+ outputPricePerMillion: number;
4885
+ };
4886
+ };
4887
+ maxTokens?: number | null | undefined;
4888
+ }[];
4889
+ };
4890
+ maxReasoningTokens?: number | undefined;
4891
+ };
4892
+ declare const GPT_5_2Options: z.ZodObject<{
4893
+ modelName: z.ZodString;
4894
+ apiKey: z.ZodString;
4895
+ baseUrl: z.ZodOptional<z.ZodString>;
4896
+ completeChatUrl: z.ZodOptional<z.ZodString>;
4897
+ streamChatUrl: z.ZodOptional<z.ZodString>;
4898
+ organization: z.ZodOptional<z.ZodString>;
4899
+ }, "strip", z.ZodTypeAny, {
4900
+ modelName: string;
4901
+ apiKey: string;
4902
+ baseUrl?: string | undefined;
4903
+ completeChatUrl?: string | undefined;
4904
+ streamChatUrl?: string | undefined;
4905
+ organization?: string | undefined;
4906
+ }, {
4907
+ modelName: string;
4908
+ apiKey: string;
4909
+ baseUrl?: string | undefined;
4910
+ completeChatUrl?: string | undefined;
4911
+ streamChatUrl?: string | undefined;
4912
+ organization?: string | undefined;
4913
+ }>;
4914
+ type GPT_5_2OptionsType = z.infer<typeof GPT_5_2Options>;
4915
+ declare class GPT_5_2 extends BaseChatModel {
4916
+ constructor(options: GPT_5_2OptionsType);
4917
+ }
4918
+
4919
+ declare const GPT_5_2_ChatLatestLiteral = "gpt-5.2-chat-latest";
4920
+ declare const GPT_5_2_ChatLatestSchema: {
4921
+ description: string;
4922
+ name: string;
4923
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
4924
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
4925
+ maxInputTokens: number;
4926
+ maxOutputTokens: number;
4927
+ config: {
4928
+ def: Record<string, {
4929
+ type: "multi-string";
4930
+ param: string;
4931
+ title: string;
4932
+ description: string;
4933
+ max: number;
4934
+ } | {
4935
+ type: "object-schema";
4936
+ param: string;
4937
+ title: string;
4938
+ description: string;
4939
+ objectSchema?: any;
4940
+ } | {
4941
+ type: "paired-select";
4942
+ param: string;
4943
+ title: string;
4944
+ description: string;
4945
+ fields: [{
4946
+ label: string;
4947
+ key: string;
4948
+ choices: {
4949
+ value: string;
4950
+ label: string;
4951
+ }[];
4952
+ description?: string | undefined;
4953
+ }, {
4954
+ label: string;
4955
+ key: string;
4956
+ choices: {
4957
+ value: string;
4958
+ label: string;
4959
+ }[];
4960
+ description?: string | undefined;
4961
+ }];
4962
+ uniqueByField?: string | undefined;
4963
+ } | {
4964
+ type: "range";
4965
+ param: string;
4966
+ title: string;
4967
+ description: string;
4968
+ max: number;
4969
+ default: number;
4970
+ min: number;
4971
+ step: number;
4972
+ } | {
4973
+ type: "select-boolean";
4974
+ param: string;
4975
+ title: string;
4976
+ description: string;
4977
+ default: boolean | null;
4978
+ } | {
4979
+ type: "select-string";
4980
+ param: string;
4981
+ title: string;
4982
+ description: string;
4983
+ default: string;
4984
+ choices: string[];
4985
+ }>;
4986
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
4987
+ };
4988
+ price: {
4989
+ modelName: string;
4990
+ currency: string;
4991
+ tokenRanges: {
4992
+ minTokens: number;
4993
+ prices: {
4994
+ base: {
4995
+ inputPricePerMillion: number;
4996
+ outputPricePerMillion: number;
4997
+ };
4998
+ };
4999
+ maxTokens?: number | null | undefined;
5000
+ }[];
5001
+ };
5002
+ maxReasoningTokens?: number | undefined;
5003
+ };
5004
+ declare const GPT_5_2_ChatLatestOptions: z.ZodObject<{
5005
+ modelName: z.ZodString;
5006
+ apiKey: z.ZodString;
5007
+ baseUrl: z.ZodOptional<z.ZodString>;
5008
+ completeChatUrl: z.ZodOptional<z.ZodString>;
5009
+ streamChatUrl: z.ZodOptional<z.ZodString>;
5010
+ organization: z.ZodOptional<z.ZodString>;
5011
+ }, "strip", z.ZodTypeAny, {
5012
+ modelName: string;
5013
+ apiKey: string;
5014
+ baseUrl?: string | undefined;
5015
+ completeChatUrl?: string | undefined;
5016
+ streamChatUrl?: string | undefined;
5017
+ organization?: string | undefined;
5018
+ }, {
5019
+ modelName: string;
5020
+ apiKey: string;
5021
+ baseUrl?: string | undefined;
5022
+ completeChatUrl?: string | undefined;
5023
+ streamChatUrl?: string | undefined;
5024
+ organization?: string | undefined;
5025
+ }>;
5026
+ type GPT_5_2_ChatLatestOptionsType = z.infer<typeof GPT_5_2_ChatLatestOptions>;
5027
+ declare class GPT_5_2_ChatLatest extends BaseChatModel {
5028
+ constructor(options: GPT_5_2_ChatLatestOptionsType);
5029
+ }
5030
+
4807
5031
  declare const GPT_5Literal = "gpt-5";
4808
5032
  declare const GPT_5Schema: {
4809
5033
  description: string;
@@ -7562,4 +7786,4 @@ declare class OpenAI<C extends BaseChatModelOptionsType, E extends BaseEmbedding
7562
7786
  embeddingModel(options: E): EmbeddingModelV1;
7563
7787
  }
7564
7788
 
7565
- 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_1, GPT_5_1Literal, GPT_5_1Options, type GPT_5_1OptionsType, GPT_5_1Schema, 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 };
7789
+ 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_1, GPT_5_1Literal, GPT_5_1Options, type GPT_5_1OptionsType, GPT_5_1Schema, GPT_5_2, GPT_5_2Literal, GPT_5_2Options, type GPT_5_2OptionsType, GPT_5_2Schema, GPT_5_2_ChatLatest, GPT_5_2_ChatLatestLiteral, GPT_5_2_ChatLatestOptions, type GPT_5_2_ChatLatestOptionsType, GPT_5_2_ChatLatestSchema, 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 };