tokenable 1.0.0__py3-none-any.whl
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.
- tokenable/__init__.py +3 -0
- tokenable/__main__.py +5 -0
- tokenable/calibration/__init__.py +129 -0
- tokenable/calibration/providers.py +202 -0
- tokenable/cli/__init__.py +695 -0
- tokenable/config/__init__.py +155 -0
- tokenable/enforcer/__init__.py +124 -0
- tokenable/estimator/__init__.py +192 -0
- tokenable/fixer/__init__.py +101 -0
- tokenable/mcp/__init__.py +249 -0
- tokenable/models/__init__.py +308 -0
- tokenable/pricing_sync.py +145 -0
- tokenable/providers/__init__.py +485 -0
- tokenable/providers/data/anthropic.json +452 -0
- tokenable/providers/data/benchmarks.json +324 -0
- tokenable/providers/data/google.json +318 -0
- tokenable/providers/data/openai.json +507 -0
- tokenable/providers/data/perplexity.json +88 -0
- tokenable/providers/data/xai.json +263 -0
- tokenable/py.typed +1 -0
- tokenable/recommender/__init__.py +209 -0
- tokenable/scanner/__init__.py +303 -0
- tokenable/telemetry/__init__.py +92 -0
- tokenable/utils/__init__.py +19 -0
- tokenable-1.0.0.dist-info/METADATA +196 -0
- tokenable-1.0.0.dist-info/RECORD +29 -0
- tokenable-1.0.0.dist-info/WHEEL +4 -0
- tokenable-1.0.0.dist-info/entry_points.txt +2 -0
- tokenable-1.0.0.dist-info/licenses/LICENSE +190 -0
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"last_updated": "2026-03-20",
|
|
4
|
+
"total_models_ranked": 242,
|
|
5
|
+
"sources": [
|
|
6
|
+
{
|
|
7
|
+
"name": "chatbot-arena",
|
|
8
|
+
"url": "https://arena.ai/leaderboard",
|
|
9
|
+
"description": "Human preference rankings from Chatbot Arena (LMSYS). Scores normalized 0-100 from rank position across 242 models."
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"models": {
|
|
13
|
+
"anthropic/claude-opus-4-6": {
|
|
14
|
+
"overall": 93,
|
|
15
|
+
"primary_source": "chatbot-arena",
|
|
16
|
+
"arena_elo": 1406.3,
|
|
17
|
+
"arena_rank": 19,
|
|
18
|
+
"coding": 99,
|
|
19
|
+
"reasoning": 98,
|
|
20
|
+
"math": 97,
|
|
21
|
+
"creative_writing": 97,
|
|
22
|
+
"instruction_following": 99
|
|
23
|
+
},
|
|
24
|
+
"anthropic/claude-opus-4-20250514": {
|
|
25
|
+
"overall": 83,
|
|
26
|
+
"primary_source": "chatbot-arena",
|
|
27
|
+
"arena_elo": 1362.4,
|
|
28
|
+
"arena_rank": 41,
|
|
29
|
+
"coding": 87,
|
|
30
|
+
"reasoning": 88,
|
|
31
|
+
"math": 84,
|
|
32
|
+
"creative_writing": 92,
|
|
33
|
+
"instruction_following": 91
|
|
34
|
+
},
|
|
35
|
+
"anthropic/claude-sonnet-4-6": {
|
|
36
|
+
"overall": 98,
|
|
37
|
+
"coding": 98,
|
|
38
|
+
"reasoning": 98,
|
|
39
|
+
"math": 99,
|
|
40
|
+
"creative_writing": 98,
|
|
41
|
+
"instruction_following": 99,
|
|
42
|
+
"arena_rank": 16,
|
|
43
|
+
"primary_source": "chatbot-arena"
|
|
44
|
+
},
|
|
45
|
+
"anthropic/claude-sonnet-4-20250514": {
|
|
46
|
+
"overall": 76,
|
|
47
|
+
"primary_source": "chatbot-arena",
|
|
48
|
+
"arena_elo": 1333.8,
|
|
49
|
+
"arena_rank": 58,
|
|
50
|
+
"coding": 83,
|
|
51
|
+
"reasoning": 80,
|
|
52
|
+
"math": 80,
|
|
53
|
+
"creative_writing": 84,
|
|
54
|
+
"instruction_following": 85
|
|
55
|
+
},
|
|
56
|
+
"anthropic/claude-haiku-4-5-20251001": {
|
|
57
|
+
"overall": 51,
|
|
58
|
+
"primary_source": "chatbot-arena",
|
|
59
|
+
"arena_elo": 1256.4,
|
|
60
|
+
"arena_rank": 120,
|
|
61
|
+
"coding": 57,
|
|
62
|
+
"reasoning": 53,
|
|
63
|
+
"math": 51,
|
|
64
|
+
"creative_writing": 50,
|
|
65
|
+
"instruction_following": 53
|
|
66
|
+
},
|
|
67
|
+
"openai/gpt-4o": {
|
|
68
|
+
"overall": 67,
|
|
69
|
+
"primary_source": "chatbot-arena",
|
|
70
|
+
"arena_elo": 1302.7,
|
|
71
|
+
"arena_rank": 81,
|
|
72
|
+
"coding": 64,
|
|
73
|
+
"reasoning": 64,
|
|
74
|
+
"math": 66,
|
|
75
|
+
"creative_writing": 73,
|
|
76
|
+
"instruction_following": 67
|
|
77
|
+
},
|
|
78
|
+
"openai/gpt-4o-mini": {
|
|
79
|
+
"overall": 63,
|
|
80
|
+
"primary_source": "chatbot-arena",
|
|
81
|
+
"arena_elo": 1289.2,
|
|
82
|
+
"arena_rank": 91,
|
|
83
|
+
"coding": 61,
|
|
84
|
+
"reasoning": 60,
|
|
85
|
+
"math": 56,
|
|
86
|
+
"creative_writing": 64,
|
|
87
|
+
"instruction_following": 60
|
|
88
|
+
},
|
|
89
|
+
"openai/gpt-4.1": {
|
|
90
|
+
"overall": 89,
|
|
91
|
+
"primary_source": "chatbot-arena",
|
|
92
|
+
"arena_elo": 1380.7,
|
|
93
|
+
"arena_rank": 27,
|
|
94
|
+
"coding": 86,
|
|
95
|
+
"reasoning": 88,
|
|
96
|
+
"math": 78,
|
|
97
|
+
"creative_writing": 90,
|
|
98
|
+
"instruction_following": 90
|
|
99
|
+
},
|
|
100
|
+
"openai/gpt-4.1-mini": {
|
|
101
|
+
"overall": 79,
|
|
102
|
+
"primary_source": "chatbot-arena",
|
|
103
|
+
"arena_elo": 1341.5,
|
|
104
|
+
"arena_rank": 51,
|
|
105
|
+
"coding": 80,
|
|
106
|
+
"reasoning": 80,
|
|
107
|
+
"math": 76,
|
|
108
|
+
"creative_writing": 74,
|
|
109
|
+
"instruction_following": 80
|
|
110
|
+
},
|
|
111
|
+
"openai/gpt-4.1-nano": {
|
|
112
|
+
"overall": 62,
|
|
113
|
+
"primary_source": "chatbot-arena",
|
|
114
|
+
"arena_elo": 1287.5,
|
|
115
|
+
"arena_rank": 93,
|
|
116
|
+
"coding": 67,
|
|
117
|
+
"reasoning": 65,
|
|
118
|
+
"math": 61,
|
|
119
|
+
"creative_writing": 61,
|
|
120
|
+
"instruction_following": 64
|
|
121
|
+
},
|
|
122
|
+
"openai/o3": {
|
|
123
|
+
"overall": 96,
|
|
124
|
+
"primary_source": "chatbot-arena",
|
|
125
|
+
"arena_elo": 1420.7,
|
|
126
|
+
"arena_rank": 10,
|
|
127
|
+
"coding": 96,
|
|
128
|
+
"reasoning": 94,
|
|
129
|
+
"math": 97,
|
|
130
|
+
"creative_writing": 92,
|
|
131
|
+
"instruction_following": 92
|
|
132
|
+
},
|
|
133
|
+
"openai/o3-mini": {
|
|
134
|
+
"overall": 78,
|
|
135
|
+
"primary_source": "chatbot-arena",
|
|
136
|
+
"arena_elo": 1338.3,
|
|
137
|
+
"arena_rank": 55,
|
|
138
|
+
"coding": 83,
|
|
139
|
+
"reasoning": 84,
|
|
140
|
+
"math": 88,
|
|
141
|
+
"creative_writing": 71,
|
|
142
|
+
"instruction_following": 82
|
|
143
|
+
},
|
|
144
|
+
"openai/o4-mini": {
|
|
145
|
+
"overall": 83,
|
|
146
|
+
"primary_source": "chatbot-arena",
|
|
147
|
+
"arena_elo": 1359,
|
|
148
|
+
"arena_rank": 42,
|
|
149
|
+
"coding": 84,
|
|
150
|
+
"reasoning": 81,
|
|
151
|
+
"math": 90,
|
|
152
|
+
"creative_writing": 76,
|
|
153
|
+
"instruction_following": 80
|
|
154
|
+
},
|
|
155
|
+
"google/gemini-2.0-flash": {
|
|
156
|
+
"overall": 82,
|
|
157
|
+
"primary_source": "chatbot-arena",
|
|
158
|
+
"arena_elo": 1358.2,
|
|
159
|
+
"arena_rank": 45,
|
|
160
|
+
"coding": 78,
|
|
161
|
+
"reasoning": 80,
|
|
162
|
+
"math": 79,
|
|
163
|
+
"creative_writing": 85,
|
|
164
|
+
"instruction_following": 82
|
|
165
|
+
},
|
|
166
|
+
"google/gemini-2.0-flash-lite": {
|
|
167
|
+
"overall": 75,
|
|
168
|
+
"primary_source": "chatbot-arena",
|
|
169
|
+
"arena_elo": 1330.8,
|
|
170
|
+
"arena_rank": 62,
|
|
171
|
+
"coding": 71,
|
|
172
|
+
"reasoning": 74,
|
|
173
|
+
"math": 72,
|
|
174
|
+
"creative_writing": 80,
|
|
175
|
+
"instruction_following": 75
|
|
176
|
+
},
|
|
177
|
+
"google/gemini-2.5-flash": {
|
|
178
|
+
"overall": 93,
|
|
179
|
+
"primary_source": "chatbot-arena",
|
|
180
|
+
"arena_elo": 1408.9,
|
|
181
|
+
"arena_rank": 18,
|
|
182
|
+
"coding": 92,
|
|
183
|
+
"reasoning": 93,
|
|
184
|
+
"math": 96,
|
|
185
|
+
"creative_writing": 98,
|
|
186
|
+
"instruction_following": 95
|
|
187
|
+
},
|
|
188
|
+
"google/gemini-3-flash-preview": {
|
|
189
|
+
"overall": 99,
|
|
190
|
+
"coding": 98,
|
|
191
|
+
"reasoning": 99,
|
|
192
|
+
"math": 99,
|
|
193
|
+
"creative_writing": 99,
|
|
194
|
+
"instruction_following": 98,
|
|
195
|
+
"arena_rank": 8,
|
|
196
|
+
"primary_source": "chatbot-arena"
|
|
197
|
+
},
|
|
198
|
+
"google/gemini-3.1-pro-preview": {
|
|
199
|
+
"overall": 100,
|
|
200
|
+
"coding": 99,
|
|
201
|
+
"reasoning": 100,
|
|
202
|
+
"math": 100,
|
|
203
|
+
"creative_writing": 100,
|
|
204
|
+
"instruction_following": 100,
|
|
205
|
+
"arena_rank": 4,
|
|
206
|
+
"primary_source": "chatbot-arena"
|
|
207
|
+
},
|
|
208
|
+
"google/gemini-3.1-flash-lite-preview": {
|
|
209
|
+
"overall": 94,
|
|
210
|
+
"coding": 89,
|
|
211
|
+
"reasoning": 93,
|
|
212
|
+
"math": 92,
|
|
213
|
+
"creative_writing": 96,
|
|
214
|
+
"instruction_following": 92,
|
|
215
|
+
"arena_rank": 35,
|
|
216
|
+
"primary_source": "chatbot-arena"
|
|
217
|
+
},
|
|
218
|
+
"xai/grok-3": {
|
|
219
|
+
"overall": 97,
|
|
220
|
+
"primary_source": "chatbot-arena",
|
|
221
|
+
"arena_elo": 1423.1,
|
|
222
|
+
"arena_rank": 8,
|
|
223
|
+
"coding": 96,
|
|
224
|
+
"reasoning": 98,
|
|
225
|
+
"math": 87,
|
|
226
|
+
"creative_writing": 100,
|
|
227
|
+
"instruction_following": 98
|
|
228
|
+
},
|
|
229
|
+
"xai/grok-3-mini": {
|
|
230
|
+
"overall": 85,
|
|
231
|
+
"primary_source": "chatbot-arena",
|
|
232
|
+
"arena_elo": 1366.4,
|
|
233
|
+
"arena_rank": 37,
|
|
234
|
+
"coding": 82,
|
|
235
|
+
"reasoning": 85,
|
|
236
|
+
"math": 85,
|
|
237
|
+
"creative_writing": 86,
|
|
238
|
+
"instruction_following": 86
|
|
239
|
+
},
|
|
240
|
+
"google/gemini-2.5-pro": {
|
|
241
|
+
"overall": 100,
|
|
242
|
+
"primary_source": "chatbot-arena",
|
|
243
|
+
"arena_elo": 1466.2,
|
|
244
|
+
"arena_rank": 1,
|
|
245
|
+
"coding": 100,
|
|
246
|
+
"reasoning": 100,
|
|
247
|
+
"math": 100,
|
|
248
|
+
"creative_writing": 100,
|
|
249
|
+
"instruction_following": 100
|
|
250
|
+
},
|
|
251
|
+
"anthropic/claude-3-5-haiku-20241022": {
|
|
252
|
+
"overall": 51,
|
|
253
|
+
"primary_source": "chatbot-arena",
|
|
254
|
+
"arena_elo": 1256.4,
|
|
255
|
+
"arena_rank": 120,
|
|
256
|
+
"coding": 57,
|
|
257
|
+
"reasoning": 53,
|
|
258
|
+
"math": 51,
|
|
259
|
+
"creative_writing": 50,
|
|
260
|
+
"instruction_following": 53,
|
|
261
|
+
"note": "Uses claude-haiku-4-5-20251001 scores (same model, older ID)"
|
|
262
|
+
},
|
|
263
|
+
"xai/grok-3-vision": {
|
|
264
|
+
"overall": 97,
|
|
265
|
+
"primary_source": "chatbot-arena",
|
|
266
|
+
"arena_elo": 1423.1,
|
|
267
|
+
"arena_rank": 8,
|
|
268
|
+
"coding": 96,
|
|
269
|
+
"reasoning": 98,
|
|
270
|
+
"math": 87,
|
|
271
|
+
"creative_writing": 100,
|
|
272
|
+
"instruction_following": 98,
|
|
273
|
+
"note": "Uses grok-3 scores (same model, older ID)"
|
|
274
|
+
},
|
|
275
|
+
"google/gemini-2.5-flash-lite": {
|
|
276
|
+
"overall": 75,
|
|
277
|
+
"primary_source": "chatbot-arena",
|
|
278
|
+
"arena_elo": 1330.8,
|
|
279
|
+
"arena_rank": 62,
|
|
280
|
+
"coding": 71,
|
|
281
|
+
"reasoning": 74,
|
|
282
|
+
"math": 72,
|
|
283
|
+
"creative_writing": 80,
|
|
284
|
+
"instruction_following": 75,
|
|
285
|
+
"note": "Uses gemini-2.0-flash-lite scores (same model, older ID)"
|
|
286
|
+
},
|
|
287
|
+
"perplexity/sonar": {
|
|
288
|
+
"overall": 70,
|
|
289
|
+
"coding": 65,
|
|
290
|
+
"reasoning": 68,
|
|
291
|
+
"creative_writing": 72,
|
|
292
|
+
"instruction_following": 70,
|
|
293
|
+
"primary_source": "estimate",
|
|
294
|
+
"note": "Not ranked on Arena. Estimated from similar-tier models."
|
|
295
|
+
},
|
|
296
|
+
"perplexity/sonar-pro": {
|
|
297
|
+
"overall": 78,
|
|
298
|
+
"coding": 72,
|
|
299
|
+
"reasoning": 76,
|
|
300
|
+
"creative_writing": 78,
|
|
301
|
+
"instruction_following": 76,
|
|
302
|
+
"primary_source": "estimate",
|
|
303
|
+
"note": "Not ranked on Arena. Estimated from similar-tier models."
|
|
304
|
+
},
|
|
305
|
+
"perplexity/sonar-reasoning-pro": {
|
|
306
|
+
"overall": 82,
|
|
307
|
+
"coding": 76,
|
|
308
|
+
"reasoning": 84,
|
|
309
|
+
"creative_writing": 78,
|
|
310
|
+
"instruction_following": 80,
|
|
311
|
+
"primary_source": "estimate",
|
|
312
|
+
"note": "Not ranked on Arena. Estimated from similar-tier models."
|
|
313
|
+
},
|
|
314
|
+
"perplexity/sonar-deep-research": {
|
|
315
|
+
"overall": 82,
|
|
316
|
+
"coding": 76,
|
|
317
|
+
"reasoning": 84,
|
|
318
|
+
"creative_writing": 78,
|
|
319
|
+
"instruction_following": 80,
|
|
320
|
+
"primary_source": "estimate",
|
|
321
|
+
"note": "Not ranked on Arena. Estimated from similar-tier models."
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
{
|
|
2
|
+
"provider": "google",
|
|
3
|
+
"last_updated": "2026-06-01",
|
|
4
|
+
"last_verified": "2026-06-01",
|
|
5
|
+
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
6
|
+
"models": [
|
|
7
|
+
{
|
|
8
|
+
"id": "gemini-3.1-pro-preview",
|
|
9
|
+
"name": "Gemini 3.1 Pro",
|
|
10
|
+
"aliases": [
|
|
11
|
+
"gemini-3.1-pro",
|
|
12
|
+
"models/gemini-3.1-pro-preview",
|
|
13
|
+
"gemini-3.1-pro-preview-customtools"
|
|
14
|
+
],
|
|
15
|
+
"status": "current",
|
|
16
|
+
"input_cost_per_million": 2,
|
|
17
|
+
"output_cost_per_million": 12,
|
|
18
|
+
"cache_read_input_cost_per_million": 0.2,
|
|
19
|
+
"input_cost_above_200k_per_million": 4,
|
|
20
|
+
"output_cost_above_200k_per_million": 18,
|
|
21
|
+
"context_window": 1048576,
|
|
22
|
+
"max_output_tokens": 65536,
|
|
23
|
+
"supports_vision": true,
|
|
24
|
+
"supports_tools": true,
|
|
25
|
+
"supports_prompt_caching": true,
|
|
26
|
+
"supports_reasoning": true,
|
|
27
|
+
"supports_computer_use": false,
|
|
28
|
+
"capabilities": [
|
|
29
|
+
"code",
|
|
30
|
+
"reasoning",
|
|
31
|
+
"general",
|
|
32
|
+
"creative",
|
|
33
|
+
"vision",
|
|
34
|
+
"search"
|
|
35
|
+
],
|
|
36
|
+
"knowledge_cutoff": "2025-01-01"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "gemini-3-pro-preview",
|
|
40
|
+
"name": "Gemini 3 Pro",
|
|
41
|
+
"aliases": [
|
|
42
|
+
"gemini-3-pro",
|
|
43
|
+
"models/gemini-3-pro-preview"
|
|
44
|
+
],
|
|
45
|
+
"status": "current",
|
|
46
|
+
"input_cost_per_million": 2,
|
|
47
|
+
"output_cost_per_million": 12,
|
|
48
|
+
"cache_read_input_cost_per_million": 0.2,
|
|
49
|
+
"context_window": 1048576,
|
|
50
|
+
"max_output_tokens": 65535,
|
|
51
|
+
"supports_vision": true,
|
|
52
|
+
"supports_tools": true,
|
|
53
|
+
"supports_prompt_caching": true,
|
|
54
|
+
"supports_reasoning": true,
|
|
55
|
+
"supports_computer_use": false,
|
|
56
|
+
"capabilities": [
|
|
57
|
+
"code",
|
|
58
|
+
"reasoning",
|
|
59
|
+
"general",
|
|
60
|
+
"creative",
|
|
61
|
+
"vision",
|
|
62
|
+
"search"
|
|
63
|
+
],
|
|
64
|
+
"knowledge_cutoff": "2025-01-01",
|
|
65
|
+
"input_cost_above_200k_per_million": 4,
|
|
66
|
+
"output_cost_above_200k_per_million": 18
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "gemini-3-flash-preview",
|
|
70
|
+
"name": "Gemini 3 Flash",
|
|
71
|
+
"aliases": [
|
|
72
|
+
"gemini-3-flash",
|
|
73
|
+
"models/gemini-3-flash-preview"
|
|
74
|
+
],
|
|
75
|
+
"status": "current",
|
|
76
|
+
"input_cost_per_million": 0.5,
|
|
77
|
+
"output_cost_per_million": 3,
|
|
78
|
+
"cache_read_input_cost_per_million": 0.05,
|
|
79
|
+
"context_window": 1048576,
|
|
80
|
+
"max_output_tokens": 65535,
|
|
81
|
+
"supports_vision": true,
|
|
82
|
+
"supports_tools": true,
|
|
83
|
+
"supports_prompt_caching": true,
|
|
84
|
+
"supports_reasoning": true,
|
|
85
|
+
"supports_computer_use": false,
|
|
86
|
+
"capabilities": [
|
|
87
|
+
"code",
|
|
88
|
+
"reasoning",
|
|
89
|
+
"general",
|
|
90
|
+
"vision",
|
|
91
|
+
"search"
|
|
92
|
+
],
|
|
93
|
+
"knowledge_cutoff": "2025-01-01"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "gemini-3.1-flash-lite-preview",
|
|
97
|
+
"name": "Gemini 3.1 Flash-Lite",
|
|
98
|
+
"aliases": [
|
|
99
|
+
"gemini-3.1-flash-lite",
|
|
100
|
+
"models/gemini-3.1-flash-lite-preview"
|
|
101
|
+
],
|
|
102
|
+
"status": "current",
|
|
103
|
+
"input_cost_per_million": 0.25,
|
|
104
|
+
"output_cost_per_million": 1.5,
|
|
105
|
+
"cache_read_input_cost_per_million": 0.025,
|
|
106
|
+
"context_window": 1048576,
|
|
107
|
+
"max_output_tokens": 65536,
|
|
108
|
+
"supports_vision": true,
|
|
109
|
+
"supports_tools": true,
|
|
110
|
+
"supports_prompt_caching": true,
|
|
111
|
+
"supports_reasoning": true,
|
|
112
|
+
"supports_computer_use": false,
|
|
113
|
+
"capabilities": [
|
|
114
|
+
"code",
|
|
115
|
+
"general",
|
|
116
|
+
"vision"
|
|
117
|
+
],
|
|
118
|
+
"knowledge_cutoff": "2025-01-01"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "gemini-2.5-flash-lite",
|
|
122
|
+
"name": "Gemini 2.5 Flash-Lite",
|
|
123
|
+
"aliases": [
|
|
124
|
+
"models/gemini-2.5-flash-lite",
|
|
125
|
+
"gemini/gemini-2.5-flash-lite",
|
|
126
|
+
"gemini-2.5-flash-lite-preview-06-17",
|
|
127
|
+
"gemini-2.5-flash-lite-preview-09-2025"
|
|
128
|
+
],
|
|
129
|
+
"status": "current",
|
|
130
|
+
"input_cost_per_million": 0.1,
|
|
131
|
+
"output_cost_per_million": 0.4,
|
|
132
|
+
"cache_read_input_cost_per_million": 0.01,
|
|
133
|
+
"context_window": 1048576,
|
|
134
|
+
"max_output_tokens": 65535,
|
|
135
|
+
"supports_vision": true,
|
|
136
|
+
"supports_tools": true,
|
|
137
|
+
"supports_prompt_caching": true,
|
|
138
|
+
"supports_reasoning": true,
|
|
139
|
+
"supports_computer_use": false,
|
|
140
|
+
"capabilities": [
|
|
141
|
+
"code",
|
|
142
|
+
"general",
|
|
143
|
+
"vision"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "gemini-2.5-pro",
|
|
148
|
+
"name": "Gemini 2.5 Pro",
|
|
149
|
+
"aliases": [
|
|
150
|
+
"gemini-2.5-pro-preview",
|
|
151
|
+
"models/gemini-2.5-pro",
|
|
152
|
+
"gemini/gemini-2.5-pro",
|
|
153
|
+
"gemini-2.5-pro-preview-03-25",
|
|
154
|
+
"gemini-2.5-pro-preview-05-06",
|
|
155
|
+
"gemini-2.5-pro-preview-06-05"
|
|
156
|
+
],
|
|
157
|
+
"status": "legacy",
|
|
158
|
+
"input_cost_per_million": 1.25,
|
|
159
|
+
"output_cost_per_million": 10,
|
|
160
|
+
"cache_read_input_cost_per_million": 0.12,
|
|
161
|
+
"input_cost_above_200k_per_million": 2.5,
|
|
162
|
+
"output_cost_above_200k_per_million": 15,
|
|
163
|
+
"context_window": 1048576,
|
|
164
|
+
"max_output_tokens": 65535,
|
|
165
|
+
"supports_vision": true,
|
|
166
|
+
"supports_tools": true,
|
|
167
|
+
"supports_prompt_caching": true,
|
|
168
|
+
"supports_reasoning": true,
|
|
169
|
+
"supports_computer_use": false,
|
|
170
|
+
"capabilities": [
|
|
171
|
+
"code",
|
|
172
|
+
"reasoning",
|
|
173
|
+
"general",
|
|
174
|
+
"creative",
|
|
175
|
+
"vision"
|
|
176
|
+
]
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "gemini-2.5-flash",
|
|
180
|
+
"name": "Gemini 2.5 Flash",
|
|
181
|
+
"aliases": [
|
|
182
|
+
"gemini-2.5-flash-preview",
|
|
183
|
+
"models/gemini-2.5-flash",
|
|
184
|
+
"gemini/gemini-2.5-flash",
|
|
185
|
+
"gemini-2.5-flash-preview-05-20",
|
|
186
|
+
"gemini-2.5-flash-preview-09-2025"
|
|
187
|
+
],
|
|
188
|
+
"status": "legacy",
|
|
189
|
+
"input_cost_per_million": 0.3,
|
|
190
|
+
"output_cost_per_million": 2.5,
|
|
191
|
+
"cache_read_input_cost_per_million": 0.03,
|
|
192
|
+
"context_window": 1048576,
|
|
193
|
+
"max_output_tokens": 65535,
|
|
194
|
+
"supports_vision": true,
|
|
195
|
+
"supports_tools": true,
|
|
196
|
+
"supports_prompt_caching": true,
|
|
197
|
+
"supports_reasoning": true,
|
|
198
|
+
"supports_computer_use": false,
|
|
199
|
+
"capabilities": [
|
|
200
|
+
"code",
|
|
201
|
+
"general",
|
|
202
|
+
"vision",
|
|
203
|
+
"reasoning"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"id": "gemini-2.0-flash",
|
|
208
|
+
"name": "Gemini 2.0 Flash",
|
|
209
|
+
"aliases": [
|
|
210
|
+
"gemini-2.0-flash-001",
|
|
211
|
+
"models/gemini-2.0-flash",
|
|
212
|
+
"gemini/gemini-2.0-flash",
|
|
213
|
+
"gemini-2.0-flash-preview-image-generation"
|
|
214
|
+
],
|
|
215
|
+
"status": "current",
|
|
216
|
+
"input_cost_per_million": 0.1,
|
|
217
|
+
"output_cost_per_million": 0.4,
|
|
218
|
+
"cache_read_input_cost_per_million": 0.02,
|
|
219
|
+
"context_window": 1048576,
|
|
220
|
+
"max_output_tokens": 8192,
|
|
221
|
+
"supports_vision": true,
|
|
222
|
+
"supports_tools": true,
|
|
223
|
+
"supports_prompt_caching": true,
|
|
224
|
+
"supports_reasoning": false,
|
|
225
|
+
"supports_computer_use": false,
|
|
226
|
+
"capabilities": [
|
|
227
|
+
"code",
|
|
228
|
+
"general",
|
|
229
|
+
"vision"
|
|
230
|
+
]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"id": "gemini-2.0-flash-lite",
|
|
234
|
+
"name": "Gemini 2.0 Flash Lite",
|
|
235
|
+
"aliases": [
|
|
236
|
+
"models/gemini-2.0-flash-lite",
|
|
237
|
+
"gemini/gemini-2.0-flash-lite",
|
|
238
|
+
"gemini-2.0-flash-lite-001",
|
|
239
|
+
"gemini-2.0-flash-lite-preview-02-05"
|
|
240
|
+
],
|
|
241
|
+
"status": "current",
|
|
242
|
+
"input_cost_per_million": 0.07,
|
|
243
|
+
"output_cost_per_million": 0.3,
|
|
244
|
+
"context_window": 1048576,
|
|
245
|
+
"max_output_tokens": 8192,
|
|
246
|
+
"supports_vision": true,
|
|
247
|
+
"supports_tools": true,
|
|
248
|
+
"supports_prompt_caching": true,
|
|
249
|
+
"supports_reasoning": false,
|
|
250
|
+
"supports_computer_use": false,
|
|
251
|
+
"capabilities": [
|
|
252
|
+
"code",
|
|
253
|
+
"general",
|
|
254
|
+
"vision"
|
|
255
|
+
],
|
|
256
|
+
"cache_read_input_cost_per_million": 0.02
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "gemini-1.5-pro",
|
|
260
|
+
"name": "Gemini 1.5 Pro",
|
|
261
|
+
"aliases": [
|
|
262
|
+
"gemini-1.5-pro-002",
|
|
263
|
+
"gemini-1.5-pro-001",
|
|
264
|
+
"models/gemini-1.5-pro",
|
|
265
|
+
"gemini/gemini-1.5-pro",
|
|
266
|
+
"gemini-1.5-pro-latest",
|
|
267
|
+
"gemini-1.5-pro-exp-0801"
|
|
268
|
+
],
|
|
269
|
+
"status": "legacy",
|
|
270
|
+
"input_cost_per_million": 3.5,
|
|
271
|
+
"output_cost_per_million": 10.5,
|
|
272
|
+
"cache_read_input_cost_per_million": 0.3125,
|
|
273
|
+
"input_cost_above_200k_per_million": 2.5,
|
|
274
|
+
"output_cost_above_200k_per_million": 10,
|
|
275
|
+
"context_window": 2097152,
|
|
276
|
+
"max_output_tokens": 8192,
|
|
277
|
+
"supports_vision": true,
|
|
278
|
+
"supports_tools": true,
|
|
279
|
+
"supports_prompt_caching": true,
|
|
280
|
+
"supports_reasoning": false,
|
|
281
|
+
"supports_computer_use": false,
|
|
282
|
+
"capabilities": [
|
|
283
|
+
"code",
|
|
284
|
+
"reasoning",
|
|
285
|
+
"general",
|
|
286
|
+
"creative",
|
|
287
|
+
"vision"
|
|
288
|
+
]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "gemini-1.5-flash",
|
|
292
|
+
"name": "Gemini 1.5 Flash",
|
|
293
|
+
"aliases": [
|
|
294
|
+
"gemini-1.5-flash-002",
|
|
295
|
+
"gemini-1.5-flash-001",
|
|
296
|
+
"models/gemini-1.5-flash",
|
|
297
|
+
"gemini/gemini-1.5-flash",
|
|
298
|
+
"gemini-1.5-flash-latest"
|
|
299
|
+
],
|
|
300
|
+
"status": "legacy",
|
|
301
|
+
"input_cost_per_million": 0.075,
|
|
302
|
+
"output_cost_per_million": 0.3,
|
|
303
|
+
"cache_read_input_cost_per_million": 0.01875,
|
|
304
|
+
"context_window": 1048576,
|
|
305
|
+
"max_output_tokens": 8192,
|
|
306
|
+
"supports_vision": true,
|
|
307
|
+
"supports_tools": true,
|
|
308
|
+
"supports_prompt_caching": true,
|
|
309
|
+
"supports_reasoning": false,
|
|
310
|
+
"supports_computer_use": false,
|
|
311
|
+
"capabilities": [
|
|
312
|
+
"code",
|
|
313
|
+
"general",
|
|
314
|
+
"vision"
|
|
315
|
+
]
|
|
316
|
+
}
|
|
317
|
+
]
|
|
318
|
+
}
|