modelpedia 0.0.2 → 0.0.3

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.
Files changed (64) hide show
  1. package/README.md +135 -0
  2. package/dist/index.cjs +1 -101
  3. package/dist/index.mjs +1 -92
  4. package/dist/providers/alibaba.cjs +4 -835
  5. package/dist/providers/alibaba.mjs +4 -833
  6. package/dist/providers/amazon.cjs +4 -1484
  7. package/dist/providers/amazon.mjs +4 -1482
  8. package/dist/providers/anthropic.cjs +3 -698
  9. package/dist/providers/anthropic.mjs +3 -696
  10. package/dist/providers/azure.cjs +6 -1491
  11. package/dist/providers/azure.mjs +6 -1489
  12. package/dist/providers/baseten.cjs +3 -279
  13. package/dist/providers/baseten.mjs +3 -277
  14. package/dist/providers/cerebras.cjs +4 -145
  15. package/dist/providers/cerebras.mjs +4 -143
  16. package/dist/providers/cloudflare.cjs +4 -826
  17. package/dist/providers/cloudflare.mjs +4 -824
  18. package/dist/providers/cohere.cjs +5 -525
  19. package/dist/providers/cohere.mjs +5 -523
  20. package/dist/providers/cursor.cjs +1 -856
  21. package/dist/providers/cursor.mjs +1 -854
  22. package/dist/providers/deepseek.cjs +3 -64
  23. package/dist/providers/deepseek.mjs +3 -62
  24. package/dist/providers/fireworks.cjs +3 -3794
  25. package/dist/providers/fireworks.mjs +3 -3792
  26. package/dist/providers/google.cjs +6 -972
  27. package/dist/providers/google.mjs +6 -970
  28. package/dist/providers/groq.cjs +3 -353
  29. package/dist/providers/groq.mjs +3 -351
  30. package/dist/providers/huggingface.cjs +3 -1022
  31. package/dist/providers/huggingface.mjs +3 -1020
  32. package/dist/providers/meta.cjs +3 -481
  33. package/dist/providers/meta.mjs +3 -479
  34. package/dist/providers/minimax.cjs +3 -156
  35. package/dist/providers/minimax.mjs +3 -154
  36. package/dist/providers/mistral.cjs +3 -1594
  37. package/dist/providers/mistral.mjs +3 -1592
  38. package/dist/providers/moonshot.cjs +3 -138
  39. package/dist/providers/moonshot.mjs +3 -136
  40. package/dist/providers/nvidia.cjs +3 -2040
  41. package/dist/providers/nvidia.mjs +3 -2038
  42. package/dist/providers/ollama.cjs +3 -326
  43. package/dist/providers/ollama.mjs +3 -324
  44. package/dist/providers/openai.cjs +3 -9079
  45. package/dist/providers/openai.mjs +3 -9077
  46. package/dist/providers/opencode.cjs +3 -367
  47. package/dist/providers/opencode.mjs +3 -365
  48. package/dist/providers/openrouter.cjs +12 -7835
  49. package/dist/providers/openrouter.mjs +12 -7833
  50. package/dist/providers/perplexity.cjs +3 -311
  51. package/dist/providers/perplexity.mjs +3 -309
  52. package/dist/providers/qwen.cjs +3 -835
  53. package/dist/providers/qwen.mjs +3 -833
  54. package/dist/providers/together.cjs +4 -360
  55. package/dist/providers/together.mjs +4 -358
  56. package/dist/providers/vercel.cjs +3 -4037
  57. package/dist/providers/vercel.mjs +3 -4035
  58. package/dist/providers/vertex.cjs +10 -1072
  59. package/dist/providers/vertex.mjs +10 -1070
  60. package/dist/providers/xai.cjs +3 -301
  61. package/dist/providers/xai.mjs +3 -299
  62. package/dist/providers/zai.cjs +3 -243
  63. package/dist/providers/zai.mjs +3 -241
  64. package/package.json +1 -1
