@llmgateway/models 0.0.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/get-cheapest-from-available-providers.d.ts +30 -0
- package/dist/get-cheapest-from-available-providers.js +183 -0
- package/dist/get-cheapest-from-available-providers.js.map +1 -0
- package/dist/get-cheapest-model-for-provider.d.ts +2 -0
- package/dist/get-cheapest-model-for-provider.js +49 -0
- package/dist/get-cheapest-model-for-provider.js.map +1 -0
- package/dist/get-provider-endpoint.d.ts +3 -0
- package/dist/get-provider-endpoint.js +243 -0
- package/dist/get-provider-endpoint.js.map +1 -0
- package/dist/get-provider-headers.d.ts +5 -0
- package/dist/get-provider-headers.js +45 -0
- package/dist/get-provider-headers.js.map +1 -0
- package/dist/helpers.d.ts +1 -0
- package/dist/helpers.js +27 -0
- package/dist/helpers.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/models/alibaba.d.ts +686 -0
- package/dist/models/alibaba.js +789 -0
- package/dist/models/alibaba.js.map +1 -0
- package/dist/models/anthropic.d.ts +572 -0
- package/dist/models/anthropic.js +638 -0
- package/dist/models/anthropic.js.map +1 -0
- package/dist/models/aws-bedrock.d.ts +1 -0
- package/dist/models/aws-bedrock.js +2 -0
- package/dist/models/aws-bedrock.js.map +1 -0
- package/dist/models/bytedance.d.ts +131 -0
- package/dist/models/bytedance.js +151 -0
- package/dist/models/bytedance.js.map +1 -0
- package/dist/models/deepseek.d.ts +175 -0
- package/dist/models/deepseek.js +197 -0
- package/dist/models/deepseek.js.map +1 -0
- package/dist/models/google.d.ts +1065 -0
- package/dist/models/google.js +1201 -0
- package/dist/models/google.js.map +1 -0
- package/dist/models/llmgateway.d.ts +39 -0
- package/dist/models/llmgateway.js +59 -0
- package/dist/models/llmgateway.js.map +1 -0
- package/dist/models/meta.d.ts +263 -0
- package/dist/models/meta.js +300 -0
- package/dist/models/meta.js.map +1 -0
- package/dist/models/microsoft.d.ts +1 -0
- package/dist/models/microsoft.js +2 -0
- package/dist/models/microsoft.js.map +1 -0
- package/dist/models/minimax.d.ts +59 -0
- package/dist/models/minimax.js +68 -0
- package/dist/models/minimax.js.map +1 -0
- package/dist/models/mistral.d.ts +78 -0
- package/dist/models/mistral.js +92 -0
- package/dist/models/mistral.js.map +1 -0
- package/dist/models/moonshot.d.ts +165 -0
- package/dist/models/moonshot.js +184 -0
- package/dist/models/moonshot.js.map +1 -0
- package/dist/models/nousresearch.d.ts +21 -0
- package/dist/models/nousresearch.js +26 -0
- package/dist/models/nousresearch.js.map +1 -0
- package/dist/models/openai.d.ts +1018 -0
- package/dist/models/openai.js +1213 -0
- package/dist/models/openai.js.map +1 -0
- package/dist/models/perplexity.d.ts +67 -0
- package/dist/models/perplexity.js +78 -0
- package/dist/models/perplexity.js.map +1 -0
- package/dist/models/routeway.d.ts +161 -0
- package/dist/models/routeway.js +187 -0
- package/dist/models/routeway.js.map +1 -0
- package/dist/models/xai.d.ts +270 -0
- package/dist/models/xai.js +311 -0
- package/dist/models/xai.js.map +1 -0
- package/dist/models/zai.d.ts +492 -0
- package/dist/models/zai.js +551 -0
- package/dist/models/zai.js.map +1 -0
- package/dist/models.d.ts +5304 -0
- package/dist/models.js +37 -0
- package/dist/models.js.map +1 -0
- package/dist/models.spec.d.ts +1 -0
- package/dist/models.spec.js +263 -0
- package/dist/models.spec.js.map +1 -0
- package/dist/prepare-request-body.d.ts +10 -0
- package/dist/prepare-request-body.js +1081 -0
- package/dist/prepare-request-body.js.map +1 -0
- package/dist/prepare-request-body.spec.d.ts +1 -0
- package/dist/prepare-request-body.spec.js +231 -0
- package/dist/prepare-request-body.spec.js.map +1 -0
- package/dist/process-image-url.d.ts +4 -0
- package/dist/process-image-url.js +121 -0
- package/dist/process-image-url.js.map +1 -0
- package/dist/provider.d.ts +9 -0
- package/dist/provider.js +64 -0
- package/dist/provider.js.map +1 -0
- package/dist/providers.d.ts +405 -0
- package/dist/providers.js +413 -0
- package/dist/providers.js.map +1 -0
- package/dist/testing.d.ts +7 -0
- package/dist/testing.js +19 -0
- package/dist/testing.js.map +1 -0
- package/dist/transform-anthropic-messages.d.ts +2 -0
- package/dist/transform-anthropic-messages.js +185 -0
- package/dist/transform-anthropic-messages.js.map +1 -0
- package/dist/transform-google-messages.d.ts +25 -0
- package/dist/transform-google-messages.js +122 -0
- package/dist/transform-google-messages.js.map +1 -0
- package/dist/type-guards.d.ts +20 -0
- package/dist/type-guards.js +35 -0
- package/dist/type-guards.js.map +1 -0
- package/dist/types.d.ts +291 -0
- package/dist/types.js +28 -0
- package/dist/types.js.map +1 -0
- package/dist/validate-provider-key.d.ts +4 -0
- package/dist/validate-provider-key.js +113 -0
- package/dist/validate-provider-key.js.map +1 -0
- package/package.json +29 -0
|
@@ -0,0 +1,686 @@
|
|
|
1
|
+
export declare const alibabaModels: [{
|
|
2
|
+
readonly id: "qwen-max";
|
|
3
|
+
readonly name: "Qwen Max";
|
|
4
|
+
readonly description: "Alibaba's flagship Qwen model with vision and tool support.";
|
|
5
|
+
readonly family: "alibaba";
|
|
6
|
+
readonly releasedAt: Date;
|
|
7
|
+
readonly providers: [{
|
|
8
|
+
readonly providerId: "alibaba";
|
|
9
|
+
readonly modelName: "qwen-max";
|
|
10
|
+
readonly inputPrice: number;
|
|
11
|
+
readonly outputPrice: number;
|
|
12
|
+
readonly requestPrice: 0;
|
|
13
|
+
readonly contextSize: 131072;
|
|
14
|
+
readonly maxOutput: 32000;
|
|
15
|
+
readonly streaming: true;
|
|
16
|
+
readonly vision: true;
|
|
17
|
+
readonly tools: true;
|
|
18
|
+
readonly jsonOutput: true;
|
|
19
|
+
}];
|
|
20
|
+
}, {
|
|
21
|
+
readonly id: "qwen-max-latest";
|
|
22
|
+
readonly name: "Qwen Max Latest";
|
|
23
|
+
readonly description: "Latest Qwen Max with enhanced capabilities.";
|
|
24
|
+
readonly family: "alibaba";
|
|
25
|
+
readonly releasedAt: Date;
|
|
26
|
+
readonly providers: [{
|
|
27
|
+
readonly providerId: "alibaba";
|
|
28
|
+
readonly modelName: "qwen-max-latest";
|
|
29
|
+
readonly inputPrice: number;
|
|
30
|
+
readonly outputPrice: number;
|
|
31
|
+
readonly requestPrice: 0;
|
|
32
|
+
readonly contextSize: 131072;
|
|
33
|
+
readonly maxOutput: 32000;
|
|
34
|
+
readonly streaming: true;
|
|
35
|
+
readonly vision: true;
|
|
36
|
+
readonly tools: true;
|
|
37
|
+
readonly jsonOutput: true;
|
|
38
|
+
}];
|
|
39
|
+
}, {
|
|
40
|
+
readonly id: "qwen-plus";
|
|
41
|
+
readonly name: "Qwen Plus";
|
|
42
|
+
readonly description: "Mid-tier Qwen model balancing speed and capability.";
|
|
43
|
+
readonly family: "alibaba";
|
|
44
|
+
readonly releasedAt: Date;
|
|
45
|
+
readonly providers: [{
|
|
46
|
+
readonly providerId: "alibaba";
|
|
47
|
+
readonly modelName: "qwen-plus";
|
|
48
|
+
readonly inputPrice: number;
|
|
49
|
+
readonly outputPrice: number;
|
|
50
|
+
readonly requestPrice: 0;
|
|
51
|
+
readonly contextSize: 131072;
|
|
52
|
+
readonly maxOutput: 32000;
|
|
53
|
+
readonly streaming: true;
|
|
54
|
+
readonly vision: false;
|
|
55
|
+
readonly tools: true;
|
|
56
|
+
readonly jsonOutput: true;
|
|
57
|
+
}];
|
|
58
|
+
}, {
|
|
59
|
+
readonly id: "qwen-plus-latest";
|
|
60
|
+
readonly name: "Qwen Plus Latest";
|
|
61
|
+
readonly description: "Updated Qwen Plus with extended context support.";
|
|
62
|
+
readonly family: "alibaba";
|
|
63
|
+
readonly releasedAt: Date;
|
|
64
|
+
readonly providers: [{
|
|
65
|
+
readonly providerId: "alibaba";
|
|
66
|
+
readonly modelName: "qwen-plus-latest";
|
|
67
|
+
readonly inputPrice: number;
|
|
68
|
+
readonly outputPrice: number;
|
|
69
|
+
readonly requestPrice: 0;
|
|
70
|
+
readonly contextSize: 1000000;
|
|
71
|
+
readonly maxOutput: 32000;
|
|
72
|
+
readonly streaming: true;
|
|
73
|
+
readonly vision: false;
|
|
74
|
+
readonly tools: true;
|
|
75
|
+
readonly jsonOutput: true;
|
|
76
|
+
}];
|
|
77
|
+
}, {
|
|
78
|
+
readonly id: "qwen-flash";
|
|
79
|
+
readonly name: "Qwen Flash";
|
|
80
|
+
readonly description: "Fast, cost-effective Qwen for high-volume tasks.";
|
|
81
|
+
readonly family: "alibaba";
|
|
82
|
+
readonly releasedAt: Date;
|
|
83
|
+
readonly providers: [{
|
|
84
|
+
readonly providerId: "alibaba";
|
|
85
|
+
readonly modelName: "qwen-flash";
|
|
86
|
+
readonly inputPrice: number;
|
|
87
|
+
readonly outputPrice: number;
|
|
88
|
+
readonly requestPrice: 0;
|
|
89
|
+
readonly contextSize: 1000000;
|
|
90
|
+
readonly maxOutput: 32000;
|
|
91
|
+
readonly streaming: true;
|
|
92
|
+
readonly vision: false;
|
|
93
|
+
readonly tools: true;
|
|
94
|
+
readonly jsonOutput: true;
|
|
95
|
+
}];
|
|
96
|
+
}, {
|
|
97
|
+
readonly id: "qwen-omni-turbo";
|
|
98
|
+
readonly name: "Qwen Omni Turbo";
|
|
99
|
+
readonly description: "Multimodal Qwen with vision support.";
|
|
100
|
+
readonly family: "alibaba";
|
|
101
|
+
readonly releasedAt: Date;
|
|
102
|
+
readonly providers: [{
|
|
103
|
+
readonly providerId: "alibaba";
|
|
104
|
+
readonly modelName: "qwen-omni-turbo";
|
|
105
|
+
readonly inputPrice: number;
|
|
106
|
+
readonly outputPrice: number;
|
|
107
|
+
readonly requestPrice: 0;
|
|
108
|
+
readonly contextSize: 32768;
|
|
109
|
+
readonly maxOutput: 8192;
|
|
110
|
+
readonly streaming: true;
|
|
111
|
+
readonly vision: true;
|
|
112
|
+
readonly tools: false;
|
|
113
|
+
readonly jsonOutput: true;
|
|
114
|
+
}];
|
|
115
|
+
}, {
|
|
116
|
+
readonly id: "qwen-turbo";
|
|
117
|
+
readonly name: "Qwen Turbo";
|
|
118
|
+
readonly description: "Fastest Qwen model for quick responses.";
|
|
119
|
+
readonly family: "alibaba";
|
|
120
|
+
readonly releasedAt: Date;
|
|
121
|
+
readonly providers: [{
|
|
122
|
+
readonly providerId: "alibaba";
|
|
123
|
+
readonly modelName: "qwen-turbo";
|
|
124
|
+
readonly inputPrice: number;
|
|
125
|
+
readonly outputPrice: number;
|
|
126
|
+
readonly requestPrice: 0;
|
|
127
|
+
readonly contextSize: 1000000;
|
|
128
|
+
readonly maxOutput: 8192;
|
|
129
|
+
readonly streaming: true;
|
|
130
|
+
readonly vision: false;
|
|
131
|
+
readonly tools: false;
|
|
132
|
+
readonly jsonOutput: true;
|
|
133
|
+
}];
|
|
134
|
+
}, {
|
|
135
|
+
readonly id: "qwen3-coder-plus";
|
|
136
|
+
readonly name: "Qwen3 Coder Plus";
|
|
137
|
+
readonly description: "Advanced Qwen for code generation.";
|
|
138
|
+
readonly family: "alibaba";
|
|
139
|
+
readonly releasedAt: Date;
|
|
140
|
+
readonly providers: [{
|
|
141
|
+
readonly test: "skip";
|
|
142
|
+
readonly providerId: "alibaba";
|
|
143
|
+
readonly modelName: "qwen3-coder-plus";
|
|
144
|
+
readonly inputPrice: number;
|
|
145
|
+
readonly outputPrice: number;
|
|
146
|
+
readonly requestPrice: 0;
|
|
147
|
+
readonly contextSize: 1000000;
|
|
148
|
+
readonly maxOutput: 66000;
|
|
149
|
+
readonly streaming: true;
|
|
150
|
+
readonly vision: false;
|
|
151
|
+
readonly tools: true;
|
|
152
|
+
readonly jsonOutput: true;
|
|
153
|
+
}];
|
|
154
|
+
}, {
|
|
155
|
+
readonly id: "qwen-qwq-32b";
|
|
156
|
+
readonly name: "Qwen QwQ 32B";
|
|
157
|
+
readonly description: "Qwen 32B reasoning model.";
|
|
158
|
+
readonly family: "alibaba";
|
|
159
|
+
readonly releasedAt: Date;
|
|
160
|
+
readonly providers: [{
|
|
161
|
+
readonly providerId: "nebius";
|
|
162
|
+
readonly modelName: "Qwen/QwQ-32B";
|
|
163
|
+
readonly inputPrice: number;
|
|
164
|
+
readonly outputPrice: number;
|
|
165
|
+
readonly requestPrice: 0;
|
|
166
|
+
readonly contextSize: 32768;
|
|
167
|
+
readonly maxOutput: 8192;
|
|
168
|
+
readonly streaming: true;
|
|
169
|
+
readonly vision: false;
|
|
170
|
+
readonly tools: false;
|
|
171
|
+
readonly jsonOutput: true;
|
|
172
|
+
readonly deactivatedAt: Date;
|
|
173
|
+
}];
|
|
174
|
+
}, {
|
|
175
|
+
readonly id: "qwen3-235b-a22b-instruct-2507";
|
|
176
|
+
readonly name: "Qwen3 235B A22B Instruct 2507";
|
|
177
|
+
readonly description: "Large Qwen 3 MoE instruction model.";
|
|
178
|
+
readonly family: "alibaba";
|
|
179
|
+
readonly releasedAt: Date;
|
|
180
|
+
readonly providers: [{
|
|
181
|
+
readonly providerId: "nebius";
|
|
182
|
+
readonly stability: "unstable";
|
|
183
|
+
readonly modelName: "Qwen/Qwen3-235B-A22B-Instruct-2507";
|
|
184
|
+
readonly inputPrice: number;
|
|
185
|
+
readonly outputPrice: number;
|
|
186
|
+
readonly requestPrice: 0;
|
|
187
|
+
readonly contextSize: 262000;
|
|
188
|
+
readonly maxOutput: 8192;
|
|
189
|
+
readonly reasoning: false;
|
|
190
|
+
readonly streaming: true;
|
|
191
|
+
readonly vision: false;
|
|
192
|
+
readonly tools: true;
|
|
193
|
+
readonly jsonOutput: true;
|
|
194
|
+
}, {
|
|
195
|
+
readonly providerId: "cerebras";
|
|
196
|
+
readonly test: "skip";
|
|
197
|
+
readonly modelName: "qwen-3-235b-a22b-instruct-2507";
|
|
198
|
+
readonly inputPrice: number;
|
|
199
|
+
readonly outputPrice: number;
|
|
200
|
+
readonly requestPrice: 0;
|
|
201
|
+
readonly contextSize: 262000;
|
|
202
|
+
readonly maxOutput: 8192;
|
|
203
|
+
readonly reasoning: false;
|
|
204
|
+
readonly streaming: true;
|
|
205
|
+
readonly vision: false;
|
|
206
|
+
readonly tools: true;
|
|
207
|
+
readonly jsonOutput: true;
|
|
208
|
+
}];
|
|
209
|
+
}, {
|
|
210
|
+
readonly id: "qwen3-235b-a22b-thinking-2507";
|
|
211
|
+
readonly name: "Qwen3 235B A22B Thinking 2507";
|
|
212
|
+
readonly description: "Qwen 3 MoE with reasoning capabilities.";
|
|
213
|
+
readonly family: "alibaba";
|
|
214
|
+
readonly releasedAt: Date;
|
|
215
|
+
readonly providers: [{
|
|
216
|
+
readonly providerId: "nebius";
|
|
217
|
+
readonly modelName: "Qwen/Qwen3-235B-A22B-Thinking-2507";
|
|
218
|
+
readonly inputPrice: number;
|
|
219
|
+
readonly outputPrice: number;
|
|
220
|
+
readonly requestPrice: 0;
|
|
221
|
+
readonly contextSize: 262000;
|
|
222
|
+
readonly maxOutput: 8192;
|
|
223
|
+
readonly reasoning: true;
|
|
224
|
+
readonly streaming: true;
|
|
225
|
+
readonly vision: false;
|
|
226
|
+
readonly tools: true;
|
|
227
|
+
readonly stability: "unstable";
|
|
228
|
+
readonly jsonOutput: true;
|
|
229
|
+
}];
|
|
230
|
+
}, {
|
|
231
|
+
readonly id: "qwen3-14b";
|
|
232
|
+
readonly name: "Qwen3 14B";
|
|
233
|
+
readonly description: "Mid-size Qwen 3 model.";
|
|
234
|
+
readonly family: "alibaba";
|
|
235
|
+
readonly releasedAt: Date;
|
|
236
|
+
readonly providers: [{
|
|
237
|
+
readonly providerId: "nebius";
|
|
238
|
+
readonly modelName: "Qwen/Qwen3-14B";
|
|
239
|
+
readonly inputPrice: number;
|
|
240
|
+
readonly outputPrice: number;
|
|
241
|
+
readonly requestPrice: 0;
|
|
242
|
+
readonly contextSize: 32768;
|
|
243
|
+
readonly maxOutput: 8192;
|
|
244
|
+
readonly streaming: true;
|
|
245
|
+
readonly vision: false;
|
|
246
|
+
readonly tools: true;
|
|
247
|
+
readonly jsonOutput: true;
|
|
248
|
+
readonly deactivatedAt: Date;
|
|
249
|
+
}];
|
|
250
|
+
}, {
|
|
251
|
+
readonly id: "qwen3-32b";
|
|
252
|
+
readonly name: "Qwen3 32B";
|
|
253
|
+
readonly description: "Mid-size Qwen 3 model.";
|
|
254
|
+
readonly family: "alibaba";
|
|
255
|
+
readonly releasedAt: Date;
|
|
256
|
+
readonly providers: [{
|
|
257
|
+
readonly providerId: "nebius";
|
|
258
|
+
readonly modelName: "Qwen/Qwen3-32B";
|
|
259
|
+
readonly inputPrice: number;
|
|
260
|
+
readonly outputPrice: number;
|
|
261
|
+
readonly requestPrice: 0;
|
|
262
|
+
readonly contextSize: 32768;
|
|
263
|
+
readonly maxOutput: 8192;
|
|
264
|
+
readonly streaming: true;
|
|
265
|
+
readonly vision: false;
|
|
266
|
+
readonly tools: true;
|
|
267
|
+
readonly jsonOutput: true;
|
|
268
|
+
}, {
|
|
269
|
+
readonly providerId: "cerebras";
|
|
270
|
+
readonly modelName: "qwen-3-32b";
|
|
271
|
+
readonly inputPrice: number;
|
|
272
|
+
readonly outputPrice: number;
|
|
273
|
+
readonly requestPrice: 0;
|
|
274
|
+
readonly contextSize: 32768;
|
|
275
|
+
readonly maxOutput: 8192;
|
|
276
|
+
readonly streaming: true;
|
|
277
|
+
readonly vision: false;
|
|
278
|
+
readonly tools: true;
|
|
279
|
+
readonly jsonOutput: true;
|
|
280
|
+
}];
|
|
281
|
+
}, {
|
|
282
|
+
readonly id: "qwen3-30b-a3b";
|
|
283
|
+
readonly name: "Qwen3 30B A3B";
|
|
284
|
+
readonly description: "Mid-size Qwen 3 MoE model.";
|
|
285
|
+
readonly family: "alibaba";
|
|
286
|
+
readonly releasedAt: Date;
|
|
287
|
+
readonly providers: [{
|
|
288
|
+
readonly providerId: "nebius";
|
|
289
|
+
readonly modelName: "Qwen/Qwen3-30B-A3B";
|
|
290
|
+
readonly inputPrice: number;
|
|
291
|
+
readonly outputPrice: number;
|
|
292
|
+
readonly requestPrice: 0;
|
|
293
|
+
readonly contextSize: 32768;
|
|
294
|
+
readonly maxOutput: 8192;
|
|
295
|
+
readonly streaming: true;
|
|
296
|
+
readonly vision: false;
|
|
297
|
+
readonly tools: true;
|
|
298
|
+
readonly jsonOutput: true;
|
|
299
|
+
readonly deactivatedAt: Date;
|
|
300
|
+
}];
|
|
301
|
+
}, {
|
|
302
|
+
readonly id: "qwen25-coder-7b";
|
|
303
|
+
readonly name: "Qwen2.5 Coder 7B";
|
|
304
|
+
readonly description: "Qwen 2.5 code model, 7B size.";
|
|
305
|
+
readonly family: "alibaba";
|
|
306
|
+
readonly releasedAt: Date;
|
|
307
|
+
readonly providers: [{
|
|
308
|
+
readonly providerId: "nebius";
|
|
309
|
+
readonly modelName: "Qwen/Qwen2.5-Coder-7B-fast";
|
|
310
|
+
readonly inputPrice: number;
|
|
311
|
+
readonly outputPrice: number;
|
|
312
|
+
readonly requestPrice: 0;
|
|
313
|
+
readonly contextSize: 32768;
|
|
314
|
+
readonly maxOutput: 8192;
|
|
315
|
+
readonly streaming: true;
|
|
316
|
+
readonly vision: false;
|
|
317
|
+
readonly tools: false;
|
|
318
|
+
readonly jsonOutput: true;
|
|
319
|
+
}];
|
|
320
|
+
}, {
|
|
321
|
+
readonly id: "qwen25-32b-instruct";
|
|
322
|
+
readonly name: "Qwen2.5 32B Instruct";
|
|
323
|
+
readonly description: "Qwen 2.5 instruction model, 32B size.";
|
|
324
|
+
readonly family: "alibaba";
|
|
325
|
+
readonly releasedAt: Date;
|
|
326
|
+
readonly providers: [{
|
|
327
|
+
readonly providerId: "nebius";
|
|
328
|
+
readonly modelName: "Qwen/Qwen2.5-32B-Instruct";
|
|
329
|
+
readonly inputPrice: number;
|
|
330
|
+
readonly outputPrice: number;
|
|
331
|
+
readonly requestPrice: 0;
|
|
332
|
+
readonly contextSize: 32768;
|
|
333
|
+
readonly maxOutput: 8192;
|
|
334
|
+
readonly streaming: true;
|
|
335
|
+
readonly vision: false;
|
|
336
|
+
readonly tools: true;
|
|
337
|
+
readonly jsonOutput: true;
|
|
338
|
+
readonly deactivatedAt: Date;
|
|
339
|
+
}];
|
|
340
|
+
}, {
|
|
341
|
+
readonly id: "qwen25-72b-instruct";
|
|
342
|
+
readonly name: "Qwen2.5 72B Instruct";
|
|
343
|
+
readonly description: "Qwen 2.5 instruction model, 72B size.";
|
|
344
|
+
readonly family: "alibaba";
|
|
345
|
+
readonly releasedAt: Date;
|
|
346
|
+
readonly providers: [{
|
|
347
|
+
readonly providerId: "nebius";
|
|
348
|
+
readonly modelName: "Qwen/Qwen2.5-72B-Instruct";
|
|
349
|
+
readonly inputPrice: number;
|
|
350
|
+
readonly outputPrice: number;
|
|
351
|
+
readonly requestPrice: 0;
|
|
352
|
+
readonly contextSize: 32768;
|
|
353
|
+
readonly maxOutput: 8192;
|
|
354
|
+
readonly streaming: true;
|
|
355
|
+
readonly vision: false;
|
|
356
|
+
readonly tools: true;
|
|
357
|
+
readonly jsonOutput: true;
|
|
358
|
+
readonly deactivatedAt: Date;
|
|
359
|
+
}];
|
|
360
|
+
}, {
|
|
361
|
+
readonly id: "qwen2-vl-72b-instruct";
|
|
362
|
+
readonly name: "Qwen2 VL 72B Instruct";
|
|
363
|
+
readonly description: "Vision-language Qwen 2 model, 72B size.";
|
|
364
|
+
readonly family: "alibaba";
|
|
365
|
+
readonly releasedAt: Date;
|
|
366
|
+
readonly providers: [{
|
|
367
|
+
readonly providerId: "nebius";
|
|
368
|
+
readonly modelName: "Qwen/Qwen2-VL-72B-Instruct";
|
|
369
|
+
readonly inputPrice: number;
|
|
370
|
+
readonly outputPrice: number;
|
|
371
|
+
readonly requestPrice: 0;
|
|
372
|
+
readonly contextSize: 32768;
|
|
373
|
+
readonly maxOutput: 8192;
|
|
374
|
+
readonly streaming: true;
|
|
375
|
+
readonly vision: true;
|
|
376
|
+
readonly tools: false;
|
|
377
|
+
readonly jsonOutput: true;
|
|
378
|
+
readonly deactivatedAt: Date;
|
|
379
|
+
}];
|
|
380
|
+
}, {
|
|
381
|
+
readonly id: "qwen2-5-vl-72b-instruct";
|
|
382
|
+
readonly name: "Qwen2.5 VL 72B Instruct";
|
|
383
|
+
readonly description: "Vision-language Qwen 2.5 model, 72B size.";
|
|
384
|
+
readonly family: "alibaba";
|
|
385
|
+
readonly releasedAt: Date;
|
|
386
|
+
readonly providers: [{
|
|
387
|
+
readonly providerId: "nebius";
|
|
388
|
+
readonly modelName: "Qwen/Qwen2.5-VL-72B-Instruct";
|
|
389
|
+
readonly inputPrice: number;
|
|
390
|
+
readonly outputPrice: number;
|
|
391
|
+
readonly requestPrice: 0;
|
|
392
|
+
readonly contextSize: 32768;
|
|
393
|
+
readonly maxOutput: 8192;
|
|
394
|
+
readonly streaming: true;
|
|
395
|
+
readonly vision: true;
|
|
396
|
+
readonly tools: false;
|
|
397
|
+
readonly jsonOutput: true;
|
|
398
|
+
}];
|
|
399
|
+
}, {
|
|
400
|
+
readonly id: "qwen3-coder-480b-a35b-instruct";
|
|
401
|
+
readonly name: "Qwen3 Coder 480B A35B Instruct";
|
|
402
|
+
readonly description: "Code-specialized Qwen 3 MoE, 480B size.";
|
|
403
|
+
readonly family: "alibaba";
|
|
404
|
+
readonly releasedAt: Date;
|
|
405
|
+
readonly providers: [{
|
|
406
|
+
readonly providerId: "nebius";
|
|
407
|
+
readonly modelName: "Qwen/Qwen3-Coder-480B-A35B-Instruct";
|
|
408
|
+
readonly inputPrice: number;
|
|
409
|
+
readonly outputPrice: number;
|
|
410
|
+
readonly requestPrice: 0;
|
|
411
|
+
readonly contextSize: 262000;
|
|
412
|
+
readonly maxOutput: 8192;
|
|
413
|
+
readonly streaming: true;
|
|
414
|
+
readonly vision: false;
|
|
415
|
+
readonly tools: true;
|
|
416
|
+
readonly jsonOutput: true;
|
|
417
|
+
}];
|
|
418
|
+
}, {
|
|
419
|
+
readonly id: "qwen3-coder-30b-a3b-instruct";
|
|
420
|
+
readonly name: "Qwen3 Coder 30B A3B Instruct";
|
|
421
|
+
readonly description: "Code-specialized Qwen 3 MoE, 30B size.";
|
|
422
|
+
readonly family: "alibaba";
|
|
423
|
+
readonly releasedAt: Date;
|
|
424
|
+
readonly providers: [{
|
|
425
|
+
readonly providerId: "nebius";
|
|
426
|
+
readonly modelName: "Qwen/Qwen3-Coder-30B-A3B-Instruct";
|
|
427
|
+
readonly inputPrice: number;
|
|
428
|
+
readonly outputPrice: number;
|
|
429
|
+
readonly requestPrice: 0;
|
|
430
|
+
readonly contextSize: 262000;
|
|
431
|
+
readonly maxOutput: 8192;
|
|
432
|
+
readonly streaming: true;
|
|
433
|
+
readonly vision: false;
|
|
434
|
+
readonly tools: true;
|
|
435
|
+
readonly jsonOutput: true;
|
|
436
|
+
}];
|
|
437
|
+
}, {
|
|
438
|
+
readonly id: "qwen3-30b-a3b-instruct-2507";
|
|
439
|
+
readonly name: "Qwen3 30B A3B Instruct 2507";
|
|
440
|
+
readonly description: "Qwen 3 MoE instruction model, July 2025.";
|
|
441
|
+
readonly family: "alibaba";
|
|
442
|
+
readonly releasedAt: Date;
|
|
443
|
+
readonly providers: [{
|
|
444
|
+
readonly providerId: "nebius";
|
|
445
|
+
readonly modelName: "Qwen/Qwen3-30B-A3B-Instruct-2507";
|
|
446
|
+
readonly inputPrice: number;
|
|
447
|
+
readonly outputPrice: number;
|
|
448
|
+
readonly requestPrice: 0;
|
|
449
|
+
readonly contextSize: 262000;
|
|
450
|
+
readonly maxOutput: 8192;
|
|
451
|
+
readonly streaming: true;
|
|
452
|
+
readonly vision: false;
|
|
453
|
+
readonly tools: true;
|
|
454
|
+
readonly jsonOutput: true;
|
|
455
|
+
}];
|
|
456
|
+
}, {
|
|
457
|
+
readonly id: "qwen3-30b-a3b-thinking-2507";
|
|
458
|
+
readonly name: "Qwen3 30B A3B Thinking 2507";
|
|
459
|
+
readonly description: "Qwen 3 MoE with reasoning, July 2025.";
|
|
460
|
+
readonly family: "alibaba";
|
|
461
|
+
readonly releasedAt: Date;
|
|
462
|
+
readonly providers: [{
|
|
463
|
+
readonly providerId: "nebius";
|
|
464
|
+
readonly modelName: "Qwen/Qwen3-30B-A3B-Thinking-2507";
|
|
465
|
+
readonly inputPrice: number;
|
|
466
|
+
readonly outputPrice: number;
|
|
467
|
+
readonly requestPrice: 0;
|
|
468
|
+
readonly contextSize: 262000;
|
|
469
|
+
readonly maxOutput: 8192;
|
|
470
|
+
readonly streaming: true;
|
|
471
|
+
readonly vision: false;
|
|
472
|
+
readonly tools: true;
|
|
473
|
+
readonly reasoning: true;
|
|
474
|
+
readonly jsonOutput: true;
|
|
475
|
+
}];
|
|
476
|
+
}, {
|
|
477
|
+
readonly id: "qwen-vl-max";
|
|
478
|
+
readonly name: "Qwen VL Max";
|
|
479
|
+
readonly description: "Vision-language Qwen flagship model.";
|
|
480
|
+
readonly family: "alibaba";
|
|
481
|
+
readonly releasedAt: Date;
|
|
482
|
+
readonly providers: [{
|
|
483
|
+
readonly providerId: "alibaba";
|
|
484
|
+
readonly modelName: "qwen-vl-max";
|
|
485
|
+
readonly inputPrice: number;
|
|
486
|
+
readonly outputPrice: number;
|
|
487
|
+
readonly requestPrice: 0;
|
|
488
|
+
readonly contextSize: 131072;
|
|
489
|
+
readonly maxOutput: 32000;
|
|
490
|
+
readonly streaming: true;
|
|
491
|
+
readonly vision: true;
|
|
492
|
+
readonly tools: false;
|
|
493
|
+
readonly jsonOutput: true;
|
|
494
|
+
}];
|
|
495
|
+
}, {
|
|
496
|
+
readonly id: "qwen-vl-plus";
|
|
497
|
+
readonly name: "Qwen VL Plus";
|
|
498
|
+
readonly description: "Vision-language Qwen mid-tier model.";
|
|
499
|
+
readonly family: "alibaba";
|
|
500
|
+
readonly releasedAt: Date;
|
|
501
|
+
readonly providers: [{
|
|
502
|
+
readonly providerId: "alibaba";
|
|
503
|
+
readonly modelName: "qwen-vl-plus";
|
|
504
|
+
readonly inputPrice: number;
|
|
505
|
+
readonly outputPrice: number;
|
|
506
|
+
readonly requestPrice: 0;
|
|
507
|
+
readonly contextSize: 131072;
|
|
508
|
+
readonly maxOutput: 32000;
|
|
509
|
+
readonly streaming: true;
|
|
510
|
+
readonly vision: true;
|
|
511
|
+
readonly tools: false;
|
|
512
|
+
readonly jsonOutput: true;
|
|
513
|
+
}];
|
|
514
|
+
}, {
|
|
515
|
+
readonly id: "qwen3-next-80b-a3b-thinking";
|
|
516
|
+
readonly name: "Qwen3 Next 80B A3B Thinking";
|
|
517
|
+
readonly description: "Preview Qwen 3 Next with reasoning.";
|
|
518
|
+
readonly family: "alibaba";
|
|
519
|
+
readonly releasedAt: Date;
|
|
520
|
+
readonly providers: [{
|
|
521
|
+
readonly providerId: "alibaba";
|
|
522
|
+
readonly stability: "unstable";
|
|
523
|
+
readonly modelName: "qwen3-next-80b-a3b-thinking";
|
|
524
|
+
readonly inputPrice: number;
|
|
525
|
+
readonly outputPrice: number;
|
|
526
|
+
readonly requestPrice: 0;
|
|
527
|
+
readonly contextSize: 131072;
|
|
528
|
+
readonly maxOutput: 32768;
|
|
529
|
+
readonly reasoning: true;
|
|
530
|
+
readonly reasoningOutput: "omit";
|
|
531
|
+
readonly streaming: true;
|
|
532
|
+
readonly vision: false;
|
|
533
|
+
readonly tools: true;
|
|
534
|
+
readonly jsonOutput: false;
|
|
535
|
+
}];
|
|
536
|
+
}, {
|
|
537
|
+
readonly id: "qwen3-next-80b-a3b-instruct";
|
|
538
|
+
readonly name: "Qwen3 Next 80B A3B Instruct";
|
|
539
|
+
readonly description: "Preview Qwen 3 Next instruction model.";
|
|
540
|
+
readonly family: "alibaba";
|
|
541
|
+
readonly releasedAt: Date;
|
|
542
|
+
readonly providers: [{
|
|
543
|
+
readonly providerId: "alibaba";
|
|
544
|
+
readonly modelName: "qwen3-next-80b-a3b-instruct";
|
|
545
|
+
readonly inputPrice: number;
|
|
546
|
+
readonly outputPrice: number;
|
|
547
|
+
readonly requestPrice: 0;
|
|
548
|
+
readonly contextSize: 129024;
|
|
549
|
+
readonly maxOutput: 32768;
|
|
550
|
+
readonly streaming: true;
|
|
551
|
+
readonly vision: false;
|
|
552
|
+
readonly tools: true;
|
|
553
|
+
readonly jsonOutput: true;
|
|
554
|
+
}];
|
|
555
|
+
}, {
|
|
556
|
+
readonly id: "qwen3-max";
|
|
557
|
+
readonly name: "Qwen3 Max";
|
|
558
|
+
readonly description: "Top-tier Qwen 3 with reasoning and vision support.";
|
|
559
|
+
readonly family: "alibaba";
|
|
560
|
+
readonly releasedAt: Date;
|
|
561
|
+
readonly providers: [{
|
|
562
|
+
readonly test: "skip";
|
|
563
|
+
readonly providerId: "alibaba";
|
|
564
|
+
readonly modelName: "qwen3-max-preview";
|
|
565
|
+
readonly inputPrice: number;
|
|
566
|
+
readonly outputPrice: number;
|
|
567
|
+
readonly cachedInputPrice: number;
|
|
568
|
+
readonly requestPrice: 0;
|
|
569
|
+
readonly contextSize: 256000;
|
|
570
|
+
readonly maxOutput: 32800;
|
|
571
|
+
readonly reasoning: true;
|
|
572
|
+
readonly reasoningOutput: "omit";
|
|
573
|
+
readonly streaming: true;
|
|
574
|
+
readonly vision: true;
|
|
575
|
+
readonly tools: true;
|
|
576
|
+
readonly jsonOutput: true;
|
|
577
|
+
}];
|
|
578
|
+
}, {
|
|
579
|
+
readonly id: "qwen3-coder";
|
|
580
|
+
readonly name: "Qwen3 Coder";
|
|
581
|
+
readonly description: "General Qwen 3 coding model.";
|
|
582
|
+
readonly family: "alibaba";
|
|
583
|
+
readonly releasedAt: Date;
|
|
584
|
+
readonly providers: [{
|
|
585
|
+
readonly providerId: "canopywave";
|
|
586
|
+
readonly modelName: "qwen/qwen3-coder";
|
|
587
|
+
readonly inputPrice: number;
|
|
588
|
+
readonly outputPrice: number;
|
|
589
|
+
readonly discount: 0.75;
|
|
590
|
+
readonly requestPrice: 0;
|
|
591
|
+
readonly contextSize: 262000;
|
|
592
|
+
readonly maxOutput: 8192;
|
|
593
|
+
readonly streaming: true;
|
|
594
|
+
readonly vision: false;
|
|
595
|
+
readonly tools: true;
|
|
596
|
+
readonly jsonOutput: true;
|
|
597
|
+
}];
|
|
598
|
+
}, {
|
|
599
|
+
readonly id: "qwen-image-plus";
|
|
600
|
+
readonly name: "Qwen Image Plus";
|
|
601
|
+
readonly description: "Alibaba's Qwen Image Plus model for text-to-image generation with excellent text rendering capabilities.";
|
|
602
|
+
readonly family: "alibaba";
|
|
603
|
+
readonly output: ["text", "image"];
|
|
604
|
+
readonly releasedAt: Date;
|
|
605
|
+
readonly providers: [{
|
|
606
|
+
readonly test: "skip";
|
|
607
|
+
readonly providerId: "alibaba";
|
|
608
|
+
readonly modelName: "qwen-image-plus";
|
|
609
|
+
readonly inputPrice: 0;
|
|
610
|
+
readonly outputPrice: 0;
|
|
611
|
+
readonly requestPrice: 0.03;
|
|
612
|
+
readonly contextSize: 2000;
|
|
613
|
+
readonly maxOutput: 4096;
|
|
614
|
+
readonly streaming: false;
|
|
615
|
+
readonly vision: false;
|
|
616
|
+
readonly tools: false;
|
|
617
|
+
readonly jsonOutput: false;
|
|
618
|
+
readonly imageGenerations: true;
|
|
619
|
+
}];
|
|
620
|
+
}, {
|
|
621
|
+
readonly id: "qwen-image-max";
|
|
622
|
+
readonly name: "Qwen Image Max";
|
|
623
|
+
readonly description: "Alibaba's flagship Qwen Image Max model for highest quality text-to-image generation.";
|
|
624
|
+
readonly family: "alibaba";
|
|
625
|
+
readonly output: ["text", "image"];
|
|
626
|
+
readonly releasedAt: Date;
|
|
627
|
+
readonly providers: [{
|
|
628
|
+
readonly test: "skip";
|
|
629
|
+
readonly providerId: "alibaba";
|
|
630
|
+
readonly modelName: "qwen-image-max";
|
|
631
|
+
readonly inputPrice: 0;
|
|
632
|
+
readonly outputPrice: 0;
|
|
633
|
+
readonly requestPrice: 0.075;
|
|
634
|
+
readonly contextSize: 2000;
|
|
635
|
+
readonly maxOutput: 4096;
|
|
636
|
+
readonly streaming: false;
|
|
637
|
+
readonly vision: false;
|
|
638
|
+
readonly tools: false;
|
|
639
|
+
readonly jsonOutput: false;
|
|
640
|
+
readonly imageGenerations: true;
|
|
641
|
+
}];
|
|
642
|
+
}, {
|
|
643
|
+
readonly id: "qwen-image";
|
|
644
|
+
readonly name: "Qwen Image";
|
|
645
|
+
readonly description: "Alibaba's Qwen Image model for text-to-image generation with excellent text rendering capabilities.";
|
|
646
|
+
readonly family: "alibaba";
|
|
647
|
+
readonly output: ["text", "image"];
|
|
648
|
+
readonly releasedAt: Date;
|
|
649
|
+
readonly providers: [{
|
|
650
|
+
readonly test: "skip";
|
|
651
|
+
readonly providerId: "alibaba";
|
|
652
|
+
readonly modelName: "qwen-image";
|
|
653
|
+
readonly inputPrice: 0;
|
|
654
|
+
readonly outputPrice: 0;
|
|
655
|
+
readonly requestPrice: 0.035;
|
|
656
|
+
readonly contextSize: 2000;
|
|
657
|
+
readonly maxOutput: 4096;
|
|
658
|
+
readonly streaming: false;
|
|
659
|
+
readonly vision: false;
|
|
660
|
+
readonly tools: false;
|
|
661
|
+
readonly jsonOutput: false;
|
|
662
|
+
readonly imageGenerations: true;
|
|
663
|
+
}];
|
|
664
|
+
}, {
|
|
665
|
+
readonly id: "qwen-image-max-2025-12-30";
|
|
666
|
+
readonly name: "Qwen Image Max 2025-12-30";
|
|
667
|
+
readonly description: "Alibaba's Qwen 2025-12-30 Image model for text-to-image generation with excellent text rendering capabilities.";
|
|
668
|
+
readonly family: "alibaba";
|
|
669
|
+
readonly output: ["text", "image"];
|
|
670
|
+
readonly releasedAt: Date;
|
|
671
|
+
readonly providers: [{
|
|
672
|
+
readonly test: "skip";
|
|
673
|
+
readonly providerId: "alibaba";
|
|
674
|
+
readonly modelName: "qwen-image-max-2025-12-30";
|
|
675
|
+
readonly inputPrice: 0;
|
|
676
|
+
readonly outputPrice: 0;
|
|
677
|
+
readonly requestPrice: 0.075;
|
|
678
|
+
readonly contextSize: 2000;
|
|
679
|
+
readonly maxOutput: 4096;
|
|
680
|
+
readonly streaming: false;
|
|
681
|
+
readonly vision: false;
|
|
682
|
+
readonly tools: false;
|
|
683
|
+
readonly jsonOutput: false;
|
|
684
|
+
readonly imageGenerations: true;
|
|
685
|
+
}];
|
|
686
|
+
}];
|