@llmgateway/models 1.127.0 → 1.128.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/models/alibaba.d.ts +4 -0
- package/dist/models/alibaba.js +4 -0
- package/dist/models/alibaba.js.map +1 -1
- package/dist/models/anthropic.d.ts +4 -0
- package/dist/models/anthropic.js +4 -0
- package/dist/models/anthropic.js.map +1 -1
- package/dist/models/google.d.ts +21 -0
- package/dist/models/google.js +21 -0
- package/dist/models/google.js.map +1 -1
- package/dist/models/openai.d.ts +9 -0
- package/dist/models/openai.js +9 -0
- package/dist/models/openai.js.map +1 -1
- package/dist/models.d.ts +40 -0
- package/dist/models.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -64,6 +64,8 @@ export interface ProviderModelMapping {
|
|
|
64
64
|
serviceTierMultipliers?: Partial<Record<string, number>>;
|
|
65
65
|
serviceTierRegions?: string[];
|
|
66
66
|
supportsN?: boolean;
|
|
67
|
+
supportsNStreaming?: boolean;
|
|
68
|
+
maxN?: number;
|
|
67
69
|
reasoningOutput?: "omit";
|
|
68
70
|
reasoningMaxTokens?: boolean;
|
|
69
71
|
reasoningMode?: "enabled" | "adaptive";
|
|
@@ -572,6 +574,7 @@ export declare const models: [{
|
|
|
572
574
|
readonly providers: [{
|
|
573
575
|
readonly providerId: "openai";
|
|
574
576
|
readonly externalId: "o3";
|
|
577
|
+
readonly deactivatedAt: Date;
|
|
575
578
|
readonly inputPrice: "2e-6";
|
|
576
579
|
readonly outputPrice: "8e-6";
|
|
577
580
|
readonly cachedInputPrice: "0.5e-6";
|
|
@@ -588,6 +591,7 @@ export declare const models: [{
|
|
|
588
591
|
readonly test: "skip";
|
|
589
592
|
readonly providerId: "azure";
|
|
590
593
|
readonly externalId: "o3";
|
|
594
|
+
readonly deactivatedAt: Date;
|
|
591
595
|
readonly inputPrice: "2e-6";
|
|
592
596
|
readonly outputPrice: "8e-6";
|
|
593
597
|
readonly cachedInputPrice: "0.5e-6";
|
|
@@ -834,6 +838,7 @@ export declare const models: [{
|
|
|
834
838
|
readonly providers: [{
|
|
835
839
|
readonly providerId: "openai";
|
|
836
840
|
readonly externalId: "gpt-5";
|
|
841
|
+
readonly deactivatedAt: Date;
|
|
837
842
|
readonly inputPrice: "1.25e-6";
|
|
838
843
|
readonly outputPrice: "10.0e-6";
|
|
839
844
|
readonly cachedInputPrice: "0.125e-6";
|
|
@@ -854,6 +859,7 @@ export declare const models: [{
|
|
|
854
859
|
readonly test: "skip";
|
|
855
860
|
readonly providerId: "azure";
|
|
856
861
|
readonly externalId: "gpt-5";
|
|
862
|
+
readonly deactivatedAt: Date;
|
|
857
863
|
readonly inputPrice: "1.25e-6";
|
|
858
864
|
readonly outputPrice: "10.0e-6";
|
|
859
865
|
readonly cachedInputPrice: "0.125e-6";
|
|
@@ -878,6 +884,7 @@ export declare const models: [{
|
|
|
878
884
|
readonly providers: [{
|
|
879
885
|
readonly providerId: "openai";
|
|
880
886
|
readonly externalId: "gpt-5-mini";
|
|
887
|
+
readonly deactivatedAt: Date;
|
|
881
888
|
readonly inputPrice: "0.25e-6";
|
|
882
889
|
readonly outputPrice: "2e-6";
|
|
883
890
|
readonly cachedInputPrice: "0.025e-6";
|
|
@@ -898,6 +905,7 @@ export declare const models: [{
|
|
|
898
905
|
readonly test: "skip";
|
|
899
906
|
readonly providerId: "azure";
|
|
900
907
|
readonly externalId: "gpt-5-mini";
|
|
908
|
+
readonly deactivatedAt: Date;
|
|
901
909
|
readonly inputPrice: "0.25e-6";
|
|
902
910
|
readonly outputPrice: "2e-6";
|
|
903
911
|
readonly cachedInputPrice: "0.025e-6";
|
|
@@ -922,6 +930,7 @@ export declare const models: [{
|
|
|
922
930
|
readonly providers: [{
|
|
923
931
|
readonly providerId: "openai";
|
|
924
932
|
readonly externalId: "gpt-5-nano";
|
|
933
|
+
readonly deactivatedAt: Date;
|
|
925
934
|
readonly inputPrice: "0.05e-6";
|
|
926
935
|
readonly outputPrice: "0.4e-6";
|
|
927
936
|
readonly cachedInputPrice: "0.005e-6";
|
|
@@ -942,6 +951,7 @@ export declare const models: [{
|
|
|
942
951
|
readonly test: "skip";
|
|
943
952
|
readonly providerId: "azure";
|
|
944
953
|
readonly externalId: "gpt-5-nano";
|
|
954
|
+
readonly deactivatedAt: Date;
|
|
945
955
|
readonly inputPrice: "0.05e-6";
|
|
946
956
|
readonly outputPrice: "0.4e-6";
|
|
947
957
|
readonly cachedInputPrice: "0.005e-6";
|
|
@@ -1034,6 +1044,7 @@ export declare const models: [{
|
|
|
1034
1044
|
readonly test: "skip";
|
|
1035
1045
|
readonly providerId: "openai";
|
|
1036
1046
|
readonly externalId: "gpt-5-pro";
|
|
1047
|
+
readonly deactivatedAt: Date;
|
|
1037
1048
|
readonly inputPrice: "15e-6";
|
|
1038
1049
|
readonly outputPrice: "120.0e-6";
|
|
1039
1050
|
readonly requestPrice: "0";
|
|
@@ -2190,6 +2201,7 @@ export declare const models: [{
|
|
|
2190
2201
|
readonly jsonOutputSchema: true;
|
|
2191
2202
|
readonly webSearch: true;
|
|
2192
2203
|
readonly webSearchPrice: "0.01";
|
|
2204
|
+
readonly deactivatedAt: Date;
|
|
2193
2205
|
}, {
|
|
2194
2206
|
readonly test: "skip";
|
|
2195
2207
|
readonly providerId: "aws-bedrock";
|
|
@@ -2208,6 +2220,7 @@ export declare const models: [{
|
|
|
2208
2220
|
readonly vision: false;
|
|
2209
2221
|
readonly tools: true;
|
|
2210
2222
|
readonly jsonOutputSchema: true;
|
|
2223
|
+
readonly deactivatedAt: Date;
|
|
2211
2224
|
}];
|
|
2212
2225
|
}, {
|
|
2213
2226
|
readonly id: "claude-sonnet-4-5";
|
|
@@ -2518,6 +2531,7 @@ export declare const models: [{
|
|
|
2518
2531
|
readonly jsonOutputSchema: true;
|
|
2519
2532
|
readonly webSearch: true;
|
|
2520
2533
|
readonly webSearchPrice: "0.01";
|
|
2534
|
+
readonly deactivatedAt: Date;
|
|
2521
2535
|
}, {
|
|
2522
2536
|
readonly test: "skip";
|
|
2523
2537
|
readonly providerId: "aws-bedrock";
|
|
@@ -2536,6 +2550,7 @@ export declare const models: [{
|
|
|
2536
2550
|
readonly vision: false;
|
|
2537
2551
|
readonly tools: true;
|
|
2538
2552
|
readonly jsonOutputSchema: true;
|
|
2553
|
+
readonly deactivatedAt: Date;
|
|
2539
2554
|
}];
|
|
2540
2555
|
}, {
|
|
2541
2556
|
readonly id: "claude-opus-4-1-20250805";
|
|
@@ -3036,6 +3051,9 @@ export declare const models: [{
|
|
|
3036
3051
|
readonly webSearchPrice: "0.035";
|
|
3037
3052
|
readonly jsonOutput: true;
|
|
3038
3053
|
readonly jsonOutputSchema: true;
|
|
3054
|
+
readonly supportsN: true;
|
|
3055
|
+
readonly supportsNStreaming: false;
|
|
3056
|
+
readonly maxN: 8;
|
|
3039
3057
|
}, {
|
|
3040
3058
|
readonly providerId: "google-vertex";
|
|
3041
3059
|
readonly externalId: "gemini-2.5-pro";
|
|
@@ -3070,6 +3088,9 @@ export declare const models: [{
|
|
|
3070
3088
|
readonly webSearchPrice: "0.035";
|
|
3071
3089
|
readonly jsonOutput: true;
|
|
3072
3090
|
readonly jsonOutputSchema: true;
|
|
3091
|
+
readonly supportsN: true;
|
|
3092
|
+
readonly supportsNStreaming: false;
|
|
3093
|
+
readonly maxN: 8;
|
|
3073
3094
|
}];
|
|
3074
3095
|
}, {
|
|
3075
3096
|
readonly id: "gemini-2.5-pro-preview-05-06";
|
|
@@ -3360,6 +3381,9 @@ export declare const models: [{
|
|
|
3360
3381
|
readonly webSearchPrice: "0.035";
|
|
3361
3382
|
readonly jsonOutput: true;
|
|
3362
3383
|
readonly jsonOutputSchema: true;
|
|
3384
|
+
readonly supportsN: true;
|
|
3385
|
+
readonly supportsNStreaming: false;
|
|
3386
|
+
readonly maxN: 8;
|
|
3363
3387
|
}, {
|
|
3364
3388
|
readonly providerId: "google-vertex";
|
|
3365
3389
|
readonly externalId: "gemini-2.5-flash";
|
|
@@ -3383,6 +3407,9 @@ export declare const models: [{
|
|
|
3383
3407
|
readonly webSearchPrice: "0.035";
|
|
3384
3408
|
readonly jsonOutput: true;
|
|
3385
3409
|
readonly jsonOutputSchema: true;
|
|
3410
|
+
readonly supportsN: true;
|
|
3411
|
+
readonly supportsNStreaming: false;
|
|
3412
|
+
readonly maxN: 8;
|
|
3386
3413
|
}];
|
|
3387
3414
|
}, {
|
|
3388
3415
|
readonly id: "gemini-2.5-flash-lite";
|
|
@@ -3409,6 +3436,9 @@ export declare const models: [{
|
|
|
3409
3436
|
readonly tools: true;
|
|
3410
3437
|
readonly jsonOutput: true;
|
|
3411
3438
|
readonly jsonOutputSchema: true;
|
|
3439
|
+
readonly supportsN: true;
|
|
3440
|
+
readonly supportsNStreaming: false;
|
|
3441
|
+
readonly maxN: 8;
|
|
3412
3442
|
}, {
|
|
3413
3443
|
readonly providerId: "google-vertex";
|
|
3414
3444
|
readonly externalId: "gemini-2.5-flash-lite";
|
|
@@ -3428,6 +3458,9 @@ export declare const models: [{
|
|
|
3428
3458
|
readonly tools: true;
|
|
3429
3459
|
readonly jsonOutput: true;
|
|
3430
3460
|
readonly jsonOutputSchema: true;
|
|
3461
|
+
readonly supportsN: true;
|
|
3462
|
+
readonly supportsNStreaming: false;
|
|
3463
|
+
readonly maxN: 8;
|
|
3431
3464
|
}];
|
|
3432
3465
|
}, {
|
|
3433
3466
|
readonly id: "gemini-2.5-flash-lite-preview-09-2025";
|
|
@@ -3468,6 +3501,9 @@ export declare const models: [{
|
|
|
3468
3501
|
readonly tools: true;
|
|
3469
3502
|
readonly jsonOutput: true;
|
|
3470
3503
|
readonly jsonOutputSchema: true;
|
|
3504
|
+
readonly supportsN: true;
|
|
3505
|
+
readonly supportsNStreaming: false;
|
|
3506
|
+
readonly maxN: 8;
|
|
3471
3507
|
}];
|
|
3472
3508
|
}, {
|
|
3473
3509
|
readonly id: "gemini-pro-latest";
|
|
@@ -7865,6 +7901,7 @@ export declare const models: [{
|
|
|
7865
7901
|
readonly vision: false;
|
|
7866
7902
|
readonly tools: false;
|
|
7867
7903
|
readonly jsonOutput: true;
|
|
7904
|
+
readonly deactivatedAt: Date;
|
|
7868
7905
|
}];
|
|
7869
7906
|
}, {
|
|
7870
7907
|
readonly id: "qwen3-coder-plus";
|
|
@@ -8352,6 +8389,7 @@ export declare const models: [{
|
|
|
8352
8389
|
readonly vision: true;
|
|
8353
8390
|
readonly tools: false;
|
|
8354
8391
|
readonly jsonOutput: true;
|
|
8392
|
+
readonly deactivatedAt: Date;
|
|
8355
8393
|
}];
|
|
8356
8394
|
}, {
|
|
8357
8395
|
readonly id: "qwen-vl-plus";
|
|
@@ -8371,6 +8409,7 @@ export declare const models: [{
|
|
|
8371
8409
|
readonly vision: true;
|
|
8372
8410
|
readonly tools: false;
|
|
8373
8411
|
readonly jsonOutput: true;
|
|
8412
|
+
readonly deactivatedAt: Date;
|
|
8374
8413
|
}];
|
|
8375
8414
|
}, {
|
|
8376
8415
|
readonly id: "qwen3-next-80b-a3b-thinking";
|
|
@@ -8898,6 +8937,7 @@ export declare const models: [{
|
|
|
8898
8937
|
readonly vision: false;
|
|
8899
8938
|
readonly tools: false;
|
|
8900
8939
|
readonly jsonOutput: false;
|
|
8940
|
+
readonly deactivatedAt: Date;
|
|
8901
8941
|
}];
|
|
8902
8942
|
}, {
|
|
8903
8943
|
readonly id: "qwen-coder-plus";
|
package/dist/models.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.js","sourceRoot":"","sources":["../src/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"models.js","sourceRoot":"","sources":["../src/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAsjB5C,MAAM,CAAC,MAAM,MAAM,GAAG;IACrB,GAAG,gBAAgB;IACnB,GAAG,YAAY;IACf,GAAG,eAAe;IAClB,GAAG,YAAY;IACf,GAAG,gBAAgB;IACnB,GAAG,SAAS;IACZ,GAAG,YAAY;IACf,GAAG,UAAU;IACb,GAAG,cAAc;IACjB,GAAG,aAAa;IAChB,GAAG,eAAe;IAClB,GAAG,aAAa;IAChB,GAAG,cAAc;IACjB,GAAG,aAAa;IAChB,GAAG,eAAe;IAClB,GAAG,kBAAkB;IACrB,GAAG,UAAU;IACb,GAAG,YAAY;IACf,GAAG,SAAS;IACZ,GAAG,gBAAgB;CACkB,CAAC"}
|
package/dist/types.d.ts
CHANGED
|
@@ -326,9 +326,12 @@ export interface WebSearchTool {
|
|
|
326
326
|
city?: string;
|
|
327
327
|
region?: string;
|
|
328
328
|
country?: string;
|
|
329
|
+
timezone?: string;
|
|
329
330
|
};
|
|
330
331
|
search_context_size?: "low" | "medium" | "high";
|
|
331
332
|
max_uses?: number;
|
|
333
|
+
allowed_domains?: string[];
|
|
334
|
+
blocked_domains?: string[];
|
|
332
335
|
}
|
|
333
336
|
export interface WebSearchCitation {
|
|
334
337
|
url: string;
|