@adaline/openai 1.10.0 → 1.11.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 +872 -1
- package/dist/index.d.ts +872 -1
- package/dist/index.js +174 -170
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -3705,6 +3705,29 @@ declare const GPT_3_5_Turbo_0125Schema: {
|
|
|
3705
3705
|
title: string;
|
|
3706
3706
|
description: string;
|
|
3707
3707
|
objectSchema?: any;
|
|
3708
|
+
} | {
|
|
3709
|
+
type: "paired-select";
|
|
3710
|
+
param: string;
|
|
3711
|
+
title: string;
|
|
3712
|
+
description: string;
|
|
3713
|
+
fields: [{
|
|
3714
|
+
label: string;
|
|
3715
|
+
key: string;
|
|
3716
|
+
choices: {
|
|
3717
|
+
value: string;
|
|
3718
|
+
label: string;
|
|
3719
|
+
}[];
|
|
3720
|
+
description?: string | undefined;
|
|
3721
|
+
}, {
|
|
3722
|
+
label: string;
|
|
3723
|
+
key: string;
|
|
3724
|
+
choices: {
|
|
3725
|
+
value: string;
|
|
3726
|
+
label: string;
|
|
3727
|
+
}[];
|
|
3728
|
+
description?: string | undefined;
|
|
3729
|
+
}];
|
|
3730
|
+
uniqueByField?: string | undefined;
|
|
3708
3731
|
} | {
|
|
3709
3732
|
type: "range";
|
|
3710
3733
|
param: string;
|
|
@@ -3794,6 +3817,29 @@ declare const GPT_3_5_Turbo_1106Schema: {
|
|
|
3794
3817
|
title: string;
|
|
3795
3818
|
description: string;
|
|
3796
3819
|
objectSchema?: any;
|
|
3820
|
+
} | {
|
|
3821
|
+
type: "paired-select";
|
|
3822
|
+
param: string;
|
|
3823
|
+
title: string;
|
|
3824
|
+
description: string;
|
|
3825
|
+
fields: [{
|
|
3826
|
+
label: string;
|
|
3827
|
+
key: string;
|
|
3828
|
+
choices: {
|
|
3829
|
+
value: string;
|
|
3830
|
+
label: string;
|
|
3831
|
+
}[];
|
|
3832
|
+
description?: string | undefined;
|
|
3833
|
+
}, {
|
|
3834
|
+
label: string;
|
|
3835
|
+
key: string;
|
|
3836
|
+
choices: {
|
|
3837
|
+
value: string;
|
|
3838
|
+
label: string;
|
|
3839
|
+
}[];
|
|
3840
|
+
description?: string | undefined;
|
|
3841
|
+
}];
|
|
3842
|
+
uniqueByField?: string | undefined;
|
|
3797
3843
|
} | {
|
|
3798
3844
|
type: "range";
|
|
3799
3845
|
param: string;
|
|
@@ -3883,6 +3929,29 @@ declare const GPT_3_5_TurboSchema: {
|
|
|
3883
3929
|
title: string;
|
|
3884
3930
|
description: string;
|
|
3885
3931
|
objectSchema?: any;
|
|
3932
|
+
} | {
|
|
3933
|
+
type: "paired-select";
|
|
3934
|
+
param: string;
|
|
3935
|
+
title: string;
|
|
3936
|
+
description: string;
|
|
3937
|
+
fields: [{
|
|
3938
|
+
label: string;
|
|
3939
|
+
key: string;
|
|
3940
|
+
choices: {
|
|
3941
|
+
value: string;
|
|
3942
|
+
label: string;
|
|
3943
|
+
}[];
|
|
3944
|
+
description?: string | undefined;
|
|
3945
|
+
}, {
|
|
3946
|
+
label: string;
|
|
3947
|
+
key: string;
|
|
3948
|
+
choices: {
|
|
3949
|
+
value: string;
|
|
3950
|
+
label: string;
|
|
3951
|
+
}[];
|
|
3952
|
+
description?: string | undefined;
|
|
3953
|
+
}];
|
|
3954
|
+
uniqueByField?: string | undefined;
|
|
3886
3955
|
} | {
|
|
3887
3956
|
type: "range";
|
|
3888
3957
|
param: string;
|
|
@@ -3972,6 +4041,29 @@ declare const GPT_4_0125_PreviewSchema: {
|
|
|
3972
4041
|
title: string;
|
|
3973
4042
|
description: string;
|
|
3974
4043
|
objectSchema?: any;
|
|
4044
|
+
} | {
|
|
4045
|
+
type: "paired-select";
|
|
4046
|
+
param: string;
|
|
4047
|
+
title: string;
|
|
4048
|
+
description: string;
|
|
4049
|
+
fields: [{
|
|
4050
|
+
label: string;
|
|
4051
|
+
key: string;
|
|
4052
|
+
choices: {
|
|
4053
|
+
value: string;
|
|
4054
|
+
label: string;
|
|
4055
|
+
}[];
|
|
4056
|
+
description?: string | undefined;
|
|
4057
|
+
}, {
|
|
4058
|
+
label: string;
|
|
4059
|
+
key: string;
|
|
4060
|
+
choices: {
|
|
4061
|
+
value: string;
|
|
4062
|
+
label: string;
|
|
4063
|
+
}[];
|
|
4064
|
+
description?: string | undefined;
|
|
4065
|
+
}];
|
|
4066
|
+
uniqueByField?: string | undefined;
|
|
3975
4067
|
} | {
|
|
3976
4068
|
type: "range";
|
|
3977
4069
|
param: string;
|
|
@@ -4061,6 +4153,29 @@ declare const GPT_4_0613Schema: {
|
|
|
4061
4153
|
title: string;
|
|
4062
4154
|
description: string;
|
|
4063
4155
|
objectSchema?: any;
|
|
4156
|
+
} | {
|
|
4157
|
+
type: "paired-select";
|
|
4158
|
+
param: string;
|
|
4159
|
+
title: string;
|
|
4160
|
+
description: string;
|
|
4161
|
+
fields: [{
|
|
4162
|
+
label: string;
|
|
4163
|
+
key: string;
|
|
4164
|
+
choices: {
|
|
4165
|
+
value: string;
|
|
4166
|
+
label: string;
|
|
4167
|
+
}[];
|
|
4168
|
+
description?: string | undefined;
|
|
4169
|
+
}, {
|
|
4170
|
+
label: string;
|
|
4171
|
+
key: string;
|
|
4172
|
+
choices: {
|
|
4173
|
+
value: string;
|
|
4174
|
+
label: string;
|
|
4175
|
+
}[];
|
|
4176
|
+
description?: string | undefined;
|
|
4177
|
+
}];
|
|
4178
|
+
uniqueByField?: string | undefined;
|
|
4064
4179
|
} | {
|
|
4065
4180
|
type: "range";
|
|
4066
4181
|
param: string;
|
|
@@ -4150,6 +4265,29 @@ declare const GPT_4_1106_PreviewSchema: {
|
|
|
4150
4265
|
title: string;
|
|
4151
4266
|
description: string;
|
|
4152
4267
|
objectSchema?: any;
|
|
4268
|
+
} | {
|
|
4269
|
+
type: "paired-select";
|
|
4270
|
+
param: string;
|
|
4271
|
+
title: string;
|
|
4272
|
+
description: string;
|
|
4273
|
+
fields: [{
|
|
4274
|
+
label: string;
|
|
4275
|
+
key: string;
|
|
4276
|
+
choices: {
|
|
4277
|
+
value: string;
|
|
4278
|
+
label: string;
|
|
4279
|
+
}[];
|
|
4280
|
+
description?: string | undefined;
|
|
4281
|
+
}, {
|
|
4282
|
+
label: string;
|
|
4283
|
+
key: string;
|
|
4284
|
+
choices: {
|
|
4285
|
+
value: string;
|
|
4286
|
+
label: string;
|
|
4287
|
+
}[];
|
|
4288
|
+
description?: string | undefined;
|
|
4289
|
+
}];
|
|
4290
|
+
uniqueByField?: string | undefined;
|
|
4153
4291
|
} | {
|
|
4154
4292
|
type: "range";
|
|
4155
4293
|
param: string;
|
|
@@ -4239,6 +4377,29 @@ declare const GPT_4_1Schema: {
|
|
|
4239
4377
|
title: string;
|
|
4240
4378
|
description: string;
|
|
4241
4379
|
objectSchema?: any;
|
|
4380
|
+
} | {
|
|
4381
|
+
type: "paired-select";
|
|
4382
|
+
param: string;
|
|
4383
|
+
title: string;
|
|
4384
|
+
description: string;
|
|
4385
|
+
fields: [{
|
|
4386
|
+
label: string;
|
|
4387
|
+
key: string;
|
|
4388
|
+
choices: {
|
|
4389
|
+
value: string;
|
|
4390
|
+
label: string;
|
|
4391
|
+
}[];
|
|
4392
|
+
description?: string | undefined;
|
|
4393
|
+
}, {
|
|
4394
|
+
label: string;
|
|
4395
|
+
key: string;
|
|
4396
|
+
choices: {
|
|
4397
|
+
value: string;
|
|
4398
|
+
label: string;
|
|
4399
|
+
}[];
|
|
4400
|
+
description?: string | undefined;
|
|
4401
|
+
}];
|
|
4402
|
+
uniqueByField?: string | undefined;
|
|
4242
4403
|
} | {
|
|
4243
4404
|
type: "range";
|
|
4244
4405
|
param: string;
|
|
@@ -4328,6 +4489,29 @@ declare const GPT_4_1_MiniSchema: {
|
|
|
4328
4489
|
title: string;
|
|
4329
4490
|
description: string;
|
|
4330
4491
|
objectSchema?: any;
|
|
4492
|
+
} | {
|
|
4493
|
+
type: "paired-select";
|
|
4494
|
+
param: string;
|
|
4495
|
+
title: string;
|
|
4496
|
+
description: string;
|
|
4497
|
+
fields: [{
|
|
4498
|
+
label: string;
|
|
4499
|
+
key: string;
|
|
4500
|
+
choices: {
|
|
4501
|
+
value: string;
|
|
4502
|
+
label: string;
|
|
4503
|
+
}[];
|
|
4504
|
+
description?: string | undefined;
|
|
4505
|
+
}, {
|
|
4506
|
+
label: string;
|
|
4507
|
+
key: string;
|
|
4508
|
+
choices: {
|
|
4509
|
+
value: string;
|
|
4510
|
+
label: string;
|
|
4511
|
+
}[];
|
|
4512
|
+
description?: string | undefined;
|
|
4513
|
+
}];
|
|
4514
|
+
uniqueByField?: string | undefined;
|
|
4331
4515
|
} | {
|
|
4332
4516
|
type: "range";
|
|
4333
4517
|
param: string;
|
|
@@ -4417,6 +4601,29 @@ declare const GPT_4_1_NanoSchema: {
|
|
|
4417
4601
|
title: string;
|
|
4418
4602
|
description: string;
|
|
4419
4603
|
objectSchema?: any;
|
|
4604
|
+
} | {
|
|
4605
|
+
type: "paired-select";
|
|
4606
|
+
param: string;
|
|
4607
|
+
title: string;
|
|
4608
|
+
description: string;
|
|
4609
|
+
fields: [{
|
|
4610
|
+
label: string;
|
|
4611
|
+
key: string;
|
|
4612
|
+
choices: {
|
|
4613
|
+
value: string;
|
|
4614
|
+
label: string;
|
|
4615
|
+
}[];
|
|
4616
|
+
description?: string | undefined;
|
|
4617
|
+
}, {
|
|
4618
|
+
label: string;
|
|
4619
|
+
key: string;
|
|
4620
|
+
choices: {
|
|
4621
|
+
value: string;
|
|
4622
|
+
label: string;
|
|
4623
|
+
}[];
|
|
4624
|
+
description?: string | undefined;
|
|
4625
|
+
}];
|
|
4626
|
+
uniqueByField?: string | undefined;
|
|
4420
4627
|
} | {
|
|
4421
4628
|
type: "range";
|
|
4422
4629
|
param: string;
|
|
@@ -4485,6 +4692,118 @@ declare class GPT_4_1_Nano extends BaseChatModel {
|
|
|
4485
4692
|
constructor(options: GPT_4_1_NanoOptionsType);
|
|
4486
4693
|
}
|
|
4487
4694
|
|
|
4695
|
+
declare const GPT_5_1Literal = "gpt-5.1";
|
|
4696
|
+
declare const GPT_5_1Schema: {
|
|
4697
|
+
description: string;
|
|
4698
|
+
name: string;
|
|
4699
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
4700
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
|
|
4701
|
+
maxInputTokens: number;
|
|
4702
|
+
maxOutputTokens: number;
|
|
4703
|
+
config: {
|
|
4704
|
+
def: Record<string, {
|
|
4705
|
+
type: "multi-string";
|
|
4706
|
+
param: string;
|
|
4707
|
+
title: string;
|
|
4708
|
+
description: string;
|
|
4709
|
+
max: number;
|
|
4710
|
+
} | {
|
|
4711
|
+
type: "object-schema";
|
|
4712
|
+
param: string;
|
|
4713
|
+
title: string;
|
|
4714
|
+
description: string;
|
|
4715
|
+
objectSchema?: any;
|
|
4716
|
+
} | {
|
|
4717
|
+
type: "paired-select";
|
|
4718
|
+
param: string;
|
|
4719
|
+
title: string;
|
|
4720
|
+
description: string;
|
|
4721
|
+
fields: [{
|
|
4722
|
+
label: string;
|
|
4723
|
+
key: string;
|
|
4724
|
+
choices: {
|
|
4725
|
+
value: string;
|
|
4726
|
+
label: string;
|
|
4727
|
+
}[];
|
|
4728
|
+
description?: string | undefined;
|
|
4729
|
+
}, {
|
|
4730
|
+
label: string;
|
|
4731
|
+
key: string;
|
|
4732
|
+
choices: {
|
|
4733
|
+
value: string;
|
|
4734
|
+
label: string;
|
|
4735
|
+
}[];
|
|
4736
|
+
description?: string | undefined;
|
|
4737
|
+
}];
|
|
4738
|
+
uniqueByField?: string | undefined;
|
|
4739
|
+
} | {
|
|
4740
|
+
type: "range";
|
|
4741
|
+
param: string;
|
|
4742
|
+
title: string;
|
|
4743
|
+
description: string;
|
|
4744
|
+
max: number;
|
|
4745
|
+
default: number;
|
|
4746
|
+
min: number;
|
|
4747
|
+
step: number;
|
|
4748
|
+
} | {
|
|
4749
|
+
type: "select-boolean";
|
|
4750
|
+
param: string;
|
|
4751
|
+
title: string;
|
|
4752
|
+
description: string;
|
|
4753
|
+
default: boolean | null;
|
|
4754
|
+
} | {
|
|
4755
|
+
type: "select-string";
|
|
4756
|
+
param: string;
|
|
4757
|
+
title: string;
|
|
4758
|
+
description: string;
|
|
4759
|
+
default: string;
|
|
4760
|
+
choices: string[];
|
|
4761
|
+
}>;
|
|
4762
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
4763
|
+
};
|
|
4764
|
+
price: {
|
|
4765
|
+
modelName: string;
|
|
4766
|
+
currency: string;
|
|
4767
|
+
tokenRanges: {
|
|
4768
|
+
minTokens: number;
|
|
4769
|
+
prices: {
|
|
4770
|
+
base: {
|
|
4771
|
+
inputPricePerMillion: number;
|
|
4772
|
+
outputPricePerMillion: number;
|
|
4773
|
+
};
|
|
4774
|
+
};
|
|
4775
|
+
maxTokens?: number | null | undefined;
|
|
4776
|
+
}[];
|
|
4777
|
+
};
|
|
4778
|
+
maxReasoningTokens?: number | undefined;
|
|
4779
|
+
};
|
|
4780
|
+
declare const GPT_5_1Options: z.ZodObject<{
|
|
4781
|
+
modelName: z.ZodString;
|
|
4782
|
+
apiKey: z.ZodString;
|
|
4783
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
4784
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
4785
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
4786
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
4787
|
+
}, "strip", z.ZodTypeAny, {
|
|
4788
|
+
modelName: string;
|
|
4789
|
+
apiKey: string;
|
|
4790
|
+
baseUrl?: string | undefined;
|
|
4791
|
+
completeChatUrl?: string | undefined;
|
|
4792
|
+
streamChatUrl?: string | undefined;
|
|
4793
|
+
organization?: string | undefined;
|
|
4794
|
+
}, {
|
|
4795
|
+
modelName: string;
|
|
4796
|
+
apiKey: string;
|
|
4797
|
+
baseUrl?: string | undefined;
|
|
4798
|
+
completeChatUrl?: string | undefined;
|
|
4799
|
+
streamChatUrl?: string | undefined;
|
|
4800
|
+
organization?: string | undefined;
|
|
4801
|
+
}>;
|
|
4802
|
+
type GPT_5_1OptionsType = z.infer<typeof GPT_5_1Options>;
|
|
4803
|
+
declare class GPT_5_1 extends BaseChatModel {
|
|
4804
|
+
constructor(options: GPT_5_1OptionsType);
|
|
4805
|
+
}
|
|
4806
|
+
|
|
4488
4807
|
declare const GPT_5Literal = "gpt-5";
|
|
4489
4808
|
declare const GPT_5Schema: {
|
|
4490
4809
|
description: string;
|
|
@@ -4506,6 +4825,29 @@ declare const GPT_5Schema: {
|
|
|
4506
4825
|
title: string;
|
|
4507
4826
|
description: string;
|
|
4508
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;
|
|
4509
4851
|
} | {
|
|
4510
4852
|
type: "range";
|
|
4511
4853
|
param: string;
|
|
@@ -4595,6 +4937,29 @@ declare const GPT_5_MiniSchema: {
|
|
|
4595
4937
|
title: string;
|
|
4596
4938
|
description: string;
|
|
4597
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;
|
|
4598
4963
|
} | {
|
|
4599
4964
|
type: "range";
|
|
4600
4965
|
param: string;
|
|
@@ -4684,6 +5049,29 @@ declare const GPT_5_NanoSchema: {
|
|
|
4684
5049
|
title: string;
|
|
4685
5050
|
description: string;
|
|
4686
5051
|
objectSchema?: any;
|
|
5052
|
+
} | {
|
|
5053
|
+
type: "paired-select";
|
|
5054
|
+
param: string;
|
|
5055
|
+
title: string;
|
|
5056
|
+
description: string;
|
|
5057
|
+
fields: [{
|
|
5058
|
+
label: string;
|
|
5059
|
+
key: string;
|
|
5060
|
+
choices: {
|
|
5061
|
+
value: string;
|
|
5062
|
+
label: string;
|
|
5063
|
+
}[];
|
|
5064
|
+
description?: string | undefined;
|
|
5065
|
+
}, {
|
|
5066
|
+
label: string;
|
|
5067
|
+
key: string;
|
|
5068
|
+
choices: {
|
|
5069
|
+
value: string;
|
|
5070
|
+
label: string;
|
|
5071
|
+
}[];
|
|
5072
|
+
description?: string | undefined;
|
|
5073
|
+
}];
|
|
5074
|
+
uniqueByField?: string | undefined;
|
|
4687
5075
|
} | {
|
|
4688
5076
|
type: "range";
|
|
4689
5077
|
param: string;
|
|
@@ -4773,6 +5161,29 @@ declare const GPT_5_ChatLatestSchema: {
|
|
|
4773
5161
|
title: string;
|
|
4774
5162
|
description: string;
|
|
4775
5163
|
objectSchema?: any;
|
|
5164
|
+
} | {
|
|
5165
|
+
type: "paired-select";
|
|
5166
|
+
param: string;
|
|
5167
|
+
title: string;
|
|
5168
|
+
description: string;
|
|
5169
|
+
fields: [{
|
|
5170
|
+
label: string;
|
|
5171
|
+
key: string;
|
|
5172
|
+
choices: {
|
|
5173
|
+
value: string;
|
|
5174
|
+
label: string;
|
|
5175
|
+
}[];
|
|
5176
|
+
description?: string | undefined;
|
|
5177
|
+
}, {
|
|
5178
|
+
label: string;
|
|
5179
|
+
key: string;
|
|
5180
|
+
choices: {
|
|
5181
|
+
value: string;
|
|
5182
|
+
label: string;
|
|
5183
|
+
}[];
|
|
5184
|
+
description?: string | undefined;
|
|
5185
|
+
}];
|
|
5186
|
+
uniqueByField?: string | undefined;
|
|
4776
5187
|
} | {
|
|
4777
5188
|
type: "range";
|
|
4778
5189
|
param: string;
|
|
@@ -4862,6 +5273,29 @@ declare const GPT_4_Turbo_2024_04_09Schema: {
|
|
|
4862
5273
|
title: string;
|
|
4863
5274
|
description: string;
|
|
4864
5275
|
objectSchema?: any;
|
|
5276
|
+
} | {
|
|
5277
|
+
type: "paired-select";
|
|
5278
|
+
param: string;
|
|
5279
|
+
title: string;
|
|
5280
|
+
description: string;
|
|
5281
|
+
fields: [{
|
|
5282
|
+
label: string;
|
|
5283
|
+
key: string;
|
|
5284
|
+
choices: {
|
|
5285
|
+
value: string;
|
|
5286
|
+
label: string;
|
|
5287
|
+
}[];
|
|
5288
|
+
description?: string | undefined;
|
|
5289
|
+
}, {
|
|
5290
|
+
label: string;
|
|
5291
|
+
key: string;
|
|
5292
|
+
choices: {
|
|
5293
|
+
value: string;
|
|
5294
|
+
label: string;
|
|
5295
|
+
}[];
|
|
5296
|
+
description?: string | undefined;
|
|
5297
|
+
}];
|
|
5298
|
+
uniqueByField?: string | undefined;
|
|
4865
5299
|
} | {
|
|
4866
5300
|
type: "range";
|
|
4867
5301
|
param: string;
|
|
@@ -4951,6 +5385,29 @@ declare const GPT_4_Turbo_PreviewSchema: {
|
|
|
4951
5385
|
title: string;
|
|
4952
5386
|
description: string;
|
|
4953
5387
|
objectSchema?: any;
|
|
5388
|
+
} | {
|
|
5389
|
+
type: "paired-select";
|
|
5390
|
+
param: string;
|
|
5391
|
+
title: string;
|
|
5392
|
+
description: string;
|
|
5393
|
+
fields: [{
|
|
5394
|
+
label: string;
|
|
5395
|
+
key: string;
|
|
5396
|
+
choices: {
|
|
5397
|
+
value: string;
|
|
5398
|
+
label: string;
|
|
5399
|
+
}[];
|
|
5400
|
+
description?: string | undefined;
|
|
5401
|
+
}, {
|
|
5402
|
+
label: string;
|
|
5403
|
+
key: string;
|
|
5404
|
+
choices: {
|
|
5405
|
+
value: string;
|
|
5406
|
+
label: string;
|
|
5407
|
+
}[];
|
|
5408
|
+
description?: string | undefined;
|
|
5409
|
+
}];
|
|
5410
|
+
uniqueByField?: string | undefined;
|
|
4954
5411
|
} | {
|
|
4955
5412
|
type: "range";
|
|
4956
5413
|
param: string;
|
|
@@ -5040,6 +5497,29 @@ declare const GPT_4_TurboSchema: {
|
|
|
5040
5497
|
title: string;
|
|
5041
5498
|
description: string;
|
|
5042
5499
|
objectSchema?: any;
|
|
5500
|
+
} | {
|
|
5501
|
+
type: "paired-select";
|
|
5502
|
+
param: string;
|
|
5503
|
+
title: string;
|
|
5504
|
+
description: string;
|
|
5505
|
+
fields: [{
|
|
5506
|
+
label: string;
|
|
5507
|
+
key: string;
|
|
5508
|
+
choices: {
|
|
5509
|
+
value: string;
|
|
5510
|
+
label: string;
|
|
5511
|
+
}[];
|
|
5512
|
+
description?: string | undefined;
|
|
5513
|
+
}, {
|
|
5514
|
+
label: string;
|
|
5515
|
+
key: string;
|
|
5516
|
+
choices: {
|
|
5517
|
+
value: string;
|
|
5518
|
+
label: string;
|
|
5519
|
+
}[];
|
|
5520
|
+
description?: string | undefined;
|
|
5521
|
+
}];
|
|
5522
|
+
uniqueByField?: string | undefined;
|
|
5043
5523
|
} | {
|
|
5044
5524
|
type: "range";
|
|
5045
5525
|
param: string;
|
|
@@ -5129,6 +5609,29 @@ declare const GPT_4Schema: {
|
|
|
5129
5609
|
title: string;
|
|
5130
5610
|
description: string;
|
|
5131
5611
|
objectSchema?: any;
|
|
5612
|
+
} | {
|
|
5613
|
+
type: "paired-select";
|
|
5614
|
+
param: string;
|
|
5615
|
+
title: string;
|
|
5616
|
+
description: string;
|
|
5617
|
+
fields: [{
|
|
5618
|
+
label: string;
|
|
5619
|
+
key: string;
|
|
5620
|
+
choices: {
|
|
5621
|
+
value: string;
|
|
5622
|
+
label: string;
|
|
5623
|
+
}[];
|
|
5624
|
+
description?: string | undefined;
|
|
5625
|
+
}, {
|
|
5626
|
+
label: string;
|
|
5627
|
+
key: string;
|
|
5628
|
+
choices: {
|
|
5629
|
+
value: string;
|
|
5630
|
+
label: string;
|
|
5631
|
+
}[];
|
|
5632
|
+
description?: string | undefined;
|
|
5633
|
+
}];
|
|
5634
|
+
uniqueByField?: string | undefined;
|
|
5132
5635
|
} | {
|
|
5133
5636
|
type: "range";
|
|
5134
5637
|
param: string;
|
|
@@ -5218,6 +5721,29 @@ declare const GPT_4o_2024_05_13Schema: {
|
|
|
5218
5721
|
title: string;
|
|
5219
5722
|
description: string;
|
|
5220
5723
|
objectSchema?: any;
|
|
5724
|
+
} | {
|
|
5725
|
+
type: "paired-select";
|
|
5726
|
+
param: string;
|
|
5727
|
+
title: string;
|
|
5728
|
+
description: string;
|
|
5729
|
+
fields: [{
|
|
5730
|
+
label: string;
|
|
5731
|
+
key: string;
|
|
5732
|
+
choices: {
|
|
5733
|
+
value: string;
|
|
5734
|
+
label: string;
|
|
5735
|
+
}[];
|
|
5736
|
+
description?: string | undefined;
|
|
5737
|
+
}, {
|
|
5738
|
+
label: string;
|
|
5739
|
+
key: string;
|
|
5740
|
+
choices: {
|
|
5741
|
+
value: string;
|
|
5742
|
+
label: string;
|
|
5743
|
+
}[];
|
|
5744
|
+
description?: string | undefined;
|
|
5745
|
+
}];
|
|
5746
|
+
uniqueByField?: string | undefined;
|
|
5221
5747
|
} | {
|
|
5222
5748
|
type: "range";
|
|
5223
5749
|
param: string;
|
|
@@ -5307,6 +5833,29 @@ declare const GPT_4o_2024_08_06Schema: {
|
|
|
5307
5833
|
title: string;
|
|
5308
5834
|
description: string;
|
|
5309
5835
|
objectSchema?: any;
|
|
5836
|
+
} | {
|
|
5837
|
+
type: "paired-select";
|
|
5838
|
+
param: string;
|
|
5839
|
+
title: string;
|
|
5840
|
+
description: string;
|
|
5841
|
+
fields: [{
|
|
5842
|
+
label: string;
|
|
5843
|
+
key: string;
|
|
5844
|
+
choices: {
|
|
5845
|
+
value: string;
|
|
5846
|
+
label: string;
|
|
5847
|
+
}[];
|
|
5848
|
+
description?: string | undefined;
|
|
5849
|
+
}, {
|
|
5850
|
+
label: string;
|
|
5851
|
+
key: string;
|
|
5852
|
+
choices: {
|
|
5853
|
+
value: string;
|
|
5854
|
+
label: string;
|
|
5855
|
+
}[];
|
|
5856
|
+
description?: string | undefined;
|
|
5857
|
+
}];
|
|
5858
|
+
uniqueByField?: string | undefined;
|
|
5310
5859
|
} | {
|
|
5311
5860
|
type: "range";
|
|
5312
5861
|
param: string;
|
|
@@ -5396,6 +5945,29 @@ declare const GPT_4o_Mini_2024_07_18Schema: {
|
|
|
5396
5945
|
title: string;
|
|
5397
5946
|
description: string;
|
|
5398
5947
|
objectSchema?: any;
|
|
5948
|
+
} | {
|
|
5949
|
+
type: "paired-select";
|
|
5950
|
+
param: string;
|
|
5951
|
+
title: string;
|
|
5952
|
+
description: string;
|
|
5953
|
+
fields: [{
|
|
5954
|
+
label: string;
|
|
5955
|
+
key: string;
|
|
5956
|
+
choices: {
|
|
5957
|
+
value: string;
|
|
5958
|
+
label: string;
|
|
5959
|
+
}[];
|
|
5960
|
+
description?: string | undefined;
|
|
5961
|
+
}, {
|
|
5962
|
+
label: string;
|
|
5963
|
+
key: string;
|
|
5964
|
+
choices: {
|
|
5965
|
+
value: string;
|
|
5966
|
+
label: string;
|
|
5967
|
+
}[];
|
|
5968
|
+
description?: string | undefined;
|
|
5969
|
+
}];
|
|
5970
|
+
uniqueByField?: string | undefined;
|
|
5399
5971
|
} | {
|
|
5400
5972
|
type: "range";
|
|
5401
5973
|
param: string;
|
|
@@ -5485,6 +6057,29 @@ declare const GPT_4o_MiniSchema: {
|
|
|
5485
6057
|
title: string;
|
|
5486
6058
|
description: string;
|
|
5487
6059
|
objectSchema?: any;
|
|
6060
|
+
} | {
|
|
6061
|
+
type: "paired-select";
|
|
6062
|
+
param: string;
|
|
6063
|
+
title: string;
|
|
6064
|
+
description: string;
|
|
6065
|
+
fields: [{
|
|
6066
|
+
label: string;
|
|
6067
|
+
key: string;
|
|
6068
|
+
choices: {
|
|
6069
|
+
value: string;
|
|
6070
|
+
label: string;
|
|
6071
|
+
}[];
|
|
6072
|
+
description?: string | undefined;
|
|
6073
|
+
}, {
|
|
6074
|
+
label: string;
|
|
6075
|
+
key: string;
|
|
6076
|
+
choices: {
|
|
6077
|
+
value: string;
|
|
6078
|
+
label: string;
|
|
6079
|
+
}[];
|
|
6080
|
+
description?: string | undefined;
|
|
6081
|
+
}];
|
|
6082
|
+
uniqueByField?: string | undefined;
|
|
5488
6083
|
} | {
|
|
5489
6084
|
type: "range";
|
|
5490
6085
|
param: string;
|
|
@@ -5574,6 +6169,29 @@ declare const GPT_4oSchema: {
|
|
|
5574
6169
|
title: string;
|
|
5575
6170
|
description: string;
|
|
5576
6171
|
objectSchema?: any;
|
|
6172
|
+
} | {
|
|
6173
|
+
type: "paired-select";
|
|
6174
|
+
param: string;
|
|
6175
|
+
title: string;
|
|
6176
|
+
description: string;
|
|
6177
|
+
fields: [{
|
|
6178
|
+
label: string;
|
|
6179
|
+
key: string;
|
|
6180
|
+
choices: {
|
|
6181
|
+
value: string;
|
|
6182
|
+
label: string;
|
|
6183
|
+
}[];
|
|
6184
|
+
description?: string | undefined;
|
|
6185
|
+
}, {
|
|
6186
|
+
label: string;
|
|
6187
|
+
key: string;
|
|
6188
|
+
choices: {
|
|
6189
|
+
value: string;
|
|
6190
|
+
label: string;
|
|
6191
|
+
}[];
|
|
6192
|
+
description?: string | undefined;
|
|
6193
|
+
}];
|
|
6194
|
+
uniqueByField?: string | undefined;
|
|
5577
6195
|
} | {
|
|
5578
6196
|
type: "range";
|
|
5579
6197
|
param: string;
|
|
@@ -5663,6 +6281,29 @@ declare const O1_2024_12_17Schema: {
|
|
|
5663
6281
|
title: string;
|
|
5664
6282
|
description: string;
|
|
5665
6283
|
objectSchema?: any;
|
|
6284
|
+
} | {
|
|
6285
|
+
type: "paired-select";
|
|
6286
|
+
param: string;
|
|
6287
|
+
title: string;
|
|
6288
|
+
description: string;
|
|
6289
|
+
fields: [{
|
|
6290
|
+
label: string;
|
|
6291
|
+
key: string;
|
|
6292
|
+
choices: {
|
|
6293
|
+
value: string;
|
|
6294
|
+
label: string;
|
|
6295
|
+
}[];
|
|
6296
|
+
description?: string | undefined;
|
|
6297
|
+
}, {
|
|
6298
|
+
label: string;
|
|
6299
|
+
key: string;
|
|
6300
|
+
choices: {
|
|
6301
|
+
value: string;
|
|
6302
|
+
label: string;
|
|
6303
|
+
}[];
|
|
6304
|
+
description?: string | undefined;
|
|
6305
|
+
}];
|
|
6306
|
+
uniqueByField?: string | undefined;
|
|
5666
6307
|
} | {
|
|
5667
6308
|
type: "range";
|
|
5668
6309
|
param: string;
|
|
@@ -5752,6 +6393,29 @@ declare const O1Schema: {
|
|
|
5752
6393
|
title: string;
|
|
5753
6394
|
description: string;
|
|
5754
6395
|
objectSchema?: any;
|
|
6396
|
+
} | {
|
|
6397
|
+
type: "paired-select";
|
|
6398
|
+
param: string;
|
|
6399
|
+
title: string;
|
|
6400
|
+
description: string;
|
|
6401
|
+
fields: [{
|
|
6402
|
+
label: string;
|
|
6403
|
+
key: string;
|
|
6404
|
+
choices: {
|
|
6405
|
+
value: string;
|
|
6406
|
+
label: string;
|
|
6407
|
+
}[];
|
|
6408
|
+
description?: string | undefined;
|
|
6409
|
+
}, {
|
|
6410
|
+
label: string;
|
|
6411
|
+
key: string;
|
|
6412
|
+
choices: {
|
|
6413
|
+
value: string;
|
|
6414
|
+
label: string;
|
|
6415
|
+
}[];
|
|
6416
|
+
description?: string | undefined;
|
|
6417
|
+
}];
|
|
6418
|
+
uniqueByField?: string | undefined;
|
|
5755
6419
|
} | {
|
|
5756
6420
|
type: "range";
|
|
5757
6421
|
param: string;
|
|
@@ -5841,6 +6505,29 @@ declare const O3_2025_04_16Schema: {
|
|
|
5841
6505
|
title: string;
|
|
5842
6506
|
description: string;
|
|
5843
6507
|
objectSchema?: any;
|
|
6508
|
+
} | {
|
|
6509
|
+
type: "paired-select";
|
|
6510
|
+
param: string;
|
|
6511
|
+
title: string;
|
|
6512
|
+
description: string;
|
|
6513
|
+
fields: [{
|
|
6514
|
+
label: string;
|
|
6515
|
+
key: string;
|
|
6516
|
+
choices: {
|
|
6517
|
+
value: string;
|
|
6518
|
+
label: string;
|
|
6519
|
+
}[];
|
|
6520
|
+
description?: string | undefined;
|
|
6521
|
+
}, {
|
|
6522
|
+
label: string;
|
|
6523
|
+
key: string;
|
|
6524
|
+
choices: {
|
|
6525
|
+
value: string;
|
|
6526
|
+
label: string;
|
|
6527
|
+
}[];
|
|
6528
|
+
description?: string | undefined;
|
|
6529
|
+
}];
|
|
6530
|
+
uniqueByField?: string | undefined;
|
|
5844
6531
|
} | {
|
|
5845
6532
|
type: "range";
|
|
5846
6533
|
param: string;
|
|
@@ -5930,6 +6617,29 @@ declare const O3Schema: {
|
|
|
5930
6617
|
title: string;
|
|
5931
6618
|
description: string;
|
|
5932
6619
|
objectSchema?: any;
|
|
6620
|
+
} | {
|
|
6621
|
+
type: "paired-select";
|
|
6622
|
+
param: string;
|
|
6623
|
+
title: string;
|
|
6624
|
+
description: string;
|
|
6625
|
+
fields: [{
|
|
6626
|
+
label: string;
|
|
6627
|
+
key: string;
|
|
6628
|
+
choices: {
|
|
6629
|
+
value: string;
|
|
6630
|
+
label: string;
|
|
6631
|
+
}[];
|
|
6632
|
+
description?: string | undefined;
|
|
6633
|
+
}, {
|
|
6634
|
+
label: string;
|
|
6635
|
+
key: string;
|
|
6636
|
+
choices: {
|
|
6637
|
+
value: string;
|
|
6638
|
+
label: string;
|
|
6639
|
+
}[];
|
|
6640
|
+
description?: string | undefined;
|
|
6641
|
+
}];
|
|
6642
|
+
uniqueByField?: string | undefined;
|
|
5933
6643
|
} | {
|
|
5934
6644
|
type: "range";
|
|
5935
6645
|
param: string;
|
|
@@ -6019,6 +6729,29 @@ declare const O3MiniSchema: {
|
|
|
6019
6729
|
title: string;
|
|
6020
6730
|
description: string;
|
|
6021
6731
|
objectSchema?: any;
|
|
6732
|
+
} | {
|
|
6733
|
+
type: "paired-select";
|
|
6734
|
+
param: string;
|
|
6735
|
+
title: string;
|
|
6736
|
+
description: string;
|
|
6737
|
+
fields: [{
|
|
6738
|
+
label: string;
|
|
6739
|
+
key: string;
|
|
6740
|
+
choices: {
|
|
6741
|
+
value: string;
|
|
6742
|
+
label: string;
|
|
6743
|
+
}[];
|
|
6744
|
+
description?: string | undefined;
|
|
6745
|
+
}, {
|
|
6746
|
+
label: string;
|
|
6747
|
+
key: string;
|
|
6748
|
+
choices: {
|
|
6749
|
+
value: string;
|
|
6750
|
+
label: string;
|
|
6751
|
+
}[];
|
|
6752
|
+
description?: string | undefined;
|
|
6753
|
+
}];
|
|
6754
|
+
uniqueByField?: string | undefined;
|
|
6022
6755
|
} | {
|
|
6023
6756
|
type: "range";
|
|
6024
6757
|
param: string;
|
|
@@ -6108,6 +6841,29 @@ declare const O3Mini2025_01_31Schema: {
|
|
|
6108
6841
|
title: string;
|
|
6109
6842
|
description: string;
|
|
6110
6843
|
objectSchema?: any;
|
|
6844
|
+
} | {
|
|
6845
|
+
type: "paired-select";
|
|
6846
|
+
param: string;
|
|
6847
|
+
title: string;
|
|
6848
|
+
description: string;
|
|
6849
|
+
fields: [{
|
|
6850
|
+
label: string;
|
|
6851
|
+
key: string;
|
|
6852
|
+
choices: {
|
|
6853
|
+
value: string;
|
|
6854
|
+
label: string;
|
|
6855
|
+
}[];
|
|
6856
|
+
description?: string | undefined;
|
|
6857
|
+
}, {
|
|
6858
|
+
label: string;
|
|
6859
|
+
key: string;
|
|
6860
|
+
choices: {
|
|
6861
|
+
value: string;
|
|
6862
|
+
label: string;
|
|
6863
|
+
}[];
|
|
6864
|
+
description?: string | undefined;
|
|
6865
|
+
}];
|
|
6866
|
+
uniqueByField?: string | undefined;
|
|
6111
6867
|
} | {
|
|
6112
6868
|
type: "range";
|
|
6113
6869
|
param: string;
|
|
@@ -6197,6 +6953,29 @@ declare const O4_Mini_2025_04_16Schema: {
|
|
|
6197
6953
|
title: string;
|
|
6198
6954
|
description: string;
|
|
6199
6955
|
objectSchema?: any;
|
|
6956
|
+
} | {
|
|
6957
|
+
type: "paired-select";
|
|
6958
|
+
param: string;
|
|
6959
|
+
title: string;
|
|
6960
|
+
description: string;
|
|
6961
|
+
fields: [{
|
|
6962
|
+
label: string;
|
|
6963
|
+
key: string;
|
|
6964
|
+
choices: {
|
|
6965
|
+
value: string;
|
|
6966
|
+
label: string;
|
|
6967
|
+
}[];
|
|
6968
|
+
description?: string | undefined;
|
|
6969
|
+
}, {
|
|
6970
|
+
label: string;
|
|
6971
|
+
key: string;
|
|
6972
|
+
choices: {
|
|
6973
|
+
value: string;
|
|
6974
|
+
label: string;
|
|
6975
|
+
}[];
|
|
6976
|
+
description?: string | undefined;
|
|
6977
|
+
}];
|
|
6978
|
+
uniqueByField?: string | undefined;
|
|
6200
6979
|
} | {
|
|
6201
6980
|
type: "range";
|
|
6202
6981
|
param: string;
|
|
@@ -6286,6 +7065,29 @@ declare const O4_MiniSchema: {
|
|
|
6286
7065
|
title: string;
|
|
6287
7066
|
description: string;
|
|
6288
7067
|
objectSchema?: any;
|
|
7068
|
+
} | {
|
|
7069
|
+
type: "paired-select";
|
|
7070
|
+
param: string;
|
|
7071
|
+
title: string;
|
|
7072
|
+
description: string;
|
|
7073
|
+
fields: [{
|
|
7074
|
+
label: string;
|
|
7075
|
+
key: string;
|
|
7076
|
+
choices: {
|
|
7077
|
+
value: string;
|
|
7078
|
+
label: string;
|
|
7079
|
+
}[];
|
|
7080
|
+
description?: string | undefined;
|
|
7081
|
+
}, {
|
|
7082
|
+
label: string;
|
|
7083
|
+
key: string;
|
|
7084
|
+
choices: {
|
|
7085
|
+
value: string;
|
|
7086
|
+
label: string;
|
|
7087
|
+
}[];
|
|
7088
|
+
description?: string | undefined;
|
|
7089
|
+
}];
|
|
7090
|
+
uniqueByField?: string | undefined;
|
|
6289
7091
|
} | {
|
|
6290
7092
|
type: "range";
|
|
6291
7093
|
param: string;
|
|
@@ -6495,6 +7297,29 @@ declare const Text_Embedding_Ada002Schema: {
|
|
|
6495
7297
|
title: string;
|
|
6496
7298
|
description: string;
|
|
6497
7299
|
objectSchema?: any;
|
|
7300
|
+
} | {
|
|
7301
|
+
type: "paired-select";
|
|
7302
|
+
param: string;
|
|
7303
|
+
title: string;
|
|
7304
|
+
description: string;
|
|
7305
|
+
fields: [{
|
|
7306
|
+
label: string;
|
|
7307
|
+
key: string;
|
|
7308
|
+
choices: {
|
|
7309
|
+
value: string;
|
|
7310
|
+
label: string;
|
|
7311
|
+
}[];
|
|
7312
|
+
description?: string | undefined;
|
|
7313
|
+
}, {
|
|
7314
|
+
label: string;
|
|
7315
|
+
key: string;
|
|
7316
|
+
choices: {
|
|
7317
|
+
value: string;
|
|
7318
|
+
label: string;
|
|
7319
|
+
}[];
|
|
7320
|
+
description?: string | undefined;
|
|
7321
|
+
}];
|
|
7322
|
+
uniqueByField?: string | undefined;
|
|
6498
7323
|
} | {
|
|
6499
7324
|
type: "range";
|
|
6500
7325
|
param: string;
|
|
@@ -6562,6 +7387,29 @@ declare const Text_Embedding_3_SmallSchema: {
|
|
|
6562
7387
|
title: string;
|
|
6563
7388
|
description: string;
|
|
6564
7389
|
objectSchema?: any;
|
|
7390
|
+
} | {
|
|
7391
|
+
type: "paired-select";
|
|
7392
|
+
param: string;
|
|
7393
|
+
title: string;
|
|
7394
|
+
description: string;
|
|
7395
|
+
fields: [{
|
|
7396
|
+
label: string;
|
|
7397
|
+
key: string;
|
|
7398
|
+
choices: {
|
|
7399
|
+
value: string;
|
|
7400
|
+
label: string;
|
|
7401
|
+
}[];
|
|
7402
|
+
description?: string | undefined;
|
|
7403
|
+
}, {
|
|
7404
|
+
label: string;
|
|
7405
|
+
key: string;
|
|
7406
|
+
choices: {
|
|
7407
|
+
value: string;
|
|
7408
|
+
label: string;
|
|
7409
|
+
}[];
|
|
7410
|
+
description?: string | undefined;
|
|
7411
|
+
}];
|
|
7412
|
+
uniqueByField?: string | undefined;
|
|
6565
7413
|
} | {
|
|
6566
7414
|
type: "range";
|
|
6567
7415
|
param: string;
|
|
@@ -6629,6 +7477,29 @@ declare const Text_Embedding_3_LargeSchema: {
|
|
|
6629
7477
|
title: string;
|
|
6630
7478
|
description: string;
|
|
6631
7479
|
objectSchema?: any;
|
|
7480
|
+
} | {
|
|
7481
|
+
type: "paired-select";
|
|
7482
|
+
param: string;
|
|
7483
|
+
title: string;
|
|
7484
|
+
description: string;
|
|
7485
|
+
fields: [{
|
|
7486
|
+
label: string;
|
|
7487
|
+
key: string;
|
|
7488
|
+
choices: {
|
|
7489
|
+
value: string;
|
|
7490
|
+
label: string;
|
|
7491
|
+
}[];
|
|
7492
|
+
description?: string | undefined;
|
|
7493
|
+
}, {
|
|
7494
|
+
label: string;
|
|
7495
|
+
key: string;
|
|
7496
|
+
choices: {
|
|
7497
|
+
value: string;
|
|
7498
|
+
label: string;
|
|
7499
|
+
}[];
|
|
7500
|
+
description?: string | undefined;
|
|
7501
|
+
}];
|
|
7502
|
+
uniqueByField?: string | undefined;
|
|
6632
7503
|
} | {
|
|
6633
7504
|
type: "range";
|
|
6634
7505
|
param: string;
|
|
@@ -6691,4 +7562,4 @@ declare class OpenAI<C extends BaseChatModelOptionsType, E extends BaseEmbedding
|
|
|
6691
7562
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
6692
7563
|
}
|
|
6693
7564
|
|
|
6694
|
-
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 };
|
|
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 };
|