@llmgateway/models 1.63.2 → 1.65.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/models/alibaba.d.ts +31 -0
- package/dist/models/alibaba.js +53 -0
- package/dist/models/alibaba.js.map +1 -1
- package/dist/models/deepseek.d.ts +29 -0
- package/dist/models/deepseek.js +31 -0
- package/dist/models/deepseek.js.map +1 -1
- package/dist/models/google.d.ts +0 -20
- package/dist/models/google.js +0 -23
- package/dist/models/google.js.map +1 -1
- package/dist/models/meta.d.ts +6 -0
- package/dist/models/meta.js +6 -0
- package/dist/models/meta.js.map +1 -1
- package/dist/models/minimax.d.ts +14 -0
- package/dist/models/minimax.js +15 -0
- package/dist/models/minimax.js.map +1 -1
- package/dist/models/mistral.d.ts +0 -40
- package/dist/models/mistral.js +0 -46
- package/dist/models/mistral.js.map +1 -1
- package/dist/models/moonshot.d.ts +31 -0
- package/dist/models/moonshot.js +33 -0
- package/dist/models/moonshot.js.map +1 -1
- package/dist/models/openai.d.ts +39 -0
- package/dist/models/openai.js +42 -0
- package/dist/models/openai.js.map +1 -1
- package/dist/models/zai.d.ts +27 -0
- package/dist/models/zai.js +29 -0
- package/dist/models/zai.js.map +1 -1
- package/dist/models.d.ts +177 -60
- package/package.json +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -719,6 +719,32 @@ export declare const models: [{
|
|
|
719
719
|
readonly tools: true;
|
|
720
720
|
readonly reasoning: true;
|
|
721
721
|
readonly jsonOutput: false;
|
|
722
|
+
}, {
|
|
723
|
+
readonly providerId: "nebius";
|
|
724
|
+
readonly modelName: "openai/gpt-oss-120b";
|
|
725
|
+
readonly inputPrice: number;
|
|
726
|
+
readonly outputPrice: number;
|
|
727
|
+
readonly requestPrice: 0;
|
|
728
|
+
readonly contextSize: 131072;
|
|
729
|
+
readonly maxOutput: 32768;
|
|
730
|
+
readonly streaming: true;
|
|
731
|
+
readonly vision: false;
|
|
732
|
+
readonly tools: true;
|
|
733
|
+
readonly reasoning: true;
|
|
734
|
+
readonly jsonOutput: true;
|
|
735
|
+
}, {
|
|
736
|
+
readonly providerId: "together-ai";
|
|
737
|
+
readonly modelName: "openai/gpt-oss-120b";
|
|
738
|
+
readonly inputPrice: number;
|
|
739
|
+
readonly outputPrice: number;
|
|
740
|
+
readonly requestPrice: 0;
|
|
741
|
+
readonly contextSize: 131072;
|
|
742
|
+
readonly maxOutput: 32768;
|
|
743
|
+
readonly streaming: true;
|
|
744
|
+
readonly vision: false;
|
|
745
|
+
readonly tools: true;
|
|
746
|
+
readonly reasoning: true;
|
|
747
|
+
readonly jsonOutput: false;
|
|
722
748
|
}];
|
|
723
749
|
}, {
|
|
724
750
|
readonly id: "gpt-oss-20b";
|
|
@@ -753,6 +779,19 @@ export declare const models: [{
|
|
|
753
779
|
readonly tools: true;
|
|
754
780
|
readonly reasoning: true;
|
|
755
781
|
readonly jsonOutput: true;
|
|
782
|
+
}, {
|
|
783
|
+
readonly providerId: "together-ai";
|
|
784
|
+
readonly modelName: "openai/gpt-oss-20b";
|
|
785
|
+
readonly inputPrice: number;
|
|
786
|
+
readonly outputPrice: number;
|
|
787
|
+
readonly requestPrice: 0;
|
|
788
|
+
readonly contextSize: 131072;
|
|
789
|
+
readonly maxOutput: 32768;
|
|
790
|
+
readonly streaming: true;
|
|
791
|
+
readonly vision: false;
|
|
792
|
+
readonly tools: true;
|
|
793
|
+
readonly reasoning: true;
|
|
794
|
+
readonly jsonOutput: false;
|
|
756
795
|
}];
|
|
757
796
|
}, {
|
|
758
797
|
readonly id: "gpt-5";
|
|
@@ -4156,26 +4195,6 @@ export declare const models: [{
|
|
|
4156
4195
|
readonly jsonOutput: false;
|
|
4157
4196
|
readonly deactivatedAt: Date;
|
|
4158
4197
|
}];
|
|
4159
|
-
}, {
|
|
4160
|
-
readonly id: "gemma-2-27b-it-together";
|
|
4161
|
-
readonly name: "Gemma 2 27B IT";
|
|
4162
|
-
readonly description: "Gemma 2 27B via Together AI inference.";
|
|
4163
|
-
readonly family: "google";
|
|
4164
|
-
readonly releasedAt: Date;
|
|
4165
|
-
readonly providers: [{
|
|
4166
|
-
readonly test: "skip";
|
|
4167
|
-
readonly providerId: "together-ai";
|
|
4168
|
-
readonly modelName: "google/gemma-2-27b-it";
|
|
4169
|
-
readonly inputPrice: number;
|
|
4170
|
-
readonly outputPrice: number;
|
|
4171
|
-
readonly requestPrice: 0;
|
|
4172
|
-
readonly contextSize: 8192;
|
|
4173
|
-
readonly maxOutput: undefined;
|
|
4174
|
-
readonly streaming: true;
|
|
4175
|
-
readonly vision: false;
|
|
4176
|
-
readonly tools: false;
|
|
4177
|
-
readonly jsonOutput: false;
|
|
4178
|
-
}];
|
|
4179
4198
|
}, {
|
|
4180
4199
|
readonly id: "sonar-reasoning-pro";
|
|
4181
4200
|
readonly name: "Sonar Reasoning Pro";
|
|
@@ -4906,6 +4925,7 @@ export declare const models: [{
|
|
|
4906
4925
|
readonly vision: false;
|
|
4907
4926
|
readonly tools: false;
|
|
4908
4927
|
readonly jsonOutput: false;
|
|
4928
|
+
readonly deactivatedAt: Date;
|
|
4909
4929
|
}, {
|
|
4910
4930
|
readonly providerId: "nebius";
|
|
4911
4931
|
readonly modelName: "meta-llama/Meta-Llama-3.1-8B-Instruct";
|
|
@@ -4918,6 +4938,7 @@ export declare const models: [{
|
|
|
4918
4938
|
readonly vision: false;
|
|
4919
4939
|
readonly tools: false;
|
|
4920
4940
|
readonly jsonOutput: false;
|
|
4941
|
+
readonly deactivatedAt: Date;
|
|
4921
4942
|
}, {
|
|
4922
4943
|
readonly providerId: "inference.net";
|
|
4923
4944
|
readonly stability: "unstable";
|
|
@@ -4931,6 +4952,7 @@ export declare const models: [{
|
|
|
4931
4952
|
readonly vision: false;
|
|
4932
4953
|
readonly tools: false;
|
|
4933
4954
|
readonly jsonOutput: false;
|
|
4955
|
+
readonly deactivatedAt: Date;
|
|
4934
4956
|
}, {
|
|
4935
4957
|
readonly providerId: "together-ai";
|
|
4936
4958
|
readonly modelName: "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo";
|
|
@@ -4957,6 +4979,7 @@ export declare const models: [{
|
|
|
4957
4979
|
readonly tools: false;
|
|
4958
4980
|
readonly jsonOutput: true;
|
|
4959
4981
|
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "response_format"];
|
|
4982
|
+
readonly deactivatedAt: Date;
|
|
4960
4983
|
}, {
|
|
4961
4984
|
readonly providerId: "novita";
|
|
4962
4985
|
readonly modelName: "meta-llama/llama-3.1-8b-instruct";
|
|
@@ -4969,6 +4992,7 @@ export declare const models: [{
|
|
|
4969
4992
|
readonly vision: false;
|
|
4970
4993
|
readonly tools: false;
|
|
4971
4994
|
readonly jsonOutput: true;
|
|
4995
|
+
readonly deactivatedAt: Date;
|
|
4972
4996
|
}];
|
|
4973
4997
|
}, {
|
|
4974
4998
|
readonly id: "llama-3.1-70b-instruct";
|
|
@@ -5135,6 +5159,7 @@ export declare const models: [{
|
|
|
5135
5159
|
readonly vision: false;
|
|
5136
5160
|
readonly tools: true;
|
|
5137
5161
|
readonly jsonOutput: false;
|
|
5162
|
+
readonly deactivatedAt: Date;
|
|
5138
5163
|
}];
|
|
5139
5164
|
}, {
|
|
5140
5165
|
readonly id: "llama-4-scout-17b-instruct";
|
|
@@ -5302,6 +5327,7 @@ export declare const models: [{
|
|
|
5302
5327
|
readonly tools: false;
|
|
5303
5328
|
readonly stability: "unstable";
|
|
5304
5329
|
readonly jsonOutput: false;
|
|
5330
|
+
readonly deactivatedAt: Date;
|
|
5305
5331
|
}];
|
|
5306
5332
|
}, {
|
|
5307
5333
|
readonly id: "deepseek-r1-distill-llama-70b";
|
|
@@ -5464,6 +5490,18 @@ export declare const models: [{
|
|
|
5464
5490
|
readonly vision: false;
|
|
5465
5491
|
readonly tools: true;
|
|
5466
5492
|
readonly jsonOutput: false;
|
|
5493
|
+
}, {
|
|
5494
|
+
readonly providerId: "nebius";
|
|
5495
|
+
readonly modelName: "deepseek-ai/DeepSeek-V3.2";
|
|
5496
|
+
readonly inputPrice: number;
|
|
5497
|
+
readonly outputPrice: number;
|
|
5498
|
+
readonly requestPrice: 0;
|
|
5499
|
+
readonly contextSize: 163840;
|
|
5500
|
+
readonly maxOutput: 32768;
|
|
5501
|
+
readonly streaming: true;
|
|
5502
|
+
readonly vision: false;
|
|
5503
|
+
readonly tools: true;
|
|
5504
|
+
readonly jsonOutput: true;
|
|
5467
5505
|
}];
|
|
5468
5506
|
}, {
|
|
5469
5507
|
readonly id: "deepseek-v4-pro";
|
|
@@ -5486,6 +5524,22 @@ export declare const models: [{
|
|
|
5486
5524
|
readonly vision: false;
|
|
5487
5525
|
readonly tools: true;
|
|
5488
5526
|
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "frequency_penalty", "presence_penalty", "stop", "stream", "response_format", "tools"];
|
|
5527
|
+
}, {
|
|
5528
|
+
readonly providerId: "together-ai";
|
|
5529
|
+
readonly modelName: "deepseek-ai/DeepSeek-V4-Pro";
|
|
5530
|
+
readonly inputPrice: number;
|
|
5531
|
+
readonly cachedInputPrice: number;
|
|
5532
|
+
readonly outputPrice: number;
|
|
5533
|
+
readonly requestPrice: 0;
|
|
5534
|
+
readonly contextSize: 163840;
|
|
5535
|
+
readonly maxOutput: 163840;
|
|
5536
|
+
readonly streaming: true;
|
|
5537
|
+
readonly reasoning: true;
|
|
5538
|
+
readonly reasoningOutput: "omit";
|
|
5539
|
+
readonly vision: false;
|
|
5540
|
+
readonly tools: true;
|
|
5541
|
+
readonly jsonOutput: true;
|
|
5542
|
+
readonly jsonOutputSchema: true;
|
|
5489
5543
|
}];
|
|
5490
5544
|
}, {
|
|
5491
5545
|
readonly id: "deepseek-v4-flash";
|
|
@@ -5528,46 +5582,6 @@ export declare const models: [{
|
|
|
5528
5582
|
readonly tools: false;
|
|
5529
5583
|
readonly jsonOutput: false;
|
|
5530
5584
|
}];
|
|
5531
|
-
}, {
|
|
5532
|
-
readonly id: "mixtral-8x7b-instruct-together";
|
|
5533
|
-
readonly name: "Mixtral 8x7B Instruct";
|
|
5534
|
-
readonly description: "Mixture-of-experts model with 8x7B architecture.";
|
|
5535
|
-
readonly family: "mistral";
|
|
5536
|
-
readonly releasedAt: Date;
|
|
5537
|
-
readonly providers: [{
|
|
5538
|
-
readonly deactivatedAt: Date;
|
|
5539
|
-
readonly providerId: "together-ai";
|
|
5540
|
-
readonly modelName: "mistralai/mixtral-8x7b-instruct-v0.1";
|
|
5541
|
-
readonly inputPrice: number;
|
|
5542
|
-
readonly outputPrice: number;
|
|
5543
|
-
readonly requestPrice: 0;
|
|
5544
|
-
readonly contextSize: 32768;
|
|
5545
|
-
readonly maxOutput: undefined;
|
|
5546
|
-
readonly streaming: true;
|
|
5547
|
-
readonly vision: false;
|
|
5548
|
-
readonly tools: false;
|
|
5549
|
-
readonly jsonOutput: true;
|
|
5550
|
-
}];
|
|
5551
|
-
}, {
|
|
5552
|
-
readonly id: "mistral-7b-instruct-together";
|
|
5553
|
-
readonly name: "Mistral 7B Instruct";
|
|
5554
|
-
readonly description: "Compact 7B instruction-tuned Mistral model.";
|
|
5555
|
-
readonly family: "mistral";
|
|
5556
|
-
readonly releasedAt: Date;
|
|
5557
|
-
readonly providers: [{
|
|
5558
|
-
readonly deactivatedAt: Date;
|
|
5559
|
-
readonly providerId: "together-ai";
|
|
5560
|
-
readonly modelName: "mistralai/mistral-7b-instruct-v0.1";
|
|
5561
|
-
readonly inputPrice: number;
|
|
5562
|
-
readonly outputPrice: number;
|
|
5563
|
-
readonly requestPrice: 0;
|
|
5564
|
-
readonly contextSize: 8192;
|
|
5565
|
-
readonly maxOutput: undefined;
|
|
5566
|
-
readonly streaming: true;
|
|
5567
|
-
readonly vision: false;
|
|
5568
|
-
readonly tools: false;
|
|
5569
|
-
readonly jsonOutput: true;
|
|
5570
|
-
}];
|
|
5571
5585
|
}, {
|
|
5572
5586
|
readonly id: "pixtral-large-latest";
|
|
5573
5587
|
readonly name: "Pixtral Large Latest";
|
|
@@ -5911,6 +5925,20 @@ export declare const models: [{
|
|
|
5911
5925
|
readonly tools: true;
|
|
5912
5926
|
readonly jsonOutput: false;
|
|
5913
5927
|
readonly supportedParameters: ["messages", "model", "stream", "stream_options", "temperature", "top_p", "max_tokens", "max_completion_tokens", "seed", "stop", "response_format", "tools", "tool_choice", "parallel_tool_calls"];
|
|
5928
|
+
}, {
|
|
5929
|
+
readonly providerId: "nebius";
|
|
5930
|
+
readonly stability: "unstable";
|
|
5931
|
+
readonly modelName: "MiniMaxAI/MiniMax-M2.5";
|
|
5932
|
+
readonly inputPrice: number;
|
|
5933
|
+
readonly outputPrice: number;
|
|
5934
|
+
readonly requestPrice: 0;
|
|
5935
|
+
readonly contextSize: 204800;
|
|
5936
|
+
readonly maxOutput: 131100;
|
|
5937
|
+
readonly streaming: true;
|
|
5938
|
+
readonly reasoning: true;
|
|
5939
|
+
readonly vision: false;
|
|
5940
|
+
readonly tools: true;
|
|
5941
|
+
readonly jsonOutput: true;
|
|
5914
5942
|
}];
|
|
5915
5943
|
}, {
|
|
5916
5944
|
readonly id: "minimax-m2.5-highspeed";
|
|
@@ -6138,6 +6166,7 @@ export declare const models: [{
|
|
|
6138
6166
|
readonly vision: false;
|
|
6139
6167
|
readonly tools: true;
|
|
6140
6168
|
readonly jsonOutput: true;
|
|
6169
|
+
readonly deactivatedAt: Date;
|
|
6141
6170
|
}, {
|
|
6142
6171
|
readonly providerId: "bytedance";
|
|
6143
6172
|
readonly modelName: "kimi-k2-250905";
|
|
@@ -6309,6 +6338,21 @@ export declare const models: [{
|
|
|
6309
6338
|
readonly vision: true;
|
|
6310
6339
|
readonly tools: false;
|
|
6311
6340
|
readonly jsonOutput: false;
|
|
6341
|
+
}, {
|
|
6342
|
+
readonly providerId: "nebius";
|
|
6343
|
+
readonly stability: "unstable";
|
|
6344
|
+
readonly modelName: "moonshotai/Kimi-K2.5";
|
|
6345
|
+
readonly inputPrice: number;
|
|
6346
|
+
readonly cachedInputPrice: number;
|
|
6347
|
+
readonly outputPrice: number;
|
|
6348
|
+
readonly requestPrice: 0;
|
|
6349
|
+
readonly contextSize: 262144;
|
|
6350
|
+
readonly maxOutput: 32768;
|
|
6351
|
+
readonly streaming: true;
|
|
6352
|
+
readonly reasoning: true;
|
|
6353
|
+
readonly vision: true;
|
|
6354
|
+
readonly tools: true;
|
|
6355
|
+
readonly jsonOutput: true;
|
|
6312
6356
|
}, {
|
|
6313
6357
|
readonly test: "skip";
|
|
6314
6358
|
readonly providerId: "alibaba";
|
|
@@ -6391,6 +6435,21 @@ export declare const models: [{
|
|
|
6391
6435
|
readonly vision: true;
|
|
6392
6436
|
readonly tools: true;
|
|
6393
6437
|
readonly jsonOutput: true;
|
|
6438
|
+
}, {
|
|
6439
|
+
readonly providerId: "together-ai";
|
|
6440
|
+
readonly modelName: "moonshotai/Kimi-K2.6";
|
|
6441
|
+
readonly test: "skip";
|
|
6442
|
+
readonly inputPrice: number;
|
|
6443
|
+
readonly cachedInputPrice: number;
|
|
6444
|
+
readonly outputPrice: number;
|
|
6445
|
+
readonly requestPrice: 0;
|
|
6446
|
+
readonly contextSize: 262144;
|
|
6447
|
+
readonly maxOutput: 32768;
|
|
6448
|
+
readonly streaming: true;
|
|
6449
|
+
readonly reasoning: true;
|
|
6450
|
+
readonly vision: true;
|
|
6451
|
+
readonly tools: false;
|
|
6452
|
+
readonly jsonOutput: false;
|
|
6394
6453
|
}];
|
|
6395
6454
|
}, {
|
|
6396
6455
|
readonly id: "qwen-max";
|
|
@@ -6935,6 +6994,7 @@ export declare const models: [{
|
|
|
6935
6994
|
readonly vision: false;
|
|
6936
6995
|
readonly tools: false;
|
|
6937
6996
|
readonly jsonOutput: true;
|
|
6997
|
+
readonly deactivatedAt: Date;
|
|
6938
6998
|
}];
|
|
6939
6999
|
}, {
|
|
6940
7000
|
readonly id: "qwen25-32b-instruct";
|
|
@@ -7101,6 +7161,7 @@ export declare const models: [{
|
|
|
7101
7161
|
readonly vision: false;
|
|
7102
7162
|
readonly tools: true;
|
|
7103
7163
|
readonly jsonOutput: true;
|
|
7164
|
+
readonly deactivatedAt: Date;
|
|
7104
7165
|
}, {
|
|
7105
7166
|
readonly providerId: "novita";
|
|
7106
7167
|
readonly modelName: "qwen/qwen3-coder-30b-a3b-instruct";
|
|
@@ -7154,6 +7215,7 @@ export declare const models: [{
|
|
|
7154
7215
|
readonly reasoning: true;
|
|
7155
7216
|
readonly jsonOutput: true;
|
|
7156
7217
|
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "frequency_penalty", "presence_penalty", "stop", "stream", "response_format", "tools"];
|
|
7218
|
+
readonly deactivatedAt: Date;
|
|
7157
7219
|
}];
|
|
7158
7220
|
}, {
|
|
7159
7221
|
readonly id: "qwen-vl-max";
|
|
@@ -7232,6 +7294,20 @@ export declare const models: [{
|
|
|
7232
7294
|
readonly tools: true;
|
|
7233
7295
|
readonly jsonOutput: false;
|
|
7234
7296
|
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "frequency_penalty", "presence_penalty", "stop", "stream", "response_format", "tools"];
|
|
7297
|
+
}, {
|
|
7298
|
+
readonly providerId: "nebius";
|
|
7299
|
+
readonly modelName: "Qwen/Qwen3-Next-80B-A3B-Thinking";
|
|
7300
|
+
readonly inputPrice: number;
|
|
7301
|
+
readonly outputPrice: number;
|
|
7302
|
+
readonly requestPrice: 0;
|
|
7303
|
+
readonly contextSize: 131072;
|
|
7304
|
+
readonly maxOutput: 32768;
|
|
7305
|
+
readonly reasoning: true;
|
|
7306
|
+
readonly streaming: true;
|
|
7307
|
+
readonly vision: false;
|
|
7308
|
+
readonly tools: true;
|
|
7309
|
+
readonly jsonOutput: false;
|
|
7310
|
+
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "frequency_penalty", "presence_penalty", "stop", "stream", "response_format", "tools"];
|
|
7235
7311
|
}];
|
|
7236
7312
|
}, {
|
|
7237
7313
|
readonly id: "qwen3-next-80b-a3b-instruct";
|
|
@@ -7497,6 +7573,20 @@ export declare const models: [{
|
|
|
7497
7573
|
readonly tools: true;
|
|
7498
7574
|
readonly jsonOutput: true;
|
|
7499
7575
|
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "frequency_penalty", "presence_penalty", "stop", "stream", "response_format", "tools"];
|
|
7576
|
+
}, {
|
|
7577
|
+
readonly providerId: "nebius";
|
|
7578
|
+
readonly modelName: "Qwen/Qwen3.5-397B-A17B";
|
|
7579
|
+
readonly inputPrice: number;
|
|
7580
|
+
readonly outputPrice: number;
|
|
7581
|
+
readonly requestPrice: 0;
|
|
7582
|
+
readonly contextSize: 262144;
|
|
7583
|
+
readonly maxOutput: 32768;
|
|
7584
|
+
readonly reasoning: true;
|
|
7585
|
+
readonly streaming: true;
|
|
7586
|
+
readonly vision: true;
|
|
7587
|
+
readonly tools: true;
|
|
7588
|
+
readonly jsonOutput: true;
|
|
7589
|
+
readonly supportedParameters: ["temperature", "max_tokens", "top_p", "frequency_penalty", "presence_penalty", "stop", "stream", "response_format", "tools"];
|
|
7500
7590
|
}];
|
|
7501
7591
|
}, {
|
|
7502
7592
|
readonly id: "qwen-image-plus";
|
|
@@ -8370,6 +8460,20 @@ export declare const models: [{
|
|
|
8370
8460
|
readonly vision: false;
|
|
8371
8461
|
readonly tools: true;
|
|
8372
8462
|
readonly jsonOutput: true;
|
|
8463
|
+
}, {
|
|
8464
|
+
readonly providerId: "together-ai";
|
|
8465
|
+
readonly modelName: "zai-org/GLM-5.1";
|
|
8466
|
+
readonly inputPrice: number;
|
|
8467
|
+
readonly outputPrice: number;
|
|
8468
|
+
readonly requestPrice: 0;
|
|
8469
|
+
readonly contextSize: 202752;
|
|
8470
|
+
readonly maxOutput: 202752;
|
|
8471
|
+
readonly streaming: true;
|
|
8472
|
+
readonly reasoning: true;
|
|
8473
|
+
readonly vision: false;
|
|
8474
|
+
readonly tools: true;
|
|
8475
|
+
readonly jsonOutput: true;
|
|
8476
|
+
readonly jsonOutputSchema: true;
|
|
8373
8477
|
}];
|
|
8374
8478
|
}, {
|
|
8375
8479
|
readonly id: "glm-5";
|
|
@@ -8483,6 +8587,19 @@ export declare const models: [{
|
|
|
8483
8587
|
readonly reasoningOutput: "omit";
|
|
8484
8588
|
readonly jsonOutput: false;
|
|
8485
8589
|
readonly supportedParameters: ["messages", "model", "stream", "stream_options", "temperature", "top_p", "max_tokens", "max_completion_tokens", "seed", "stop", "response_format", "tools", "tool_choice", "parallel_tool_calls", "reasoning"];
|
|
8590
|
+
}, {
|
|
8591
|
+
readonly providerId: "nebius";
|
|
8592
|
+
readonly modelName: "zai-org/GLM-5";
|
|
8593
|
+
readonly inputPrice: number;
|
|
8594
|
+
readonly outputPrice: number;
|
|
8595
|
+
readonly requestPrice: 0;
|
|
8596
|
+
readonly contextSize: 202752;
|
|
8597
|
+
readonly maxOutput: 32768;
|
|
8598
|
+
readonly streaming: true;
|
|
8599
|
+
readonly reasoning: true;
|
|
8600
|
+
readonly vision: false;
|
|
8601
|
+
readonly tools: true;
|
|
8602
|
+
readonly jsonOutput: true;
|
|
8486
8603
|
}];
|
|
8487
8604
|
}, {
|
|
8488
8605
|
readonly id: "glm-4.5";
|