@adaline/openai 1.0.0 → 1.2.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
@@ -5524,6 +5524,362 @@ declare class O1 extends BaseOSeriesChatModel {
5524
5524
  constructor(options: O1OptionsType);
5525
5525
  }
5526
5526
 
5527
+ declare const O3_2025_04_16Literal = "o3-2025-04-16";
5528
+ declare const O3_2025_04_16Schema: {
5529
+ description: string;
5530
+ name: string;
5531
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
5532
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
5533
+ maxInputTokens: number;
5534
+ maxOutputTokens: number;
5535
+ config: {
5536
+ def: Record<string, {
5537
+ type: "multi-string";
5538
+ param: string;
5539
+ title: string;
5540
+ description: string;
5541
+ max: number;
5542
+ } | {
5543
+ type: "object-schema";
5544
+ param: string;
5545
+ title: string;
5546
+ description: string;
5547
+ objectSchema?: any;
5548
+ } | {
5549
+ type: "range";
5550
+ param: string;
5551
+ title: string;
5552
+ description: string;
5553
+ max: number;
5554
+ default: number;
5555
+ min: number;
5556
+ step: number;
5557
+ } | {
5558
+ type: "select-boolean";
5559
+ param: string;
5560
+ title: string;
5561
+ description: string;
5562
+ default: boolean | null;
5563
+ } | {
5564
+ type: "select-string";
5565
+ param: string;
5566
+ title: string;
5567
+ description: string;
5568
+ default: string;
5569
+ choices: string[];
5570
+ }>;
5571
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
5572
+ };
5573
+ price: {
5574
+ modelName: string;
5575
+ currency: string;
5576
+ tokenRanges: {
5577
+ minTokens: number;
5578
+ prices: {
5579
+ base: {
5580
+ inputPricePerMillion: number;
5581
+ outputPricePerMillion: number;
5582
+ };
5583
+ };
5584
+ maxTokens?: number | null | undefined;
5585
+ }[];
5586
+ };
5587
+ maxReasoningTokens?: number | undefined;
5588
+ };
5589
+ declare const O3_2025_04_16Options: z.ZodObject<{
5590
+ modelName: z.ZodString;
5591
+ apiKey: z.ZodString;
5592
+ baseUrl: z.ZodOptional<z.ZodString>;
5593
+ completeChatUrl: z.ZodOptional<z.ZodString>;
5594
+ streamChatUrl: z.ZodOptional<z.ZodString>;
5595
+ organization: z.ZodOptional<z.ZodString>;
5596
+ }, "strip", z.ZodTypeAny, {
5597
+ modelName: string;
5598
+ apiKey: string;
5599
+ baseUrl?: string | undefined;
5600
+ completeChatUrl?: string | undefined;
5601
+ streamChatUrl?: string | undefined;
5602
+ organization?: string | undefined;
5603
+ }, {
5604
+ modelName: string;
5605
+ apiKey: string;
5606
+ baseUrl?: string | undefined;
5607
+ completeChatUrl?: string | undefined;
5608
+ streamChatUrl?: string | undefined;
5609
+ organization?: string | undefined;
5610
+ }>;
5611
+ type O3_2025_04_16OptionsType = z.infer<typeof O3_2025_04_16Options>;
5612
+ declare class O3_2025_04_16 extends BaseOSeriesChatModel {
5613
+ constructor(options: O3_2025_04_16OptionsType);
5614
+ }
5615
+
5616
+ declare const O3Literal = "o3";
5617
+ declare const O3Schema: {
5618
+ description: string;
5619
+ name: string;
5620
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
5621
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
5622
+ maxInputTokens: number;
5623
+ maxOutputTokens: number;
5624
+ config: {
5625
+ def: Record<string, {
5626
+ type: "multi-string";
5627
+ param: string;
5628
+ title: string;
5629
+ description: string;
5630
+ max: number;
5631
+ } | {
5632
+ type: "object-schema";
5633
+ param: string;
5634
+ title: string;
5635
+ description: string;
5636
+ objectSchema?: any;
5637
+ } | {
5638
+ type: "range";
5639
+ param: string;
5640
+ title: string;
5641
+ description: string;
5642
+ max: number;
5643
+ default: number;
5644
+ min: number;
5645
+ step: number;
5646
+ } | {
5647
+ type: "select-boolean";
5648
+ param: string;
5649
+ title: string;
5650
+ description: string;
5651
+ default: boolean | null;
5652
+ } | {
5653
+ type: "select-string";
5654
+ param: string;
5655
+ title: string;
5656
+ description: string;
5657
+ default: string;
5658
+ choices: string[];
5659
+ }>;
5660
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
5661
+ };
5662
+ price: {
5663
+ modelName: string;
5664
+ currency: string;
5665
+ tokenRanges: {
5666
+ minTokens: number;
5667
+ prices: {
5668
+ base: {
5669
+ inputPricePerMillion: number;
5670
+ outputPricePerMillion: number;
5671
+ };
5672
+ };
5673
+ maxTokens?: number | null | undefined;
5674
+ }[];
5675
+ };
5676
+ maxReasoningTokens?: number | undefined;
5677
+ };
5678
+ declare const O3Options: z.ZodObject<{
5679
+ modelName: z.ZodString;
5680
+ apiKey: z.ZodString;
5681
+ baseUrl: z.ZodOptional<z.ZodString>;
5682
+ completeChatUrl: z.ZodOptional<z.ZodString>;
5683
+ streamChatUrl: z.ZodOptional<z.ZodString>;
5684
+ organization: z.ZodOptional<z.ZodString>;
5685
+ }, "strip", z.ZodTypeAny, {
5686
+ modelName: string;
5687
+ apiKey: string;
5688
+ baseUrl?: string | undefined;
5689
+ completeChatUrl?: string | undefined;
5690
+ streamChatUrl?: string | undefined;
5691
+ organization?: string | undefined;
5692
+ }, {
5693
+ modelName: string;
5694
+ apiKey: string;
5695
+ baseUrl?: string | undefined;
5696
+ completeChatUrl?: string | undefined;
5697
+ streamChatUrl?: string | undefined;
5698
+ organization?: string | undefined;
5699
+ }>;
5700
+ type O3OptionsType = z.infer<typeof O3Options>;
5701
+ declare class O3 extends BaseOSeriesChatModel {
5702
+ constructor(options: O3OptionsType);
5703
+ }
5704
+
5705
+ declare const O4_Mini_2025_04_16Literal = "o4-mini-2025-04-16";
5706
+ declare const O4_Mini_2025_04_16Schema: {
5707
+ description: string;
5708
+ name: string;
5709
+ roles: Partial<Record<"user" | "assistant", string | undefined>>;
5710
+ modalities: ["text", ..."text"[]];
5711
+ maxInputTokens: number;
5712
+ maxOutputTokens: number;
5713
+ config: {
5714
+ def: Record<string, {
5715
+ type: "multi-string";
5716
+ param: string;
5717
+ title: string;
5718
+ description: string;
5719
+ max: number;
5720
+ } | {
5721
+ type: "object-schema";
5722
+ param: string;
5723
+ title: string;
5724
+ description: string;
5725
+ objectSchema?: any;
5726
+ } | {
5727
+ type: "range";
5728
+ param: string;
5729
+ title: string;
5730
+ description: string;
5731
+ max: number;
5732
+ default: number;
5733
+ min: number;
5734
+ step: number;
5735
+ } | {
5736
+ type: "select-boolean";
5737
+ param: string;
5738
+ title: string;
5739
+ description: string;
5740
+ default: boolean | null;
5741
+ } | {
5742
+ type: "select-string";
5743
+ param: string;
5744
+ title: string;
5745
+ description: string;
5746
+ default: string;
5747
+ choices: string[];
5748
+ }>;
5749
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
5750
+ };
5751
+ price: {
5752
+ modelName: string;
5753
+ currency: string;
5754
+ tokenRanges: {
5755
+ minTokens: number;
5756
+ prices: {
5757
+ base: {
5758
+ inputPricePerMillion: number;
5759
+ outputPricePerMillion: number;
5760
+ };
5761
+ };
5762
+ maxTokens?: number | null | undefined;
5763
+ }[];
5764
+ };
5765
+ maxReasoningTokens?: number | undefined;
5766
+ };
5767
+ declare const O4_Mini_2025_04_16Options: z.ZodObject<{
5768
+ modelName: z.ZodString;
5769
+ apiKey: z.ZodString;
5770
+ baseUrl: z.ZodOptional<z.ZodString>;
5771
+ completeChatUrl: z.ZodOptional<z.ZodString>;
5772
+ streamChatUrl: z.ZodOptional<z.ZodString>;
5773
+ organization: z.ZodOptional<z.ZodString>;
5774
+ }, "strip", z.ZodTypeAny, {
5775
+ modelName: string;
5776
+ apiKey: string;
5777
+ baseUrl?: string | undefined;
5778
+ completeChatUrl?: string | undefined;
5779
+ streamChatUrl?: string | undefined;
5780
+ organization?: string | undefined;
5781
+ }, {
5782
+ modelName: string;
5783
+ apiKey: string;
5784
+ baseUrl?: string | undefined;
5785
+ completeChatUrl?: string | undefined;
5786
+ streamChatUrl?: string | undefined;
5787
+ organization?: string | undefined;
5788
+ }>;
5789
+ type O4_Mini_2025_04_16OptionsType = z.infer<typeof O4_Mini_2025_04_16Options>;
5790
+ declare class O4_Mini_2025_04_16 extends BaseOSeriesChatModel {
5791
+ constructor(options: O4_Mini_2025_04_16OptionsType);
5792
+ }
5793
+
5794
+ declare const O4_MiniLiteral = "o4-mini";
5795
+ declare const O4_MiniSchema: {
5796
+ description: string;
5797
+ name: string;
5798
+ roles: Partial<Record<"user" | "assistant", string | undefined>>;
5799
+ modalities: ["text", ..."text"[]];
5800
+ maxInputTokens: number;
5801
+ maxOutputTokens: number;
5802
+ config: {
5803
+ def: Record<string, {
5804
+ type: "multi-string";
5805
+ param: string;
5806
+ title: string;
5807
+ description: string;
5808
+ max: number;
5809
+ } | {
5810
+ type: "object-schema";
5811
+ param: string;
5812
+ title: string;
5813
+ description: string;
5814
+ objectSchema?: any;
5815
+ } | {
5816
+ type: "range";
5817
+ param: string;
5818
+ title: string;
5819
+ description: string;
5820
+ max: number;
5821
+ default: number;
5822
+ min: number;
5823
+ step: number;
5824
+ } | {
5825
+ type: "select-boolean";
5826
+ param: string;
5827
+ title: string;
5828
+ description: string;
5829
+ default: boolean | null;
5830
+ } | {
5831
+ type: "select-string";
5832
+ param: string;
5833
+ title: string;
5834
+ description: string;
5835
+ default: string;
5836
+ choices: string[];
5837
+ }>;
5838
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
5839
+ };
5840
+ price: {
5841
+ modelName: string;
5842
+ currency: string;
5843
+ tokenRanges: {
5844
+ minTokens: number;
5845
+ prices: {
5846
+ base: {
5847
+ inputPricePerMillion: number;
5848
+ outputPricePerMillion: number;
5849
+ };
5850
+ };
5851
+ maxTokens?: number | null | undefined;
5852
+ }[];
5853
+ };
5854
+ maxReasoningTokens?: number | undefined;
5855
+ };
5856
+ declare const O4_MiniOptions: z.ZodObject<{
5857
+ modelName: z.ZodString;
5858
+ apiKey: z.ZodString;
5859
+ baseUrl: z.ZodOptional<z.ZodString>;
5860
+ completeChatUrl: z.ZodOptional<z.ZodString>;
5861
+ streamChatUrl: z.ZodOptional<z.ZodString>;
5862
+ organization: z.ZodOptional<z.ZodString>;
5863
+ }, "strip", z.ZodTypeAny, {
5864
+ modelName: string;
5865
+ apiKey: string;
5866
+ baseUrl?: string | undefined;
5867
+ completeChatUrl?: string | undefined;
5868
+ streamChatUrl?: string | undefined;
5869
+ organization?: string | undefined;
5870
+ }, {
5871
+ modelName: string;
5872
+ apiKey: string;
5873
+ baseUrl?: string | undefined;
5874
+ completeChatUrl?: string | undefined;
5875
+ streamChatUrl?: string | undefined;
5876
+ organization?: string | undefined;
5877
+ }>;
5878
+ type O4_MiniOptionsType = z.infer<typeof O4_MiniOptions>;
5879
+ declare class O4_Mini extends BaseOSeriesChatModel {
5880
+ constructor(options: O4_MiniOptionsType);
5881
+ }
5882
+
5527
5883
  declare const OpenAIEmbeddingModelModalities: EmbeddingModelSchemaType["modalities"];
