@geoqiao/pi-usage 0.1.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.
Files changed (62) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +222 -0
  3. package/bin/pi-usage.js +69 -0
  4. package/data/models.dev-LICENSE +21 -0
  5. package/data/prices.json +2678 -0
  6. package/extensions/usage-report.js +36 -0
  7. package/package.json +51 -0
  8. package/src/analytics.js +189 -0
  9. package/src/collect.js +34 -0
  10. package/src/network.js +25 -0
  11. package/src/report.js +43 -0
  12. package/vendor/vibe-usage/NOTICE.md +58 -0
  13. package/vendor/vibe-usage/src/cindy-roots.js +85 -0
  14. package/vendor/vibe-usage/src/claude-roots.js +165 -0
  15. package/vendor/vibe-usage/src/cline-roots.js +40 -0
  16. package/vendor/vibe-usage/src/codex-roots.js +46 -0
  17. package/vendor/vibe-usage/src/craft-roots.js +15 -0
  18. package/vendor/vibe-usage/src/extra-roots.js +312 -0
  19. package/vendor/vibe-usage/src/parsers/aggregate.js +196 -0
  20. package/vendor/vibe-usage/src/parsers/alma.js +94 -0
  21. package/vendor/vibe-usage/src/parsers/amp.js +156 -0
  22. package/vendor/vibe-usage/src/parsers/antigravity-db.js +359 -0
  23. package/vendor/vibe-usage/src/parsers/antigravity.js +530 -0
  24. package/vendor/vibe-usage/src/parsers/cindy-ledger.js +157 -0
  25. package/vendor/vibe-usage/src/parsers/claude-code.js +372 -0
  26. package/vendor/vibe-usage/src/parsers/cline.js +92 -0
  27. package/vendor/vibe-usage/src/parsers/codex-cache.js +138 -0
  28. package/vendor/vibe-usage/src/parsers/codex.js +1198 -0
  29. package/vendor/vibe-usage/src/parsers/contract.js +55 -0
  30. package/vendor/vibe-usage/src/parsers/copilot-cli.js +128 -0
  31. package/vendor/vibe-usage/src/parsers/craft-agent.js +21 -0
  32. package/vendor/vibe-usage/src/parsers/cursor.js +262 -0
  33. package/vendor/vibe-usage/src/parsers/dimagent.js +127 -0
  34. package/vendor/vibe-usage/src/parsers/droid.js +113 -0
  35. package/vendor/vibe-usage/src/parsers/dsh.js +563 -0
  36. package/vendor/vibe-usage/src/parsers/fs-utils.js +36 -0
  37. package/vendor/vibe-usage/src/parsers/gemini-cli.js +190 -0
  38. package/vendor/vibe-usage/src/parsers/grok.js +395 -0
  39. package/vendor/vibe-usage/src/parsers/hermes.js +123 -0
  40. package/vendor/vibe-usage/src/parsers/index.js +61 -0
  41. package/vendor/vibe-usage/src/parsers/kimi-code.js +467 -0
  42. package/vendor/vibe-usage/src/parsers/kiro.js +788 -0
  43. package/vendor/vibe-usage/src/parsers/mcode.js +182 -0
  44. package/vendor/vibe-usage/src/parsers/mimocode.js +88 -0
  45. package/vendor/vibe-usage/src/parsers/omp.js +10 -0
  46. package/vendor/vibe-usage/src/parsers/openclaw.js +142 -0
  47. package/vendor/vibe-usage/src/parsers/opencode.js +151 -0
  48. package/vendor/vibe-usage/src/parsers/pi-coding-agent.js +27 -0
  49. package/vendor/vibe-usage/src/parsers/pi-session-jsonl.js +166 -0
  50. package/vendor/vibe-usage/src/parsers/qwen-code.js +122 -0
  51. package/vendor/vibe-usage/src/parsers/roo-code.js +123 -0
  52. package/vendor/vibe-usage/src/parsers/sqlite.js +148 -0
  53. package/vendor/vibe-usage/src/parsers/trae-cli.js +171 -0
  54. package/vendor/vibe-usage/src/parsers/workbuddy.js +322 -0
  55. package/vendor/vibe-usage/src/parsers/zcode.js +115 -0
  56. package/vendor/vibe-usage/src/pi-roots.js +125 -0
  57. package/vendor/vibe-usage/src/tools.js +422 -0
  58. package/vendor/vibe-usage/src/workbuddy-roots.js +22 -0
  59. package/vendor/vibe-usage/upstream-files.json +48 -0
  60. package/web/report.css +10 -0
  61. package/web/report.html +81 -0
  62. package/web/report.js +310 -0
