llm.rb 8.1.0 → 10.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +196 -6
- data/README.md +233 -518
- data/data/anthropic.json +278 -258
- data/data/bedrock.json +1288 -1561
- data/data/deepseek.json +38 -38
- data/data/google.json +656 -579
- data/data/openai.json +860 -818
- data/data/xai.json +243 -552
- data/data/zai.json +168 -168
- data/lib/llm/active_record/acts_as_agent.rb +5 -0
- data/lib/llm/active_record/acts_as_llm.rb +7 -8
- data/lib/llm/active_record.rb +1 -6
- data/lib/llm/agent.rb +121 -82
- data/lib/llm/context.rb +79 -74
- data/lib/llm/contract/completion.rb +45 -0
- data/lib/llm/cost.rb +81 -4
- data/lib/llm/error.rb +1 -1
- data/lib/llm/function/array.rb +8 -5
- data/lib/llm/function/call_group.rb +39 -0
- data/lib/llm/function/call_task.rb +46 -0
- data/lib/llm/function/fork/task.rb +6 -0
- data/lib/llm/function/ractor/task.rb +6 -0
- data/lib/llm/function/task.rb +10 -0
- data/lib/llm/function.rb +28 -1
- data/lib/llm/mcp/transport/http.rb +26 -46
- data/lib/llm/mcp/transport/stdio.rb +0 -8
- data/lib/llm/mcp.rb +6 -23
- data/lib/llm/provider.rb +30 -20
- data/lib/llm/providers/anthropic/error_handler.rb +6 -7
- data/lib/llm/providers/anthropic/files.rb +2 -2
- data/lib/llm/providers/anthropic/response_adapter/completion.rb +30 -0
- data/lib/llm/providers/anthropic/stream_parser.rb +2 -2
- data/lib/llm/providers/anthropic.rb +1 -1
- data/lib/llm/providers/bedrock/error_handler.rb +8 -9
- data/lib/llm/providers/bedrock/models.rb +13 -13
- data/lib/llm/providers/bedrock/response_adapter/completion.rb +30 -0
- data/lib/llm/providers/bedrock/stream_parser.rb +2 -2
- data/lib/llm/providers/bedrock.rb +1 -1
- data/lib/llm/providers/google/error_handler.rb +6 -7
- data/lib/llm/providers/google/files.rb +2 -4
- data/lib/llm/providers/google/images.rb +1 -1
- data/lib/llm/providers/google/models.rb +0 -2
- data/lib/llm/providers/google/response_adapter/completion.rb +30 -0
- data/lib/llm/providers/google/stream_parser.rb +2 -2
- data/lib/llm/providers/google.rb +1 -1
- data/lib/llm/providers/ollama/error_handler.rb +6 -7
- data/lib/llm/providers/ollama/models.rb +0 -2
- data/lib/llm/providers/ollama/response_adapter/completion.rb +30 -0
- data/lib/llm/providers/ollama.rb +1 -1
- data/lib/llm/providers/openai/audio.rb +3 -3
- data/lib/llm/providers/openai/error_handler.rb +6 -7
- data/lib/llm/providers/openai/files.rb +2 -2
- data/lib/llm/providers/openai/images.rb +3 -3
- data/lib/llm/providers/openai/models.rb +1 -1
- data/lib/llm/providers/openai/response_adapter/completion.rb +42 -0
- data/lib/llm/providers/openai/response_adapter/responds.rb +39 -0
- data/lib/llm/providers/openai/responses/stream_parser.rb +2 -2
- data/lib/llm/providers/openai/responses.rb +2 -2
- data/lib/llm/providers/openai/stream_parser.rb +2 -2
- data/lib/llm/providers/openai/vector_stores.rb +1 -1
- data/lib/llm/providers/openai.rb +1 -1
- data/lib/llm/response.rb +10 -8
- data/lib/llm/schema.rb +11 -0
- data/lib/llm/sequel/agent.rb +5 -0
- data/lib/llm/sequel/plugin.rb +8 -14
- data/lib/llm/stream/queue.rb +15 -42
- data/lib/llm/stream.rb +15 -40
- data/lib/llm/tool/param.rb +1 -8
- data/lib/llm/transport/execution.rb +67 -0
- data/lib/llm/transport/http.rb +134 -0
- data/lib/llm/transport/persistent_http.rb +152 -0
- data/lib/llm/transport/response/http.rb +113 -0
- data/lib/llm/transport/response.rb +112 -0
- data/lib/llm/{provider/transport/http → transport}/stream_decoder.rb +8 -4
- data/lib/llm/transport.rb +139 -0
- data/lib/llm/usage.rb +14 -5
- data/lib/llm/utils.rb +24 -14
- data/lib/llm/version.rb +1 -1
- data/lib/llm.rb +3 -12
- data/llm.gemspec +2 -16
- metadata +13 -20
- data/lib/llm/bot.rb +0 -3
- data/lib/llm/provider/transport/http/execution.rb +0 -115
- data/lib/llm/provider/transport/http/interruptible.rb +0 -114
- data/lib/llm/provider/transport/http.rb +0 -145
data/data/google.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
],
|
|
7
7
|
"npm": "@ai-sdk/google",
|
|
8
8
|
"name": "Google",
|
|
9
|
-
"doc": "https://ai.google.dev/gemini-api/docs/
|
|
9
|
+
"doc": "https://ai.google.dev/gemini-api/docs/models",
|
|
10
10
|
"models": {
|
|
11
|
-
"gemini-flash-
|
|
12
|
-
"id": "gemini-flash-
|
|
13
|
-
"name": "Gemini Flash
|
|
14
|
-
"family": "gemini-flash
|
|
11
|
+
"gemini-flash-latest": {
|
|
12
|
+
"id": "gemini-flash-latest",
|
|
13
|
+
"name": "Gemini Flash Latest",
|
|
14
|
+
"family": "gemini-flash",
|
|
15
15
|
"attachment": true,
|
|
16
16
|
"reasoning": true,
|
|
17
17
|
"tool_call": true,
|
|
@@ -33,97 +33,88 @@
|
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
35
|
"open_weights": false,
|
|
36
|
-
"cost": {
|
|
37
|
-
"input": 0.1,
|
|
38
|
-
"output": 0.4,
|
|
39
|
-
"cache_read": 0.025
|
|
40
|
-
},
|
|
41
36
|
"limit": {
|
|
42
37
|
"context": 1048576,
|
|
43
38
|
"output": 65536
|
|
39
|
+
},
|
|
40
|
+
"cost": {
|
|
41
|
+
"input": 0.3,
|
|
42
|
+
"output": 2.5,
|
|
43
|
+
"cache_read": 0.075,
|
|
44
|
+
"input_audio": 1
|
|
44
45
|
}
|
|
45
46
|
},
|
|
46
|
-
"
|
|
47
|
-
"id": "
|
|
48
|
-
"name": "
|
|
49
|
-
"family": "
|
|
50
|
-
"attachment":
|
|
47
|
+
"gemma-4-26b-a4b-it": {
|
|
48
|
+
"id": "gemma-4-26b-a4b-it",
|
|
49
|
+
"name": "Gemma 4 26B",
|
|
50
|
+
"family": "gemma",
|
|
51
|
+
"attachment": false,
|
|
51
52
|
"reasoning": true,
|
|
52
53
|
"tool_call": true,
|
|
53
54
|
"structured_output": true,
|
|
54
55
|
"temperature": true,
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"last_updated": "2025-05-06",
|
|
56
|
+
"release_date": "2026-04-02",
|
|
57
|
+
"last_updated": "2026-04-02",
|
|
58
58
|
"modalities": {
|
|
59
59
|
"input": [
|
|
60
60
|
"text",
|
|
61
|
-
"image"
|
|
62
|
-
"audio",
|
|
63
|
-
"video",
|
|
64
|
-
"pdf"
|
|
61
|
+
"image"
|
|
65
62
|
],
|
|
66
63
|
"output": [
|
|
67
64
|
"text"
|
|
68
65
|
]
|
|
69
66
|
},
|
|
70
|
-
"open_weights":
|
|
71
|
-
"cost": {
|
|
72
|
-
"input": 1.25,
|
|
73
|
-
"output": 10,
|
|
74
|
-
"cache_read": 0.31
|
|
75
|
-
},
|
|
67
|
+
"open_weights": true,
|
|
76
68
|
"limit": {
|
|
77
|
-
"context":
|
|
78
|
-
"output":
|
|
69
|
+
"context": 256000,
|
|
70
|
+
"output": 8192
|
|
79
71
|
}
|
|
80
72
|
},
|
|
81
|
-
"gemini-
|
|
82
|
-
"id": "gemini-
|
|
83
|
-
"name": "Gemini
|
|
73
|
+
"gemini-1.5-flash": {
|
|
74
|
+
"id": "gemini-1.5-flash",
|
|
75
|
+
"name": "Gemini 1.5 Flash",
|
|
84
76
|
"family": "gemini-flash",
|
|
85
|
-
"attachment":
|
|
86
|
-
"reasoning":
|
|
77
|
+
"attachment": true,
|
|
78
|
+
"reasoning": false,
|
|
87
79
|
"tool_call": true,
|
|
88
|
-
"temperature":
|
|
89
|
-
"knowledge": "
|
|
90
|
-
"release_date": "
|
|
91
|
-
"last_updated": "
|
|
80
|
+
"temperature": true,
|
|
81
|
+
"knowledge": "2024-04",
|
|
82
|
+
"release_date": "2024-05-14",
|
|
83
|
+
"last_updated": "2024-05-14",
|
|
92
84
|
"modalities": {
|
|
93
85
|
"input": [
|
|
94
86
|
"text",
|
|
87
|
+
"image",
|
|
95
88
|
"audio",
|
|
96
89
|
"video"
|
|
97
90
|
],
|
|
98
91
|
"output": [
|
|
99
|
-
"text"
|
|
100
|
-
"audio"
|
|
92
|
+
"text"
|
|
101
93
|
]
|
|
102
94
|
},
|
|
103
95
|
"open_weights": false,
|
|
104
|
-
"cost": {
|
|
105
|
-
"input": 0.5,
|
|
106
|
-
"output": 2,
|
|
107
|
-
"input_audio": 3,
|
|
108
|
-
"output_audio": 12
|
|
109
|
-
},
|
|
110
96
|
"limit": {
|
|
111
|
-
"context":
|
|
112
|
-
"output":
|
|
97
|
+
"context": 1000000,
|
|
98
|
+
"output": 8192
|
|
99
|
+
},
|
|
100
|
+
"cost": {
|
|
101
|
+
"input": 0.075,
|
|
102
|
+
"output": 0.3,
|
|
103
|
+
"cache_read": 0.01875
|
|
113
104
|
}
|
|
114
105
|
},
|
|
115
|
-
"gemini-3.1-
|
|
116
|
-
"id": "gemini-3.1-
|
|
117
|
-
"name": "Gemini 3.1
|
|
118
|
-
"family": "gemini-
|
|
106
|
+
"gemini-3.1-flash-lite": {
|
|
107
|
+
"id": "gemini-3.1-flash-lite",
|
|
108
|
+
"name": "Gemini 3.1 Flash Lite",
|
|
109
|
+
"family": "gemini-flash-lite",
|
|
119
110
|
"attachment": true,
|
|
120
111
|
"reasoning": true,
|
|
121
112
|
"tool_call": true,
|
|
122
113
|
"structured_output": true,
|
|
123
114
|
"temperature": true,
|
|
124
115
|
"knowledge": "2025-01",
|
|
125
|
-
"release_date": "2026-
|
|
126
|
-
"last_updated": "2026-
|
|
116
|
+
"release_date": "2026-05-07",
|
|
117
|
+
"last_updated": "2026-05-07",
|
|
127
118
|
"modalities": {
|
|
128
119
|
"input": [
|
|
129
120
|
"text",
|
|
@@ -137,25 +128,21 @@
|
|
|
137
128
|
]
|
|
138
129
|
},
|
|
139
130
|
"open_weights": false,
|
|
140
|
-
"cost": {
|
|
141
|
-
"input": 2,
|
|
142
|
-
"output": 12,
|
|
143
|
-
"cache_read": 0.2,
|
|
144
|
-
"context_over_200k": {
|
|
145
|
-
"input": 4,
|
|
146
|
-
"output": 18,
|
|
147
|
-
"cache_read": 0.4
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
131
|
"limit": {
|
|
151
132
|
"context": 1048576,
|
|
152
133
|
"output": 65536
|
|
134
|
+
},
|
|
135
|
+
"cost": {
|
|
136
|
+
"input": 0.25,
|
|
137
|
+
"output": 1.5,
|
|
138
|
+
"cache_read": 0.025,
|
|
139
|
+
"input_audio": 0.5
|
|
153
140
|
}
|
|
154
141
|
},
|
|
155
|
-
"gemini-2.5-flash-
|
|
156
|
-
"id": "gemini-2.5-flash-
|
|
157
|
-
"name": "Gemini 2.5 Flash
|
|
158
|
-
"family": "gemini-flash
|
|
142
|
+
"gemini-2.5-flash-preview-09-2025": {
|
|
143
|
+
"id": "gemini-2.5-flash-preview-09-2025",
|
|
144
|
+
"name": "Gemini 2.5 Flash Preview 09-25",
|
|
145
|
+
"family": "gemini-flash",
|
|
159
146
|
"attachment": true,
|
|
160
147
|
"reasoning": true,
|
|
161
148
|
"tool_call": true,
|
|
@@ -177,199 +164,200 @@
|
|
|
177
164
|
]
|
|
178
165
|
},
|
|
179
166
|
"open_weights": false,
|
|
180
|
-
"cost": {
|
|
181
|
-
"input": 0.1,
|
|
182
|
-
"output": 0.4,
|
|
183
|
-
"cache_read": 0.025
|
|
184
|
-
},
|
|
185
167
|
"limit": {
|
|
186
168
|
"context": 1048576,
|
|
187
169
|
"output": 65536
|
|
170
|
+
},
|
|
171
|
+
"cost": {
|
|
172
|
+
"input": 0.3,
|
|
173
|
+
"output": 2.5,
|
|
174
|
+
"cache_read": 0.075,
|
|
175
|
+
"input_audio": 1
|
|
188
176
|
}
|
|
189
177
|
},
|
|
190
|
-
"gemini-
|
|
191
|
-
"id": "gemini-
|
|
192
|
-
"name": "Gemini
|
|
193
|
-
"family": "gemini-
|
|
178
|
+
"gemini-2.5-pro": {
|
|
179
|
+
"id": "gemini-2.5-pro",
|
|
180
|
+
"name": "Gemini 2.5 Pro",
|
|
181
|
+
"family": "gemini-pro",
|
|
194
182
|
"attachment": true,
|
|
195
|
-
"reasoning":
|
|
183
|
+
"reasoning": true,
|
|
196
184
|
"tool_call": true,
|
|
185
|
+
"structured_output": true,
|
|
197
186
|
"temperature": true,
|
|
198
|
-
"knowledge": "
|
|
199
|
-
"release_date": "
|
|
200
|
-
"last_updated": "
|
|
187
|
+
"knowledge": "2025-01",
|
|
188
|
+
"release_date": "2025-03-20",
|
|
189
|
+
"last_updated": "2025-06-05",
|
|
201
190
|
"modalities": {
|
|
202
191
|
"input": [
|
|
203
192
|
"text",
|
|
204
193
|
"image",
|
|
205
194
|
"audio",
|
|
206
|
-
"video"
|
|
195
|
+
"video",
|
|
196
|
+
"pdf"
|
|
207
197
|
],
|
|
208
198
|
"output": [
|
|
209
199
|
"text"
|
|
210
200
|
]
|
|
211
201
|
},
|
|
212
202
|
"open_weights": false,
|
|
213
|
-
"cost": {
|
|
214
|
-
"input": 0.075,
|
|
215
|
-
"output": 0.3,
|
|
216
|
-
"cache_read": 0.01875
|
|
217
|
-
},
|
|
218
203
|
"limit": {
|
|
219
|
-
"context":
|
|
220
|
-
"output":
|
|
204
|
+
"context": 1048576,
|
|
205
|
+
"output": 65536
|
|
206
|
+
},
|
|
207
|
+
"cost": {
|
|
208
|
+
"input": 1.25,
|
|
209
|
+
"output": 10,
|
|
210
|
+
"cache_read": 0.125,
|
|
211
|
+
"tiers": [
|
|
212
|
+
{
|
|
213
|
+
"input": 2.5,
|
|
214
|
+
"output": 15,
|
|
215
|
+
"cache_read": 0.25,
|
|
216
|
+
"tier": {
|
|
217
|
+
"type": "context",
|
|
218
|
+
"size": 200000
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"context_over_200k": {
|
|
223
|
+
"input": 2.5,
|
|
224
|
+
"output": 15,
|
|
225
|
+
"cache_read": 0.25
|
|
226
|
+
}
|
|
221
227
|
}
|
|
222
228
|
},
|
|
223
|
-
"gemini-
|
|
224
|
-
"id": "gemini-
|
|
225
|
-
"name": "Gemini
|
|
226
|
-
"family": "gemini-
|
|
229
|
+
"gemini-2.5-flash-preview-04-17": {
|
|
230
|
+
"id": "gemini-2.5-flash-preview-04-17",
|
|
231
|
+
"name": "Gemini 2.5 Flash Preview 04-17",
|
|
232
|
+
"family": "gemini-flash",
|
|
227
233
|
"attachment": true,
|
|
228
|
-
"reasoning":
|
|
234
|
+
"reasoning": true,
|
|
229
235
|
"tool_call": true,
|
|
230
236
|
"temperature": true,
|
|
231
|
-
"knowledge": "
|
|
232
|
-
"release_date": "
|
|
233
|
-
"last_updated": "
|
|
237
|
+
"knowledge": "2025-01",
|
|
238
|
+
"release_date": "2025-04-17",
|
|
239
|
+
"last_updated": "2025-04-17",
|
|
234
240
|
"modalities": {
|
|
235
241
|
"input": [
|
|
236
242
|
"text",
|
|
237
243
|
"image",
|
|
238
244
|
"audio",
|
|
239
|
-
"video"
|
|
245
|
+
"video",
|
|
246
|
+
"pdf"
|
|
240
247
|
],
|
|
241
248
|
"output": [
|
|
242
249
|
"text"
|
|
243
250
|
]
|
|
244
251
|
},
|
|
245
252
|
"open_weights": false,
|
|
246
|
-
"cost": {
|
|
247
|
-
"input": 1.25,
|
|
248
|
-
"output": 5,
|
|
249
|
-
"cache_read": 0.3125
|
|
250
|
-
},
|
|
251
253
|
"limit": {
|
|
252
|
-
"context":
|
|
253
|
-
"output":
|
|
254
|
+
"context": 1048576,
|
|
255
|
+
"output": 65536
|
|
256
|
+
},
|
|
257
|
+
"cost": {
|
|
258
|
+
"input": 0.15,
|
|
259
|
+
"output": 0.6,
|
|
260
|
+
"cache_read": 0.0375
|
|
254
261
|
}
|
|
255
262
|
},
|
|
256
|
-
"gemma-
|
|
257
|
-
"id": "gemma-
|
|
258
|
-
"name": "Gemma
|
|
263
|
+
"gemma-3-27b-it": {
|
|
264
|
+
"id": "gemma-3-27b-it",
|
|
265
|
+
"name": "Gemma 3 27B",
|
|
259
266
|
"family": "gemma",
|
|
260
267
|
"attachment": true,
|
|
261
268
|
"reasoning": false,
|
|
262
|
-
"tool_call":
|
|
269
|
+
"tool_call": true,
|
|
270
|
+
"structured_output": true,
|
|
263
271
|
"temperature": true,
|
|
264
272
|
"knowledge": "2024-10",
|
|
265
|
-
"release_date": "2025-
|
|
266
|
-
"last_updated": "2025-
|
|
273
|
+
"release_date": "2025-03-12",
|
|
274
|
+
"last_updated": "2025-03-12",
|
|
267
275
|
"modalities": {
|
|
268
276
|
"input": [
|
|
269
|
-
"text"
|
|
277
|
+
"text",
|
|
278
|
+
"image"
|
|
270
279
|
],
|
|
271
280
|
"output": [
|
|
272
281
|
"text"
|
|
273
282
|
]
|
|
274
283
|
},
|
|
275
284
|
"open_weights": true,
|
|
285
|
+
"limit": {
|
|
286
|
+
"context": 131072,
|
|
287
|
+
"output": 8192
|
|
288
|
+
},
|
|
276
289
|
"cost": {
|
|
277
290
|
"input": 0,
|
|
278
291
|
"output": 0
|
|
279
|
-
},
|
|
280
|
-
"limit": {
|
|
281
|
-
"context": 8192,
|
|
282
|
-
"output": 2000
|
|
283
292
|
}
|
|
284
293
|
},
|
|
285
|
-
"
|
|
286
|
-
"id": "
|
|
287
|
-
"name": "
|
|
288
|
-
"family": "
|
|
289
|
-
"attachment":
|
|
294
|
+
"gemma-4-31b-it": {
|
|
295
|
+
"id": "gemma-4-31b-it",
|
|
296
|
+
"name": "Gemma 4 31B",
|
|
297
|
+
"family": "gemma",
|
|
298
|
+
"attachment": false,
|
|
290
299
|
"reasoning": true,
|
|
291
300
|
"tool_call": true,
|
|
292
301
|
"structured_output": true,
|
|
293
302
|
"temperature": true,
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"last_updated": "2026-03-03",
|
|
303
|
+
"release_date": "2026-04-02",
|
|
304
|
+
"last_updated": "2026-04-02",
|
|
297
305
|
"modalities": {
|
|
298
306
|
"input": [
|
|
299
307
|
"text",
|
|
300
|
-
"image"
|
|
301
|
-
"video",
|
|
302
|
-
"audio",
|
|
303
|
-
"pdf"
|
|
308
|
+
"image"
|
|
304
309
|
],
|
|
305
310
|
"output": [
|
|
306
311
|
"text"
|
|
307
312
|
]
|
|
308
313
|
},
|
|
309
|
-
"open_weights":
|
|
310
|
-
"cost": {
|
|
311
|
-
"input": 0.25,
|
|
312
|
-
"output": 1.5,
|
|
313
|
-
"cache_read": 0.025,
|
|
314
|
-
"cache_write": 1
|
|
315
|
-
},
|
|
314
|
+
"open_weights": true,
|
|
316
315
|
"limit": {
|
|
317
|
-
"context":
|
|
318
|
-
"output":
|
|
316
|
+
"context": 256000,
|
|
317
|
+
"output": 8192
|
|
319
318
|
}
|
|
320
319
|
},
|
|
321
|
-
"gemini-
|
|
322
|
-
"id": "gemini-
|
|
323
|
-
"name": "Gemini
|
|
324
|
-
"family": "gemini-
|
|
325
|
-
"attachment":
|
|
326
|
-
"reasoning":
|
|
327
|
-
"tool_call":
|
|
328
|
-
"
|
|
329
|
-
"temperature": true,
|
|
320
|
+
"gemini-2.5-pro-preview-tts": {
|
|
321
|
+
"id": "gemini-2.5-pro-preview-tts",
|
|
322
|
+
"name": "Gemini 2.5 Pro Preview TTS",
|
|
323
|
+
"family": "gemini-flash",
|
|
324
|
+
"attachment": false,
|
|
325
|
+
"reasoning": false,
|
|
326
|
+
"tool_call": false,
|
|
327
|
+
"temperature": false,
|
|
330
328
|
"knowledge": "2025-01",
|
|
331
|
-
"release_date": "
|
|
332
|
-
"last_updated": "
|
|
329
|
+
"release_date": "2025-05-01",
|
|
330
|
+
"last_updated": "2025-05-01",
|
|
333
331
|
"modalities": {
|
|
334
332
|
"input": [
|
|
335
|
-
"text"
|
|
336
|
-
"image",
|
|
337
|
-
"video",
|
|
338
|
-
"audio",
|
|
339
|
-
"pdf"
|
|
333
|
+
"text"
|
|
340
334
|
],
|
|
341
335
|
"output": [
|
|
342
|
-
"
|
|
336
|
+
"audio"
|
|
343
337
|
]
|
|
344
338
|
},
|
|
345
339
|
"open_weights": false,
|
|
346
|
-
"cost": {
|
|
347
|
-
"input": 2,
|
|
348
|
-
"output": 12,
|
|
349
|
-
"cache_read": 0.2,
|
|
350
|
-
"context_over_200k": {
|
|
351
|
-
"input": 4,
|
|
352
|
-
"output": 18,
|
|
353
|
-
"cache_read": 0.4
|
|
354
|
-
}
|
|
355
|
-
},
|
|
356
340
|
"limit": {
|
|
357
|
-
"context":
|
|
358
|
-
"output":
|
|
341
|
+
"context": 8000,
|
|
342
|
+
"output": 16000
|
|
343
|
+
},
|
|
344
|
+
"cost": {
|
|
345
|
+
"input": 1,
|
|
346
|
+
"output": 20
|
|
359
347
|
}
|
|
360
348
|
},
|
|
361
|
-
"gemini-2.
|
|
362
|
-
"id": "gemini-2.
|
|
363
|
-
"name": "Gemini 2.
|
|
349
|
+
"gemini-2.5-flash-preview-05-20": {
|
|
350
|
+
"id": "gemini-2.5-flash-preview-05-20",
|
|
351
|
+
"name": "Gemini 2.5 Flash Preview 05-20",
|
|
364
352
|
"family": "gemini-flash",
|
|
365
353
|
"attachment": true,
|
|
366
|
-
"reasoning":
|
|
354
|
+
"reasoning": true,
|
|
367
355
|
"tool_call": true,
|
|
368
356
|
"structured_output": true,
|
|
369
357
|
"temperature": true,
|
|
370
|
-
"knowledge": "
|
|
371
|
-
"release_date": "
|
|
372
|
-
"last_updated": "
|
|
358
|
+
"knowledge": "2025-01",
|
|
359
|
+
"release_date": "2025-05-20",
|
|
360
|
+
"last_updated": "2025-05-20",
|
|
373
361
|
"modalities": {
|
|
374
362
|
"input": [
|
|
375
363
|
"text",
|
|
@@ -383,88 +371,85 @@
|
|
|
383
371
|
]
|
|
384
372
|
},
|
|
385
373
|
"open_weights": false,
|
|
386
|
-
"cost": {
|
|
387
|
-
"input": 0.1,
|
|
388
|
-
"output": 0.4,
|
|
389
|
-
"cache_read": 0.025
|
|
390
|
-
},
|
|
391
374
|
"limit": {
|
|
392
375
|
"context": 1048576,
|
|
393
|
-
"output":
|
|
376
|
+
"output": 65536
|
|
377
|
+
},
|
|
378
|
+
"cost": {
|
|
379
|
+
"input": 0.15,
|
|
380
|
+
"output": 0.6,
|
|
381
|
+
"cache_read": 0.0375
|
|
394
382
|
}
|
|
395
383
|
},
|
|
396
|
-
"gemini-3-flash-preview": {
|
|
397
|
-
"id": "gemini-3-flash-preview",
|
|
398
|
-
"name": "Gemini 3 Flash Preview",
|
|
384
|
+
"gemini-3.1-flash-image-preview": {
|
|
385
|
+
"id": "gemini-3.1-flash-image-preview",
|
|
386
|
+
"name": "Gemini 3.1 Flash Image (Preview)",
|
|
399
387
|
"family": "gemini-flash",
|
|
400
388
|
"attachment": true,
|
|
401
389
|
"reasoning": true,
|
|
402
|
-
"tool_call":
|
|
403
|
-
"structured_output": true,
|
|
390
|
+
"tool_call": false,
|
|
404
391
|
"temperature": true,
|
|
405
392
|
"knowledge": "2025-01",
|
|
406
|
-
"release_date": "
|
|
407
|
-
"last_updated": "
|
|
393
|
+
"release_date": "2026-02-26",
|
|
394
|
+
"last_updated": "2026-02-26",
|
|
408
395
|
"modalities": {
|
|
409
396
|
"input": [
|
|
410
397
|
"text",
|
|
411
398
|
"image",
|
|
412
|
-
"video",
|
|
413
|
-
"audio",
|
|
414
399
|
"pdf"
|
|
415
400
|
],
|
|
416
401
|
"output": [
|
|
417
|
-
"text"
|
|
402
|
+
"text",
|
|
403
|
+
"image"
|
|
418
404
|
]
|
|
419
405
|
},
|
|
420
406
|
"open_weights": false,
|
|
407
|
+
"limit": {
|
|
408
|
+
"context": 131072,
|
|
409
|
+
"output": 32768
|
|
410
|
+
},
|
|
421
411
|
"cost": {
|
|
422
412
|
"input": 0.5,
|
|
423
|
-
"output":
|
|
424
|
-
"cache_read": 0.05,
|
|
425
|
-
"context_over_200k": {
|
|
426
|
-
"input": 0.5,
|
|
427
|
-
"output": 3,
|
|
428
|
-
"cache_read": 0.05
|
|
429
|
-
}
|
|
430
|
-
},
|
|
431
|
-
"limit": {
|
|
432
|
-
"context": 1048576,
|
|
433
|
-
"output": 65536
|
|
413
|
+
"output": 60
|
|
434
414
|
}
|
|
435
415
|
},
|
|
436
|
-
"gemini-2.5-flash-preview-
|
|
437
|
-
"id": "gemini-2.5-flash-preview-
|
|
438
|
-
"name": "Gemini 2.5 Flash Preview
|
|
416
|
+
"gemini-live-2.5-flash-preview-native-audio": {
|
|
417
|
+
"id": "gemini-live-2.5-flash-preview-native-audio",
|
|
418
|
+
"name": "Gemini Live 2.5 Flash Preview Native Audio",
|
|
439
419
|
"family": "gemini-flash",
|
|
440
420
|
"attachment": false,
|
|
441
|
-
"reasoning":
|
|
442
|
-
"tool_call":
|
|
421
|
+
"reasoning": true,
|
|
422
|
+
"tool_call": true,
|
|
443
423
|
"temperature": false,
|
|
444
424
|
"knowledge": "2025-01",
|
|
445
|
-
"release_date": "2025-
|
|
446
|
-
"last_updated": "2025-
|
|
425
|
+
"release_date": "2025-06-17",
|
|
426
|
+
"last_updated": "2025-09-18",
|
|
447
427
|
"modalities": {
|
|
448
428
|
"input": [
|
|
449
|
-
"text"
|
|
429
|
+
"text",
|
|
430
|
+
"audio",
|
|
431
|
+
"video"
|
|
450
432
|
],
|
|
451
433
|
"output": [
|
|
434
|
+
"text",
|
|
452
435
|
"audio"
|
|
453
436
|
]
|
|
454
437
|
},
|
|
455
438
|
"open_weights": false,
|
|
439
|
+
"limit": {
|
|
440
|
+
"context": 131072,
|
|
441
|
+
"output": 65536
|
|
442
|
+
},
|
|
456
443
|
"cost": {
|
|
457
444
|
"input": 0.5,
|
|
458
|
-
"output":
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
"context": 8000,
|
|
462
|
-
"output": 16000
|
|
445
|
+
"output": 2,
|
|
446
|
+
"input_audio": 3,
|
|
447
|
+
"output_audio": 12
|
|
463
448
|
}
|
|
464
449
|
},
|
|
465
|
-
"gemini-
|
|
466
|
-
"id": "gemini-
|
|
467
|
-
"name": "Gemini
|
|
450
|
+
"gemini-2.5-pro-preview-06-05": {
|
|
451
|
+
"id": "gemini-2.5-pro-preview-06-05",
|
|
452
|
+
"name": "Gemini 2.5 Pro Preview 06-05",
|
|
468
453
|
"family": "gemini-pro",
|
|
469
454
|
"attachment": true,
|
|
470
455
|
"reasoning": true,
|
|
@@ -472,14 +457,14 @@
|
|
|
472
457
|
"structured_output": true,
|
|
473
458
|
"temperature": true,
|
|
474
459
|
"knowledge": "2025-01",
|
|
475
|
-
"release_date": "2025-
|
|
476
|
-
"last_updated": "2025-
|
|
460
|
+
"release_date": "2025-06-05",
|
|
461
|
+
"last_updated": "2025-06-05",
|
|
477
462
|
"modalities": {
|
|
478
463
|
"input": [
|
|
479
464
|
"text",
|
|
480
465
|
"image",
|
|
481
|
-
"video",
|
|
482
466
|
"audio",
|
|
467
|
+
"video",
|
|
483
468
|
"pdf"
|
|
484
469
|
],
|
|
485
470
|
"output": [
|
|
@@ -487,65 +472,54 @@
|
|
|
487
472
|
]
|
|
488
473
|
},
|
|
489
474
|
"open_weights": false,
|
|
490
|
-
"cost": {
|
|
491
|
-
"input": 2,
|
|
492
|
-
"output": 12,
|
|
493
|
-
"cache_read": 0.2,
|
|
494
|
-
"context_over_200k": {
|
|
495
|
-
"input": 4,
|
|
496
|
-
"output": 18,
|
|
497
|
-
"cache_read": 0.4
|
|
498
|
-
}
|
|
499
|
-
},
|
|
500
475
|
"limit": {
|
|
501
|
-
"context":
|
|
502
|
-
"output":
|
|
476
|
+
"context": 1048576,
|
|
477
|
+
"output": 65536
|
|
478
|
+
},
|
|
479
|
+
"cost": {
|
|
480
|
+
"input": 1.25,
|
|
481
|
+
"output": 10,
|
|
482
|
+
"cache_read": 0.31
|
|
503
483
|
}
|
|
504
484
|
},
|
|
505
|
-
"
|
|
506
|
-
"id": "
|
|
507
|
-
"name": "
|
|
508
|
-
"family": "
|
|
485
|
+
"gemma-3n-e2b-it": {
|
|
486
|
+
"id": "gemma-3n-e2b-it",
|
|
487
|
+
"name": "Gemma 3n 2B",
|
|
488
|
+
"family": "gemma",
|
|
509
489
|
"attachment": true,
|
|
510
|
-
"reasoning":
|
|
511
|
-
"tool_call":
|
|
512
|
-
"structured_output": true,
|
|
490
|
+
"reasoning": false,
|
|
491
|
+
"tool_call": false,
|
|
513
492
|
"temperature": true,
|
|
514
|
-
"knowledge": "
|
|
515
|
-
"release_date": "2025-
|
|
516
|
-
"last_updated": "2025-
|
|
493
|
+
"knowledge": "2024-10",
|
|
494
|
+
"release_date": "2025-07-09",
|
|
495
|
+
"last_updated": "2025-07-09",
|
|
517
496
|
"modalities": {
|
|
518
497
|
"input": [
|
|
519
|
-
"text"
|
|
520
|
-
"image",
|
|
521
|
-
"audio",
|
|
522
|
-
"video",
|
|
523
|
-
"pdf"
|
|
498
|
+
"text"
|
|
524
499
|
],
|
|
525
500
|
"output": [
|
|
526
501
|
"text"
|
|
527
502
|
]
|
|
528
503
|
},
|
|
529
|
-
"open_weights":
|
|
530
|
-
"cost": {
|
|
531
|
-
"input": 0.15,
|
|
532
|
-
"output": 0.6,
|
|
533
|
-
"cache_read": 0.0375
|
|
534
|
-
},
|
|
504
|
+
"open_weights": true,
|
|
535
505
|
"limit": {
|
|
536
|
-
"context":
|
|
537
|
-
"output":
|
|
506
|
+
"context": 8192,
|
|
507
|
+
"output": 2000
|
|
508
|
+
},
|
|
509
|
+
"cost": {
|
|
510
|
+
"input": 0,
|
|
511
|
+
"output": 0
|
|
538
512
|
}
|
|
539
513
|
},
|
|
540
|
-
"
|
|
541
|
-
"id": "
|
|
542
|
-
"name": "
|
|
543
|
-
"family": "
|
|
544
|
-
"attachment":
|
|
514
|
+
"gemma-3n-e4b-it": {
|
|
515
|
+
"id": "gemma-3n-e4b-it",
|
|
516
|
+
"name": "Gemma 3n 4B",
|
|
517
|
+
"family": "gemma",
|
|
518
|
+
"attachment": true,
|
|
545
519
|
"reasoning": false,
|
|
546
520
|
"tool_call": false,
|
|
547
|
-
"temperature":
|
|
548
|
-
"knowledge": "
|
|
521
|
+
"temperature": true,
|
|
522
|
+
"knowledge": "2024-10",
|
|
549
523
|
"release_date": "2025-05-20",
|
|
550
524
|
"last_updated": "2025-05-20",
|
|
551
525
|
"modalities": {
|
|
@@ -556,19 +530,19 @@
|
|
|
556
530
|
"text"
|
|
557
531
|
]
|
|
558
532
|
},
|
|
559
|
-
"open_weights":
|
|
533
|
+
"open_weights": true,
|
|
534
|
+
"limit": {
|
|
535
|
+
"context": 8192,
|
|
536
|
+
"output": 2000
|
|
537
|
+
},
|
|
560
538
|
"cost": {
|
|
561
|
-
"input": 0
|
|
539
|
+
"input": 0,
|
|
562
540
|
"output": 0
|
|
563
|
-
},
|
|
564
|
-
"limit": {
|
|
565
|
-
"context": 2048,
|
|
566
|
-
"output": 3072
|
|
567
541
|
}
|
|
568
542
|
},
|
|
569
|
-
"gemini-2.5-pro": {
|
|
570
|
-
"id": "gemini-2.5-pro",
|
|
571
|
-
"name": "Gemini 2.5 Pro",
|
|
543
|
+
"gemini-2.5-pro-preview-05-06": {
|
|
544
|
+
"id": "gemini-2.5-pro-preview-05-06",
|
|
545
|
+
"name": "Gemini 2.5 Pro Preview 05-06",
|
|
572
546
|
"family": "gemini-pro",
|
|
573
547
|
"attachment": true,
|
|
574
548
|
"reasoning": true,
|
|
@@ -576,8 +550,8 @@
|
|
|
576
550
|
"structured_output": true,
|
|
577
551
|
"temperature": true,
|
|
578
552
|
"knowledge": "2025-01",
|
|
579
|
-
"release_date": "2025-
|
|
580
|
-
"last_updated": "2025-06
|
|
553
|
+
"release_date": "2025-05-06",
|
|
554
|
+
"last_updated": "2025-05-06",
|
|
581
555
|
"modalities": {
|
|
582
556
|
"input": [
|
|
583
557
|
"text",
|
|
@@ -591,25 +565,20 @@
|
|
|
591
565
|
]
|
|
592
566
|
},
|
|
593
567
|
"open_weights": false,
|
|
594
|
-
"cost": {
|
|
595
|
-
"input": 1.25,
|
|
596
|
-
"output": 10,
|
|
597
|
-
"cache_read": 0.125,
|
|
598
|
-
"context_over_200k": {
|
|
599
|
-
"input": 2.5,
|
|
600
|
-
"output": 15,
|
|
601
|
-
"cache_read": 0.25
|
|
602
|
-
}
|
|
603
|
-
},
|
|
604
568
|
"limit": {
|
|
605
569
|
"context": 1048576,
|
|
606
570
|
"output": 65536
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
571
|
+
},
|
|
572
|
+
"cost": {
|
|
573
|
+
"input": 1.25,
|
|
574
|
+
"output": 10,
|
|
575
|
+
"cache_read": 0.31
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"gemini-2.5-flash-lite-preview-09-2025": {
|
|
579
|
+
"id": "gemini-2.5-flash-lite-preview-09-2025",
|
|
580
|
+
"name": "Gemini 2.5 Flash Lite Preview 09-25",
|
|
581
|
+
"family": "gemini-flash-lite",
|
|
613
582
|
"attachment": true,
|
|
614
583
|
"reasoning": true,
|
|
615
584
|
"tool_call": true,
|
|
@@ -631,55 +600,64 @@
|
|
|
631
600
|
]
|
|
632
601
|
},
|
|
633
602
|
"open_weights": false,
|
|
634
|
-
"cost": {
|
|
635
|
-
"input": 0.3,
|
|
636
|
-
"output": 2.5,
|
|
637
|
-
"cache_read": 0.075,
|
|
638
|
-
"input_audio": 1
|
|
639
|
-
},
|
|
640
603
|
"limit": {
|
|
641
604
|
"context": 1048576,
|
|
642
605
|
"output": 65536
|
|
606
|
+
},
|
|
607
|
+
"cost": {
|
|
608
|
+
"input": 0.1,
|
|
609
|
+
"output": 0.4,
|
|
610
|
+
"cache_read": 0.025
|
|
643
611
|
}
|
|
644
612
|
},
|
|
645
|
-
"
|
|
646
|
-
"id": "
|
|
647
|
-
"name": "
|
|
648
|
-
"family": "
|
|
649
|
-
"attachment":
|
|
613
|
+
"gemini-2.5-flash-lite": {
|
|
614
|
+
"id": "gemini-2.5-flash-lite",
|
|
615
|
+
"name": "Gemini 2.5 Flash Lite",
|
|
616
|
+
"family": "gemini-flash-lite",
|
|
617
|
+
"attachment": true,
|
|
650
618
|
"reasoning": true,
|
|
651
619
|
"tool_call": true,
|
|
652
620
|
"structured_output": true,
|
|
653
621
|
"temperature": true,
|
|
654
|
-
"
|
|
655
|
-
"
|
|
622
|
+
"knowledge": "2025-01",
|
|
623
|
+
"release_date": "2025-06-17",
|
|
624
|
+
"last_updated": "2025-06-17",
|
|
656
625
|
"modalities": {
|
|
657
626
|
"input": [
|
|
658
627
|
"text",
|
|
659
|
-
"image"
|
|
628
|
+
"image",
|
|
629
|
+
"audio",
|
|
630
|
+
"video",
|
|
631
|
+
"pdf"
|
|
660
632
|
],
|
|
661
633
|
"output": [
|
|
662
634
|
"text"
|
|
663
635
|
]
|
|
664
636
|
},
|
|
665
|
-
"open_weights":
|
|
637
|
+
"open_weights": false,
|
|
666
638
|
"limit": {
|
|
667
|
-
"context":
|
|
668
|
-
"output":
|
|
639
|
+
"context": 1048576,
|
|
640
|
+
"output": 65536
|
|
641
|
+
},
|
|
642
|
+
"cost": {
|
|
643
|
+
"input": 0.1,
|
|
644
|
+
"output": 0.4,
|
|
645
|
+
"cache_read": 0.01,
|
|
646
|
+
"input_audio": 0.3
|
|
669
647
|
}
|
|
670
648
|
},
|
|
671
|
-
"gemini-
|
|
672
|
-
"id": "gemini-
|
|
673
|
-
"name": "Gemini
|
|
674
|
-
"family": "gemini-
|
|
649
|
+
"gemini-flash-lite-latest": {
|
|
650
|
+
"id": "gemini-flash-lite-latest",
|
|
651
|
+
"name": "Gemini Flash-Lite Latest",
|
|
652
|
+
"family": "gemini-flash-lite",
|
|
675
653
|
"attachment": true,
|
|
676
654
|
"reasoning": true,
|
|
677
655
|
"tool_call": true,
|
|
678
656
|
"structured_output": true,
|
|
679
657
|
"temperature": true,
|
|
680
658
|
"knowledge": "2025-01",
|
|
681
|
-
"release_date": "2025-
|
|
682
|
-
"last_updated": "2025-
|
|
659
|
+
"release_date": "2025-09-25",
|
|
660
|
+
"last_updated": "2025-09-25",
|
|
683
661
|
"modalities": {
|
|
684
662
|
"input": [
|
|
685
663
|
"text",
|
|
@@ -693,59 +671,79 @@
|
|
|
693
671
|
]
|
|
694
672
|
},
|
|
695
673
|
"open_weights": false,
|
|
696
|
-
"cost": {
|
|
697
|
-
"input": 1.25,
|
|
698
|
-
"output": 10,
|
|
699
|
-
"cache_read": 0.31
|
|
700
|
-
},
|
|
701
674
|
"limit": {
|
|
702
675
|
"context": 1048576,
|
|
703
676
|
"output": 65536
|
|
677
|
+
},
|
|
678
|
+
"cost": {
|
|
679
|
+
"input": 0.1,
|
|
680
|
+
"output": 0.4,
|
|
681
|
+
"cache_read": 0.025
|
|
704
682
|
}
|
|
705
683
|
},
|
|
706
|
-
"gemini-
|
|
707
|
-
"id": "gemini-
|
|
708
|
-
"name": "Gemini
|
|
709
|
-
"family": "gemini-
|
|
684
|
+
"gemini-3-pro-preview": {
|
|
685
|
+
"id": "gemini-3-pro-preview",
|
|
686
|
+
"name": "Gemini 3 Pro Preview",
|
|
687
|
+
"family": "gemini-pro",
|
|
710
688
|
"attachment": true,
|
|
711
689
|
"reasoning": true,
|
|
712
|
-
"tool_call":
|
|
690
|
+
"tool_call": true,
|
|
691
|
+
"structured_output": true,
|
|
713
692
|
"temperature": true,
|
|
714
|
-
"knowledge": "2025-
|
|
715
|
-
"release_date": "2025-
|
|
716
|
-
"last_updated": "2025-
|
|
693
|
+
"knowledge": "2025-01",
|
|
694
|
+
"release_date": "2025-11-18",
|
|
695
|
+
"last_updated": "2025-11-18",
|
|
717
696
|
"modalities": {
|
|
718
697
|
"input": [
|
|
719
698
|
"text",
|
|
720
|
-
"image"
|
|
699
|
+
"image",
|
|
700
|
+
"video",
|
|
701
|
+
"audio",
|
|
702
|
+
"pdf"
|
|
721
703
|
],
|
|
722
704
|
"output": [
|
|
723
|
-
"text"
|
|
724
|
-
"image"
|
|
705
|
+
"text"
|
|
725
706
|
]
|
|
726
707
|
},
|
|
727
708
|
"open_weights": false,
|
|
728
|
-
"cost": {
|
|
729
|
-
"input": 0.3,
|
|
730
|
-
"output": 30,
|
|
731
|
-
"cache_read": 0.075
|
|
732
|
-
},
|
|
733
709
|
"limit": {
|
|
734
|
-
"context":
|
|
735
|
-
"output":
|
|
710
|
+
"context": 1000000,
|
|
711
|
+
"output": 64000
|
|
712
|
+
},
|
|
713
|
+
"cost": {
|
|
714
|
+
"input": 2,
|
|
715
|
+
"output": 12,
|
|
716
|
+
"cache_read": 0.2,
|
|
717
|
+
"tiers": [
|
|
718
|
+
{
|
|
719
|
+
"input": 4,
|
|
720
|
+
"output": 18,
|
|
721
|
+
"cache_read": 0.4,
|
|
722
|
+
"tier": {
|
|
723
|
+
"type": "context",
|
|
724
|
+
"size": 200000
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
],
|
|
728
|
+
"context_over_200k": {
|
|
729
|
+
"input": 4,
|
|
730
|
+
"output": 18,
|
|
731
|
+
"cache_read": 0.4
|
|
732
|
+
}
|
|
736
733
|
}
|
|
737
734
|
},
|
|
738
|
-
"gemini-2.
|
|
739
|
-
"id": "gemini-2.
|
|
740
|
-
"name": "Gemini 2.
|
|
735
|
+
"gemini-2.0-flash-lite": {
|
|
736
|
+
"id": "gemini-2.0-flash-lite",
|
|
737
|
+
"name": "Gemini 2.0 Flash Lite",
|
|
741
738
|
"family": "gemini-flash-lite",
|
|
742
739
|
"attachment": true,
|
|
743
|
-
"reasoning":
|
|
740
|
+
"reasoning": false,
|
|
744
741
|
"tool_call": true,
|
|
742
|
+
"structured_output": true,
|
|
745
743
|
"temperature": true,
|
|
746
|
-
"knowledge": "
|
|
747
|
-
"release_date": "
|
|
748
|
-
"last_updated": "
|
|
744
|
+
"knowledge": "2024-06",
|
|
745
|
+
"release_date": "2024-12-11",
|
|
746
|
+
"last_updated": "2024-12-11",
|
|
749
747
|
"modalities": {
|
|
750
748
|
"input": [
|
|
751
749
|
"text",
|
|
@@ -759,192 +757,216 @@
|
|
|
759
757
|
]
|
|
760
758
|
},
|
|
761
759
|
"open_weights": false,
|
|
762
|
-
"cost": {
|
|
763
|
-
"input": 0.1,
|
|
764
|
-
"output": 0.4,
|
|
765
|
-
"cache_read": 0.025,
|
|
766
|
-
"input_audio": 0.3
|
|
767
|
-
},
|
|
768
760
|
"limit": {
|
|
769
761
|
"context": 1048576,
|
|
770
|
-
"output":
|
|
762
|
+
"output": 8192
|
|
763
|
+
},
|
|
764
|
+
"cost": {
|
|
765
|
+
"input": 0.075,
|
|
766
|
+
"output": 0.3
|
|
771
767
|
}
|
|
772
768
|
},
|
|
773
|
-
"
|
|
774
|
-
"id": "
|
|
775
|
-
"name": "
|
|
776
|
-
"family": "
|
|
769
|
+
"gemini-3.1-pro-preview-customtools": {
|
|
770
|
+
"id": "gemini-3.1-pro-preview-customtools",
|
|
771
|
+
"name": "Gemini 3.1 Pro Preview Custom Tools",
|
|
772
|
+
"family": "gemini-pro",
|
|
777
773
|
"attachment": true,
|
|
778
|
-
"reasoning":
|
|
779
|
-
"tool_call":
|
|
774
|
+
"reasoning": true,
|
|
775
|
+
"tool_call": true,
|
|
780
776
|
"structured_output": true,
|
|
781
777
|
"temperature": true,
|
|
782
|
-
"knowledge": "
|
|
783
|
-
"release_date": "
|
|
784
|
-
"last_updated": "
|
|
778
|
+
"knowledge": "2025-01",
|
|
779
|
+
"release_date": "2026-02-19",
|
|
780
|
+
"last_updated": "2026-02-19",
|
|
785
781
|
"modalities": {
|
|
786
782
|
"input": [
|
|
787
783
|
"text",
|
|
788
|
-
"image"
|
|
784
|
+
"image",
|
|
785
|
+
"video",
|
|
786
|
+
"audio",
|
|
787
|
+
"pdf"
|
|
789
788
|
],
|
|
790
789
|
"output": [
|
|
791
790
|
"text"
|
|
792
791
|
]
|
|
793
792
|
},
|
|
794
|
-
"open_weights":
|
|
795
|
-
"cost": {
|
|
796
|
-
"input": 0,
|
|
797
|
-
"output": 0
|
|
798
|
-
},
|
|
793
|
+
"open_weights": false,
|
|
799
794
|
"limit": {
|
|
800
|
-
"context":
|
|
801
|
-
"output":
|
|
795
|
+
"context": 1048576,
|
|
796
|
+
"output": 65536
|
|
797
|
+
},
|
|
798
|
+
"cost": {
|
|
799
|
+
"input": 2,
|
|
800
|
+
"output": 12,
|
|
801
|
+
"cache_read": 0.2,
|
|
802
|
+
"tiers": [
|
|
803
|
+
{
|
|
804
|
+
"input": 4,
|
|
805
|
+
"output": 18,
|
|
806
|
+
"cache_read": 0.4,
|
|
807
|
+
"tier": {
|
|
808
|
+
"type": "context",
|
|
809
|
+
"size": 200000
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
],
|
|
813
|
+
"context_over_200k": {
|
|
814
|
+
"input": 4,
|
|
815
|
+
"output": 18,
|
|
816
|
+
"cache_read": 0.4
|
|
817
|
+
}
|
|
802
818
|
}
|
|
803
819
|
},
|
|
804
|
-
"gemini-2.5-flash": {
|
|
805
|
-
"id": "gemini-2.5-flash",
|
|
806
|
-
"name": "Gemini 2.5 Flash",
|
|
820
|
+
"gemini-2.5-flash-image-preview": {
|
|
821
|
+
"id": "gemini-2.5-flash-image-preview",
|
|
822
|
+
"name": "Gemini 2.5 Flash Image (Preview)",
|
|
807
823
|
"family": "gemini-flash",
|
|
808
824
|
"attachment": true,
|
|
809
825
|
"reasoning": true,
|
|
810
|
-
"tool_call":
|
|
811
|
-
"structured_output": true,
|
|
826
|
+
"tool_call": false,
|
|
812
827
|
"temperature": true,
|
|
813
|
-
"knowledge": "2025-
|
|
814
|
-
"release_date": "2025-
|
|
815
|
-
"last_updated": "2025-
|
|
828
|
+
"knowledge": "2025-06",
|
|
829
|
+
"release_date": "2025-08-26",
|
|
830
|
+
"last_updated": "2025-08-26",
|
|
816
831
|
"modalities": {
|
|
817
832
|
"input": [
|
|
818
833
|
"text",
|
|
819
|
-
"image"
|
|
820
|
-
"audio",
|
|
821
|
-
"video",
|
|
822
|
-
"pdf"
|
|
834
|
+
"image"
|
|
823
835
|
],
|
|
824
836
|
"output": [
|
|
825
|
-
"text"
|
|
837
|
+
"text",
|
|
838
|
+
"image"
|
|
826
839
|
]
|
|
827
840
|
},
|
|
828
841
|
"open_weights": false,
|
|
842
|
+
"limit": {
|
|
843
|
+
"context": 32768,
|
|
844
|
+
"output": 32768
|
|
845
|
+
},
|
|
829
846
|
"cost": {
|
|
830
847
|
"input": 0.3,
|
|
831
|
-
"output":
|
|
832
|
-
"cache_read": 0.
|
|
833
|
-
"input_audio": 1
|
|
834
|
-
},
|
|
835
|
-
"limit": {
|
|
836
|
-
"context": 1048576,
|
|
837
|
-
"output": 65536
|
|
848
|
+
"output": 30,
|
|
849
|
+
"cache_read": 0.075
|
|
838
850
|
}
|
|
839
851
|
},
|
|
840
|
-
"
|
|
841
|
-
"id": "
|
|
842
|
-
"name": "
|
|
843
|
-
"family": "
|
|
844
|
-
"attachment":
|
|
852
|
+
"gemini-2.5-flash-preview-tts": {
|
|
853
|
+
"id": "gemini-2.5-flash-preview-tts",
|
|
854
|
+
"name": "Gemini 2.5 Flash Preview TTS",
|
|
855
|
+
"family": "gemini-flash",
|
|
856
|
+
"attachment": false,
|
|
845
857
|
"reasoning": false,
|
|
846
858
|
"tool_call": false,
|
|
847
|
-
"temperature":
|
|
848
|
-
"knowledge": "
|
|
849
|
-
"release_date": "2025-
|
|
850
|
-
"last_updated": "2025-
|
|
859
|
+
"temperature": false,
|
|
860
|
+
"knowledge": "2025-01",
|
|
861
|
+
"release_date": "2025-05-01",
|
|
862
|
+
"last_updated": "2025-05-01",
|
|
851
863
|
"modalities": {
|
|
852
864
|
"input": [
|
|
853
865
|
"text"
|
|
854
866
|
],
|
|
855
867
|
"output": [
|
|
856
|
-
"
|
|
868
|
+
"audio"
|
|
857
869
|
]
|
|
858
870
|
},
|
|
859
|
-
"open_weights":
|
|
860
|
-
"cost": {
|
|
861
|
-
"input": 0,
|
|
862
|
-
"output": 0
|
|
863
|
-
},
|
|
871
|
+
"open_weights": false,
|
|
864
872
|
"limit": {
|
|
865
|
-
"context":
|
|
866
|
-
"output":
|
|
873
|
+
"context": 8000,
|
|
874
|
+
"output": 16000
|
|
875
|
+
},
|
|
876
|
+
"cost": {
|
|
877
|
+
"input": 0.5,
|
|
878
|
+
"output": 10
|
|
867
879
|
}
|
|
868
880
|
},
|
|
869
|
-
"gemini-
|
|
870
|
-
"id": "gemini-
|
|
871
|
-
"name": "Gemini
|
|
872
|
-
"family": "gemini-flash",
|
|
881
|
+
"gemini-2.5-flash-lite-preview-06-17": {
|
|
882
|
+
"id": "gemini-2.5-flash-lite-preview-06-17",
|
|
883
|
+
"name": "Gemini 2.5 Flash Lite Preview 06-17",
|
|
884
|
+
"family": "gemini-flash-lite",
|
|
873
885
|
"attachment": true,
|
|
874
886
|
"reasoning": true,
|
|
875
|
-
"tool_call":
|
|
887
|
+
"tool_call": true,
|
|
876
888
|
"temperature": true,
|
|
877
889
|
"knowledge": "2025-01",
|
|
878
|
-
"release_date": "
|
|
879
|
-
"last_updated": "
|
|
890
|
+
"release_date": "2025-06-17",
|
|
891
|
+
"last_updated": "2025-06-17",
|
|
880
892
|
"modalities": {
|
|
881
893
|
"input": [
|
|
882
894
|
"text",
|
|
883
895
|
"image",
|
|
896
|
+
"audio",
|
|
897
|
+
"video",
|
|
884
898
|
"pdf"
|
|
885
899
|
],
|
|
886
900
|
"output": [
|
|
887
|
-
"text"
|
|
888
|
-
"image"
|
|
901
|
+
"text"
|
|
889
902
|
]
|
|
890
903
|
},
|
|
891
904
|
"open_weights": false,
|
|
892
|
-
"cost": {
|
|
893
|
-
"input": 0.25,
|
|
894
|
-
"output": 60
|
|
895
|
-
},
|
|
896
905
|
"limit": {
|
|
897
|
-
"context":
|
|
898
|
-
"output":
|
|
906
|
+
"context": 1048576,
|
|
907
|
+
"output": 65536
|
|
908
|
+
},
|
|
909
|
+
"cost": {
|
|
910
|
+
"input": 0.1,
|
|
911
|
+
"output": 0.4,
|
|
912
|
+
"cache_read": 0.025,
|
|
913
|
+
"input_audio": 0.3
|
|
899
914
|
}
|
|
900
915
|
},
|
|
901
|
-
"
|
|
902
|
-
"id": "
|
|
903
|
-
"name": "
|
|
904
|
-
"family": "
|
|
916
|
+
"gemini-3.1-flash-lite-preview": {
|
|
917
|
+
"id": "gemini-3.1-flash-lite-preview",
|
|
918
|
+
"name": "Gemini 3.1 Flash Lite Preview",
|
|
919
|
+
"family": "gemini-flash-lite",
|
|
905
920
|
"attachment": true,
|
|
906
|
-
"reasoning":
|
|
907
|
-
"tool_call":
|
|
921
|
+
"reasoning": true,
|
|
922
|
+
"tool_call": true,
|
|
923
|
+
"structured_output": true,
|
|
908
924
|
"temperature": true,
|
|
909
|
-
"knowledge": "
|
|
910
|
-
"release_date": "
|
|
911
|
-
"last_updated": "
|
|
925
|
+
"knowledge": "2025-01",
|
|
926
|
+
"release_date": "2026-03-03",
|
|
927
|
+
"last_updated": "2026-03-03",
|
|
912
928
|
"modalities": {
|
|
913
929
|
"input": [
|
|
914
930
|
"text",
|
|
915
|
-
"image"
|
|
931
|
+
"image",
|
|
932
|
+
"video",
|
|
933
|
+
"audio",
|
|
934
|
+
"pdf"
|
|
916
935
|
],
|
|
917
936
|
"output": [
|
|
918
937
|
"text"
|
|
919
938
|
]
|
|
920
939
|
},
|
|
921
|
-
"open_weights":
|
|
922
|
-
"cost": {
|
|
923
|
-
"input": 0,
|
|
924
|
-
"output": 0
|
|
925
|
-
},
|
|
940
|
+
"open_weights": false,
|
|
926
941
|
"limit": {
|
|
927
|
-
"context":
|
|
928
|
-
"output":
|
|
942
|
+
"context": 1048576,
|
|
943
|
+
"output": 65536
|
|
944
|
+
},
|
|
945
|
+
"cost": {
|
|
946
|
+
"input": 0.25,
|
|
947
|
+
"output": 1.5,
|
|
948
|
+
"cache_read": 0.025,
|
|
949
|
+
"input_audio": 0.5
|
|
929
950
|
}
|
|
930
951
|
},
|
|
931
|
-
"gemini-
|
|
932
|
-
"id": "gemini-
|
|
933
|
-
"name": "Gemini
|
|
934
|
-
"family": "gemini-
|
|
952
|
+
"gemini-3.1-pro-preview": {
|
|
953
|
+
"id": "gemini-3.1-pro-preview",
|
|
954
|
+
"name": "Gemini 3.1 Pro Preview",
|
|
955
|
+
"family": "gemini-pro",
|
|
935
956
|
"attachment": true,
|
|
936
957
|
"reasoning": true,
|
|
937
958
|
"tool_call": true,
|
|
959
|
+
"structured_output": true,
|
|
938
960
|
"temperature": true,
|
|
939
961
|
"knowledge": "2025-01",
|
|
940
|
-
"release_date": "
|
|
941
|
-
"last_updated": "
|
|
962
|
+
"release_date": "2026-02-19",
|
|
963
|
+
"last_updated": "2026-02-19",
|
|
942
964
|
"modalities": {
|
|
943
965
|
"input": [
|
|
944
966
|
"text",
|
|
945
967
|
"image",
|
|
946
|
-
"audio",
|
|
947
968
|
"video",
|
|
969
|
+
"audio",
|
|
948
970
|
"pdf"
|
|
949
971
|
],
|
|
950
972
|
"output": [
|
|
@@ -952,93 +974,115 @@
|
|
|
952
974
|
]
|
|
953
975
|
},
|
|
954
976
|
"open_weights": false,
|
|
955
|
-
"cost": {
|
|
956
|
-
"input": 0.15,
|
|
957
|
-
"output": 0.6,
|
|
958
|
-
"cache_read": 0.0375
|
|
959
|
-
},
|
|
960
977
|
"limit": {
|
|
961
978
|
"context": 1048576,
|
|
962
979
|
"output": 65536
|
|
980
|
+
},
|
|
981
|
+
"cost": {
|
|
982
|
+
"input": 2,
|
|
983
|
+
"output": 12,
|
|
984
|
+
"cache_read": 0.2,
|
|
985
|
+
"tiers": [
|
|
986
|
+
{
|
|
987
|
+
"input": 4,
|
|
988
|
+
"output": 18,
|
|
989
|
+
"cache_read": 0.4,
|
|
990
|
+
"tier": {
|
|
991
|
+
"type": "context",
|
|
992
|
+
"size": 200000
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
],
|
|
996
|
+
"context_over_200k": {
|
|
997
|
+
"input": 4,
|
|
998
|
+
"output": 18,
|
|
999
|
+
"cache_read": 0.4
|
|
1000
|
+
}
|
|
963
1001
|
}
|
|
964
1002
|
},
|
|
965
|
-
"gemini-
|
|
966
|
-
"id": "gemini-
|
|
967
|
-
"name": "Gemini
|
|
1003
|
+
"gemini-3-flash-preview": {
|
|
1004
|
+
"id": "gemini-3-flash-preview",
|
|
1005
|
+
"name": "Gemini 3 Flash Preview",
|
|
968
1006
|
"family": "gemini-flash",
|
|
969
|
-
"attachment":
|
|
970
|
-
"reasoning":
|
|
971
|
-
"tool_call":
|
|
972
|
-
"
|
|
1007
|
+
"attachment": true,
|
|
1008
|
+
"reasoning": true,
|
|
1009
|
+
"tool_call": true,
|
|
1010
|
+
"structured_output": true,
|
|
1011
|
+
"temperature": true,
|
|
973
1012
|
"knowledge": "2025-01",
|
|
974
|
-
"release_date": "2025-
|
|
975
|
-
"last_updated": "2025-
|
|
1013
|
+
"release_date": "2025-12-17",
|
|
1014
|
+
"last_updated": "2025-12-17",
|
|
976
1015
|
"modalities": {
|
|
977
1016
|
"input": [
|
|
978
|
-
"text"
|
|
1017
|
+
"text",
|
|
1018
|
+
"image",
|
|
1019
|
+
"video",
|
|
1020
|
+
"audio",
|
|
1021
|
+
"pdf"
|
|
979
1022
|
],
|
|
980
1023
|
"output": [
|
|
981
|
-
"
|
|
1024
|
+
"text"
|
|
982
1025
|
]
|
|
983
1026
|
},
|
|
984
1027
|
"open_weights": false,
|
|
985
|
-
"cost": {
|
|
986
|
-
"input": 1,
|
|
987
|
-
"output": 20
|
|
988
|
-
},
|
|
989
1028
|
"limit": {
|
|
990
|
-
"context":
|
|
991
|
-
"output":
|
|
1029
|
+
"context": 1048576,
|
|
1030
|
+
"output": 65536
|
|
1031
|
+
},
|
|
1032
|
+
"cost": {
|
|
1033
|
+
"input": 0.5,
|
|
1034
|
+
"output": 3,
|
|
1035
|
+
"cache_read": 0.05,
|
|
1036
|
+
"input_audio": 1
|
|
992
1037
|
}
|
|
993
1038
|
},
|
|
994
|
-
"gemini-2.5-flash
|
|
995
|
-
"id": "gemini-2.5-flash
|
|
996
|
-
"name": "Gemini 2.5 Flash
|
|
1039
|
+
"gemini-live-2.5-flash": {
|
|
1040
|
+
"id": "gemini-live-2.5-flash",
|
|
1041
|
+
"name": "Gemini Live 2.5 Flash",
|
|
997
1042
|
"family": "gemini-flash",
|
|
998
1043
|
"attachment": true,
|
|
999
1044
|
"reasoning": true,
|
|
1000
1045
|
"tool_call": true,
|
|
1001
|
-
"structured_output": true,
|
|
1002
1046
|
"temperature": true,
|
|
1003
1047
|
"knowledge": "2025-01",
|
|
1004
|
-
"release_date": "2025-09-
|
|
1005
|
-
"last_updated": "2025-09-
|
|
1048
|
+
"release_date": "2025-09-01",
|
|
1049
|
+
"last_updated": "2025-09-01",
|
|
1006
1050
|
"modalities": {
|
|
1007
1051
|
"input": [
|
|
1008
1052
|
"text",
|
|
1009
1053
|
"image",
|
|
1010
1054
|
"audio",
|
|
1011
|
-
"video"
|
|
1012
|
-
"pdf"
|
|
1055
|
+
"video"
|
|
1013
1056
|
],
|
|
1014
1057
|
"output": [
|
|
1015
|
-
"text"
|
|
1058
|
+
"text",
|
|
1059
|
+
"audio"
|
|
1016
1060
|
]
|
|
1017
1061
|
},
|
|
1018
1062
|
"open_weights": false,
|
|
1019
|
-
"cost": {
|
|
1020
|
-
"input": 0.3,
|
|
1021
|
-
"output": 2.5,
|
|
1022
|
-
"cache_read": 0.075,
|
|
1023
|
-
"input_audio": 1
|
|
1024
|
-
},
|
|
1025
1063
|
"limit": {
|
|
1026
|
-
"context":
|
|
1027
|
-
"output":
|
|
1064
|
+
"context": 128000,
|
|
1065
|
+
"output": 8000
|
|
1066
|
+
},
|
|
1067
|
+
"cost": {
|
|
1068
|
+
"input": 0.5,
|
|
1069
|
+
"output": 2,
|
|
1070
|
+
"input_audio": 3,
|
|
1071
|
+
"output_audio": 12
|
|
1028
1072
|
}
|
|
1029
1073
|
},
|
|
1030
|
-
"gemma-3-
|
|
1031
|
-
"id": "gemma-3-
|
|
1032
|
-
"name": "Gemma 3
|
|
1074
|
+
"gemma-3-12b-it": {
|
|
1075
|
+
"id": "gemma-3-12b-it",
|
|
1076
|
+
"name": "Gemma 3 12B",
|
|
1033
1077
|
"family": "gemma",
|
|
1034
1078
|
"attachment": true,
|
|
1035
1079
|
"reasoning": false,
|
|
1036
|
-
"tool_call":
|
|
1080
|
+
"tool_call": false,
|
|
1037
1081
|
"structured_output": true,
|
|
1038
1082
|
"temperature": true,
|
|
1039
1083
|
"knowledge": "2024-10",
|
|
1040
|
-
"release_date": "2025-03-
|
|
1041
|
-
"last_updated": "2025-03-
|
|
1084
|
+
"release_date": "2025-03-13",
|
|
1085
|
+
"last_updated": "2025-03-13",
|
|
1042
1086
|
"modalities": {
|
|
1043
1087
|
"input": [
|
|
1044
1088
|
"text",
|
|
@@ -1049,53 +1093,27 @@
|
|
|
1049
1093
|
]
|
|
1050
1094
|
},
|
|
1051
1095
|
"open_weights": true,
|
|
1052
|
-
"cost": {
|
|
1053
|
-
"input": 0,
|
|
1054
|
-
"output": 0
|
|
1055
|
-
},
|
|
1056
1096
|
"limit": {
|
|
1057
|
-
"context":
|
|
1097
|
+
"context": 32768,
|
|
1058
1098
|
"output": 8192
|
|
1059
|
-
}
|
|
1060
|
-
},
|
|
1061
|
-
"gemma-4-26b-a4b-it": {
|
|
1062
|
-
"id": "gemma-4-26b-a4b-it",
|
|
1063
|
-
"name": "Gemma 4 26B",
|
|
1064
|
-
"family": "gemma",
|
|
1065
|
-
"attachment": false,
|
|
1066
|
-
"reasoning": true,
|
|
1067
|
-
"tool_call": true,
|
|
1068
|
-
"structured_output": true,
|
|
1069
|
-
"temperature": true,
|
|
1070
|
-
"release_date": "2026-04-02",
|
|
1071
|
-
"last_updated": "2026-04-02",
|
|
1072
|
-
"modalities": {
|
|
1073
|
-
"input": [
|
|
1074
|
-
"text",
|
|
1075
|
-
"image"
|
|
1076
|
-
],
|
|
1077
|
-
"output": [
|
|
1078
|
-
"text"
|
|
1079
|
-
]
|
|
1080
1099
|
},
|
|
1081
|
-
"
|
|
1082
|
-
|
|
1083
|
-
"
|
|
1084
|
-
"output": 8192
|
|
1100
|
+
"cost": {
|
|
1101
|
+
"input": 0,
|
|
1102
|
+
"output": 0
|
|
1085
1103
|
}
|
|
1086
1104
|
},
|
|
1087
|
-
"gemini-2.5-flash
|
|
1088
|
-
"id": "gemini-2.5-flash
|
|
1089
|
-
"name": "Gemini 2.5 Flash
|
|
1090
|
-
"family": "gemini-flash
|
|
1105
|
+
"gemini-2.5-flash": {
|
|
1106
|
+
"id": "gemini-2.5-flash",
|
|
1107
|
+
"name": "Gemini 2.5 Flash",
|
|
1108
|
+
"family": "gemini-flash",
|
|
1091
1109
|
"attachment": true,
|
|
1092
1110
|
"reasoning": true,
|
|
1093
1111
|
"tool_call": true,
|
|
1094
1112
|
"structured_output": true,
|
|
1095
1113
|
"temperature": true,
|
|
1096
1114
|
"knowledge": "2025-01",
|
|
1097
|
-
"release_date": "2025-
|
|
1098
|
-
"last_updated": "2025-06-
|
|
1115
|
+
"release_date": "2025-03-20",
|
|
1116
|
+
"last_updated": "2025-06-05",
|
|
1099
1117
|
"modalities": {
|
|
1100
1118
|
"input": [
|
|
1101
1119
|
"text",
|
|
@@ -1109,19 +1127,20 @@
|
|
|
1109
1127
|
]
|
|
1110
1128
|
},
|
|
1111
1129
|
"open_weights": false,
|
|
1112
|
-
"cost": {
|
|
1113
|
-
"input": 0.1,
|
|
1114
|
-
"output": 0.4,
|
|
1115
|
-
"cache_read": 0.025
|
|
1116
|
-
},
|
|
1117
1130
|
"limit": {
|
|
1118
1131
|
"context": 1048576,
|
|
1119
1132
|
"output": 65536
|
|
1133
|
+
},
|
|
1134
|
+
"cost": {
|
|
1135
|
+
"input": 0.3,
|
|
1136
|
+
"output": 2.5,
|
|
1137
|
+
"cache_read": 0.03,
|
|
1138
|
+
"input_audio": 1
|
|
1120
1139
|
}
|
|
1121
1140
|
},
|
|
1122
|
-
"gemini-2.5-flash-image
|
|
1123
|
-
"id": "gemini-2.5-flash-image
|
|
1124
|
-
"name": "Gemini 2.5 Flash Image
|
|
1141
|
+
"gemini-2.5-flash-image": {
|
|
1142
|
+
"id": "gemini-2.5-flash-image",
|
|
1143
|
+
"name": "Gemini 2.5 Flash Image",
|
|
1125
1144
|
"family": "gemini-flash",
|
|
1126
1145
|
"attachment": true,
|
|
1127
1146
|
"reasoning": true,
|
|
@@ -1141,60 +1160,62 @@
|
|
|
1141
1160
|
]
|
|
1142
1161
|
},
|
|
1143
1162
|
"open_weights": false,
|
|
1163
|
+
"limit": {
|
|
1164
|
+
"context": 32768,
|
|
1165
|
+
"output": 32768
|
|
1166
|
+
},
|
|
1144
1167
|
"cost": {
|
|
1145
1168
|
"input": 0.3,
|
|
1146
1169
|
"output": 30,
|
|
1147
1170
|
"cache_read": 0.075
|
|
1148
|
-
},
|
|
1149
|
-
"limit": {
|
|
1150
|
-
"context": 32768,
|
|
1151
|
-
"output": 32768
|
|
1152
1171
|
}
|
|
1153
1172
|
},
|
|
1154
|
-
"gemini-
|
|
1155
|
-
"id": "gemini-
|
|
1156
|
-
"name": "Gemini
|
|
1173
|
+
"gemini-2.0-flash": {
|
|
1174
|
+
"id": "gemini-2.0-flash",
|
|
1175
|
+
"name": "Gemini 2.0 Flash",
|
|
1157
1176
|
"family": "gemini-flash",
|
|
1158
1177
|
"attachment": true,
|
|
1159
1178
|
"reasoning": false,
|
|
1160
1179
|
"tool_call": true,
|
|
1180
|
+
"structured_output": true,
|
|
1161
1181
|
"temperature": true,
|
|
1162
|
-
"knowledge": "2024-
|
|
1163
|
-
"release_date": "2024-
|
|
1164
|
-
"last_updated": "2024-
|
|
1182
|
+
"knowledge": "2024-06",
|
|
1183
|
+
"release_date": "2024-12-11",
|
|
1184
|
+
"last_updated": "2024-12-11",
|
|
1165
1185
|
"modalities": {
|
|
1166
1186
|
"input": [
|
|
1167
1187
|
"text",
|
|
1168
1188
|
"image",
|
|
1169
1189
|
"audio",
|
|
1170
|
-
"video"
|
|
1190
|
+
"video",
|
|
1191
|
+
"pdf"
|
|
1171
1192
|
],
|
|
1172
1193
|
"output": [
|
|
1173
1194
|
"text"
|
|
1174
1195
|
]
|
|
1175
1196
|
},
|
|
1176
1197
|
"open_weights": false,
|
|
1177
|
-
"cost": {
|
|
1178
|
-
"input": 0.0375,
|
|
1179
|
-
"output": 0.15,
|
|
1180
|
-
"cache_read": 0.01
|
|
1181
|
-
},
|
|
1182
1198
|
"limit": {
|
|
1183
|
-
"context":
|
|
1199
|
+
"context": 1048576,
|
|
1184
1200
|
"output": 8192
|
|
1201
|
+
},
|
|
1202
|
+
"cost": {
|
|
1203
|
+
"input": 0.1,
|
|
1204
|
+
"output": 0.4,
|
|
1205
|
+
"cache_read": 0.025
|
|
1185
1206
|
}
|
|
1186
1207
|
},
|
|
1187
|
-
"gemini-
|
|
1188
|
-
"id": "gemini-
|
|
1189
|
-
"name": "Gemini
|
|
1190
|
-
"family": "gemini-
|
|
1208
|
+
"gemini-1.5-pro": {
|
|
1209
|
+
"id": "gemini-1.5-pro",
|
|
1210
|
+
"name": "Gemini 1.5 Pro",
|
|
1211
|
+
"family": "gemini-pro",
|
|
1191
1212
|
"attachment": true,
|
|
1192
|
-
"reasoning":
|
|
1213
|
+
"reasoning": false,
|
|
1193
1214
|
"tool_call": true,
|
|
1194
1215
|
"temperature": true,
|
|
1195
|
-
"knowledge": "
|
|
1196
|
-
"release_date": "
|
|
1197
|
-
"last_updated": "
|
|
1216
|
+
"knowledge": "2024-04",
|
|
1217
|
+
"release_date": "2024-02-15",
|
|
1218
|
+
"last_updated": "2024-02-15",
|
|
1198
1219
|
"modalities": {
|
|
1199
1220
|
"input": [
|
|
1200
1221
|
"text",
|
|
@@ -1203,54 +1224,110 @@
|
|
|
1203
1224
|
"video"
|
|
1204
1225
|
],
|
|
1205
1226
|
"output": [
|
|
1206
|
-
"text"
|
|
1207
|
-
"audio"
|
|
1227
|
+
"text"
|
|
1208
1228
|
]
|
|
1209
1229
|
},
|
|
1210
1230
|
"open_weights": false,
|
|
1231
|
+
"limit": {
|
|
1232
|
+
"context": 1000000,
|
|
1233
|
+
"output": 8192
|
|
1234
|
+
},
|
|
1211
1235
|
"cost": {
|
|
1212
|
-
"input":
|
|
1213
|
-
"output":
|
|
1214
|
-
"
|
|
1215
|
-
|
|
1236
|
+
"input": 1.25,
|
|
1237
|
+
"output": 5,
|
|
1238
|
+
"cache_read": 0.3125
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"gemini-embedding-001": {
|
|
1242
|
+
"id": "gemini-embedding-001",
|
|
1243
|
+
"name": "Gemini Embedding 001",
|
|
1244
|
+
"family": "gemini",
|
|
1245
|
+
"attachment": false,
|
|
1246
|
+
"reasoning": false,
|
|
1247
|
+
"tool_call": false,
|
|
1248
|
+
"temperature": false,
|
|
1249
|
+
"knowledge": "2025-05",
|
|
1250
|
+
"release_date": "2025-05-20",
|
|
1251
|
+
"last_updated": "2025-05-20",
|
|
1252
|
+
"modalities": {
|
|
1253
|
+
"input": [
|
|
1254
|
+
"text"
|
|
1255
|
+
],
|
|
1256
|
+
"output": [
|
|
1257
|
+
"text"
|
|
1258
|
+
]
|
|
1216
1259
|
},
|
|
1260
|
+
"open_weights": false,
|
|
1217
1261
|
"limit": {
|
|
1218
|
-
"context":
|
|
1219
|
-
"output":
|
|
1262
|
+
"context": 2048,
|
|
1263
|
+
"output": 3072
|
|
1264
|
+
},
|
|
1265
|
+
"cost": {
|
|
1266
|
+
"input": 0.15,
|
|
1267
|
+
"output": 0
|
|
1220
1268
|
}
|
|
1221
1269
|
},
|
|
1222
|
-
"
|
|
1223
|
-
"id": "
|
|
1224
|
-
"name": "
|
|
1225
|
-
"family": "
|
|
1270
|
+
"gemma-3-4b-it": {
|
|
1271
|
+
"id": "gemma-3-4b-it",
|
|
1272
|
+
"name": "Gemma 3 4B",
|
|
1273
|
+
"family": "gemma",
|
|
1274
|
+
"attachment": true,
|
|
1275
|
+
"reasoning": false,
|
|
1276
|
+
"tool_call": false,
|
|
1277
|
+
"temperature": true,
|
|
1278
|
+
"knowledge": "2024-10",
|
|
1279
|
+
"release_date": "2025-03-13",
|
|
1280
|
+
"last_updated": "2025-03-13",
|
|
1281
|
+
"modalities": {
|
|
1282
|
+
"input": [
|
|
1283
|
+
"text",
|
|
1284
|
+
"image"
|
|
1285
|
+
],
|
|
1286
|
+
"output": [
|
|
1287
|
+
"text"
|
|
1288
|
+
]
|
|
1289
|
+
},
|
|
1290
|
+
"open_weights": true,
|
|
1291
|
+
"limit": {
|
|
1292
|
+
"context": 32768,
|
|
1293
|
+
"output": 8192
|
|
1294
|
+
},
|
|
1295
|
+
"cost": {
|
|
1296
|
+
"input": 0,
|
|
1297
|
+
"output": 0
|
|
1298
|
+
}
|
|
1299
|
+
},
|
|
1300
|
+
"gemini-1.5-flash-8b": {
|
|
1301
|
+
"id": "gemini-1.5-flash-8b",
|
|
1302
|
+
"name": "Gemini 1.5 Flash-8B",
|
|
1303
|
+
"family": "gemini-flash",
|
|
1226
1304
|
"attachment": true,
|
|
1227
1305
|
"reasoning": false,
|
|
1228
1306
|
"tool_call": true,
|
|
1229
|
-
"structured_output": true,
|
|
1230
1307
|
"temperature": true,
|
|
1231
|
-
"knowledge": "2024-
|
|
1232
|
-
"release_date": "2024-
|
|
1233
|
-
"last_updated": "2024-
|
|
1308
|
+
"knowledge": "2024-04",
|
|
1309
|
+
"release_date": "2024-10-03",
|
|
1310
|
+
"last_updated": "2024-10-03",
|
|
1234
1311
|
"modalities": {
|
|
1235
1312
|
"input": [
|
|
1236
1313
|
"text",
|
|
1237
1314
|
"image",
|
|
1238
1315
|
"audio",
|
|
1239
|
-
"video"
|
|
1240
|
-
"pdf"
|
|
1316
|
+
"video"
|
|
1241
1317
|
],
|
|
1242
1318
|
"output": [
|
|
1243
1319
|
"text"
|
|
1244
1320
|
]
|
|
1245
1321
|
},
|
|
1246
1322
|
"open_weights": false,
|
|
1247
|
-
"cost": {
|
|
1248
|
-
"input": 0.075,
|
|
1249
|
-
"output": 0.3
|
|
1250
|
-
},
|
|
1251
1323
|
"limit": {
|
|
1252
|
-
"context":
|
|
1324
|
+
"context": 1000000,
|
|
1253
1325
|
"output": 8192
|
|
1326
|
+
},
|
|
1327
|
+
"cost": {
|
|
1328
|
+
"input": 0.0375,
|
|
1329
|
+
"output": 0.15,
|
|
1330
|
+
"cache_read": 0.01
|
|
1254
1331
|
}
|
|
1255
1332
|
}
|
|
1256
1333
|
}
|