5528
5884
  declare const OpenAIEmbeddingModelModalitiesEnum: z.ZodEnum<["text", "token"]>;
5529
5885
 
@@ -5861,4 +6217,4 @@ declare class OpenAI<C extends BaseChatModelOptionsType, E extends BaseEmbedding
5861
6217
  embeddingModel(options: E): EmbeddingModelV1;
5862
6218
  }
5863
6219
 
5864
- export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, BaseOSeriesChatModel, 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_1106_Preview, GPT_4_1106_PreviewLiteral, GPT_4_1106_PreviewOptions, type GPT_4_1106_PreviewOptionsType, GPT_4_1106_PreviewSchema, 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, O1_Mini, O1_MiniLiteral, O1_MiniOptions, type O1_MiniOptionsType, O1_MiniSchema, O1_Mini_2024_09_12, O1_Mini_2024_09_12Literal, O1_Mini_2024_09_12Options, type O1_Mini_2024_09_12OptionsType, O1_Mini_2024_09_12Schema, O1_Preview, O1_PreviewLiteral, O1_PreviewOptions, type O1_PreviewOptionsType, O1_PreviewSchema, OpenAI, OpenAIChatModelConfigs, OpenAIChatModelModalities, OpenAIChatModelModalitiesEnum, OpenAIChatModelOSSeriesRoles, OpenAIChatModelOSSeriesRolesMap, OpenAIChatModelRoles, OpenAIChatModelRolesMap, OpenAIChatModelTextModalities, OpenAIChatModelTextModalitiesEnum, OpenAIChatModelTextToolModalities, OpenAIChatModelTextToolModalitiesEnum, OpenAIChatOSeriesRequest, type OpenAIChatOSeriesRequestType, 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 };
6220
+ export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, BaseOSeriesChatModel, 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_1106_Preview, GPT_4_1106_PreviewLiteral, GPT_4_1106_PreviewOptions, type GPT_4_1106_PreviewOptionsType, GPT_4_1106_PreviewSchema, 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, O1_Mini, O1_MiniLiteral, O1_MiniOptions, type O1_MiniOptionsType, O1_MiniSchema, O1_Mini_2024_09_12, O1_Mini_2024_09_12Literal, O1_Mini_2024_09_12Options, type O1_Mini_2024_09_12OptionsType, O1_Mini_2024_09_12Schema, O1_Preview, O1_PreviewLiteral, O1_PreviewOptions, type O1_PreviewOptionsType, O1_PreviewSchema, O3, O3Literal, 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, OpenAIChatModelOSSeriesRoles, OpenAIChatModelOSSeriesRolesMap, OpenAIChatModelRoles, OpenAIChatModelRolesMap, OpenAIChatModelTextModalities, OpenAIChatModelTextModalitiesEnum, OpenAIChatModelTextToolModalities, OpenAIChatModelTextToolModalitiesEnum, OpenAIChatOSeriesRequest, type OpenAIChatOSeriesRequestType, 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 };