@@ -0,0 +1,2678 @@
1
+ {
2
+ "snapshotDate": "2026-09-05",
3
+ "source": "https://models.dev/api.json",
4
+ "sourceSha256": "1ec8a1ac5c776b36b3739cb00343a4a5f449044c88c0b7487a3745d824ddd2d2",
5
+ "note": "models.dev community-maintained snapshot, USD per million tokens; base text rates, not a billing invoice.",
6
+ "models": {
7
+ "openai/gpt-5-nano": {
8
+ "input": 0.05,
9
+ "output": 0.4,
10
+ "cacheRead": 0.005,
11
+ "reasoning": 0.4,
12
+ "provider": "openai",
13
+ "reference": "https://platform.openai.com/docs/models"
14
+ },
15
+ "gpt-5-nano": {
16
+ "input": 0.05,
17
+ "output": 0.4,
18
+ "cacheRead": 0.005,
19
+ "reasoning": 0.4,
20
+ "provider": "openai",
21
+ "reference": "https://platform.openai.com/docs/models"
22
+ },
23
+ "openai/gpt-4.1-nano": {
24
+ "input": 0.1,
25
+ "output": 0.4,
26
+ "cacheRead": 0.025,
27
+ "reasoning": 0.4,
28
+ "provider": "openai",
29
+ "reference": "https://platform.openai.com/docs/models"
30
+ },
31
+ "gpt-4.1-nano": {
32
+ "input": 0.1,
33
+ "output": 0.4,
34
+ "cacheRead": 0.025,
35
+ "reasoning": 0.4,
36
+ "provider": "openai",
37
+ "reference": "https://platform.openai.com/docs/models"
38
+ },
39
+ "openai/gpt-4o-2024-05-13": {
40
+ "input": 5,
41
+ "output": 15,
42
+ "cacheRead": null,
43
+ "reasoning": 15,
44
+ "provider": "openai",
45
+ "reference": "https://platform.openai.com/docs/models"
46
+ },
47
+ "gpt-4o-2024-05-13": {
48
+ "input": 5,
49
+ "output": 15,
50
+ "cacheRead": null,
51
+ "reasoning": 15,
52
+ "provider": "openai",
53
+ "reference": "https://platform.openai.com/docs/models"
54
+ },
55
+ "openai/gpt-5-pro": {
56
+ "input": 15,
57
+ "output": 120,
58
+ "cacheRead": null,
59
+ "reasoning": 120,
60
+ "provider": "openai",
61
+ "reference": "https://platform.openai.com/docs/models"
62
+ },
63
+ "gpt-5-pro": {
64
+ "input": 15,
65
+ "output": 120,
66
+ "cacheRead": null,
67
+ "reasoning": 120,
68
+ "provider": "openai",
69
+ "reference": "https://platform.openai.com/docs/models"
70
+ },
71
+ "openai/gpt-5.6-sol": {
72
+ "input": 4,
73
+ "output": 20,
74
+ "cacheRead": 0.4,
75
+ "reasoning": 20,
76
+ "provider": "openai",
77
+ "reference": "https://platform.openai.com/docs/models",
78
+ "cacheWrite": 5,
79
+ "tiered": true
80
+ },
81
+ "gpt-5.6-sol": {
82
+ "input": 4,
83
+ "output": 20,
84
+ "cacheRead": 0.4,
85
+ "reasoning": 20,
86
+ "provider": "openai",
87
+ "reference": "https://platform.openai.com/docs/models",
88
+ "cacheWrite": 5,
89
+ "tiered": true
90
+ },
91
+ "openai/gpt-4o-2024-08-06": {
92
+ "input": 2.5,
93
+ "output": 10,
94
+ "cacheRead": 1.25,
95
+ "reasoning": 10,
96
+ "provider": "openai",
97
+ "reference": "https://platform.openai.com/docs/models"
98
+ },
99
+ "gpt-4o-2024-08-06": {
100
+ "input": 2.5,
101
+ "output": 10,
102
+ "cacheRead": 1.25,
103
+ "reasoning": 10,
104
+ "provider": "openai",
105
+ "reference": "https://platform.openai.com/docs/models"
106
+ },
107
+ "openai/gpt-6-astra": {
108
+ "input": 10,
109
+ "output": 50,
110
+ "cacheRead": 1,
111
+ "reasoning": 50,
112
+ "provider": "openai",
113
+ "reference": "https://platform.openai.com/docs/models",
114
+ "cacheWrite": 12.5,
115
+ "tiered": true
116
+ },
117
+ "gpt-6-astra": {
118
+ "input": 10,
119
+ "output": 50,
120
+ "cacheRead": 1,
121
+ "reasoning": 50,
122
+ "provider": "openai",
123
+ "reference": "https://platform.openai.com/docs/models",
124
+ "cacheWrite": 12.5,
125
+ "tiered": true
126
+ },
127
+ "openai/gpt-5.2-pro": {
128
+ "input": 21,
129
+ "output": 168,
130
+ "cacheRead": null,
131
+ "reasoning": 168,
132
+ "provider": "openai",
133
+ "reference": "https://platform.openai.com/docs/models"
134
+ },
135
+ "gpt-5.2-pro": {
136
+ "input": 21,
137
+ "output": 168,
138
+ "cacheRead": null,
139
+ "reasoning": 168,
140
+ "provider": "openai",
141
+ "reference": "https://platform.openai.com/docs/models"
142
+ },
143
+ "openai/gpt-5.3-codex-spark": {
144
+ "input": 1.75,
145
+ "output": 14,
146
+ "cacheRead": 0.175,
147
+ "reasoning": 14,
148
+ "provider": "openai",
149
+ "reference": "https://platform.openai.com/docs/models"
150
+ },
151
+ "gpt-5.3-codex-spark": {
152
+ "input": 1.75,
153
+ "output": 14,
154
+ "cacheRead": 0.175,
155
+ "reasoning": 14,
156
+ "provider": "openai",
157
+ "reference": "https://platform.openai.com/docs/models"
158
+ },
159
+ "openai/gpt-4.1-mini": {
160
+ "input": 0.4,
161
+ "output": 1.6,
162
+ "cacheRead": 0.1,
163
+ "reasoning": 1.6,
164
+ "provider": "openai",
165
+ "reference": "https://platform.openai.com/docs/models"
166
+ },
167
+ "gpt-4.1-mini": {
168
+ "input": 0.4,
169
+ "output": 1.6,
170
+ "cacheRead": 0.1,
171
+ "reasoning": 1.6,
172
+ "provider": "openai",
173
+ "reference": "https://platform.openai.com/docs/models"
174
+ },
175
+ "openai/gpt-5.4": {
176
+ "input": 2.5,
177
+ "output": 15,
178
+ "cacheRead": 0.25,
179
+ "reasoning": 15,
180
+ "provider": "openai",
181
+ "reference": "https://platform.openai.com/docs/models",
182
+ "tiered": true
183
+ },
184
+ "gpt-5.4": {
185
+ "input": 2.5,
186
+ "output": 15,
187
+ "cacheRead": 0.25,
188
+ "reasoning": 15,
189
+ "provider": "openai",
190
+ "reference": "https://platform.openai.com/docs/models",
191
+ "tiered": true
192
+ },
193
+ "openai/gpt-4-turbo": {
194
+ "input": 10,
195
+ "output": 30,
196
+ "cacheRead": null,
197
+ "reasoning": 30,
198
+ "provider": "openai",
199
+ "reference": "https://platform.openai.com/docs/models"
200
+ },
201
+ "gpt-4-turbo": {
202
+ "input": 10,
203
+ "output": 30,
204
+ "cacheRead": null,
205
+ "reasoning": 30,
206
+ "provider": "openai",
207
+ "reference": "https://platform.openai.com/docs/models"
208
+ },
209
+ "openai/gpt-5.1": {
210
+ "input": 1.25,
211
+ "output": 10,
212
+ "cacheRead": 0.125,
213
+ "reasoning": 10,
214
+ "provider": "openai",
215
+ "reference": "https://platform.openai.com/docs/models"
216
+ },
217
+ "gpt-5.1": {
218
+ "input": 1.25,
219
+ "output": 10,
220
+ "cacheRead": 0.125,
221
+ "reasoning": 10,
222
+ "provider": "openai",
223
+ "reference": "https://platform.openai.com/docs/models"
224
+ },
225
+ "openai/o1": {
226
+ "input": 15,
227
+ "output": 60,
228
+ "cacheRead": 7.5,
229
+ "reasoning": 60,
230
+ "provider": "openai",
231
+ "reference": "https://platform.openai.com/docs/models"
232
+ },
233
+ "o1": {
234
+ "input": 15,
235
+ "output": 60,
236
+ "cacheRead": 7.5,
237
+ "reasoning": 60,
238
+ "provider": "openai",
239
+ "reference": "https://platform.openai.com/docs/models"
240
+ },
241
+ "openai/gpt-4o": {
242
+ "input": 2.5,
243
+ "output": 10,
244
+ "cacheRead": 1.25,
245
+ "reasoning": 10,
246
+ "provider": "openai",
247
+ "reference": "https://platform.openai.com/docs/models"
248
+ },
249
+ "gpt-4o": {
250
+ "input": 2.5,
251
+ "output": 10,
252
+ "cacheRead": 1.25,
253
+ "reasoning": 10,
254
+ "provider": "openai",
255
+ "reference": "https://platform.openai.com/docs/models"
256
+ },
257
+ "openai/gpt-5.6-luna": {
258
+ "input": 0.2,
259
+ "output": 1.2,
260
+ "cacheRead": 0.02,
261
+ "reasoning": 1.2,
262
+ "provider": "openai",
263
+ "reference": "https://platform.openai.com/docs/models",
264
+ "cacheWrite": 0.25,
265
+ "tiered": true
266
+ },
267
+ "gpt-5.6-luna": {
268
+ "input": 0.2,
269
+ "output": 1.2,
270
+ "cacheRead": 0.02,
271
+ "reasoning": 1.2,
272
+ "provider": "openai",
273
+ "reference": "https://platform.openai.com/docs/models",
274
+ "cacheWrite": 0.25,
275
+ "tiered": true
276
+ },
277
+ "openai/gpt-5.3-codex": {
278
+ "input": 1.75,
279
+ "output": 14,
280
+ "cacheRead": 0.175,
281
+ "reasoning": 14,
282
+ "provider": "openai",
283
+ "reference": "https://platform.openai.com/docs/models"
284
+ },
285
+ "gpt-5.3-codex": {
286
+ "input": 1.75,
287
+ "output": 14,
288
+ "cacheRead": 0.175,
289
+ "reasoning": 14,
290
+ "provider": "openai",
291
+ "reference": "https://platform.openai.com/docs/models"
292
+ },
293
+ "openai/gpt-4o-mini": {
294
+ "input": 0.15,
295
+ "output": 0.6,
296
+ "cacheRead": 0.075,
297
+ "reasoning": 0.6,
298
+ "provider": "openai",
299
+ "reference": "https://platform.openai.com/docs/models"
300
+ },
301
+ "gpt-4o-mini": {
302
+ "input": 0.15,
303
+ "output": 0.6,
304
+ "cacheRead": 0.075,
305
+ "reasoning": 0.6,
306
+ "provider": "openai",
307
+ "reference": "https://platform.openai.com/docs/models"
308
+ },
309
+ "openai/o1-pro": {
310
+ "input": 150,
311
+ "output": 600,
312
+ "cacheRead": null,
313
+ "reasoning": 600,
314
+ "provider": "openai",
315
+ "reference": "https://platform.openai.com/docs/models"
316
+ },
317
+ "o1-pro": {
318
+ "input": 150,
319
+ "output": 600,
320
+ "cacheRead": null,
321
+ "reasoning": 600,
322
+ "provider": "openai",
323
+ "reference": "https://platform.openai.com/docs/models"
324
+ },
325
+ "openai/gpt-4.1": {
326
+ "input": 2,
327
+ "output": 8,
328
+ "cacheRead": 0.5,
329
+ "reasoning": 8,
330
+ "provider": "openai",
331
+ "reference": "https://platform.openai.com/docs/models"
332
+ },
333
+ "gpt-4.1": {
334
+ "input": 2,
335
+ "output": 8,
336
+ "cacheRead": 0.5,
337
+ "reasoning": 8,
338
+ "provider": "openai",
339
+ "reference": "https://platform.openai.com/docs/models"
340
+ },
341
+ "openai/text-embedding-ada-002": {
342
+ "input": 0.1,
343
+ "output": 0,
344
+ "cacheRead": null,
345
+ "reasoning": 0,
346
+ "provider": "openai",
347
+ "reference": "https://platform.openai.com/docs/models"
348
+ },
349
+ "text-embedding-ada-002": {
350
+ "input": 0.1,
351
+ "output": 0,
352
+ "cacheRead": null,
353
+ "reasoning": 0,
354
+ "provider": "openai",
355
+ "reference": "https://platform.openai.com/docs/models"
356
+ },
357
+ "openai/gpt-5.4-nano": {
358
+ "input": 0.2,
359
+ "output": 1.25,
360
+ "cacheRead": 0.02,
361
+ "reasoning": 1.25,
362
+ "provider": "openai",
363
+ "reference": "https://platform.openai.com/docs/models"
364
+ },
365
+ "gpt-5.4-nano": {
366
+ "input": 0.2,
367
+ "output": 1.25,
368
+ "cacheRead": 0.02,
369
+ "reasoning": 1.25,
370
+ "provider": "openai",
371
+ "reference": "https://platform.openai.com/docs/models"
372
+ },
373
+ "openai/gpt-5.5-pro": {
374
+ "input": 30,
375
+ "output": 180,
376
+ "cacheRead": null,
377
+ "reasoning": 180,
378
+ "provider": "openai",
379
+ "reference": "https://platform.openai.com/docs/models",
380
+ "tiered": true
381
+ },
382
+ "gpt-5.5-pro": {
383
+ "input": 30,
384
+ "output": 180,
385
+ "cacheRead": null,
386
+ "reasoning": 180,
387
+ "provider": "openai",
388
+ "reference": "https://platform.openai.com/docs/models",
389
+ "tiered": true
390
+ },
391
+ "openai/gpt-5.4-mini": {
392
+ "input": 0.75,
393
+ "output": 4.5,
394
+ "cacheRead": 0.075,
395
+ "reasoning": 4.5,
396
+ "provider": "openai",
397
+ "reference": "https://platform.openai.com/docs/models"
398
+ },
399
+ "gpt-5.4-mini": {
400
+ "input": 0.75,
401
+ "output": 4.5,
402
+ "cacheRead": 0.075,
403
+ "reasoning": 4.5,
404
+ "provider": "openai",
405
+ "reference": "https://platform.openai.com/docs/models"
406
+ },
407
+ "openai/gpt-3.5-turbo": {
408
+ "input": 0.5,
409
+ "output": 1.5,
410
+ "cacheRead": 0,
411
+ "reasoning": 1.5,
412
+ "provider": "openai",
413
+ "reference": "https://platform.openai.com/docs/models"
414
+ },
415
+ "gpt-3.5-turbo": {
416
+ "input": 0.5,
417
+ "output": 1.5,
418
+ "cacheRead": 0,
419
+ "reasoning": 1.5,
420
+ "provider": "openai",
421
+ "reference": "https://platform.openai.com/docs/models"
422
+ },
423
+ "openai/gpt-5.6": {
424
+ "input": 4,
425
+ "output": 20,
426
+ "cacheRead": 0.4,
427
+ "reasoning": 20,
428
+ "provider": "openai",
429
+ "reference": "https://platform.openai.com/docs/models",
430
+ "cacheWrite": 5,
431
+ "tiered": true
432
+ },
433
+ "gpt-5.6": {
434
+ "input": 4,
435
+ "output": 20,
436
+ "cacheRead": 0.4,
437
+ "reasoning": 20,
438
+ "provider": "openai",
439
+ "reference": "https://platform.openai.com/docs/models",
440
+ "cacheWrite": 5,
441
+ "tiered": true
442
+ },
443
+ "openai/text-embedding-3-small": {
444
+ "input": 0.02,
445
+ "output": 0,
446
+ "cacheRead": null,
447
+ "reasoning": 0,
448
+ "provider": "openai",
449
+ "reference": "https://platform.openai.com/docs/models"
450
+ },
451
+ "text-embedding-3-small": {
452
+ "input": 0.02,
453
+ "output": 0,
454
+ "cacheRead": null,
455
+ "reasoning": 0,
456
+ "provider": "openai",
457
+ "reference": "https://platform.openai.com/docs/models"
458
+ },
459
+ "openai/gpt-5-mini": {
460
+ "input": 0.25,
461
+ "output": 2,
462
+ "cacheRead": 0.025,
463
+ "reasoning": 2,
464
+ "provider": "openai",
465
+ "reference": "https://platform.openai.com/docs/models"
466
+ },
467
+ "gpt-5-mini": {
468
+ "input": 0.25,
469
+ "output": 2,
470
+ "cacheRead": 0.025,
471
+ "reasoning": 2,
472
+ "provider": "openai",
473
+ "reference": "https://platform.openai.com/docs/models"
474
+ },
475
+ "openai/gpt-5.4-pro": {
476
+ "input": 30,
477
+ "output": 180,
478
+ "cacheRead": null,
479
+ "reasoning": 180,
480
+ "provider": "openai",
481
+ "reference": "https://platform.openai.com/docs/models",
482
+ "tiered": true
483
+ },
484
+ "gpt-5.4-pro": {
485
+ "input": 30,
486
+ "output": 180,
487
+ "cacheRead": null,
488
+ "reasoning": 180,
489
+ "provider": "openai",
490
+ "reference": "https://platform.openai.com/docs/models",
491
+ "tiered": true
492
+ },
493
+ "openai/text-embedding-3-large": {
494
+ "input": 0.13,
495
+ "output": 0,
496
+ "cacheRead": null,
497
+ "reasoning": 0,
498
+ "provider": "openai",
499
+ "reference": "https://platform.openai.com/docs/models"
500
+ },
501
+ "text-embedding-3-large": {
502
+ "input": 0.13,
503
+ "output": 0,
504
+ "cacheRead": null,
505
+ "reasoning": 0,
506
+ "provider": "openai",
507
+ "reference": "https://platform.openai.com/docs/models"
508
+ },
509
+ "openai/gpt-5.6-terra": {
510
+ "input": 2,
511
+ "output": 12,
512
+ "cacheRead": 0.2,
513
+ "reasoning": 12,
514
+ "provider": "openai",
515
+ "reference": "https://platform.openai.com/docs/models",
516
+ "cacheWrite": 2.5,
517
+ "tiered": true
518
+ },
519
+ "gpt-5.6-terra": {
520
+ "input": 2,
521
+ "output": 12,
522
+ "cacheRead": 0.2,
523
+ "reasoning": 12,
524
+ "provider": "openai",
525
+ "reference": "https://platform.openai.com/docs/models",
526
+ "cacheWrite": 2.5,
527
+ "tiered": true
528
+ },
529
+ "openai/gpt-4": {
530
+ "input": 30,
531
+ "output": 60,
532
+ "cacheRead": null,
533
+ "reasoning": 60,
534
+ "provider": "openai",
535
+ "reference": "https://platform.openai.com/docs/models"
536
+ },
537
+ "gpt-4": {
538
+ "input": 30,
539
+ "output": 60,
540
+ "cacheRead": null,
541
+ "reasoning": 60,
542
+ "provider": "openai",
543
+ "reference": "https://platform.openai.com/docs/models"
544
+ },
545
+ "openai/gpt-5.2": {
546
+ "input": 1.75,
547
+ "output": 14,
548
+ "cacheRead": 0.175,
549
+ "reasoning": 14,
550
+ "provider": "openai",
551
+ "reference": "https://platform.openai.com/docs/models"
552
+ },
553
+ "gpt-5.2": {
554
+ "input": 1.75,
555
+ "output": 14,
556
+ "cacheRead": 0.175,
557
+ "reasoning": 14,
558
+ "provider": "openai",
559
+ "reference": "https://platform.openai.com/docs/models"
560
+ },
561
+ "openai/gpt-5": {
562
+ "input": 1.25,
563
+ "output": 10,
564
+ "cacheRead": 0.125,
565
+ "reasoning": 10,
566
+ "provider": "openai",
567
+ "reference": "https://platform.openai.com/docs/models"
568
+ },
569
+ "gpt-5": {
570
+ "input": 1.25,
571
+ "output": 10,
572
+ "cacheRead": 0.125,
573
+ "reasoning": 10,
574
+ "provider": "openai",
575
+ "reference": "https://platform.openai.com/docs/models"
576
+ },
577
+ "openai/gpt-5.2-chat-latest": {
578
+ "input": 1.75,
579
+ "output": 14,
580
+ "cacheRead": 0.175,
581
+ "reasoning": 14,
582
+ "provider": "openai",
583
+ "reference": "https://platform.openai.com/docs/models"
584
+ },
585
+ "gpt-5.2-chat-latest": {
586
+ "input": 1.75,
587
+ "output": 14,
588
+ "cacheRead": 0.175,
589
+ "reasoning": 14,
590
+ "provider": "openai",
591
+ "reference": "https://platform.openai.com/docs/models"
592
+ },
593
+ "openai/o4-mini": {
594
+ "input": 1.1,
595
+ "output": 4.4,
596
+ "cacheRead": 0.275,
597
+ "reasoning": 4.4,
598
+ "provider": "openai",
599
+ "reference": "https://platform.openai.com/docs/models"
600
+ },
601
+ "o4-mini": {
602
+ "input": 1.1,
603
+ "output": 4.4,
604
+ "cacheRead": 0.275,
605
+ "reasoning": 4.4,
606
+ "provider": "openai",
607
+ "reference": "https://platform.openai.com/docs/models"
608
+ },
609
+ "openai/o3-mini": {
610
+ "input": 1.1,
611
+ "output": 4.4,
612
+ "cacheRead": 0.55,
613
+ "reasoning": 4.4,
614
+ "provider": "openai",
615
+ "reference": "https://platform.openai.com/docs/models"
616
+ },
617
+ "o3-mini": {
618
+ "input": 1.1,
619
+ "output": 4.4,
620
+ "cacheRead": 0.55,
621
+ "reasoning": 4.4,
622
+ "provider": "openai",
623
+ "reference": "https://platform.openai.com/docs/models"
624
+ },
625
+ "openai/o3": {
626
+ "input": 2,
627
+ "output": 8,
628
+ "cacheRead": 0.5,
629
+ "reasoning": 8,
630
+ "provider": "openai",
631
+ "reference": "https://platform.openai.com/docs/models"
632
+ },
633
+ "o3": {
634
+ "input": 2,
635
+ "output": 8,
636
+ "cacheRead": 0.5,
637
+ "reasoning": 8,
638
+ "provider": "openai",
639
+ "reference": "https://platform.openai.com/docs/models"
640
+ },
641
+ "openai/o3-pro": {
642
+ "input": 20,
643
+ "output": 80,
644
+ "cacheRead": null,
645
+ "reasoning": 80,
646
+ "provider": "openai",
647
+ "reference": "https://platform.openai.com/docs/models"
648
+ },
649
+ "o3-pro": {
650
+ "input": 20,
651
+ "output": 80,
652
+ "cacheRead": null,
653
+ "reasoning": 80,
654
+ "provider": "openai",
655
+ "reference": "https://platform.openai.com/docs/models"
656
+ },
657
+ "openai/gpt-5.3-chat-latest": {
658
+ "input": 1.75,
659
+ "output": 14,
660
+ "cacheRead": 0.175,
661
+ "reasoning": 14,
662
+ "provider": "openai",
663
+ "reference": "https://platform.openai.com/docs/models"
664
+ },
665
+ "gpt-5.3-chat-latest": {
666
+ "input": 1.75,
667
+ "output": 14,
668
+ "cacheRead": 0.175,
669
+ "reasoning": 14,
670
+ "provider": "openai",
671
+ "reference": "https://platform.openai.com/docs/models"
672
+ },
673
+ "openai/gpt-5.5": {
674
+ "input": 5,
675
+ "output": 30,
676
+ "cacheRead": 0.5,
677
+ "reasoning": 30,
678
+ "provider": "openai",
679
+ "reference": "https://platform.openai.com/docs/models",
680
+ "tiered": true
681
+ },
682
+ "gpt-5.5": {
683
+ "input": 5,
684
+ "output": 30,
685
+ "cacheRead": 0.5,
686
+ "reasoning": 30,
687
+ "provider": "openai",
688
+ "reference": "https://platform.openai.com/docs/models",
689
+ "tiered": true
690
+ },
691
+ "openai/gpt-4o-2024-11-20": {
692
+ "input": 2.5,
693
+ "output": 10,
694
+ "cacheRead": 1.25,
695
+ "reasoning": 10,
696
+ "provider": "openai",
697
+ "reference": "https://platform.openai.com/docs/models"
698
+ },
699
+ "gpt-4o-2024-11-20": {
700
+ "input": 2.5,
701
+ "output": 10,
702
+ "cacheRead": 1.25,
703
+ "reasoning": 10,
704
+ "provider": "openai",
705
+ "reference": "https://platform.openai.com/docs/models"
706
+ },
707
+ "anthropic/claude-sonnet-4-6": {
708
+ "input": 3,
709
+ "output": 15,
710
+ "cacheRead": 0.3,
711
+ "reasoning": 15,
712
+ "provider": "anthropic",
713
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
714
+ "cacheWrite": 3.75
715
+ },
716
+ "claude-sonnet-4-6": {
717
+ "input": 3,
718
+ "output": 15,
719
+ "cacheRead": 0.3,
720
+ "reasoning": 15,
721
+ "provider": "anthropic",
722
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
723
+ "cacheWrite": 3.75
724
+ },
725
+ "anthropic/claude-opus-5": {
726
+ "input": 5,
727
+ "output": 25,
728
+ "cacheRead": 0.5,
729
+ "reasoning": 25,
730
+ "provider": "anthropic",
731
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
732
+ "cacheWrite": 6.25
733
+ },
734
+ "claude-opus-5": {
735
+ "input": 5,
736
+ "output": 25,
737
+ "cacheRead": 0.5,
738
+ "reasoning": 25,
739
+ "provider": "anthropic",
740
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
741
+ "cacheWrite": 6.25
742
+ },
743
+ "anthropic/claude-opus-4-5": {
744
+ "input": 5,
745
+ "output": 25,
746
+ "cacheRead": 0.5,
747
+ "reasoning": 25,
748
+ "provider": "anthropic",
749
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
750
+ "cacheWrite": 6.25
751
+ },
752
+ "claude-opus-4-5": {
753
+ "input": 5,
754
+ "output": 25,
755
+ "cacheRead": 0.5,
756
+ "reasoning": 25,
757
+ "provider": "anthropic",
758
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
759
+ "cacheWrite": 6.25
760
+ },
761
+ "anthropic/claude-fable-5-1": {
762
+ "input": 10,
763
+ "output": 50,
764
+ "cacheRead": 0.25,
765
+ "reasoning": 50,
766
+ "provider": "anthropic",
767
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
768
+ "cacheWrite": 12.5
769
+ },
770
+ "claude-fable-5-1": {
771
+ "input": 10,
772
+ "output": 50,
773
+ "cacheRead": 0.25,
774
+ "reasoning": 50,
775
+ "provider": "anthropic",
776
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
777
+ "cacheWrite": 12.5
778
+ },
779
+ "anthropic/claude-opus-4-6": {
780
+ "input": 5,
781
+ "output": 25,
782
+ "cacheRead": 0.5,
783
+ "reasoning": 25,
784
+ "provider": "anthropic",
785
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
786
+ "cacheWrite": 6.25
787
+ },
788
+ "claude-opus-4-6": {
789
+ "input": 5,
790
+ "output": 25,
791
+ "cacheRead": 0.5,
792
+ "reasoning": 25,
793
+ "provider": "anthropic",
794
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
795
+ "cacheWrite": 6.25
796
+ },
797
+ "anthropic/claude-sonnet-4-5-20250929": {
798
+ "input": 3,
799
+ "output": 15,
800
+ "cacheRead": 0.3,
801
+ "reasoning": 15,
802
+ "provider": "anthropic",
803
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
804
+ "cacheWrite": 3.75
805
+ },
806
+ "claude-sonnet-4-5-20250929": {
807
+ "input": 3,
808
+ "output": 15,
809
+ "cacheRead": 0.3,
810
+ "reasoning": 15,
811
+ "provider": "anthropic",
812
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
813
+ "cacheWrite": 3.75
814
+ },
815
+ "anthropic/claude-opus-4-7": {
816
+ "input": 5,
817
+ "output": 25,
818
+ "cacheRead": 0.5,
819
+ "reasoning": 25,
820
+ "provider": "anthropic",
821
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
822
+ "cacheWrite": 6.25
823
+ },
824
+ "claude-opus-4-7": {
825
+ "input": 5,
826
+ "output": 25,
827
+ "cacheRead": 0.5,
828
+ "reasoning": 25,
829
+ "provider": "anthropic",
830
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
831
+ "cacheWrite": 6.25
832
+ },
833
+ "anthropic/claude-haiku-4-5-20251001": {
834
+ "input": 1,
835
+ "output": 5,
836
+ "cacheRead": 0.1,
837
+ "reasoning": 5,
838
+ "provider": "anthropic",
839
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
840
+ "cacheWrite": 1.25
841
+ },
842
+ "claude-haiku-4-5-20251001": {
843
+ "input": 1,
844
+ "output": 5,
845
+ "cacheRead": 0.1,
846
+ "reasoning": 5,
847
+ "provider": "anthropic",
848
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
849
+ "cacheWrite": 1.25
850
+ },
851
+ "anthropic/claude-fable-5": {
852
+ "input": 10,
853
+ "output": 50,
854
+ "cacheRead": 1,
855
+ "reasoning": 50,
856
+ "provider": "anthropic",
857
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
858
+ "cacheWrite": 12.5
859
+ },
860
+ "claude-fable-5": {
861
+ "input": 10,
862
+ "output": 50,
863
+ "cacheRead": 1,
864
+ "reasoning": 50,
865
+ "provider": "anthropic",
866
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
867
+ "cacheWrite": 12.5
868
+ },
869
+ "anthropic/claude-haiku-4-5": {
870
+ "input": 1,
871
+ "output": 5,
872
+ "cacheRead": 0.1,
873
+ "reasoning": 5,
874
+ "provider": "anthropic",
875
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
876
+ "cacheWrite": 1.25
877
+ },
878
+ "claude-haiku-4-5": {
879
+ "input": 1,
880
+ "output": 5,
881
+ "cacheRead": 0.1,
882
+ "reasoning": 5,
883
+ "provider": "anthropic",
884
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
885
+ "cacheWrite": 1.25
886
+ },
887
+ "anthropic/claude-sonnet-4-5": {
888
+ "input": 3,
889
+ "output": 15,
890
+ "cacheRead": 0.3,
891
+ "reasoning": 15,
892
+ "provider": "anthropic",
893
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
894
+ "cacheWrite": 3.75
895
+ },
896
+ "claude-sonnet-4-5": {
897
+ "input": 3,
898
+ "output": 15,
899
+ "cacheRead": 0.3,
900
+ "reasoning": 15,
901
+ "provider": "anthropic",
902
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
903
+ "cacheWrite": 3.75
904
+ },
905
+ "anthropic/claude-opus-4-8": {
906
+ "input": 5,
907
+ "output": 25,
908
+ "cacheRead": 0.5,
909
+ "reasoning": 25,
910
+ "provider": "anthropic",
911
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
912
+ "cacheWrite": 6.25
913
+ },
914
+ "claude-opus-4-8": {
915
+ "input": 5,
916
+ "output": 25,
917
+ "cacheRead": 0.5,
918
+ "reasoning": 25,
919
+ "provider": "anthropic",
920
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
921
+ "cacheWrite": 6.25
922
+ },
923
+ "anthropic/claude-sonnet-5": {
924
+ "input": 2,
925
+ "output": 10,
926
+ "cacheRead": 0.2,
927
+ "reasoning": 10,
928
+ "provider": "anthropic",
929
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
930
+ "cacheWrite": 2.5
931
+ },
932
+ "claude-sonnet-5": {
933
+ "input": 2,
934
+ "output": 10,
935
+ "cacheRead": 0.2,
936
+ "reasoning": 10,
937
+ "provider": "anthropic",
938
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
939
+ "cacheWrite": 2.5
940
+ },
941
+ "anthropic/claude-opus-4-5-20251101": {
942
+ "input": 5,
943
+ "output": 25,
944
+ "cacheRead": 0.5,
945
+ "reasoning": 25,
946
+ "provider": "anthropic",
947
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
948
+ "cacheWrite": 6.25
949
+ },
950
+ "claude-opus-4-5-20251101": {
951
+ "input": 5,
952
+ "output": 25,
953
+ "cacheRead": 0.5,
954
+ "reasoning": 25,
955
+ "provider": "anthropic",
956
+ "reference": "https://docs.anthropic.com/en/docs/about-claude/models",
957
+ "cacheWrite": 6.25
958
+ },
959
+ "google/gemini-3.1-pro-preview-customtools": {
960
+ "input": 2,
961
+ "output": 12,
962
+ "cacheRead": 0.2,
963
+ "reasoning": 12,
964
+ "provider": "google",
965
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
966
+ "tiered": true
967
+ },
968
+ "gemini-3.1-pro-preview-customtools": {
969
+ "input": 2,
970
+ "output": 12,
971
+ "cacheRead": 0.2,
972
+ "reasoning": 12,
973
+ "provider": "google",
974
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
975
+ "tiered": true
976
+ },
977
+ "google/gemini-3.1-pro-preview": {
978
+ "input": 2,
979
+ "output": 12,
980
+ "cacheRead": 0.2,
981
+ "reasoning": 12,
982
+ "provider": "google",
983
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
984
+ "tiered": true
985
+ },
986
+ "gemini-3.1-pro-preview": {
987
+ "input": 2,
988
+ "output": 12,
989
+ "cacheRead": 0.2,
990
+ "reasoning": 12,
991
+ "provider": "google",
992
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
993
+ "tiered": true
994
+ },
995
+ "google/gemini-2.5-flash-lite": {
996
+ "input": 0.1,
997
+ "output": 0.4,
998
+ "cacheRead": 0.01,
999
+ "reasoning": 0.4,
1000
+ "provider": "google",
1001
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1002
+ },
1003
+ "gemini-2.5-flash-lite": {
1004
+ "input": 0.1,
1005
+ "output": 0.4,
1006
+ "cacheRead": 0.01,
1007
+ "reasoning": 0.4,
1008
+ "provider": "google",
1009
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1010
+ },
1011
+ "google/gemini-2.5-computer-use-preview-10-2025": {
1012
+ "input": 1.25,
1013
+ "output": 10,
1014
+ "cacheRead": null,
1015
+ "reasoning": 10,
1016
+ "provider": "google",
1017
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
1018
+ "tiered": true
1019
+ },
1020
+ "gemini-2.5-computer-use-preview-10-2025": {
1021
+ "input": 1.25,
1022
+ "output": 10,
1023
+ "cacheRead": null,
1024
+ "reasoning": 10,
1025
+ "provider": "google",
1026
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
1027
+ "tiered": true
1028
+ },
1029
+ "google/gemini-3.6-flash": {
1030
+ "input": 0.75,
1031
+ "output": 3.75,
1032
+ "cacheRead": 0.075,
1033
+ "reasoning": 3.75,
1034
+ "provider": "google",
1035
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1036
+ },
1037
+ "gemini-3.6-flash": {
1038
+ "input": 0.75,
1039
+ "output": 3.75,
1040
+ "cacheRead": 0.075,
1041
+ "reasoning": 3.75,
1042
+ "provider": "google",
1043
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1044
+ },
1045
+ "google/gemini-3.1-flash-lite": {
1046
+ "input": 0.25,
1047
+ "output": 1.5,
1048
+ "cacheRead": 0.025,
1049
+ "reasoning": 1.5,
1050
+ "provider": "google",
1051
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1052
+ },
1053
+ "gemini-3.1-flash-lite": {
1054
+ "input": 0.25,
1055
+ "output": 1.5,
1056
+ "cacheRead": 0.025,
1057
+ "reasoning": 1.5,
1058
+ "provider": "google",
1059
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1060
+ },
1061
+ "google/gemini-3.5-flash": {
1062
+ "input": 1.5,
1063
+ "output": 9,
1064
+ "cacheRead": 0.15,
1065
+ "reasoning": 9,
1066
+ "provider": "google",
1067
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1068
+ },
1069
+ "gemini-3.5-flash": {
1070
+ "input": 1.5,
1071
+ "output": 9,
1072
+ "cacheRead": 0.15,
1073
+ "reasoning": 9,
1074
+ "provider": "google",
1075
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1076
+ },
1077
+ "google/gemini-3.1-flash-lite-preview": {
1078
+ "input": 0.25,
1079
+ "output": 1.5,
1080
+ "cacheRead": 0.025,
1081
+ "reasoning": 1.5,
1082
+ "provider": "google",
1083
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1084
+ },
1085
+ "gemini-3.1-flash-lite-preview": {
1086
+ "input": 0.25,
1087
+ "output": 1.5,
1088
+ "cacheRead": 0.025,
1089
+ "reasoning": 1.5,
1090
+ "provider": "google",
1091
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1092
+ },
1093
+ "google/gemini-embedding-001": {
1094
+ "input": 0.15,
1095
+ "output": 0,
1096
+ "cacheRead": null,
1097
+ "reasoning": 0,
1098
+ "provider": "google",
1099
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1100
+ },
1101
+ "gemini-embedding-001": {
1102
+ "input": 0.15,
1103
+ "output": 0,
1104
+ "cacheRead": null,
1105
+ "reasoning": 0,
1106
+ "provider": "google",
1107
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1108
+ },
1109
+ "google/gemini-3.5-flash-lite": {
1110
+ "input": 0.3,
1111
+ "output": 2.5,
1112
+ "cacheRead": 0.03,
1113
+ "reasoning": 2.5,
1114
+ "provider": "google",
1115
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1116
+ },
1117
+ "gemini-3.5-flash-lite": {
1118
+ "input": 0.3,
1119
+ "output": 2.5,
1120
+ "cacheRead": 0.03,
1121
+ "reasoning": 2.5,
1122
+ "provider": "google",
1123
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1124
+ },
1125
+ "google/gemini-flash-lite-latest": {
1126
+ "input": 0.3,
1127
+ "output": 2.5,
1128
+ "cacheRead": 0.03,
1129
+ "reasoning": 2.5,
1130
+ "provider": "google",
1131
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1132
+ },
1133
+ "gemini-flash-lite-latest": {
1134
+ "input": 0.3,
1135
+ "output": 2.5,
1136
+ "cacheRead": 0.03,
1137
+ "reasoning": 2.5,
1138
+ "provider": "google",
1139
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1140
+ },
1141
+ "google/gemini-embedding-2": {
1142
+ "input": 0.2,
1143
+ "output": 0,
1144
+ "cacheRead": null,
1145
+ "reasoning": 0,
1146
+ "provider": "google",
1147
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1148
+ },
1149
+ "gemini-embedding-2": {
1150
+ "input": 0.2,
1151
+ "output": 0,
1152
+ "cacheRead": null,
1153
+ "reasoning": 0,
1154
+ "provider": "google",
1155
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1156
+ },
1157
+ "google/gemini-3-flash-preview": {
1158
+ "input": 0.5,
1159
+ "output": 3,
1160
+ "cacheRead": 0.05,
1161
+ "reasoning": 3,
1162
+ "provider": "google",
1163
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1164
+ },
1165
+ "gemini-3-flash-preview": {
1166
+ "input": 0.5,
1167
+ "output": 3,
1168
+ "cacheRead": 0.05,
1169
+ "reasoning": 3,
1170
+ "provider": "google",
1171
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1172
+ },
1173
+ "google/gemini-3.8-flash": {
1174
+ "input": 0.75,
1175
+ "output": 3.75,
1176
+ "cacheRead": 0.075,
1177
+ "reasoning": 3.75,
1178
+ "provider": "google",
1179
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1180
+ },
1181
+ "gemini-3.8-flash": {
1182
+ "input": 0.75,
1183
+ "output": 3.75,
1184
+ "cacheRead": 0.075,
1185
+ "reasoning": 3.75,
1186
+ "provider": "google",
1187
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1188
+ },
1189
+ "google/gemini-3.7-flash": {
1190
+ "input": 0.75,
1191
+ "output": 3.75,
1192
+ "cacheRead": 0.075,
1193
+ "reasoning": 3.75,
1194
+ "provider": "google",
1195
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1196
+ },
1197
+ "gemini-3.7-flash": {
1198
+ "input": 0.75,
1199
+ "output": 3.75,
1200
+ "cacheRead": 0.075,
1201
+ "reasoning": 3.75,
1202
+ "provider": "google",
1203
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1204
+ },
1205
+ "google/gemini-2.5-pro": {
1206
+ "input": 1.25,
1207
+ "output": 10,
1208
+ "cacheRead": 0.125,
1209
+ "reasoning": 10,
1210
+ "provider": "google",
1211
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
1212
+ "tiered": true
1213
+ },
1214
+ "gemini-2.5-pro": {
1215
+ "input": 1.25,
1216
+ "output": 10,
1217
+ "cacheRead": 0.125,
1218
+ "reasoning": 10,
1219
+ "provider": "google",
1220
+ "reference": "https://ai.google.dev/gemini-api/docs/models",
1221
+ "tiered": true
1222
+ },
1223
+ "google/gemini-flash-latest": {
1224
+ "input": 0.75,
1225
+ "output": 3.75,
1226
+ "cacheRead": 0.075,
1227
+ "reasoning": 3.75,
1228
+ "provider": "google",
1229
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1230
+ },
1231
+ "gemini-flash-latest": {
1232
+ "input": 0.75,
1233
+ "output": 3.75,
1234
+ "cacheRead": 0.075,
1235
+ "reasoning": 3.75,
1236
+ "provider": "google",
1237
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1238
+ },
1239
+ "google/gemini-2.5-flash": {
1240
+ "input": 0.3,
1241
+ "output": 2.5,
1242
+ "cacheRead": 0.03,
1243
+ "reasoning": 2.5,
1244
+ "provider": "google",
1245
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1246
+ },
1247
+ "gemini-2.5-flash": {
1248
+ "input": 0.3,
1249
+ "output": 2.5,
1250
+ "cacheRead": 0.03,
1251
+ "reasoning": 2.5,
1252
+ "provider": "google",
1253
+ "reference": "https://ai.google.dev/gemini-api/docs/models"
1254
+ },
1255
+ "deepseek/deepseek-v4-flash-vision-exp": {
1256
+ "input": 0.14,
1257
+ "output": 0.28,
1258
+ "cacheRead": 0.0028,
1259
+ "reasoning": 0.28,
1260
+ "provider": "deepseek",
1261
+ "reference": "https://api-docs.deepseek.com/quick_start/pricing"
1262
+ },
1263
+ "deepseek-v4-flash-vision-exp": {
1264
+ "input": 0.14,
1265
+ "output": 0.28,
1266
+ "cacheRead": 0.0028,
1267
+ "reasoning": 0.28,
1268
+ "provider": "deepseek",
1269
+ "reference": "https://api-docs.deepseek.com/quick_start/pricing"
1270
+ },
1271
+ "deepseek/deepseek-v4-flash": {
1272
+ "input": 0.14,
1273
+ "output": 0.28,
1274
+ "cacheRead": 0.0028,
1275
+ "reasoning": 0.28,
1276
+ "provider": "deepseek",
1277
+ "reference": "https://api-docs.deepseek.com/quick_start/pricing"
1278
+ },
1279
+ "deepseek-v4-flash": {
1280
+ "input": 0.14,
1281
+ "output": 0.28,
1282
+ "cacheRead": 0.0028,
1283
+ "reasoning": 0.28,
1284
+ "provider": "deepseek",
1285
+ "reference": "https://api-docs.deepseek.com/quick_start/pricing"
1286
+ },
1287
+ "deepseek/deepseek-v4-pro": {
1288
+ "input": 0.435,
1289
+ "output": 0.87,
1290
+ "cacheRead": 0.003625,
1291
+ "reasoning": 0.87,
1292
+ "provider": "deepseek",
1293
+ "reference": "https://api-docs.deepseek.com/quick_start/pricing"
1294
+ },
1295
+ "deepseek-v4-pro": {
1296
+ "input": 0.435,
1297
+ "output": 0.87,
1298
+ "cacheRead": 0.003625,
1299
+ "reasoning": 0.87,
1300
+ "provider": "deepseek",
1301
+ "reference": "https://api-docs.deepseek.com/quick_start/pricing"
1302
+ },
1303
+ "moonshotai/kimi-k2.7-code-highspeed": {
1304
+ "input": 1.9,
1305
+ "output": 8,
1306
+ "cacheRead": 0.38,
1307
+ "reasoning": 8,
1308
+ "provider": "moonshotai",
1309
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1310
+ },
1311
+ "kimi-k2.7-code-highspeed": {
1312
+ "input": 1.9,
1313
+ "output": 8,
1314
+ "cacheRead": 0.38,
1315
+ "reasoning": 8,
1316
+ "provider": "moonshotai",
1317
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1318
+ },
1319
+ "moonshotai/kimi-k2.6": {
1320
+ "input": 0.95,
1321
+ "output": 4,
1322
+ "cacheRead": 0.16,
1323
+ "reasoning": 4,
1324
+ "provider": "moonshotai",
1325
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1326
+ },
1327
+ "kimi-k2.6": {
1328
+ "input": 0.95,
1329
+ "output": 4,
1330
+ "cacheRead": 0.16,
1331
+ "reasoning": 4,
1332
+ "provider": "moonshotai",
1333
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1334
+ },
1335
+ "moonshotai/kimi-k2-turbo-preview": {
1336
+ "input": 2.4,
1337
+ "output": 10,
1338
+ "cacheRead": 0.6,
1339
+ "reasoning": 10,
1340
+ "provider": "moonshotai",
1341
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1342
+ },
1343
+ "kimi-k2-turbo-preview": {
1344
+ "input": 2.4,
1345
+ "output": 10,
1346
+ "cacheRead": 0.6,
1347
+ "reasoning": 10,
1348
+ "provider": "moonshotai",
1349
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1350
+ },
1351
+ "moonshotai/kimi-k2.7-code": {
1352
+ "input": 0.95,
1353
+ "output": 4,
1354
+ "cacheRead": 0.19,
1355
+ "reasoning": 4,
1356
+ "provider": "moonshotai",
1357
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1358
+ },
1359
+ "kimi-k2.7-code": {
1360
+ "input": 0.95,
1361
+ "output": 4,
1362
+ "cacheRead": 0.19,
1363
+ "reasoning": 4,
1364
+ "provider": "moonshotai",
1365
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1366
+ },
1367
+ "moonshotai/kimi-k2-thinking": {
1368
+ "input": 0.6,
1369
+ "output": 2.5,
1370
+ "cacheRead": 0.15,
1371
+ "reasoning": 2.5,
1372
+ "provider": "moonshotai",
1373
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1374
+ },
1375
+ "kimi-k2-thinking": {
1376
+ "input": 0.6,
1377
+ "output": 2.5,
1378
+ "cacheRead": 0.15,
1379
+ "reasoning": 2.5,
1380
+ "provider": "moonshotai",
1381
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1382
+ },
1383
+ "moonshotai/kimi-k2-0711-preview": {
1384
+ "input": 0.6,
1385
+ "output": 2.5,
1386
+ "cacheRead": 0.15,
1387
+ "reasoning": 2.5,
1388
+ "provider": "moonshotai",
1389
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1390
+ },
1391
+ "kimi-k2-0711-preview": {
1392
+ "input": 0.6,
1393
+ "output": 2.5,
1394
+ "cacheRead": 0.15,
1395
+ "reasoning": 2.5,
1396
+ "provider": "moonshotai",
1397
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1398
+ },
1399
+ "moonshotai/kimi-k3": {
1400
+ "input": 3,
1401
+ "output": 15,
1402
+ "cacheRead": 0.3,
1403
+ "reasoning": 15,
1404
+ "provider": "moonshotai",
1405
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1406
+ },
1407
+ "kimi-k3": {
1408
+ "input": 3,
1409
+ "output": 15,
1410
+ "cacheRead": 0.3,
1411
+ "reasoning": 15,
1412
+ "provider": "moonshotai",
1413
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1414
+ },
1415
+ "moonshotai/kimi-k2-0905-preview": {
1416
+ "input": 0.6,
1417
+ "output": 2.5,
1418
+ "cacheRead": 0.15,
1419
+ "reasoning": 2.5,
1420
+ "provider": "moonshotai",
1421
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1422
+ },
1423
+ "kimi-k2-0905-preview": {
1424
+ "input": 0.6,
1425
+ "output": 2.5,
1426
+ "cacheRead": 0.15,
1427
+ "reasoning": 2.5,
1428
+ "provider": "moonshotai",
1429
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1430
+ },
1431
+ "moonshotai/kimi-k2.5": {
1432
+ "input": 0.6,
1433
+ "output": 3,
1434
+ "cacheRead": 0.1,
1435
+ "reasoning": 3,
1436
+ "provider": "moonshotai",
1437
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1438
+ },
1439
+ "kimi-k2.5": {
1440
+ "input": 0.6,
1441
+ "output": 3,
1442
+ "cacheRead": 0.1,
1443
+ "reasoning": 3,
1444
+ "provider": "moonshotai",
1445
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1446
+ },
1447
+ "moonshotai/kimi-k2-thinking-turbo": {
1448
+ "input": 1.15,
1449
+ "output": 8,
1450
+ "cacheRead": 0.15,
1451
+ "reasoning": 8,
1452
+ "provider": "moonshotai",
1453
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1454
+ },
1455
+ "kimi-k2-thinking-turbo": {
1456
+ "input": 1.15,
1457
+ "output": 8,
1458
+ "cacheRead": 0.15,
1459
+ "reasoning": 8,
1460
+ "provider": "moonshotai",
1461
+ "reference": "https://platform.moonshot.ai/docs/api/chat"
1462
+ },
1463
+ "zai/glm-4.7": {
1464
+ "input": 0.6,
1465
+ "output": 2.2,
1466
+ "cacheRead": 0.11,
1467
+ "reasoning": 2.2,
1468
+ "provider": "zai",
1469
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1470
+ "cacheWrite": 0
1471
+ },
1472
+ "glm-4.7": {
1473
+ "input": 0.6,
1474
+ "output": 2.2,
1475
+ "cacheRead": 0.11,
1476
+ "reasoning": 2.2,
1477
+ "provider": "zai",
1478
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1479
+ "cacheWrite": 0
1480
+ },
1481
+ "zai/glm-4.5-air": {
1482
+ "input": 0.2,
1483
+ "output": 1.1,
1484
+ "cacheRead": 0.03,
1485
+ "reasoning": 1.1,
1486
+ "provider": "zai",
1487
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1488
+ "cacheWrite": 0
1489
+ },
1490
+ "glm-4.5-air": {
1491
+ "input": 0.2,
1492
+ "output": 1.1,
1493
+ "cacheRead": 0.03,
1494
+ "reasoning": 1.1,
1495
+ "provider": "zai",
1496
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1497
+ "cacheWrite": 0
1498
+ },
1499
+ "zai/glm-4.6": {
1500
+ "input": 0.6,
1501
+ "output": 2.2,
1502
+ "cacheRead": 0.11,
1503
+ "reasoning": 2.2,
1504
+ "provider": "zai",
1505
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1506
+ "cacheWrite": 0
1507
+ },
1508
+ "glm-4.6": {
1509
+ "input": 0.6,
1510
+ "output": 2.2,
1511
+ "cacheRead": 0.11,
1512
+ "reasoning": 2.2,
1513
+ "provider": "zai",
1514
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1515
+ "cacheWrite": 0
1516
+ },
1517
+ "zai/glm-4.6v": {
1518
+ "input": 0.3,
1519
+ "output": 0.9,
1520
+ "cacheRead": null,
1521
+ "reasoning": 0.9,
1522
+ "provider": "zai",
1523
+ "reference": "https://docs.z.ai/guides/overview/pricing"
1524
+ },
1525
+ "glm-4.6v": {
1526
+ "input": 0.3,
1527
+ "output": 0.9,
1528
+ "cacheRead": null,
1529
+ "reasoning": 0.9,
1530
+ "provider": "zai",
1531
+ "reference": "https://docs.z.ai/guides/overview/pricing"
1532
+ },
1533
+ "zai/glm-5.2": {
1534
+ "input": 1.4,
1535
+ "output": 4.4,
1536
+ "cacheRead": 0.26,
1537
+ "reasoning": 4.4,
1538
+ "provider": "zai",
1539
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1540
+ "cacheWrite": 0
1541
+ },
1542
+ "glm-5.2": {
1543
+ "input": 1.4,
1544
+ "output": 4.4,
1545
+ "cacheRead": 0.26,
1546
+ "reasoning": 4.4,
1547
+ "provider": "zai",
1548
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1549
+ "cacheWrite": 0
1550
+ },
1551
+ "zai/glm-4.5-flash": {
1552
+ "input": 0,
1553
+ "output": 0,
1554
+ "cacheRead": 0,
1555
+ "reasoning": 0,
1556
+ "provider": "zai",
1557
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1558
+ "cacheWrite": 0
1559
+ },
1560
+ "glm-4.5-flash": {
1561
+ "input": 0,
1562
+ "output": 0,
1563
+ "cacheRead": 0,
1564
+ "reasoning": 0,
1565
+ "provider": "zai",
1566
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1567
+ "cacheWrite": 0
1568
+ },
1569
+ "zai/glm-5.3-flash": {
1570
+ "input": 0.075,
1571
+ "output": 0.25,
1572
+ "cacheRead": 0.015,
1573
+ "reasoning": 0.25,
1574
+ "provider": "zai",
1575
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1576
+ "cacheWrite": 0
1577
+ },
1578
+ "glm-5.3-flash": {
1579
+ "input": 0.075,
1580
+ "output": 0.25,
1581
+ "cacheRead": 0.015,
1582
+ "reasoning": 0.25,
1583
+ "provider": "zai",
1584
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1585
+ "cacheWrite": 0
1586
+ },
1587
+ "zai/glm-4.5": {
1588
+ "input": 0.6,
1589
+ "output": 2.2,
1590
+ "cacheRead": 0.11,
1591
+ "reasoning": 2.2,
1592
+ "provider": "zai",
1593
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1594
+ "cacheWrite": 0
1595
+ },
1596
+ "glm-4.5": {
1597
+ "input": 0.6,
1598
+ "output": 2.2,
1599
+ "cacheRead": 0.11,
1600
+ "reasoning": 2.2,
1601
+ "provider": "zai",
1602
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1603
+ "cacheWrite": 0
1604
+ },
1605
+ "zai/glm-4.5v": {
1606
+ "input": 0.6,
1607
+ "output": 1.8,
1608
+ "cacheRead": null,
1609
+ "reasoning": 1.8,
1610
+ "provider": "zai",
1611
+ "reference": "https://docs.z.ai/guides/overview/pricing"
1612
+ },
1613
+ "glm-4.5v": {
1614
+ "input": 0.6,
1615
+ "output": 1.8,
1616
+ "cacheRead": null,
1617
+ "reasoning": 1.8,
1618
+ "provider": "zai",
1619
+ "reference": "https://docs.z.ai/guides/overview/pricing"
1620
+ },
1621
+ "zai/glm-4.7-flashx": {
1622
+ "input": 0.07,
1623
+ "output": 0.4,
1624
+ "cacheRead": 0.01,
1625
+ "reasoning": 0.4,
1626
+ "provider": "zai",
1627
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1628
+ "cacheWrite": 0
1629
+ },
1630
+ "glm-4.7-flashx": {
1631
+ "input": 0.07,
1632
+ "output": 0.4,
1633
+ "cacheRead": 0.01,
1634
+ "reasoning": 0.4,
1635
+ "provider": "zai",
1636
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1637
+ "cacheWrite": 0
1638
+ },
1639
+ "zai/glm-5": {
1640
+ "input": 1,
1641
+ "output": 3.2,
1642
+ "cacheRead": 0.2,
1643
+ "reasoning": 3.2,
1644
+ "provider": "zai",
1645
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1646
+ "cacheWrite": 0
1647
+ },
1648
+ "glm-5": {
1649
+ "input": 1,
1650
+ "output": 3.2,
1651
+ "cacheRead": 0.2,
1652
+ "reasoning": 3.2,
1653
+ "provider": "zai",
1654
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1655
+ "cacheWrite": 0
1656
+ },
1657
+ "zai/glm-5.1": {
1658
+ "input": 1.4,
1659
+ "output": 4.4,
1660
+ "cacheRead": 0.26,
1661
+ "reasoning": 4.4,
1662
+ "provider": "zai",
1663
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1664
+ "cacheWrite": 0
1665
+ },
1666
+ "glm-5.1": {
1667
+ "input": 1.4,
1668
+ "output": 4.4,
1669
+ "cacheRead": 0.26,
1670
+ "reasoning": 4.4,
1671
+ "provider": "zai",
1672
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1673
+ "cacheWrite": 0
1674
+ },
1675
+ "zai/glm-5-turbo": {
1676
+ "input": 1.2,
1677
+ "output": 4,
1678
+ "cacheRead": 0.24,
1679
+ "reasoning": 4,
1680
+ "provider": "zai",
1681
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1682
+ "cacheWrite": 0
1683
+ },
1684
+ "glm-5-turbo": {
1685
+ "input": 1.2,
1686
+ "output": 4,
1687
+ "cacheRead": 0.24,
1688
+ "reasoning": 4,
1689
+ "provider": "zai",
1690
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1691
+ "cacheWrite": 0
1692
+ },
1693
+ "zai/glm-5.3": {
1694
+ "input": 1.4,
1695
+ "output": 4.4,
1696
+ "cacheRead": 0.26,
1697
+ "reasoning": 4.4,
1698
+ "provider": "zai",
1699
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1700
+ "cacheWrite": 0
1701
+ },
1702
+ "glm-5.3": {
1703
+ "input": 1.4,
1704
+ "output": 4.4,
1705
+ "cacheRead": 0.26,
1706
+ "reasoning": 4.4,
1707
+ "provider": "zai",
1708
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1709
+ "cacheWrite": 0
1710
+ },
1711
+ "zai/glm-5v-turbo": {
1712
+ "input": 1.2,
1713
+ "output": 4,
1714
+ "cacheRead": 0.24,
1715
+ "reasoning": 4,
1716
+ "provider": "zai",
1717
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1718
+ "cacheWrite": 0
1719
+ },
1720
+ "glm-5v-turbo": {
1721
+ "input": 1.2,
1722
+ "output": 4,
1723
+ "cacheRead": 0.24,
1724
+ "reasoning": 4,
1725
+ "provider": "zai",
1726
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1727
+ "cacheWrite": 0
1728
+ },
1729
+ "zai/glm-4.7-flash": {
1730
+ "input": 0,
1731
+ "output": 0,
1732
+ "cacheRead": 0,
1733
+ "reasoning": 0,
1734
+ "provider": "zai",
1735
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1736
+ "cacheWrite": 0
1737
+ },
1738
+ "glm-4.7-flash": {
1739
+ "input": 0,
1740
+ "output": 0,
1741
+ "cacheRead": 0,
1742
+ "reasoning": 0,
1743
+ "provider": "zai",
1744
+ "reference": "https://docs.z.ai/guides/overview/pricing",
1745
+ "cacheWrite": 0
1746
+ },
1747
+ "minimax/MiniMax-M2": {
1748
+ "input": 0.3,
1749
+ "output": 1.2,
1750
+ "cacheRead": null,
1751
+ "reasoning": 1.2,
1752
+ "provider": "minimax",
1753
+ "reference": "https://platform.minimax.io/docs/guides/quickstart"
1754
+ },
1755
+ "MiniMax-M2": {
1756
+ "input": 0.3,
1757
+ "output": 1.2,
1758
+ "cacheRead": null,
1759
+ "reasoning": 1.2,
1760
+ "provider": "minimax",
1761
+ "reference": "https://platform.minimax.io/docs/guides/quickstart"
1762
+ },
1763
+ "minimax/MiniMax-M2.1": {
1764
+ "input": 0.3,
1765
+ "output": 1.2,
1766
+ "cacheRead": 0.03,
1767
+ "reasoning": 1.2,
1768
+ "provider": "minimax",
1769
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1770
+ "cacheWrite": 0.375
1771
+ },
1772
+ "MiniMax-M2.1": {
1773
+ "input": 0.3,
1774
+ "output": 1.2,
1775
+ "cacheRead": 0.03,
1776
+ "reasoning": 1.2,
1777
+ "provider": "minimax",
1778
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1779
+ "cacheWrite": 0.375
1780
+ },
1781
+ "minimax/MiniMax-M2.5": {
1782
+ "input": 0.3,
1783
+ "output": 1.2,
1784
+ "cacheRead": 0.03,
1785
+ "reasoning": 1.2,
1786
+ "provider": "minimax",
1787
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1788
+ "cacheWrite": 0.375
1789
+ },
1790
+ "MiniMax-M2.5": {
1791
+ "input": 0.3,
1792
+ "output": 1.2,
1793
+ "cacheRead": 0.03,
1794
+ "reasoning": 1.2,
1795
+ "provider": "minimax",
1796
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1797
+ "cacheWrite": 0.375
1798
+ },
1799
+ "minimax/MiniMax-M2.5-highspeed": {
1800
+ "input": 0.6,
1801
+ "output": 2.4,
1802
+ "cacheRead": 0.06,
1803
+ "reasoning": 2.4,
1804
+ "provider": "minimax",
1805
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1806
+ "cacheWrite": 0.375
1807
+ },
1808
+ "MiniMax-M2.5-highspeed": {
1809
+ "input": 0.6,
1810
+ "output": 2.4,
1811
+ "cacheRead": 0.06,
1812
+ "reasoning": 2.4,
1813
+ "provider": "minimax",
1814
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1815
+ "cacheWrite": 0.375
1816
+ },
1817
+ "minimax/MiniMax-M3": {
1818
+ "input": 0.3,
1819
+ "output": 1.2,
1820
+ "cacheRead": 0.06,
1821
+ "reasoning": 1.2,
1822
+ "provider": "minimax",
1823
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1824
+ "tiered": true
1825
+ },
1826
+ "MiniMax-M3": {
1827
+ "input": 0.3,
1828
+ "output": 1.2,
1829
+ "cacheRead": 0.06,
1830
+ "reasoning": 1.2,
1831
+ "provider": "minimax",
1832
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1833
+ "tiered": true
1834
+ },
1835
+ "minimax/MiniMax-M2.7-highspeed": {
1836
+ "input": 0.6,
1837
+ "output": 2.4,
1838
+ "cacheRead": 0.06,
1839
+ "reasoning": 2.4,
1840
+ "provider": "minimax",
1841
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1842
+ "cacheWrite": 0.375
1843
+ },
1844
+ "MiniMax-M2.7-highspeed": {
1845
+ "input": 0.6,
1846
+ "output": 2.4,
1847
+ "cacheRead": 0.06,
1848
+ "reasoning": 2.4,
1849
+ "provider": "minimax",
1850
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1851
+ "cacheWrite": 0.375
1852
+ },
1853
+ "minimax/MiniMax-M2.7": {
1854
+ "input": 0.3,
1855
+ "output": 1.2,
1856
+ "cacheRead": 0.06,
1857
+ "reasoning": 1.2,
1858
+ "provider": "minimax",
1859
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1860
+ "cacheWrite": 0.375
1861
+ },
1862
+ "MiniMax-M2.7": {
1863
+ "input": 0.3,
1864
+ "output": 1.2,
1865
+ "cacheRead": 0.06,
1866
+ "reasoning": 1.2,
1867
+ "provider": "minimax",
1868
+ "reference": "https://platform.minimax.io/docs/guides/quickstart",
1869
+ "cacheWrite": 0.375
1870
+ },
1871
+ "xai/grok-4.3": {
1872
+ "input": 1.25,
1873
+ "output": 2.5,
1874
+ "cacheRead": 0.2,
1875
+ "reasoning": 2.5,
1876
+ "provider": "xai",
1877
+ "reference": "https://docs.x.ai/docs/models",
1878
+ "tiered": true
1879
+ },
1880
+ "grok-4.3": {
1881
+ "input": 1.25,
1882
+ "output": 2.5,
1883
+ "cacheRead": 0.2,
1884
+ "reasoning": 2.5,
1885
+ "provider": "xai",
1886
+ "reference": "https://docs.x.ai/docs/models",
1887
+ "tiered": true
1888
+ },
1889
+ "xai/grok-4.20-0309-reasoning": {
1890
+ "input": 1.25,
1891
+ "output": 2.5,
1892
+ "cacheRead": 0.2,
1893
+ "reasoning": 2.5,
1894
+ "provider": "xai",
1895
+ "reference": "https://docs.x.ai/docs/models",
1896
+ "tiered": true
1897
+ },
1898
+ "grok-4.20-0309-reasoning": {
1899
+ "input": 1.25,
1900
+ "output": 2.5,
1901
+ "cacheRead": 0.2,
1902
+ "reasoning": 2.5,
1903
+ "provider": "xai",
1904
+ "reference": "https://docs.x.ai/docs/models",
1905
+ "tiered": true
1906
+ },
1907
+ "xai/grok-4.20-multi-agent-0309": {
1908
+ "input": 1.25,
1909
+ "output": 2.5,
1910
+ "cacheRead": 0.2,
1911
+ "reasoning": 2.5,
1912
+ "provider": "xai",
1913
+ "reference": "https://docs.x.ai/docs/models",
1914
+ "tiered": true
1915
+ },
1916
+ "grok-4.20-multi-agent-0309": {
1917
+ "input": 1.25,
1918
+ "output": 2.5,
1919
+ "cacheRead": 0.2,
1920
+ "reasoning": 2.5,
1921
+ "provider": "xai",
1922
+ "reference": "https://docs.x.ai/docs/models",
1923
+ "tiered": true
1924
+ },
1925
+ "xai/grok-4.5": {
1926
+ "input": 2,
1927
+ "output": 6,
1928
+ "cacheRead": 0.3,
1929
+ "reasoning": 6,
1930
+ "provider": "xai",
1931
+ "reference": "https://docs.x.ai/docs/models",
1932
+ "tiered": true
1933
+ },
1934
+ "grok-4.5": {
1935
+ "input": 2,
1936
+ "output": 6,
1937
+ "cacheRead": 0.3,
1938
+ "reasoning": 6,
1939
+ "provider": "xai",
1940
+ "reference": "https://docs.x.ai/docs/models",
1941
+ "tiered": true
1942
+ },
1943
+ "xai/grok-build-0.1": {
1944
+ "input": 1,
1945
+ "output": 2,
1946
+ "cacheRead": 0.2,
1947
+ "reasoning": 2,
1948
+ "provider": "xai",
1949
+ "reference": "https://docs.x.ai/docs/models",
1950
+ "tiered": true
1951
+ },
1952
+ "grok-build-0.1": {
1953
+ "input": 1,
1954
+ "output": 2,
1955
+ "cacheRead": 0.2,
1956
+ "reasoning": 2,
1957
+ "provider": "xai",
1958
+ "reference": "https://docs.x.ai/docs/models",
1959
+ "tiered": true
1960
+ },
1961
+ "xai/grok-4.6": {
1962
+ "input": 2,
1963
+ "output": 6,
1964
+ "cacheRead": 0.5,
1965
+ "reasoning": 6,
1966
+ "provider": "xai",
1967
+ "reference": "https://docs.x.ai/docs/models",
1968
+ "tiered": true
1969
+ },
1970
+ "grok-4.6": {
1971
+ "input": 2,
1972
+ "output": 6,
1973
+ "cacheRead": 0.5,
1974
+ "reasoning": 6,
1975
+ "provider": "xai",
1976
+ "reference": "https://docs.x.ai/docs/models",
1977
+ "tiered": true
1978
+ },
1979
+ "xai/grok-4.20-0309-non-reasoning": {
1980
+ "input": 1.25,
1981
+ "output": 2.5,
1982
+ "cacheRead": 0.2,
1983
+ "reasoning": 2.5,
1984
+ "provider": "xai",
1985
+ "reference": "https://docs.x.ai/docs/models",
1986
+ "tiered": true
1987
+ },
1988
+ "grok-4.20-0309-non-reasoning": {
1989
+ "input": 1.25,
1990
+ "output": 2.5,
1991
+ "cacheRead": 0.2,
1992
+ "reasoning": 2.5,
1993
+ "provider": "xai",
1994
+ "reference": "https://docs.x.ai/docs/models",
1995
+ "tiered": true
1996
+ },
1997
+ "mistral/pixtral-12b": {
1998
+ "input": 0.15,
1999
+ "output": 0.15,
2000
+ "cacheRead": null,
2001
+ "reasoning": 0.15,
2002
+ "provider": "mistral",
2003
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2004
+ },
2005
+ "pixtral-12b": {
2006
+ "input": 0.15,
2007
+ "output": 0.15,
2008
+ "cacheRead": null,
2009
+ "reasoning": 0.15,
2010
+ "provider": "mistral",
2011
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2012
+ },
2013
+ "mistral/devstral-small-2507": {
2014
+ "input": 0.1,
2015
+ "output": 0.3,
2016
+ "cacheRead": null,
2017
+ "reasoning": 0.3,
2018
+ "provider": "mistral",
2019
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2020
+ },
2021
+ "devstral-small-2507": {
2022
+ "input": 0.1,
2023
+ "output": 0.3,
2024
+ "cacheRead": null,
2025
+ "reasoning": 0.3,
2026
+ "provider": "mistral",
2027
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2028
+ },
2029
+ "mistral/mistral-small-2506": {
2030
+ "input": 0.1,
2031
+ "output": 0.3,
2032
+ "cacheRead": null,
2033
+ "reasoning": 0.3,
2034
+ "provider": "mistral",
2035
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2036
+ },
2037
+ "mistral-small-2506": {
2038
+ "input": 0.1,
2039
+ "output": 0.3,
2040
+ "cacheRead": null,
2041
+ "reasoning": 0.3,
2042
+ "provider": "mistral",
2043
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2044
+ },
2045
+ "mistral/magistral-small": {
2046
+ "input": 0.5,
2047
+ "output": 1.5,
2048
+ "cacheRead": null,
2049
+ "reasoning": 1.5,
2050
+ "provider": "mistral",
2051
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2052
+ },
2053
+ "magistral-small": {
2054
+ "input": 0.5,
2055
+ "output": 1.5,
2056
+ "cacheRead": null,
2057
+ "reasoning": 1.5,
2058
+ "provider": "mistral",
2059
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2060
+ },
2061
+ "mistral/devstral-2512": {
2062
+ "input": 0.4,
2063
+ "output": 2,
2064
+ "cacheRead": null,
2065
+ "reasoning": 2,
2066
+ "provider": "mistral",
2067
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2068
+ },
2069
+ "devstral-2512": {
2070
+ "input": 0.4,
2071
+ "output": 2,
2072
+ "cacheRead": null,
2073
+ "reasoning": 2,
2074
+ "provider": "mistral",
2075
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2076
+ },
2077
+ "mistral/mistral-embed": {
2078
+ "input": 0.1,
2079
+ "output": 0,
2080
+ "cacheRead": null,
2081
+ "reasoning": 0,
2082
+ "provider": "mistral",
2083
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2084
+ },
2085
+ "mistral-embed": {
2086
+ "input": 0.1,
2087
+ "output": 0,
2088
+ "cacheRead": null,
2089
+ "reasoning": 0,
2090
+ "provider": "mistral",
2091
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2092
+ },
2093
+ "mistral/devstral-small-2505": {
2094
+ "input": 0.1,
2095
+ "output": 0.3,
2096
+ "cacheRead": null,
2097
+ "reasoning": 0.3,
2098
+ "provider": "mistral",
2099
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2100
+ },
2101
+ "devstral-small-2505": {
2102
+ "input": 0.1,
2103
+ "output": 0.3,
2104
+ "cacheRead": null,
2105
+ "reasoning": 0.3,
2106
+ "provider": "mistral",
2107
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2108
+ },
2109
+ "mistral/labs-devstral-small-2512": {
2110
+ "input": 0,
2111
+ "output": 0,
2112
+ "cacheRead": null,
2113
+ "reasoning": 0,
2114
+ "provider": "mistral",
2115
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2116
+ },
2117
+ "labs-devstral-small-2512": {
2118
+ "input": 0,
2119
+ "output": 0,
2120
+ "cacheRead": null,
2121
+ "reasoning": 0,
2122
+ "provider": "mistral",
2123
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2124
+ },
2125
+ "mistral/magistral-medium-latest": {
2126
+ "input": 2,
2127
+ "output": 5,
2128
+ "cacheRead": null,
2129
+ "reasoning": 5,
2130
+ "provider": "mistral",
2131
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2132
+ },
2133
+ "magistral-medium-latest": {
2134
+ "input": 2,
2135
+ "output": 5,
2136
+ "cacheRead": null,
2137
+ "reasoning": 5,
2138
+ "provider": "mistral",
2139
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2140
+ },
2141
+ "mistral/open-mixtral-8x22b": {
2142
+ "input": 2,
2143
+ "output": 6,
2144
+ "cacheRead": null,
2145
+ "reasoning": 6,
2146
+ "provider": "mistral",
2147
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2148
+ },
2149
+ "open-mixtral-8x22b": {
2150
+ "input": 2,
2151
+ "output": 6,
2152
+ "cacheRead": null,
2153
+ "reasoning": 6,
2154
+ "provider": "mistral",
2155
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2156
+ },
2157
+ "mistral/open-mixtral-8x7b": {
2158
+ "input": 0.7,
2159
+ "output": 0.7,
2160
+ "cacheRead": null,
2161
+ "reasoning": 0.7,
2162
+ "provider": "mistral",
2163
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2164
+ },
2165
+ "open-mixtral-8x7b": {
2166
+ "input": 0.7,
2167
+ "output": 0.7,
2168
+ "cacheRead": null,
2169
+ "reasoning": 0.7,
2170
+ "provider": "mistral",
2171
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2172
+ },
2173
+ "mistral/open-mistral-7b": {
2174
+ "input": 0.25,
2175
+ "output": 0.25,
2176
+ "cacheRead": null,
2177
+ "reasoning": 0.25,
2178
+ "provider": "mistral",
2179
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2180
+ },
2181
+ "open-mistral-7b": {
2182
+ "input": 0.25,
2183
+ "output": 0.25,
2184
+ "cacheRead": null,
2185
+ "reasoning": 0.25,
2186
+ "provider": "mistral",
2187
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2188
+ },
2189
+ "mistral/mistral-medium-latest": {
2190
+ "input": 1.5,
2191
+ "output": 7.5,
2192
+ "cacheRead": null,
2193
+ "reasoning": 7.5,
2194
+ "provider": "mistral",
2195
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2196
+ },
2197
+ "mistral-medium-latest": {
2198
+ "input": 1.5,
2199
+ "output": 7.5,
2200
+ "cacheRead": null,
2201
+ "reasoning": 7.5,
2202
+ "provider": "mistral",
2203
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2204
+ },
2205
+ "mistral/devstral-medium-2507": {
2206
+ "input": 0.4,
2207
+ "output": 2,
2208
+ "cacheRead": null,
2209
+ "reasoning": 2,
2210
+ "provider": "mistral",
2211
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2212
+ },
2213
+ "devstral-medium-2507": {
2214
+ "input": 0.4,
2215
+ "output": 2,
2216
+ "cacheRead": null,
2217
+ "reasoning": 2,
2218
+ "provider": "mistral",
2219
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2220
+ },
2221
+ "mistral/mistral-medium-2604": {
2222
+ "input": 1.5,
2223
+ "output": 7.5,
2224
+ "cacheRead": null,
2225
+ "reasoning": 7.5,
2226
+ "provider": "mistral",
2227
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2228
+ },
2229
+ "mistral-medium-2604": {
2230
+ "input": 1.5,
2231
+ "output": 7.5,
2232
+ "cacheRead": null,
2233
+ "reasoning": 7.5,
2234
+ "provider": "mistral",
2235
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2236
+ },
2237
+ "mistral/mistral-large-2512": {
2238
+ "input": 0.5,
2239
+ "output": 1.5,
2240
+ "cacheRead": null,
2241
+ "reasoning": 1.5,
2242
+ "provider": "mistral",
2243
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2244
+ },
2245
+ "mistral-large-2512": {
2246
+ "input": 0.5,
2247
+ "output": 1.5,
2248
+ "cacheRead": null,
2249
+ "reasoning": 1.5,
2250
+ "provider": "mistral",
2251
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2252
+ },
2253
+ "mistral/devstral-medium-latest": {
2254
+ "input": 0.4,
2255
+ "output": 2,
2256
+ "cacheRead": null,
2257
+ "reasoning": 2,
2258
+ "provider": "mistral",
2259
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2260
+ },
2261
+ "devstral-medium-latest": {
2262
+ "input": 0.4,
2263
+ "output": 2,
2264
+ "cacheRead": null,
2265
+ "reasoning": 2,
2266
+ "provider": "mistral",
2267
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2268
+ },
2269
+ "mistral/voxtral-small-latest": {
2270
+ "input": 0.1,
2271
+ "output": 0.3,
2272
+ "cacheRead": null,
2273
+ "reasoning": 0.3,
2274
+ "provider": "mistral",
2275
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2276
+ },
2277
+ "voxtral-small-latest": {
2278
+ "input": 0.1,
2279
+ "output": 0.3,
2280
+ "cacheRead": null,
2281
+ "reasoning": 0.3,
2282
+ "provider": "mistral",
2283
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2284
+ },
2285
+ "mistral/ministral-8b-latest": {
2286
+ "input": 0.1,
2287
+ "output": 0.1,
2288
+ "cacheRead": null,
2289
+ "reasoning": 0.1,
2290
+ "provider": "mistral",
2291
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2292
+ },
2293
+ "ministral-8b-latest": {
2294
+ "input": 0.1,
2295
+ "output": 0.1,
2296
+ "cacheRead": null,
2297
+ "reasoning": 0.1,
2298
+ "provider": "mistral",
2299
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2300
+ },
2301
+ "mistral/mistral-nemo": {
2302
+ "input": 0.15,
2303
+ "output": 0.15,
2304
+ "cacheRead": null,
2305
+ "reasoning": 0.15,
2306
+ "provider": "mistral",
2307
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2308
+ },
2309
+ "mistral-nemo": {
2310
+ "input": 0.15,
2311
+ "output": 0.15,
2312
+ "cacheRead": null,
2313
+ "reasoning": 0.15,
2314
+ "provider": "mistral",
2315
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2316
+ },
2317
+ "mistral/mistral-small-latest": {
2318
+ "input": 0.15,
2319
+ "output": 0.6,
2320
+ "cacheRead": null,
2321
+ "reasoning": 0.6,
2322
+ "provider": "mistral",
2323
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2324
+ },
2325
+ "mistral-small-latest": {
2326
+ "input": 0.15,
2327
+ "output": 0.6,
2328
+ "cacheRead": null,
2329
+ "reasoning": 0.6,
2330
+ "provider": "mistral",
2331
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2332
+ },
2333
+ "mistral/open-mistral-nemo": {
2334
+ "input": 0.15,
2335
+ "output": 0.15,
2336
+ "cacheRead": null,
2337
+ "reasoning": 0.15,
2338
+ "provider": "mistral",
2339
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2340
+ },
2341
+ "open-mistral-nemo": {
2342
+ "input": 0.15,
2343
+ "output": 0.15,
2344
+ "cacheRead": null,
2345
+ "reasoning": 0.15,
2346
+ "provider": "mistral",
2347
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2348
+ },
2349
+ "mistral/mistral-large-latest": {
2350
+ "input": 0.5,
2351
+ "output": 1.5,
2352
+ "cacheRead": null,
2353
+ "reasoning": 1.5,
2354
+ "provider": "mistral",
2355
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2356
+ },
2357
+ "mistral-large-latest": {
2358
+ "input": 0.5,
2359
+ "output": 1.5,
2360
+ "cacheRead": null,
2361
+ "reasoning": 1.5,
2362
+ "provider": "mistral",
2363
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2364
+ },
2365
+ "mistral/mistral-large-2411": {
2366
+ "input": 2,
2367
+ "output": 6,
2368
+ "cacheRead": null,
2369
+ "reasoning": 6,
2370
+ "provider": "mistral",
2371
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2372
+ },
2373
+ "mistral-large-2411": {
2374
+ "input": 2,
2375
+ "output": 6,
2376
+ "cacheRead": null,
2377
+ "reasoning": 6,
2378
+ "provider": "mistral",
2379
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2380
+ },
2381
+ "mistral/devstral-latest": {
2382
+ "input": 0.4,
2383
+ "output": 2,
2384
+ "cacheRead": null,
2385
+ "reasoning": 2,
2386
+ "provider": "mistral",
2387
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2388
+ },
2389
+ "devstral-latest": {
2390
+ "input": 0.4,
2391
+ "output": 2,
2392
+ "cacheRead": null,
2393
+ "reasoning": 2,
2394
+ "provider": "mistral",
2395
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2396
+ },
2397
+ "mistral/zai-glm-5-2": {
2398
+ "input": 1.4,
2399
+ "output": 4.4,
2400
+ "cacheRead": 0.14,
2401
+ "reasoning": 4.4,
2402
+ "provider": "mistral",
2403
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2404
+ },
2405
+ "zai-glm-5-2": {
2406
+ "input": 1.4,
2407
+ "output": 4.4,
2408
+ "cacheRead": 0.14,
2409
+ "reasoning": 4.4,
2410
+ "provider": "mistral",
2411
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2412
+ },
2413
+ "mistral/mistral-small-2603": {
2414
+ "input": 0.15,
2415
+ "output": 0.6,
2416
+ "cacheRead": null,
2417
+ "reasoning": 0.6,
2418
+ "provider": "mistral",
2419
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2420
+ },
2421
+ "mistral-small-2603": {
2422
+ "input": 0.15,
2423
+ "output": 0.6,
2424
+ "cacheRead": null,
2425
+ "reasoning": 0.6,
2426
+ "provider": "mistral",
2427
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2428
+ },
2429
+ "mistral/mistral-medium-2505": {
2430
+ "input": 0.4,
2431
+ "output": 2,
2432
+ "cacheRead": null,
2433
+ "reasoning": 2,
2434
+ "provider": "mistral",
2435
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2436
+ },
2437
+ "mistral-medium-2505": {
2438
+ "input": 0.4,
2439
+ "output": 2,
2440
+ "cacheRead": null,
2441
+ "reasoning": 2,
2442
+ "provider": "mistral",
2443
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2444
+ },
2445
+ "mistral/codestral-latest": {
2446
+ "input": 0.3,
2447
+ "output": 0.9,
2448
+ "cacheRead": null,
2449
+ "reasoning": 0.9,
2450
+ "provider": "mistral",
2451
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2452
+ },
2453
+ "codestral-latest": {
2454
+ "input": 0.3,
2455
+ "output": 0.9,
2456
+ "cacheRead": null,
2457
+ "reasoning": 0.9,
2458
+ "provider": "mistral",
2459
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2460
+ },
2461
+ "mistral/ministral-3b-latest": {
2462
+ "input": 0.04,
2463
+ "output": 0.04,
2464
+ "cacheRead": null,
2465
+ "reasoning": 0.04,
2466
+ "provider": "mistral",
2467
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2468
+ },
2469
+ "ministral-3b-latest": {
2470
+ "input": 0.04,
2471
+ "output": 0.04,
2472
+ "cacheRead": null,
2473
+ "reasoning": 0.04,
2474
+ "provider": "mistral",
2475
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2476
+ },
2477
+ "mistral/mistral-medium-2508": {
2478
+ "input": 0.4,
2479
+ "output": 2,
2480
+ "cacheRead": null,
2481
+ "reasoning": 2,
2482
+ "provider": "mistral",
2483
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2484
+ },
2485
+ "mistral-medium-2508": {
2486
+ "input": 0.4,
2487
+ "output": 2,
2488
+ "cacheRead": null,
2489
+ "reasoning": 2,
2490
+ "provider": "mistral",
2491
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2492
+ },
2493
+ "mistral/pixtral-large-latest": {
2494
+ "input": 2,
2495
+ "output": 6,
2496
+ "cacheRead": null,
2497
+ "reasoning": 6,
2498
+ "provider": "mistral",
2499
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2500
+ },
2501
+ "pixtral-large-latest": {
2502
+ "input": 2,
2503
+ "output": 6,
2504
+ "cacheRead": null,
2505
+ "reasoning": 6,
2506
+ "provider": "mistral",
2507
+ "reference": "https://docs.mistral.ai/getting-started/models/"
2508
+ },
2509
+ "xiaomi/mimo-v2.5-pro-ultraspeed": {
2510
+ "input": 1.305,
2511
+ "output": 2.61,
2512
+ "cacheRead": 0.0108,
2513
+ "reasoning": 2.61,
2514
+ "provider": "xiaomi",
2515
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2516
+ },
2517
+ "mimo-v2.5-pro-ultraspeed": {
2518
+ "input": 1.305,
2519
+ "output": 2.61,
2520
+ "cacheRead": 0.0108,
2521
+ "reasoning": 2.61,
2522
+ "provider": "xiaomi",
2523
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2524
+ },
2525
+ "xiaomi/mimo-v2-flash": {
2526
+ "input": 0.14,
2527
+ "output": 0.28,
2528
+ "cacheRead": 0.0028,
2529
+ "reasoning": 0.28,
2530
+ "provider": "xiaomi",
2531
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2532
+ },
2533
+ "mimo-v2-flash": {
2534
+ "input": 0.14,
2535
+ "output": 0.28,
2536
+ "cacheRead": 0.0028,
2537
+ "reasoning": 0.28,
2538
+ "provider": "xiaomi",
2539
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2540
+ },
2541
+ "xiaomi/mimo-v2-pro": {
2542
+ "input": 0.435,
2543
+ "output": 0.87,
2544
+ "cacheRead": 0.0036,
2545
+ "reasoning": 0.87,
2546
+ "provider": "xiaomi",
2547
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2548
+ },
2549
+ "mimo-v2-pro": {
2550
+ "input": 0.435,
2551
+ "output": 0.87,
2552
+ "cacheRead": 0.0036,
2553
+ "reasoning": 0.87,
2554
+ "provider": "xiaomi",
2555
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2556
+ },
2557
+ "xiaomi/mimo-v2-omni": {
2558
+ "input": 0.14,
2559
+ "output": 0.28,
2560
+ "cacheRead": 0.0028,
2561
+ "reasoning": 0.28,
2562
+ "provider": "xiaomi",
2563
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2564
+ },
2565
+ "mimo-v2-omni": {
2566
+ "input": 0.14,
2567
+ "output": 0.28,
2568
+ "cacheRead": 0.0028,
2569
+ "reasoning": 0.28,
2570
+ "provider": "xiaomi",
2571
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2572
+ },
2573
+ "xiaomi/mimo-v2.5": {
2574
+ "input": 0.14,
2575
+ "output": 0.28,
2576
+ "cacheRead": 0.0028,
2577
+ "reasoning": 0.28,
2578
+ "provider": "xiaomi",
2579
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2580
+ },
2581
+ "mimo-v2.5": {
2582
+ "input": 0.14,
2583
+ "output": 0.28,
2584
+ "cacheRead": 0.0028,
2585
+ "reasoning": 0.28,
2586
+ "provider": "xiaomi",
2587
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2588
+ },
2589
+ "xiaomi/mimo-v2.5-pro": {
2590
+ "input": 0.435,
2591
+ "output": 0.87,
2592
+ "cacheRead": 0.0036,
2593
+ "reasoning": 0.87,
2594
+ "provider": "xiaomi",
2595
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2596
+ },
2597
+ "mimo-v2.5-pro": {
2598
+ "input": 0.435,
2599
+ "output": 0.87,
2600
+ "cacheRead": 0.0036,
2601
+ "reasoning": 0.87,
2602
+ "provider": "xiaomi",
2603
+ "reference": "https://platform.xiaomimimo.com/#/docs"
2604
+ },
2605
+ "kimi-for-coding/kimi-for-coding-highspeed": {
2606
+ "input": 0,
2607
+ "output": 0,
2608
+ "cacheRead": 0,
2609
+ "reasoning": 0,
2610
+ "provider": "kimi-for-coding",
2611
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2612
+ "cacheWrite": 0
2613
+ },
2614
+ "kimi-for-coding-highspeed": {
2615
+ "input": 0,
2616
+ "output": 0,
2617
+ "cacheRead": 0,
2618
+ "reasoning": 0,
2619
+ "provider": "kimi-for-coding",
2620
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2621
+ "cacheWrite": 0
2622
+ },
2623
+ "kimi-for-coding/k3-256k": {
2624
+ "input": 0,
2625
+ "output": 0,
2626
+ "cacheRead": 0,
2627
+ "reasoning": 0,
2628
+ "provider": "kimi-for-coding",
2629
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2630
+ "cacheWrite": 0
2631
+ },
2632
+ "k3-256k": {
2633
+ "input": 0,
2634
+ "output": 0,
2635
+ "cacheRead": 0,
2636
+ "reasoning": 0,
2637
+ "provider": "kimi-for-coding",
2638
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2639
+ "cacheWrite": 0
2640
+ },
2641
+ "kimi-for-coding/kimi-for-coding": {
2642
+ "input": 0,
2643
+ "output": 0,
2644
+ "cacheRead": 0,
2645
+ "reasoning": 0,
2646
+ "provider": "kimi-for-coding",
2647
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2648
+ "cacheWrite": 0
2649
+ },
2650
+ "kimi-for-coding": {
2651
+ "input": 0,
2652
+ "output": 0,
2653
+ "cacheRead": 0,
2654
+ "reasoning": 0,
2655
+ "provider": "kimi-for-coding",
2656
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2657
+ "cacheWrite": 0
2658
+ },
2659
+ "kimi-for-coding/k3": {
2660
+ "input": 0,
2661
+ "output": 0,
2662
+ "cacheRead": 0,
2663
+ "reasoning": 0,
2664
+ "provider": "kimi-for-coding",
2665
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2666
+ "cacheWrite": 0
2667
+ },
2668
+ "k3": {
2669
+ "input": 0,
2670
+ "output": 0,
2671
+ "cacheRead": 0,
2672
+ "reasoning": 0,
2673
+ "provider": "kimi-for-coding",
2674
+ "reference": "https://www.kimi.com/code/docs/en/kimi-code/models.html",
2675
+ "cacheWrite": 0
2676
+ }
2677
+ }
2678
+ }