@@ -1,360 +1,4 @@
1
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
- //#region src/providers/together.ts
3
- const provider = {
4
- "id": "together",
5
- "name": "Together AI",
6
- "region": "US",
7
- "url": "https://www.together.ai",
8
- "api_url": "https://api.together.xyz/v1",
9
- "docs_url": "https://docs.together.ai",
10
- "pricing_url": "https://www.together.ai/pricing",
11
- "icon": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"currentColor\" fill-rule=\"evenodd\">\n <path d=\"M17.385 11.23a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm0 10.77a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm-10.77 0a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23z\" opacity=\".2\"/>\n <circle cx=\"6.615\" cy=\"6.615\" r=\"4.615\"/>\n</svg>",
12
- "models": [
13
- {
14
- "id": "s/deepseek-v3-1",
15
- "name": "Deepseek V3 1",
16
- "created_by": "deepseek",
17
- "source": "official",
18
- "last_updated": "2026-03-21",
19
- "family": "deepseek",
20
- "context_window": 128e3,
21
- "capabilities": { "streaming": true },
22
- "pricing": {
23
- "input": .6,
24
- "output": 1.7
25
- }
26
- },
27
- {
28
- "id": "s/deepseek-v3-2-exp",
29
- "name": "Deepseek V3 2 Exp",
30
- "created_by": "deepseek",
31
- "source": "official",
32
- "last_updated": "2026-03-21",
33
- "family": "deepseek",
34
- "context_window": 128e3,
35
- "capabilities": { "streaming": true },
36
- "pricing": {
37
- "input": 2,
38
- "output": 2
39
- }
40
- },
41
- {
42
- "id": "s/flux-2-pro",
43
- "name": "Flux 2 Pro",
44
- "created_by": "black-forest-labs",
45
- "source": "official",
46
- "last_updated": "2026-03-21",
47
- "context_window": 32e3,
48
- "capabilities": { "streaming": true },
49
- "pricing": {
50
- "input": .034,
51
- "output": .03
52
- }
53
- },
54
- {
55
- "id": "s/gemma-3-27b",
56
- "name": "Gemma 3 27b",
57
- "created_by": "google",
58
- "source": "official",
59
- "last_updated": "2026-03-21",
60
- "family": "gemma-3",
61
- "context_window": 64e3,
62
- "capabilities": { "streaming": true },
63
- "pricing": {
64
- "input": .1,
65
- "output": .15
66
- }
67
- },
68
- {
69
- "id": "s/glm-4-7",
70
- "name": "Glm 4 7",
71
- "created_by": "zhipu",
72
- "source": "official",
73
- "last_updated": "2026-03-21",
74
- "context_window": 202e3,
75
- "capabilities": { "streaming": true },
76
- "pricing": {
77
- "input": .45,
78
- "output": 2
79
- }
80
- },
81
- {
82
- "id": "s/glm-5",
83
- "name": "Glm 5",
84
- "created_by": "zhipu",
85
- "source": "official",
86
- "last_updated": "2026-03-21",
87
- "context_window": 202e3,
88
- "capabilities": { "streaming": true },
89
- "pricing": {
90
- "input": 1,
91
- "output": 3.2
92
- }
93
- },
94
- {
95
- "id": "s/google-veo-3-0",
96
- "name": "Google Veo 3 0",
97
- "created_by": "unknown",
98
- "source": "official",
99
- "last_updated": "2026-03-21",
100
- "capabilities": { "streaming": true },
101
- "pricing": {
102
- "input": .14,
103
- "output": 1.6
104
- }
105
- },
106
- {
107
- "id": "s/gpt-image-1-5",
108
- "name": "Gpt Image 1 5",
109
- "created_by": "openai",
110
- "source": "official",
111
- "last_updated": "2026-03-21",
112
- "family": "gpt-image-1",
113
- "context_window": 32e3,
114
- "capabilities": { "streaming": true },
115
- "pricing": {
116
- "input": .03,
117
- "output": .034
118
- }
119
- },
120
- {
121
- "id": "s/gpt-oss-120b",
122
- "name": "Gpt Oss 120b",
123
- "created_by": "openai",
124
- "source": "official",
125
- "last_updated": "2026-03-21",
126
- "family": "gpt-oss",
127
- "context_window": 128e3,
128
- "capabilities": { "streaming": true },
129
- "pricing": {
130
- "input": .15,
131
- "output": .6
132
- }
133
- },
134
- {
135
- "id": "s/kimi-k2-0905",
136
- "name": "Kimi K2 0905",
137
- "created_by": "moonshot",
138
- "source": "official",
139
- "last_updated": "2026-03-21",
140
- "context_window": 262e3,
141
- "capabilities": { "streaming": true },
142
- "pricing": {
143
- "input": 1,
144
- "output": 3
145
- }
146
- },
147
- {
148
- "id": "s/kimi-k2-5",
149
- "name": "Kimi K2 5",
150
- "created_by": "moonshot",
151
- "source": "official",
152
- "last_updated": "2026-03-21",
153
- "context_window": 262e3,
154
- "capabilities": { "streaming": true },
155
- "pricing": {
156
- "input": .5,
157
- "output": 2.8
158
- }
159
- },
160
- {
161
- "id": "s/lfm2-24b-a2b",
162
- "name": "Lfm2 24b A2b",
163
- "created_by": "liquid",
164
- "source": "official",
165
- "last_updated": "2026-03-21",
166
- "context_window": 32e3,
167
- "capabilities": { "streaming": true },
168
- "pricing": {
169
- "input": .03,
170
- "output": .12
171
- }
172
- },
173
- {
174
- "id": "s/llama-4-maverick",
175
- "name": "Llama 4 Maverick",
176
- "created_by": "meta",
177
- "source": "official",
178
- "last_updated": "2026-03-21",
179
- "family": "llama-4",
180
- "context_window": 1048e3,
181
- "capabilities": { "streaming": true },
182
- "pricing": {
183
- "input": .27,
184
- "output": .85
185
- }
186
- },
187
- {
188
- "id": "s/minimax-m2-5",
189
- "name": "Minimax M2 5",
190
- "created_by": "minimax",
191
- "source": "official",
192
- "last_updated": "2026-03-21",
193
- "context_window": 192e3,
194
- "capabilities": { "streaming": true },
195
- "pricing": {
196
- "input": .06,
197
- "output": 1.2
198
- }
199
- },
200
- {
201
- "id": "s/minimax-speech-2-6-turbo",
202
- "name": "Minimax Speech 2 6 Turbo",
203
- "created_by": "minimax",
204
- "source": "official",
205
- "last_updated": "2026-03-21",
206
- "capabilities": { "streaming": true }
207
- },
208
- {
209
- "id": "s/ministral-3-8b-instruct-2512",
210
- "name": "Ministral 3 8b Instruct 2512",
211
- "created_by": "mistral",
212
- "source": "official",
213
- "last_updated": "2026-03-21",
214
- "family": "ministral",
215
- "context_window": 256e3,
216
- "alias": "s/ministral-3-8b-instruct",
217
- "capabilities": { "streaming": true },
218
- "pricing": {
219
- "input": .1,
220
- "output": .15
221
- }
222
- },
223
- {
224
- "id": "s/ministral-3-8b-instruct",
225
- "name": "Ministral 3 8b Instruct 2512",
226
- "created_by": "mistral",
227
- "source": "official",
228
- "last_updated": "2026-03-21",
229
- "family": "ministral",
230
- "context_window": 256e3,
231
- "capabilities": { "streaming": true },
232
- "pricing": {
233
- "input": .1,
234
- "output": .15
235
- },
236
- "snapshots": ["s/ministral-3-8b-instruct-2512"]
237
- },
238
- {
239
- "id": "s/nano-banana-pro",
240
- "name": "Nano Banana Pro",
241
- "created_by": "unknown",
242
- "source": "official",
243
- "last_updated": "2026-03-21",
244
- "context_window": 32e3,
245
- "capabilities": { "streaming": true },
246
- "pricing": {
247
- "input": .03,
248
- "output": .134
249
- }
250
- },
251
- {
252
- "id": "s/nvidia-nemotron-3-super",
253
- "name": "Nvidia Nemotron 3 Super",
254
- "created_by": "nvidia",
255
- "source": "official",
256
- "last_updated": "2026-03-21",
257
- "capabilities": { "streaming": true },
258
- "pricing": {
259
- "input": 1,
260
- "output": 3.2
261
- }
262
- },
263
- {
264
- "id": "s/qwen3-235b-a22b-instruct-2507-fp8",
265
- "name": "Qwen3 235b A22b Instruct 2507 Fp8",
266
- "created_by": "qwen",
267
- "source": "official",
268
- "last_updated": "2026-03-21",
269
- "family": "qwen3",
270
- "context_window": 262e3,
271
- "capabilities": { "streaming": true },
272
- "pricing": {
273
- "input": .2,
274
- "output": .6
275
- }
276
- },
277
- {
278
- "id": "s/qwen3-5-397b-a17b",
279
- "name": "Qwen3 5 397b A17b",
280
- "created_by": "qwen",
281
- "source": "official",
282
- "last_updated": "2026-03-21",
283
- "family": "qwen3",
284
- "context_window": 256e3,
285
- "capabilities": { "streaming": true },
286
- "pricing": {
287
- "input": .6,
288
- "output": 3.6
289
- }
290
- },
291
- {
292
- "id": "s/qwen3-5-9b",
293
- "name": "Qwen3 5 9b",
294
- "created_by": "qwen",
295
- "source": "official",
296
- "last_updated": "2026-03-21",
297
- "family": "qwen3",
298
- "context_window": 262e3,
299
- "capabilities": { "streaming": true },
300
- "pricing": {
301
- "input": .1,
302
- "output": .15
303
- }
304
- },
305
- {
306
- "id": "s/qwen3-coder-next",
307
- "name": "Qwen3 Coder Next",
308
- "created_by": "qwen",
309
- "source": "official",
310
- "last_updated": "2026-03-21",
311
- "family": "qwen3",
312
- "context_window": 262e3,
313
- "capabilities": { "streaming": true },
314
- "pricing": {
315
- "input": .5,
316
- "output": 1.2
317
- }
318
- },
319
- {
320
- "id": "s/rime-arcana-v3",
321
- "name": "Rime Arcana V3",
322
- "created_by": "unknown",
323
- "source": "official",
324
- "last_updated": "2026-03-21",
325
- "capabilities": { "streaming": true }
326
- },
327
- {
328
- "id": "s/sora-2-pro",
329
- "name": "Sora 2 Pro",
330
- "created_by": "unknown",
331
- "source": "official",
332
- "last_updated": "2026-03-21",
333
- "capabilities": { "streaming": true },
334
- "pricing": {
335
- "input": .14,
336
- "output": 2.4
337
- }
338
- },
339
- {
340
- "id": "s/wan-2-6-image",
341
- "name": "Wan 2 6 Image",
342
- "created_by": "unknown",
343
- "source": "official",
344
- "last_updated": "2026-03-21",
345
- "context_window": 32e3,
346
- "capabilities": { "streaming": true },
347
- "pricing": {
348
- "input": .03,
349
- "output": .03
350
- }
351
- }
352
- ]
353
- };
354
- const models = provider.models.map((m) => ({
355
- ...m,
356
- provider: provider.id
357
- }));
358
- //#endregion
359
- exports.models = models;
360
- exports.provider = provider;
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e={id:`together`,name:`Together AI`,region:`US`,url:`https://www.together.ai`,api_url:`https://api.together.xyz/v1`,docs_url:`https://docs.together.ai`,pricing_url:`https://www.together.ai/pricing`,icon:`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" fill-rule="evenodd">
2
+ <path d="M17.385 11.23a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm0 10.77a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm-10.77 0a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23z" opacity=".2"/>
3
+ <circle cx="6.615" cy="6.615" r="4.615"/>
4
+ </svg>`,models:[{id:`s/deepseek-v3-1`,name:`Deepseek V3 1`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek`,context_window:128e3,capabilities:{streaming:!0},pricing:{input:.6,output:1.7}},{id:`s/deepseek-v3-2-exp`,name:`Deepseek V3 2 Exp`,created_by:`deepseek`,source:`official`,last_updated:`2026-03-21`,family:`deepseek`,context_window:128e3,capabilities:{streaming:!0},pricing:{input:2,output:2}},{id:`s/flux-2-pro`,name:`Flux 2 Pro`,created_by:`black-forest-labs`,source:`official`,last_updated:`2026-03-21`,context_window:32e3,capabilities:{streaming:!0},pricing:{input:.034,output:.03}},{id:`s/gemma-3-27b`,name:`Gemma 3 27b`,created_by:`google`,source:`official`,last_updated:`2026-03-21`,family:`gemma-3`,context_window:64e3,capabilities:{streaming:!0},pricing:{input:.1,output:.15}},{id:`s/glm-4-7`,name:`Glm 4 7`,created_by:`zhipu`,source:`official`,last_updated:`2026-03-21`,context_window:202e3,capabilities:{streaming:!0},pricing:{input:.45,output:2}},{id:`s/glm-5`,name:`Glm 5`,created_by:`zhipu`,source:`official`,last_updated:`2026-03-21`,context_window:202e3,capabilities:{streaming:!0},pricing:{input:1,output:3.2}},{id:`s/google-veo-3-0`,name:`Google Veo 3 0`,created_by:`unknown`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},pricing:{input:.14,output:1.6}},{id:`s/gpt-image-1-5`,name:`Gpt Image 1 5`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-image-1`,context_window:32e3,capabilities:{streaming:!0},pricing:{input:.03,output:.034}},{id:`s/gpt-oss-120b`,name:`Gpt Oss 120b`,created_by:`openai`,source:`official`,last_updated:`2026-03-21`,family:`gpt-oss`,context_window:128e3,capabilities:{streaming:!0},pricing:{input:.15,output:.6}},{id:`s/kimi-k2-0905`,name:`Kimi K2 0905`,created_by:`moonshot`,source:`official`,last_updated:`2026-03-21`,context_window:262e3,capabilities:{streaming:!0},pricing:{input:1,output:3}},{id:`s/kimi-k2-5`,name:`Kimi K2 5`,created_by:`moonshot`,source:`official`,last_updated:`2026-03-21`,context_window:262e3,capabilities:{streaming:!0},pricing:{input:.5,output:2.8}},{id:`s/lfm2-24b-a2b`,name:`Lfm2 24b A2b`,created_by:`liquid`,source:`official`,last_updated:`2026-03-21`,context_window:32e3,capabilities:{streaming:!0},pricing:{input:.03,output:.12}},{id:`s/llama-4-maverick`,name:`Llama 4 Maverick`,created_by:`meta`,source:`official`,last_updated:`2026-03-21`,family:`llama-4`,context_window:1048e3,capabilities:{streaming:!0},pricing:{input:.27,output:.85}},{id:`s/minimax-m2-5`,name:`Minimax M2 5`,created_by:`minimax`,source:`official`,last_updated:`2026-03-21`,context_window:192e3,capabilities:{streaming:!0},pricing:{input:.06,output:1.2}},{id:`s/minimax-speech-2-6-turbo`,name:`Minimax Speech 2 6 Turbo`,created_by:`minimax`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0}},{id:`s/ministral-3-8b-instruct-2512`,name:`Ministral 3 8b Instruct 2512`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,family:`ministral`,context_window:256e3,alias:`s/ministral-3-8b-instruct`,capabilities:{streaming:!0},pricing:{input:.1,output:.15}},{id:`s/ministral-3-8b-instruct`,name:`Ministral 3 8b Instruct 2512`,created_by:`mistral`,source:`official`,last_updated:`2026-03-21`,family:`ministral`,context_window:256e3,capabilities:{streaming:!0},pricing:{input:.1,output:.15},snapshots:[`s/ministral-3-8b-instruct-2512`]},{id:`s/nano-banana-pro`,name:`Nano Banana Pro`,created_by:`unknown`,source:`official`,last_updated:`2026-03-21`,context_window:32e3,capabilities:{streaming:!0},pricing:{input:.03,output:.134}},{id:`s/nvidia-nemotron-3-super`,name:`Nvidia Nemotron 3 Super`,created_by:`nvidia`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},pricing:{input:1,output:3.2}},{id:`s/qwen3-235b-a22b-instruct-2507-fp8`,name:`Qwen3 235b A22b Instruct 2507 Fp8`,created_by:`qwen`,source:`official`,last_updated:`2026-03-21`,family:`qwen3`,context_window:262e3,capabilities:{streaming:!0},pricing:{input:.2,output:.6}},{id:`s/qwen3-5-397b-a17b`,name:`Qwen3 5 397b A17b`,created_by:`qwen`,source:`official`,last_updated:`2026-03-21`,family:`qwen3`,context_window:256e3,capabilities:{streaming:!0},pricing:{input:.6,output:3.6}},{id:`s/qwen3-5-9b`,name:`Qwen3 5 9b`,created_by:`qwen`,source:`official`,last_updated:`2026-03-21`,family:`qwen3`,context_window:262e3,capabilities:{streaming:!0},pricing:{input:.1,output:.15}},{id:`s/qwen3-coder-next`,name:`Qwen3 Coder Next`,created_by:`qwen`,source:`official`,last_updated:`2026-03-21`,family:`qwen3`,context_window:262e3,capabilities:{streaming:!0},pricing:{input:.5,output:1.2}},{id:`s/rime-arcana-v3`,name:`Rime Arcana V3`,created_by:`unknown`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0}},{id:`s/sora-2-pro`,name:`Sora 2 Pro`,created_by:`unknown`,source:`official`,last_updated:`2026-03-21`,capabilities:{streaming:!0},pricing:{input:.14,output:2.4}},{id:`s/wan-2-6-image`,name:`Wan 2 6 Image`,created_by:`unknown`,source:`official`,last_updated:`2026-03-21`,context_window:32e3,capabilities:{streaming:!0},pricing:{input:.03,output:.03}}]},t=e.models.map(t=>({...t,provider:e.id}));exports.models=t,exports.provider=e;