@funkai/models 0.3.0 → 0.3.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/.turbo/turbo-build.log +33 -33
- package/CHANGELOG.md +6 -0
- package/dist/alibaba-B6q4Ng1R.mjs.map +1 -1
- package/dist/amazon-bedrock-Cv9AHQBH.mjs.map +1 -1
- package/dist/anthropic-yB7ST97_.mjs.map +1 -1
- package/dist/cerebras-COfl7XM-.mjs.map +1 -1
- package/dist/cohere-B7TgO0hT.mjs.map +1 -1
- package/dist/deepinfra-B0GxUwCG.mjs.map +1 -1
- package/dist/deepseek-D64ZEsvS.mjs.map +1 -1
- package/dist/fireworks-ai-DJYvdAi_.mjs.map +1 -1
- package/dist/google-BypRl349.mjs.map +1 -1
- package/dist/google-vertex-DbS-zTGD.mjs.map +1 -1
- package/dist/groq-ei_PerYi.mjs.map +1 -1
- package/dist/huggingface-DaM1EeLP.mjs.map +1 -1
- package/dist/inception-CspEzqNV.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/llama-Cf3-koap.mjs.map +1 -1
- package/dist/mistral-BI9MdAO4.mjs.map +1 -1
- package/dist/nvidia-COHacuoa.mjs.map +1 -1
- package/dist/openai-C0nCfZUq.mjs.map +1 -1
- package/dist/openrouter-DSFzxKQb.mjs.map +1 -1
- package/dist/perplexity-zeZ2WlBU.mjs.map +1 -1
- package/dist/providers/alibaba.d.mts +1 -1
- package/dist/providers/amazon-bedrock.d.mts +1 -1
- package/dist/providers/anthropic.d.mts +1 -1
- package/dist/providers/cerebras.d.mts +1 -1
- package/dist/providers/cohere.d.mts +1 -1
- package/dist/providers/deepinfra.d.mts +1 -1
- package/dist/providers/deepseek.d.mts +1 -1
- package/dist/providers/fireworks-ai.d.mts +1 -1
- package/dist/providers/google-vertex.d.mts +1 -1
- package/dist/providers/google.d.mts +1 -1
- package/dist/providers/groq.d.mts +1 -1
- package/dist/providers/huggingface.d.mts +1 -1
- package/dist/providers/inception.d.mts +1 -1
- package/dist/providers/llama.d.mts +1 -1
- package/dist/providers/mistral.d.mts +1 -1
- package/dist/providers/nvidia.d.mts +1 -1
- package/dist/providers/openai.d.mts +1 -1
- package/dist/providers/openrouter.d.mts +1 -1
- package/dist/providers/perplexity.d.mts +1 -1
- package/dist/providers/togetherai.d.mts +1 -1
- package/dist/providers/xai.d.mts +1 -1
- package/dist/togetherai-BvcxUfPE.mjs.map +1 -1
- package/dist/{types-DjdaZckF.d.mts → types-DIzolT_s.d.mts} +61 -21
- package/dist/types-DIzolT_s.d.mts.map +1 -0
- package/dist/xai-fSuAkQJo.mjs.map +1 -1
- package/package.json +6 -3
- package/scripts/generate-models.ts +152 -63
- package/src/catalog/index.test.ts +8 -8
- package/src/catalog/index.ts +4 -1
- package/src/catalog/providers/alibaba.ts +91 -91
- package/src/catalog/providers/amazon-bedrock.ts +205 -185
- package/src/catalog/providers/anthropic.ts +87 -62
- package/src/catalog/providers/cerebras.ts +9 -9
- package/src/catalog/providers/cohere.ts +16 -16
- package/src/catalog/providers/deepinfra.ts +71 -71
- package/src/catalog/providers/deepseek.ts +3 -3
- package/src/catalog/providers/fireworks-ai.ts +36 -36
- package/src/catalog/providers/google-vertex.ts +62 -62
- package/src/catalog/providers/google.ts +69 -69
- package/src/catalog/providers/groq.ts +24 -24
- package/src/catalog/providers/huggingface.ts +52 -52
- package/src/catalog/providers/inception.ts +9 -9
- package/src/catalog/providers/index.ts +1 -0
- package/src/catalog/providers/llama.ts +7 -7
- package/src/catalog/providers/mistral.ts +60 -60
- package/src/catalog/providers/nvidia.ts +84 -84
- package/src/catalog/providers/openai.ts +115 -115
- package/src/catalog/providers/openrouter.ts +448 -433
- package/src/catalog/providers/perplexity.ts +9 -9
- package/src/catalog/providers/togetherai.ts +47 -47
- package/src/catalog/providers/xai.ts +49 -49
- package/src/catalog/types.ts +60 -20
- package/src/cost/calculate.test.ts +11 -11
- package/src/provider/registry.ts +1 -1
- package/src/provider/types.ts +1 -1
- package/tsconfig.json +2 -1
- package/tsdown.config.ts +7 -3
- package/dist/types-DjdaZckF.d.mts.map +0 -1
|
@@ -20,7 +20,7 @@ export const NVIDIA_MODELS = [
|
|
|
20
20
|
provider: "nvidia",
|
|
21
21
|
family: "",
|
|
22
22
|
pricing: { input: 0, output: 0 },
|
|
23
|
-
contextWindow:
|
|
23
|
+
contextWindow: 128_000,
|
|
24
24
|
maxOutput: 4096,
|
|
25
25
|
modalities: { input: ["text"], output: ["text"] },
|
|
26
26
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -31,7 +31,7 @@ export const NVIDIA_MODELS = [
|
|
|
31
31
|
provider: "nvidia",
|
|
32
32
|
family: "llama",
|
|
33
33
|
pricing: { input: 0, output: 0 },
|
|
34
|
-
contextWindow:
|
|
34
|
+
contextWindow: 131_072,
|
|
35
35
|
maxOutput: 8192,
|
|
36
36
|
modalities: { input: ["text"], output: ["text"] },
|
|
37
37
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
@@ -42,7 +42,7 @@ export const NVIDIA_MODELS = [
|
|
|
42
42
|
provider: "nvidia",
|
|
43
43
|
family: "",
|
|
44
44
|
pricing: { input: 0, output: 0 },
|
|
45
|
-
contextWindow:
|
|
45
|
+
contextWindow: 128_000,
|
|
46
46
|
maxOutput: 4096,
|
|
47
47
|
modalities: { input: ["text"], output: ["text"] },
|
|
48
48
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -64,8 +64,8 @@ export const NVIDIA_MODELS = [
|
|
|
64
64
|
provider: "nvidia",
|
|
65
65
|
family: "nemotron",
|
|
66
66
|
pricing: { input: 0, output: 0 },
|
|
67
|
-
contextWindow:
|
|
68
|
-
maxOutput:
|
|
67
|
+
contextWindow: 131_072,
|
|
68
|
+
maxOutput: 131_072,
|
|
69
69
|
modalities: { input: ["text"], output: ["text"] },
|
|
70
70
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
71
71
|
},
|
|
@@ -75,7 +75,7 @@ export const NVIDIA_MODELS = [
|
|
|
75
75
|
provider: "nvidia",
|
|
76
76
|
family: "llama",
|
|
77
77
|
pricing: { input: 0, output: 0 },
|
|
78
|
-
contextWindow:
|
|
78
|
+
contextWindow: 32_768,
|
|
79
79
|
maxOutput: 2048,
|
|
80
80
|
modalities: { input: ["text"], output: ["text"] },
|
|
81
81
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -86,7 +86,7 @@ export const NVIDIA_MODELS = [
|
|
|
86
86
|
provider: "nvidia",
|
|
87
87
|
family: "",
|
|
88
88
|
pricing: { input: 0, output: 0 },
|
|
89
|
-
contextWindow:
|
|
89
|
+
contextWindow: 128_000,
|
|
90
90
|
maxOutput: 4096,
|
|
91
91
|
modalities: { input: ["text"], output: ["text"] },
|
|
92
92
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -97,7 +97,7 @@ export const NVIDIA_MODELS = [
|
|
|
97
97
|
provider: "nvidia",
|
|
98
98
|
family: "",
|
|
99
99
|
pricing: { input: 0, output: 0 },
|
|
100
|
-
contextWindow:
|
|
100
|
+
contextWindow: 128_000,
|
|
101
101
|
maxOutput: 4096,
|
|
102
102
|
modalities: { input: ["text"], output: ["text"] },
|
|
103
103
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -108,7 +108,7 @@ export const NVIDIA_MODELS = [
|
|
|
108
108
|
provider: "nvidia",
|
|
109
109
|
family: "",
|
|
110
110
|
pricing: { input: 0, output: 0 },
|
|
111
|
-
contextWindow:
|
|
111
|
+
contextWindow: 128_000,
|
|
112
112
|
maxOutput: 4096,
|
|
113
113
|
modalities: { input: ["text"], output: ["text"] },
|
|
114
114
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -119,7 +119,7 @@ export const NVIDIA_MODELS = [
|
|
|
119
119
|
provider: "nvidia",
|
|
120
120
|
family: "nemotron",
|
|
121
121
|
pricing: { input: 0, output: 0 },
|
|
122
|
-
contextWindow:
|
|
122
|
+
contextWindow: 131_072,
|
|
123
123
|
maxOutput: 8192,
|
|
124
124
|
modalities: { input: ["text", "image", "video"], output: ["text"] },
|
|
125
125
|
capabilities: { reasoning: true, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -141,7 +141,7 @@ export const NVIDIA_MODELS = [
|
|
|
141
141
|
provider: "nvidia",
|
|
142
142
|
family: "",
|
|
143
143
|
pricing: { input: 0, output: 0 },
|
|
144
|
-
contextWindow:
|
|
144
|
+
contextWindow: 128_000,
|
|
145
145
|
maxOutput: 4096,
|
|
146
146
|
modalities: { input: ["text"], output: ["text"] },
|
|
147
147
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -152,8 +152,8 @@ export const NVIDIA_MODELS = [
|
|
|
152
152
|
provider: "nvidia",
|
|
153
153
|
family: "nemotron",
|
|
154
154
|
pricing: { input: 0, output: 0 },
|
|
155
|
-
contextWindow:
|
|
156
|
-
maxOutput:
|
|
155
|
+
contextWindow: 131_072,
|
|
156
|
+
maxOutput: 131_072,
|
|
157
157
|
modalities: { input: ["text"], output: ["text"] },
|
|
158
158
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
159
159
|
},
|
|
@@ -163,7 +163,7 @@ export const NVIDIA_MODELS = [
|
|
|
163
163
|
provider: "nvidia",
|
|
164
164
|
family: "",
|
|
165
165
|
pricing: { input: 0, output: 0 },
|
|
166
|
-
contextWindow:
|
|
166
|
+
contextWindow: 128_000,
|
|
167
167
|
maxOutput: 4096,
|
|
168
168
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
169
169
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -174,7 +174,7 @@ export const NVIDIA_MODELS = [
|
|
|
174
174
|
provider: "nvidia",
|
|
175
175
|
family: "",
|
|
176
176
|
pricing: { input: 0, output: 0 },
|
|
177
|
-
contextWindow:
|
|
177
|
+
contextWindow: 128_000,
|
|
178
178
|
maxOutput: 4096,
|
|
179
179
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
180
180
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -185,7 +185,7 @@ export const NVIDIA_MODELS = [
|
|
|
185
185
|
provider: "nvidia",
|
|
186
186
|
family: "",
|
|
187
187
|
pricing: { input: 0, output: 0 },
|
|
188
|
-
contextWindow:
|
|
188
|
+
contextWindow: 128_000,
|
|
189
189
|
maxOutput: 4096,
|
|
190
190
|
modalities: { input: ["text"], output: ["text"] },
|
|
191
191
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -196,7 +196,7 @@ export const NVIDIA_MODELS = [
|
|
|
196
196
|
provider: "nvidia",
|
|
197
197
|
family: "",
|
|
198
198
|
pricing: { input: 0, output: 0 },
|
|
199
|
-
contextWindow:
|
|
199
|
+
contextWindow: 128_000,
|
|
200
200
|
maxOutput: 4096,
|
|
201
201
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
202
202
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -207,7 +207,7 @@ export const NVIDIA_MODELS = [
|
|
|
207
207
|
provider: "nvidia",
|
|
208
208
|
family: "phi",
|
|
209
209
|
pricing: { input: 0, output: 0 },
|
|
210
|
-
contextWindow:
|
|
210
|
+
contextWindow: 131_072,
|
|
211
211
|
maxOutput: 8192,
|
|
212
212
|
modalities: { input: ["text", "image", "audio"], output: ["text"] },
|
|
213
213
|
capabilities: { reasoning: true, toolCall: true, attachment: true, structuredOutput: false },
|
|
@@ -218,7 +218,7 @@ export const NVIDIA_MODELS = [
|
|
|
218
218
|
provider: "nvidia",
|
|
219
219
|
family: "",
|
|
220
220
|
pricing: { input: 0, output: 0 },
|
|
221
|
-
contextWindow:
|
|
221
|
+
contextWindow: 128_000,
|
|
222
222
|
maxOutput: 4096,
|
|
223
223
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
224
224
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -251,8 +251,8 @@ export const NVIDIA_MODELS = [
|
|
|
251
251
|
provider: "nvidia",
|
|
252
252
|
family: "minimax",
|
|
253
253
|
pricing: { input: 0, output: 0 },
|
|
254
|
-
contextWindow:
|
|
255
|
-
maxOutput:
|
|
254
|
+
contextWindow: 204_800,
|
|
255
|
+
maxOutput: 131_072,
|
|
256
256
|
modalities: { input: ["text"], output: ["text"] },
|
|
257
257
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
258
258
|
},
|
|
@@ -262,8 +262,8 @@ export const NVIDIA_MODELS = [
|
|
|
262
262
|
provider: "nvidia",
|
|
263
263
|
family: "minimax",
|
|
264
264
|
pricing: { input: 0, output: 0 },
|
|
265
|
-
contextWindow:
|
|
266
|
-
maxOutput:
|
|
265
|
+
contextWindow: 204_800,
|
|
266
|
+
maxOutput: 131_072,
|
|
267
267
|
modalities: { input: ["text"], output: ["text"] },
|
|
268
268
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
269
269
|
},
|
|
@@ -273,7 +273,7 @@ export const NVIDIA_MODELS = [
|
|
|
273
273
|
provider: "nvidia",
|
|
274
274
|
family: "deepseek",
|
|
275
275
|
pricing: { input: 0, output: 0 },
|
|
276
|
-
contextWindow:
|
|
276
|
+
contextWindow: 128_000,
|
|
277
277
|
maxOutput: 8192,
|
|
278
278
|
modalities: { input: ["text"], output: ["text"] },
|
|
279
279
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
@@ -284,7 +284,7 @@ export const NVIDIA_MODELS = [
|
|
|
284
284
|
provider: "nvidia",
|
|
285
285
|
family: "",
|
|
286
286
|
pricing: { input: 0, output: 0 },
|
|
287
|
-
contextWindow:
|
|
287
|
+
contextWindow: 128_000,
|
|
288
288
|
maxOutput: 4096,
|
|
289
289
|
modalities: { input: ["text"], output: ["text"] },
|
|
290
290
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -295,7 +295,7 @@ export const NVIDIA_MODELS = [
|
|
|
295
295
|
provider: "nvidia",
|
|
296
296
|
family: "",
|
|
297
297
|
pricing: { input: 0, output: 0 },
|
|
298
|
-
contextWindow:
|
|
298
|
+
contextWindow: 128_000,
|
|
299
299
|
maxOutput: 4096,
|
|
300
300
|
modalities: { input: ["text"], output: ["text"] },
|
|
301
301
|
capabilities: { reasoning: true, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -306,7 +306,7 @@ export const NVIDIA_MODELS = [
|
|
|
306
306
|
provider: "nvidia",
|
|
307
307
|
family: "deepseek",
|
|
308
308
|
pricing: { input: 0, output: 0 },
|
|
309
|
-
contextWindow:
|
|
309
|
+
contextWindow: 128_000,
|
|
310
310
|
maxOutput: 8192,
|
|
311
311
|
modalities: { input: ["text"], output: ["text"] },
|
|
312
312
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
@@ -317,7 +317,7 @@ export const NVIDIA_MODELS = [
|
|
|
317
317
|
provider: "nvidia",
|
|
318
318
|
family: "",
|
|
319
319
|
pricing: { input: 0, output: 0 },
|
|
320
|
-
contextWindow:
|
|
320
|
+
contextWindow: 128_000,
|
|
321
321
|
maxOutput: 4096,
|
|
322
322
|
modalities: { input: ["text"], output: ["text"] },
|
|
323
323
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -328,8 +328,8 @@ export const NVIDIA_MODELS = [
|
|
|
328
328
|
provider: "nvidia",
|
|
329
329
|
family: "deepseek",
|
|
330
330
|
pricing: { input: 0, output: 0 },
|
|
331
|
-
contextWindow:
|
|
332
|
-
maxOutput:
|
|
331
|
+
contextWindow: 163_840,
|
|
332
|
+
maxOutput: 65_536,
|
|
333
333
|
modalities: { input: ["text"], output: ["text"] },
|
|
334
334
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
335
335
|
},
|
|
@@ -339,7 +339,7 @@ export const NVIDIA_MODELS = [
|
|
|
339
339
|
provider: "nvidia",
|
|
340
340
|
family: "kimi",
|
|
341
341
|
pricing: { input: 0, output: 0 },
|
|
342
|
-
contextWindow:
|
|
342
|
+
contextWindow: 128_000,
|
|
343
343
|
maxOutput: 8192,
|
|
344
344
|
modalities: { input: ["text"], output: ["text"] },
|
|
345
345
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
@@ -350,8 +350,8 @@ export const NVIDIA_MODELS = [
|
|
|
350
350
|
provider: "nvidia",
|
|
351
351
|
family: "kimi",
|
|
352
352
|
pricing: { input: 0, output: 0 },
|
|
353
|
-
contextWindow:
|
|
354
|
-
maxOutput:
|
|
353
|
+
contextWindow: 262_144,
|
|
354
|
+
maxOutput: 262_144,
|
|
355
355
|
modalities: { input: ["text"], output: ["text"] },
|
|
356
356
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: false },
|
|
357
357
|
},
|
|
@@ -361,8 +361,8 @@ export const NVIDIA_MODELS = [
|
|
|
361
361
|
provider: "nvidia",
|
|
362
362
|
family: "kimi",
|
|
363
363
|
pricing: { input: 0, output: 0 },
|
|
364
|
-
contextWindow:
|
|
365
|
-
maxOutput:
|
|
364
|
+
contextWindow: 262_144,
|
|
365
|
+
maxOutput: 262_144,
|
|
366
366
|
modalities: { input: ["text", "image", "video"], output: ["text"] },
|
|
367
367
|
capabilities: { reasoning: true, toolCall: true, attachment: true, structuredOutput: false },
|
|
368
368
|
},
|
|
@@ -372,8 +372,8 @@ export const NVIDIA_MODELS = [
|
|
|
372
372
|
provider: "nvidia",
|
|
373
373
|
family: "kimi-thinking",
|
|
374
374
|
pricing: { input: 0, output: 0 },
|
|
375
|
-
contextWindow:
|
|
376
|
-
maxOutput:
|
|
375
|
+
contextWindow: 262_144,
|
|
376
|
+
maxOutput: 262_144,
|
|
377
377
|
modalities: { input: ["text"], output: ["text"] },
|
|
378
378
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: true },
|
|
379
379
|
},
|
|
@@ -383,7 +383,7 @@ export const NVIDIA_MODELS = [
|
|
|
383
383
|
provider: "nvidia",
|
|
384
384
|
family: "",
|
|
385
385
|
pricing: { input: 0, output: 0 },
|
|
386
|
-
contextWindow:
|
|
386
|
+
contextWindow: 128_000,
|
|
387
387
|
maxOutput: 4096,
|
|
388
388
|
modalities: { input: ["text"], output: ["text"] },
|
|
389
389
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -394,7 +394,7 @@ export const NVIDIA_MODELS = [
|
|
|
394
394
|
provider: "nvidia",
|
|
395
395
|
family: "",
|
|
396
396
|
pricing: { input: 0, output: 0 },
|
|
397
|
-
contextWindow:
|
|
397
|
+
contextWindow: 128_000,
|
|
398
398
|
maxOutput: 4096,
|
|
399
399
|
modalities: { input: ["text"], output: ["text"] },
|
|
400
400
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -405,7 +405,7 @@ export const NVIDIA_MODELS = [
|
|
|
405
405
|
provider: "nvidia",
|
|
406
406
|
family: "",
|
|
407
407
|
pricing: { input: 0, output: 0 },
|
|
408
|
-
contextWindow:
|
|
408
|
+
contextWindow: 128_000,
|
|
409
409
|
maxOutput: 4096,
|
|
410
410
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
411
411
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -416,7 +416,7 @@ export const NVIDIA_MODELS = [
|
|
|
416
416
|
provider: "nvidia",
|
|
417
417
|
family: "",
|
|
418
418
|
pricing: { input: 0, output: 0 },
|
|
419
|
-
contextWindow:
|
|
419
|
+
contextWindow: 128_000,
|
|
420
420
|
maxOutput: 4096,
|
|
421
421
|
modalities: { input: ["text"], output: ["text"] },
|
|
422
422
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -427,7 +427,7 @@ export const NVIDIA_MODELS = [
|
|
|
427
427
|
provider: "nvidia",
|
|
428
428
|
family: "",
|
|
429
429
|
pricing: { input: 0, output: 0 },
|
|
430
|
-
contextWindow:
|
|
430
|
+
contextWindow: 128_000,
|
|
431
431
|
maxOutput: 4096,
|
|
432
432
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
433
433
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -438,7 +438,7 @@ export const NVIDIA_MODELS = [
|
|
|
438
438
|
provider: "nvidia",
|
|
439
439
|
family: "",
|
|
440
440
|
pricing: { input: 0, output: 0 },
|
|
441
|
-
contextWindow:
|
|
441
|
+
contextWindow: 128_000,
|
|
442
442
|
maxOutput: 4096,
|
|
443
443
|
modalities: { input: ["text"], output: ["text"] },
|
|
444
444
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -449,7 +449,7 @@ export const NVIDIA_MODELS = [
|
|
|
449
449
|
provider: "nvidia",
|
|
450
450
|
family: "",
|
|
451
451
|
pricing: { input: 0, output: 0 },
|
|
452
|
-
contextWindow:
|
|
452
|
+
contextWindow: 128_000,
|
|
453
453
|
maxOutput: 4096,
|
|
454
454
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
455
455
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -460,7 +460,7 @@ export const NVIDIA_MODELS = [
|
|
|
460
460
|
provider: "nvidia",
|
|
461
461
|
family: "",
|
|
462
462
|
pricing: { input: 0, output: 0 },
|
|
463
|
-
contextWindow:
|
|
463
|
+
contextWindow: 128_000,
|
|
464
464
|
maxOutput: 4096,
|
|
465
465
|
modalities: { input: ["text"], output: ["text"] },
|
|
466
466
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -471,7 +471,7 @@ export const NVIDIA_MODELS = [
|
|
|
471
471
|
provider: "nvidia",
|
|
472
472
|
family: "gemma",
|
|
473
473
|
pricing: { input: 0, output: 0 },
|
|
474
|
-
contextWindow:
|
|
474
|
+
contextWindow: 131_072,
|
|
475
475
|
maxOutput: 8192,
|
|
476
476
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
477
477
|
capabilities: { reasoning: true, toolCall: true, attachment: true, structuredOutput: false },
|
|
@@ -482,8 +482,8 @@ export const NVIDIA_MODELS = [
|
|
|
482
482
|
provider: "nvidia",
|
|
483
483
|
family: "glm",
|
|
484
484
|
pricing: { input: 0, output: 0 },
|
|
485
|
-
contextWindow:
|
|
486
|
-
maxOutput:
|
|
485
|
+
contextWindow: 204_800,
|
|
486
|
+
maxOutput: 131_072,
|
|
487
487
|
modalities: { input: ["text"], output: ["text"] },
|
|
488
488
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
489
489
|
},
|
|
@@ -493,8 +493,8 @@ export const NVIDIA_MODELS = [
|
|
|
493
493
|
provider: "nvidia",
|
|
494
494
|
family: "glm",
|
|
495
495
|
pricing: { input: 0, output: 0 },
|
|
496
|
-
contextWindow:
|
|
497
|
-
maxOutput:
|
|
496
|
+
contextWindow: 202_752,
|
|
497
|
+
maxOutput: 131_000,
|
|
498
498
|
modalities: { input: ["text"], output: ["text"] },
|
|
499
499
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: true },
|
|
500
500
|
},
|
|
@@ -504,8 +504,8 @@ export const NVIDIA_MODELS = [
|
|
|
504
504
|
provider: "nvidia",
|
|
505
505
|
family: "",
|
|
506
506
|
pricing: { input: 0, output: 0 },
|
|
507
|
-
contextWindow:
|
|
508
|
-
maxOutput:
|
|
507
|
+
contextWindow: 256_000,
|
|
508
|
+
maxOutput: 16_384,
|
|
509
509
|
modalities: { input: ["text"], output: ["text"] },
|
|
510
510
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
511
511
|
},
|
|
@@ -515,8 +515,8 @@ export const NVIDIA_MODELS = [
|
|
|
515
515
|
provider: "nvidia",
|
|
516
516
|
family: "qwen",
|
|
517
517
|
pricing: { input: 0, output: 0 },
|
|
518
|
-
contextWindow:
|
|
519
|
-
maxOutput:
|
|
518
|
+
contextWindow: 262_144,
|
|
519
|
+
maxOutput: 16_384,
|
|
520
520
|
modalities: { input: ["text"], output: ["text"] },
|
|
521
521
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
522
522
|
},
|
|
@@ -526,8 +526,8 @@ export const NVIDIA_MODELS = [
|
|
|
526
526
|
provider: "nvidia",
|
|
527
527
|
family: "qwen",
|
|
528
528
|
pricing: { input: 0, output: 0 },
|
|
529
|
-
contextWindow:
|
|
530
|
-
maxOutput:
|
|
529
|
+
contextWindow: 262_144,
|
|
530
|
+
maxOutput: 66_536,
|
|
531
531
|
modalities: { input: ["text"], output: ["text"] },
|
|
532
532
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: false },
|
|
533
533
|
},
|
|
@@ -537,7 +537,7 @@ export const NVIDIA_MODELS = [
|
|
|
537
537
|
provider: "nvidia",
|
|
538
538
|
family: "",
|
|
539
539
|
pricing: { input: 0, output: 0 },
|
|
540
|
-
contextWindow:
|
|
540
|
+
contextWindow: 128_000,
|
|
541
541
|
maxOutput: 4096,
|
|
542
542
|
modalities: { input: ["text"], output: ["text"] },
|
|
543
543
|
capabilities: { reasoning: true, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -548,7 +548,7 @@ export const NVIDIA_MODELS = [
|
|
|
548
548
|
provider: "nvidia",
|
|
549
549
|
family: "",
|
|
550
550
|
pricing: { input: 0, output: 0 },
|
|
551
|
-
contextWindow:
|
|
551
|
+
contextWindow: 128_000,
|
|
552
552
|
maxOutput: 4096,
|
|
553
553
|
modalities: { input: ["text"], output: ["text"] },
|
|
554
554
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -559,7 +559,7 @@ export const NVIDIA_MODELS = [
|
|
|
559
559
|
provider: "nvidia",
|
|
560
560
|
family: "qwen",
|
|
561
561
|
pricing: { input: 0, output: 0 },
|
|
562
|
-
contextWindow:
|
|
562
|
+
contextWindow: 262_144,
|
|
563
563
|
maxOutput: 8192,
|
|
564
564
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
565
565
|
capabilities: { reasoning: true, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -570,7 +570,7 @@ export const NVIDIA_MODELS = [
|
|
|
570
570
|
provider: "nvidia",
|
|
571
571
|
family: "",
|
|
572
572
|
pricing: { input: 0, output: 0 },
|
|
573
|
-
contextWindow:
|
|
573
|
+
contextWindow: 128_000,
|
|
574
574
|
maxOutput: 4096,
|
|
575
575
|
modalities: { input: ["text"], output: ["text"] },
|
|
576
576
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -581,7 +581,7 @@ export const NVIDIA_MODELS = [
|
|
|
581
581
|
provider: "nvidia",
|
|
582
582
|
family: "qwen",
|
|
583
583
|
pricing: { input: 0, output: 0 },
|
|
584
|
-
contextWindow:
|
|
584
|
+
contextWindow: 131_072,
|
|
585
585
|
maxOutput: 8192,
|
|
586
586
|
modalities: { input: ["text"], output: ["text"] },
|
|
587
587
|
capabilities: { reasoning: true, toolCall: true, attachment: false, structuredOutput: false },
|
|
@@ -592,8 +592,8 @@ export const NVIDIA_MODELS = [
|
|
|
592
592
|
provider: "nvidia",
|
|
593
593
|
family: "qwen",
|
|
594
594
|
pricing: { input: 0, output: 0 },
|
|
595
|
-
contextWindow:
|
|
596
|
-
maxOutput:
|
|
595
|
+
contextWindow: 262_144,
|
|
596
|
+
maxOutput: 16_384,
|
|
597
597
|
modalities: { input: ["text"], output: ["text"] },
|
|
598
598
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: false },
|
|
599
599
|
},
|
|
@@ -603,7 +603,7 @@ export const NVIDIA_MODELS = [
|
|
|
603
603
|
provider: "nvidia",
|
|
604
604
|
family: "",
|
|
605
605
|
pricing: { input: 0, output: 0 },
|
|
606
|
-
contextWindow:
|
|
606
|
+
contextWindow: 128_000,
|
|
607
607
|
maxOutput: 4096,
|
|
608
608
|
modalities: { input: ["text"], output: ["text"] },
|
|
609
609
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -614,7 +614,7 @@ export const NVIDIA_MODELS = [
|
|
|
614
614
|
provider: "nvidia",
|
|
615
615
|
family: "",
|
|
616
616
|
pricing: { input: 0, output: 0 },
|
|
617
|
-
contextWindow:
|
|
617
|
+
contextWindow: 128_000,
|
|
618
618
|
maxOutput: 4096,
|
|
619
619
|
modalities: { input: ["text"], output: ["text"] },
|
|
620
620
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -625,7 +625,7 @@ export const NVIDIA_MODELS = [
|
|
|
625
625
|
provider: "nvidia",
|
|
626
626
|
family: "",
|
|
627
627
|
pricing: { input: 0, output: 0 },
|
|
628
|
-
contextWindow:
|
|
628
|
+
contextWindow: 128_000,
|
|
629
629
|
maxOutput: 4096,
|
|
630
630
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
631
631
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -636,7 +636,7 @@ export const NVIDIA_MODELS = [
|
|
|
636
636
|
provider: "nvidia",
|
|
637
637
|
family: "",
|
|
638
638
|
pricing: { input: 0, output: 0 },
|
|
639
|
-
contextWindow:
|
|
639
|
+
contextWindow: 128_000,
|
|
640
640
|
maxOutput: 4096,
|
|
641
641
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
642
642
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -647,7 +647,7 @@ export const NVIDIA_MODELS = [
|
|
|
647
647
|
provider: "nvidia",
|
|
648
648
|
family: "",
|
|
649
649
|
pricing: { input: 0, output: 0 },
|
|
650
|
-
contextWindow:
|
|
650
|
+
contextWindow: 128_000,
|
|
651
651
|
maxOutput: 4096,
|
|
652
652
|
modalities: { input: ["text"], output: ["text"] },
|
|
653
653
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -658,7 +658,7 @@ export const NVIDIA_MODELS = [
|
|
|
658
658
|
provider: "nvidia",
|
|
659
659
|
family: "",
|
|
660
660
|
pricing: { input: 0, output: 0 },
|
|
661
|
-
contextWindow:
|
|
661
|
+
contextWindow: 128_000,
|
|
662
662
|
maxOutput: 4096,
|
|
663
663
|
modalities: { input: ["text"], output: ["text"] },
|
|
664
664
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -669,7 +669,7 @@ export const NVIDIA_MODELS = [
|
|
|
669
669
|
provider: "nvidia",
|
|
670
670
|
family: "",
|
|
671
671
|
pricing: { input: 0, output: 0 },
|
|
672
|
-
contextWindow:
|
|
672
|
+
contextWindow: 128_000,
|
|
673
673
|
maxOutput: 4096,
|
|
674
674
|
modalities: { input: ["text"], output: ["text"] },
|
|
675
675
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -680,7 +680,7 @@ export const NVIDIA_MODELS = [
|
|
|
680
680
|
provider: "nvidia",
|
|
681
681
|
family: "",
|
|
682
682
|
pricing: { input: 0, output: 0 },
|
|
683
|
-
contextWindow:
|
|
683
|
+
contextWindow: 128_000,
|
|
684
684
|
maxOutput: 4096,
|
|
685
685
|
modalities: { input: ["text"], output: ["text"] },
|
|
686
686
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -691,7 +691,7 @@ export const NVIDIA_MODELS = [
|
|
|
691
691
|
provider: "nvidia",
|
|
692
692
|
family: "",
|
|
693
693
|
pricing: { input: 0, output: 0 },
|
|
694
|
-
contextWindow:
|
|
694
|
+
contextWindow: 128_000,
|
|
695
695
|
maxOutput: 4096,
|
|
696
696
|
modalities: { input: ["text"], output: ["text"] },
|
|
697
697
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -702,7 +702,7 @@ export const NVIDIA_MODELS = [
|
|
|
702
702
|
provider: "nvidia",
|
|
703
703
|
family: "",
|
|
704
704
|
pricing: { input: 0, output: 0 },
|
|
705
|
-
contextWindow:
|
|
705
|
+
contextWindow: 128_000,
|
|
706
706
|
maxOutput: 4096,
|
|
707
707
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
708
708
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
@@ -713,8 +713,8 @@ export const NVIDIA_MODELS = [
|
|
|
713
713
|
provider: "nvidia",
|
|
714
714
|
family: "mistral-large",
|
|
715
715
|
pricing: { input: 0, output: 0 },
|
|
716
|
-
contextWindow:
|
|
717
|
-
maxOutput:
|
|
716
|
+
contextWindow: 262_144,
|
|
717
|
+
maxOutput: 262_144,
|
|
718
718
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
719
719
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
720
720
|
},
|
|
@@ -724,7 +724,7 @@ export const NVIDIA_MODELS = [
|
|
|
724
724
|
provider: "nvidia",
|
|
725
725
|
family: "",
|
|
726
726
|
pricing: { input: 0, output: 0 },
|
|
727
|
-
contextWindow:
|
|
727
|
+
contextWindow: 128_000,
|
|
728
728
|
maxOutput: 4096,
|
|
729
729
|
modalities: { input: ["text"], output: ["text"] },
|
|
730
730
|
capabilities: { reasoning: false, toolCall: false, attachment: false, structuredOutput: false },
|
|
@@ -735,7 +735,7 @@ export const NVIDIA_MODELS = [
|
|
|
735
735
|
provider: "nvidia",
|
|
736
736
|
family: "",
|
|
737
737
|
pricing: { input: 0, output: 0 },
|
|
738
|
-
contextWindow:
|
|
738
|
+
contextWindow: 128_000,
|
|
739
739
|
maxOutput: 4096,
|
|
740
740
|
modalities: { input: ["text"], output: ["text"] },
|
|
741
741
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -746,7 +746,7 @@ export const NVIDIA_MODELS = [
|
|
|
746
746
|
provider: "nvidia",
|
|
747
747
|
family: "",
|
|
748
748
|
pricing: { input: 0, output: 0 },
|
|
749
|
-
contextWindow:
|
|
749
|
+
contextWindow: 128_000,
|
|
750
750
|
maxOutput: 4096,
|
|
751
751
|
modalities: { input: ["text"], output: ["text"] },
|
|
752
752
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -757,8 +757,8 @@ export const NVIDIA_MODELS = [
|
|
|
757
757
|
provider: "nvidia",
|
|
758
758
|
family: "ministral",
|
|
759
759
|
pricing: { input: 0, output: 0 },
|
|
760
|
-
contextWindow:
|
|
761
|
-
maxOutput:
|
|
760
|
+
contextWindow: 262_144,
|
|
761
|
+
maxOutput: 262_144,
|
|
762
762
|
modalities: { input: ["text", "image"], output: ["text"] },
|
|
763
763
|
capabilities: { reasoning: false, toolCall: true, attachment: true, structuredOutput: true },
|
|
764
764
|
},
|
|
@@ -768,7 +768,7 @@ export const NVIDIA_MODELS = [
|
|
|
768
768
|
provider: "nvidia",
|
|
769
769
|
family: "",
|
|
770
770
|
pricing: { input: 0, output: 0 },
|
|
771
|
-
contextWindow:
|
|
771
|
+
contextWindow: 128_000,
|
|
772
772
|
maxOutput: 4096,
|
|
773
773
|
modalities: { input: ["text"], output: ["text"] },
|
|
774
774
|
capabilities: { reasoning: false, toolCall: true, attachment: false, structuredOutput: true },
|
|
@@ -779,8 +779,8 @@ export const NVIDIA_MODELS = [
|
|
|
779
779
|
provider: "nvidia",
|
|
780
780
|
family: "devstral",
|
|
781
781
|
pricing: { input: 0, output: 0 },
|
|
782
|
-
contextWindow:
|
|
783
|
-
maxOutput:
|
|
782
|
+
contextWindow: 262_144,
|
|
783
|
+
maxOutput: 262_144,
|
|
784
784
|
modalities: { input: ["text"], output: ["text"] },
|
|
785
785
|
capabilities: { reasoning: true, toolCall: true, attachment: true, structuredOutput: true },
|
|
786
786
|
},
|
|
@@ -790,7 +790,7 @@ export const NVIDIA_MODELS = [
|
|
|
790
790
|
provider: "nvidia",
|
|
791
791
|
family: "gpt-oss",
|
|
792
792
|
pricing: { input: 0, output: 0 },
|
|
793
|
-
contextWindow:
|
|
793
|
+
contextWindow: 128_000,
|
|
794
794
|
maxOutput: 8192,
|
|
795
795
|
modalities: { input: ["text"], output: ["text"] },
|
|
796
796
|
capabilities: { reasoning: true, toolCall: false, attachment: true, structuredOutput: false },
|