ruby_llm 1.0.0 → 1.1.0rc1
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/README.md +58 -19
- data/lib/ruby_llm/active_record/acts_as.rb +46 -7
- data/lib/ruby_llm/aliases.json +65 -0
- data/lib/ruby_llm/aliases.rb +56 -0
- data/lib/ruby_llm/chat.rb +11 -10
- data/lib/ruby_llm/configuration.rb +4 -0
- data/lib/ruby_llm/error.rb +15 -4
- data/lib/ruby_llm/models.json +1489 -283
- data/lib/ruby_llm/models.rb +57 -22
- data/lib/ruby_llm/provider.rb +44 -41
- data/lib/ruby_llm/providers/anthropic/capabilities.rb +8 -9
- data/lib/ruby_llm/providers/anthropic/chat.rb +31 -4
- data/lib/ruby_llm/providers/anthropic/streaming.rb +12 -6
- data/lib/ruby_llm/providers/anthropic.rb +4 -0
- data/lib/ruby_llm/providers/bedrock/capabilities.rb +168 -0
- data/lib/ruby_llm/providers/bedrock/chat.rb +108 -0
- data/lib/ruby_llm/providers/bedrock/models.rb +84 -0
- data/lib/ruby_llm/providers/bedrock/signing.rb +831 -0
- data/lib/ruby_llm/providers/bedrock/streaming/base.rb +46 -0
- data/lib/ruby_llm/providers/bedrock/streaming/content_extraction.rb +63 -0
- data/lib/ruby_llm/providers/bedrock/streaming/message_processing.rb +79 -0
- data/lib/ruby_llm/providers/bedrock/streaming/payload_processing.rb +90 -0
- data/lib/ruby_llm/providers/bedrock/streaming/prelude_handling.rb +91 -0
- data/lib/ruby_llm/providers/bedrock/streaming.rb +36 -0
- data/lib/ruby_llm/providers/bedrock.rb +83 -0
- data/lib/ruby_llm/providers/deepseek/chat.rb +17 -0
- data/lib/ruby_llm/providers/deepseek.rb +5 -0
- data/lib/ruby_llm/providers/gemini/capabilities.rb +50 -34
- data/lib/ruby_llm/providers/gemini/chat.rb +8 -15
- data/lib/ruby_llm/providers/gemini/images.rb +5 -10
- data/lib/ruby_llm/providers/gemini/models.rb +0 -8
- data/lib/ruby_llm/providers/gemini/streaming.rb +35 -76
- data/lib/ruby_llm/providers/gemini/tools.rb +12 -12
- data/lib/ruby_llm/providers/gemini.rb +4 -0
- data/lib/ruby_llm/providers/openai/capabilities.rb +154 -177
- data/lib/ruby_llm/providers/openai/streaming.rb +9 -13
- data/lib/ruby_llm/providers/openai.rb +4 -0
- data/lib/ruby_llm/streaming.rb +96 -0
- data/lib/ruby_llm/tool.rb +15 -7
- data/lib/ruby_llm/version.rb +1 -1
- data/lib/ruby_llm.rb +8 -3
- data/lib/tasks/browser_helper.rb +97 -0
- data/lib/tasks/capability_generator.rb +123 -0
- data/lib/tasks/capability_scraper.rb +224 -0
- data/lib/tasks/cli_helper.rb +22 -0
- data/lib/tasks/code_validator.rb +29 -0
- data/lib/tasks/model_updater.rb +66 -0
- data/lib/tasks/models.rake +28 -197
- data/lib/tasks/vcr.rake +97 -0
- metadata +42 -19
- data/.github/workflows/cicd.yml +0 -109
- data/.github/workflows/docs.yml +0 -53
- data/.gitignore +0 -58
- data/.overcommit.yml +0 -26
- data/.rspec +0 -3
- data/.rspec_status +0 -50
- data/.rubocop.yml +0 -10
- data/.yardopts +0 -12
- data/Gemfile +0 -32
- data/Rakefile +0 -9
- data/bin/console +0 -17
- data/bin/setup +0 -6
- data/ruby_llm.gemspec +0 -43
data/lib/ruby_llm/models.json
CHANGED
@@ -1,4 +1,839 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"id": "anthropic.claude-3-5-haiku-20241022-v1:0",
|
4
|
+
"created_at": null,
|
5
|
+
"display_name": "Claude 3.5 Haiku",
|
6
|
+
"provider": "bedrock",
|
7
|
+
"context_window": 4096,
|
8
|
+
"max_tokens": 4096,
|
9
|
+
"type": "chat",
|
10
|
+
"family": "claude3_5_haiku",
|
11
|
+
"supports_vision": true,
|
12
|
+
"supports_functions": true,
|
13
|
+
"supports_json_mode": true,
|
14
|
+
"input_price_per_million": 0.8,
|
15
|
+
"output_price_per_million": 4.0,
|
16
|
+
"metadata": {
|
17
|
+
"provider_name": "Anthropic",
|
18
|
+
"customizations_supported": [],
|
19
|
+
"inference_configurations": [
|
20
|
+
"ON_DEMAND"
|
21
|
+
],
|
22
|
+
"response_streaming_supported": true,
|
23
|
+
"input_modalities": [
|
24
|
+
"TEXT",
|
25
|
+
"IMAGE"
|
26
|
+
],
|
27
|
+
"output_modalities": [
|
28
|
+
"TEXT"
|
29
|
+
]
|
30
|
+
}
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"id": "anthropic.claude-3-5-sonnet-20240620-v1:0",
|
34
|
+
"created_at": null,
|
35
|
+
"display_name": "Claude 3.5 Sonnet",
|
36
|
+
"provider": "bedrock",
|
37
|
+
"context_window": 4096,
|
38
|
+
"max_tokens": 4096,
|
39
|
+
"type": "chat",
|
40
|
+
"family": "claude3_sonnet",
|
41
|
+
"supports_vision": true,
|
42
|
+
"supports_functions": true,
|
43
|
+
"supports_json_mode": true,
|
44
|
+
"input_price_per_million": 3.0,
|
45
|
+
"output_price_per_million": 15.0,
|
46
|
+
"metadata": {
|
47
|
+
"provider_name": "Anthropic",
|
48
|
+
"customizations_supported": [],
|
49
|
+
"inference_configurations": [
|
50
|
+
"ON_DEMAND"
|
51
|
+
],
|
52
|
+
"response_streaming_supported": true,
|
53
|
+
"input_modalities": [
|
54
|
+
"TEXT",
|
55
|
+
"IMAGE"
|
56
|
+
],
|
57
|
+
"output_modalities": [
|
58
|
+
"TEXT"
|
59
|
+
]
|
60
|
+
}
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"id": "anthropic.claude-3-5-sonnet-20240620-v1:0:18k",
|
64
|
+
"created_at": null,
|
65
|
+
"display_name": "Claude 3.5 Sonnet",
|
66
|
+
"provider": "bedrock",
|
67
|
+
"context_window": 4096,
|
68
|
+
"max_tokens": 4096,
|
69
|
+
"type": "chat",
|
70
|
+
"family": "claude3_sonnet",
|
71
|
+
"supports_vision": true,
|
72
|
+
"supports_functions": true,
|
73
|
+
"supports_json_mode": true,
|
74
|
+
"input_price_per_million": 3.0,
|
75
|
+
"output_price_per_million": 15.0,
|
76
|
+
"metadata": {
|
77
|
+
"provider_name": "Anthropic",
|
78
|
+
"customizations_supported": [],
|
79
|
+
"inference_configurations": [
|
80
|
+
"PROVISIONED"
|
81
|
+
],
|
82
|
+
"response_streaming_supported": true,
|
83
|
+
"input_modalities": [
|
84
|
+
"TEXT",
|
85
|
+
"IMAGE"
|
86
|
+
],
|
87
|
+
"output_modalities": [
|
88
|
+
"TEXT"
|
89
|
+
]
|
90
|
+
}
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"id": "anthropic.claude-3-5-sonnet-20240620-v1:0:200k",
|
94
|
+
"created_at": null,
|
95
|
+
"display_name": "Claude 3.5 Sonnet",
|
96
|
+
"provider": "bedrock",
|
97
|
+
"context_window": 4096,
|
98
|
+
"max_tokens": 4096,
|
99
|
+
"type": "chat",
|
100
|
+
"family": "claude3_sonnet",
|
101
|
+
"supports_vision": true,
|
102
|
+
"supports_functions": true,
|
103
|
+
"supports_json_mode": true,
|
104
|
+
"input_price_per_million": 3.0,
|
105
|
+
"output_price_per_million": 15.0,
|
106
|
+
"metadata": {
|
107
|
+
"provider_name": "Anthropic",
|
108
|
+
"customizations_supported": [],
|
109
|
+
"inference_configurations": [
|
110
|
+
"PROVISIONED"
|
111
|
+
],
|
112
|
+
"response_streaming_supported": true,
|
113
|
+
"input_modalities": [
|
114
|
+
"TEXT",
|
115
|
+
"IMAGE"
|
116
|
+
],
|
117
|
+
"output_modalities": [
|
118
|
+
"TEXT"
|
119
|
+
]
|
120
|
+
}
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"id": "anthropic.claude-3-5-sonnet-20240620-v1:0:51k",
|
124
|
+
"created_at": null,
|
125
|
+
"display_name": "Claude 3.5 Sonnet",
|
126
|
+
"provider": "bedrock",
|
127
|
+
"context_window": 4096,
|
128
|
+
"max_tokens": 4096,
|
129
|
+
"type": "chat",
|
130
|
+
"family": "claude3_sonnet",
|
131
|
+
"supports_vision": true,
|
132
|
+
"supports_functions": true,
|
133
|
+
"supports_json_mode": true,
|
134
|
+
"input_price_per_million": 3.0,
|
135
|
+
"output_price_per_million": 15.0,
|
136
|
+
"metadata": {
|
137
|
+
"provider_name": "Anthropic",
|
138
|
+
"customizations_supported": [],
|
139
|
+
"inference_configurations": [
|
140
|
+
"PROVISIONED"
|
141
|
+
],
|
142
|
+
"response_streaming_supported": true,
|
143
|
+
"input_modalities": [
|
144
|
+
"TEXT",
|
145
|
+
"IMAGE"
|
146
|
+
],
|
147
|
+
"output_modalities": [
|
148
|
+
"TEXT"
|
149
|
+
]
|
150
|
+
}
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"id": "anthropic.claude-3-5-sonnet-20241022-v2:0",
|
154
|
+
"created_at": null,
|
155
|
+
"display_name": "Claude 3.5 Sonnet v2",
|
156
|
+
"provider": "bedrock",
|
157
|
+
"context_window": 4096,
|
158
|
+
"max_tokens": 4096,
|
159
|
+
"type": "chat",
|
160
|
+
"family": "claude3_sonnet",
|
161
|
+
"supports_vision": true,
|
162
|
+
"supports_functions": true,
|
163
|
+
"supports_json_mode": true,
|
164
|
+
"input_price_per_million": 3.0,
|
165
|
+
"output_price_per_million": 15.0,
|
166
|
+
"metadata": {
|
167
|
+
"provider_name": "Anthropic",
|
168
|
+
"customizations_supported": [],
|
169
|
+
"inference_configurations": [
|
170
|
+
"ON_DEMAND"
|
171
|
+
],
|
172
|
+
"response_streaming_supported": true,
|
173
|
+
"input_modalities": [
|
174
|
+
"TEXT",
|
175
|
+
"IMAGE"
|
176
|
+
],
|
177
|
+
"output_modalities": [
|
178
|
+
"TEXT"
|
179
|
+
]
|
180
|
+
}
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"id": "anthropic.claude-3-5-sonnet-20241022-v2:0:18k",
|
184
|
+
"created_at": null,
|
185
|
+
"display_name": "Claude 3.5 Sonnet v2",
|
186
|
+
"provider": "bedrock",
|
187
|
+
"context_window": 4096,
|
188
|
+
"max_tokens": 4096,
|
189
|
+
"type": "chat",
|
190
|
+
"family": "claude3_sonnet",
|
191
|
+
"supports_vision": true,
|
192
|
+
"supports_functions": true,
|
193
|
+
"supports_json_mode": true,
|
194
|
+
"input_price_per_million": 3.0,
|
195
|
+
"output_price_per_million": 15.0,
|
196
|
+
"metadata": {
|
197
|
+
"provider_name": "Anthropic",
|
198
|
+
"customizations_supported": [],
|
199
|
+
"inference_configurations": [
|
200
|
+
"PROVISIONED"
|
201
|
+
],
|
202
|
+
"response_streaming_supported": true,
|
203
|
+
"input_modalities": [
|
204
|
+
"TEXT",
|
205
|
+
"IMAGE"
|
206
|
+
],
|
207
|
+
"output_modalities": [
|
208
|
+
"TEXT"
|
209
|
+
]
|
210
|
+
}
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"id": "anthropic.claude-3-5-sonnet-20241022-v2:0:200k",
|
214
|
+
"created_at": null,
|
215
|
+
"display_name": "Claude 3.5 Sonnet v2",
|
216
|
+
"provider": "bedrock",
|
217
|
+
"context_window": 4096,
|
218
|
+
"max_tokens": 4096,
|
219
|
+
"type": "chat",
|
220
|
+
"family": "claude3_sonnet",
|
221
|
+
"supports_vision": true,
|
222
|
+
"supports_functions": true,
|
223
|
+
"supports_json_mode": true,
|
224
|
+
"input_price_per_million": 3.0,
|
225
|
+
"output_price_per_million": 15.0,
|
226
|
+
"metadata": {
|
227
|
+
"provider_name": "Anthropic",
|
228
|
+
"customizations_supported": [],
|
229
|
+
"inference_configurations": [
|
230
|
+
"PROVISIONED"
|
231
|
+
],
|
232
|
+
"response_streaming_supported": true,
|
233
|
+
"input_modalities": [
|
234
|
+
"TEXT",
|
235
|
+
"IMAGE"
|
236
|
+
],
|
237
|
+
"output_modalities": [
|
238
|
+
"TEXT"
|
239
|
+
]
|
240
|
+
}
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"id": "anthropic.claude-3-5-sonnet-20241022-v2:0:51k",
|
244
|
+
"created_at": null,
|
245
|
+
"display_name": "Claude 3.5 Sonnet v2",
|
246
|
+
"provider": "bedrock",
|
247
|
+
"context_window": 4096,
|
248
|
+
"max_tokens": 4096,
|
249
|
+
"type": "chat",
|
250
|
+
"family": "claude3_sonnet",
|
251
|
+
"supports_vision": true,
|
252
|
+
"supports_functions": true,
|
253
|
+
"supports_json_mode": true,
|
254
|
+
"input_price_per_million": 3.0,
|
255
|
+
"output_price_per_million": 15.0,
|
256
|
+
"metadata": {
|
257
|
+
"provider_name": "Anthropic",
|
258
|
+
"customizations_supported": [],
|
259
|
+
"inference_configurations": [
|
260
|
+
"PROVISIONED"
|
261
|
+
],
|
262
|
+
"response_streaming_supported": true,
|
263
|
+
"input_modalities": [
|
264
|
+
"TEXT",
|
265
|
+
"IMAGE"
|
266
|
+
],
|
267
|
+
"output_modalities": [
|
268
|
+
"TEXT"
|
269
|
+
]
|
270
|
+
}
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"id": "us.anthropic.claude-3-7-sonnet-20250219-v1:0",
|
274
|
+
"created_at": null,
|
275
|
+
"display_name": "Claude 3.7 Sonnet",
|
276
|
+
"provider": "bedrock",
|
277
|
+
"context_window": 4096,
|
278
|
+
"max_tokens": 4096,
|
279
|
+
"type": "chat",
|
280
|
+
"family": "claude3_sonnet",
|
281
|
+
"supports_vision": true,
|
282
|
+
"supports_functions": true,
|
283
|
+
"supports_json_mode": true,
|
284
|
+
"input_price_per_million": 3.0,
|
285
|
+
"output_price_per_million": 15.0,
|
286
|
+
"metadata": {
|
287
|
+
"provider_name": "Anthropic",
|
288
|
+
"customizations_supported": [],
|
289
|
+
"inference_configurations": [
|
290
|
+
"INFERENCE_PROFILE"
|
291
|
+
],
|
292
|
+
"response_streaming_supported": true,
|
293
|
+
"input_modalities": [
|
294
|
+
"TEXT",
|
295
|
+
"IMAGE"
|
296
|
+
],
|
297
|
+
"output_modalities": [
|
298
|
+
"TEXT"
|
299
|
+
]
|
300
|
+
}
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"id": "anthropic.claude-3-haiku-20240307-v1:0",
|
304
|
+
"created_at": null,
|
305
|
+
"display_name": "Claude 3 Haiku",
|
306
|
+
"provider": "bedrock",
|
307
|
+
"context_window": 200000,
|
308
|
+
"max_tokens": 4096,
|
309
|
+
"type": "chat",
|
310
|
+
"family": "claude3_haiku",
|
311
|
+
"supports_vision": true,
|
312
|
+
"supports_functions": true,
|
313
|
+
"supports_json_mode": true,
|
314
|
+
"input_price_per_million": 0.25,
|
315
|
+
"output_price_per_million": 1.25,
|
316
|
+
"metadata": {
|
317
|
+
"provider_name": "Anthropic",
|
318
|
+
"customizations_supported": [],
|
319
|
+
"inference_configurations": [
|
320
|
+
"ON_DEMAND"
|
321
|
+
],
|
322
|
+
"response_streaming_supported": true,
|
323
|
+
"input_modalities": [
|
324
|
+
"TEXT",
|
325
|
+
"IMAGE"
|
326
|
+
],
|
327
|
+
"output_modalities": [
|
328
|
+
"TEXT"
|
329
|
+
]
|
330
|
+
}
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"id": "anthropic.claude-3-haiku-20240307-v1:0:200k",
|
334
|
+
"created_at": null,
|
335
|
+
"display_name": "Claude 3 Haiku",
|
336
|
+
"provider": "bedrock",
|
337
|
+
"context_window": 200000,
|
338
|
+
"max_tokens": 4096,
|
339
|
+
"type": "chat",
|
340
|
+
"family": "claude3_haiku",
|
341
|
+
"supports_vision": true,
|
342
|
+
"supports_functions": true,
|
343
|
+
"supports_json_mode": true,
|
344
|
+
"input_price_per_million": 0.25,
|
345
|
+
"output_price_per_million": 1.25,
|
346
|
+
"metadata": {
|
347
|
+
"provider_name": "Anthropic",
|
348
|
+
"customizations_supported": [
|
349
|
+
"FINE_TUNING",
|
350
|
+
"DISTILLATION"
|
351
|
+
],
|
352
|
+
"inference_configurations": [
|
353
|
+
"PROVISIONED"
|
354
|
+
],
|
355
|
+
"response_streaming_supported": true,
|
356
|
+
"input_modalities": [
|
357
|
+
"TEXT",
|
358
|
+
"IMAGE"
|
359
|
+
],
|
360
|
+
"output_modalities": [
|
361
|
+
"TEXT"
|
362
|
+
]
|
363
|
+
}
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"id": "anthropic.claude-3-haiku-20240307-v1:0:48k",
|
367
|
+
"created_at": null,
|
368
|
+
"display_name": "Claude 3 Haiku",
|
369
|
+
"provider": "bedrock",
|
370
|
+
"context_window": 200000,
|
371
|
+
"max_tokens": 4096,
|
372
|
+
"type": "chat",
|
373
|
+
"family": "claude3_haiku",
|
374
|
+
"supports_vision": true,
|
375
|
+
"supports_functions": true,
|
376
|
+
"supports_json_mode": true,
|
377
|
+
"input_price_per_million": 0.25,
|
378
|
+
"output_price_per_million": 1.25,
|
379
|
+
"metadata": {
|
380
|
+
"provider_name": "Anthropic",
|
381
|
+
"customizations_supported": [],
|
382
|
+
"inference_configurations": [
|
383
|
+
"PROVISIONED"
|
384
|
+
],
|
385
|
+
"response_streaming_supported": true,
|
386
|
+
"input_modalities": [
|
387
|
+
"TEXT",
|
388
|
+
"IMAGE"
|
389
|
+
],
|
390
|
+
"output_modalities": [
|
391
|
+
"TEXT"
|
392
|
+
]
|
393
|
+
}
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"id": "anthropic.claude-3-opus-20240229-v1:0",
|
397
|
+
"created_at": null,
|
398
|
+
"display_name": "Claude 3 Opus",
|
399
|
+
"provider": "bedrock",
|
400
|
+
"context_window": 200000,
|
401
|
+
"max_tokens": 4096,
|
402
|
+
"type": "chat",
|
403
|
+
"family": "claude3_opus",
|
404
|
+
"supports_vision": true,
|
405
|
+
"supports_functions": true,
|
406
|
+
"supports_json_mode": true,
|
407
|
+
"input_price_per_million": 15.0,
|
408
|
+
"output_price_per_million": 75.0,
|
409
|
+
"metadata": {
|
410
|
+
"provider_name": "Anthropic",
|
411
|
+
"customizations_supported": [],
|
412
|
+
"inference_configurations": [
|
413
|
+
"ON_DEMAND"
|
414
|
+
],
|
415
|
+
"response_streaming_supported": true,
|
416
|
+
"input_modalities": [
|
417
|
+
"TEXT",
|
418
|
+
"IMAGE"
|
419
|
+
],
|
420
|
+
"output_modalities": [
|
421
|
+
"TEXT"
|
422
|
+
]
|
423
|
+
}
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"id": "anthropic.claude-3-opus-20240229-v1:0:12k",
|
427
|
+
"created_at": null,
|
428
|
+
"display_name": "Claude 3 Opus",
|
429
|
+
"provider": "bedrock",
|
430
|
+
"context_window": 200000,
|
431
|
+
"max_tokens": 4096,
|
432
|
+
"type": "chat",
|
433
|
+
"family": "claude3_opus",
|
434
|
+
"supports_vision": true,
|
435
|
+
"supports_functions": true,
|
436
|
+
"supports_json_mode": true,
|
437
|
+
"input_price_per_million": 15.0,
|
438
|
+
"output_price_per_million": 75.0,
|
439
|
+
"metadata": {
|
440
|
+
"provider_name": "Anthropic",
|
441
|
+
"customizations_supported": [],
|
442
|
+
"inference_configurations": [
|
443
|
+
"PROVISIONED"
|
444
|
+
],
|
445
|
+
"response_streaming_supported": true,
|
446
|
+
"input_modalities": [
|
447
|
+
"TEXT",
|
448
|
+
"IMAGE"
|
449
|
+
],
|
450
|
+
"output_modalities": [
|
451
|
+
"TEXT"
|
452
|
+
]
|
453
|
+
}
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"id": "anthropic.claude-3-opus-20240229-v1:0:200k",
|
457
|
+
"created_at": null,
|
458
|
+
"display_name": "Claude 3 Opus",
|
459
|
+
"provider": "bedrock",
|
460
|
+
"context_window": 200000,
|
461
|
+
"max_tokens": 4096,
|
462
|
+
"type": "chat",
|
463
|
+
"family": "claude3_opus",
|
464
|
+
"supports_vision": true,
|
465
|
+
"supports_functions": true,
|
466
|
+
"supports_json_mode": true,
|
467
|
+
"input_price_per_million": 15.0,
|
468
|
+
"output_price_per_million": 75.0,
|
469
|
+
"metadata": {
|
470
|
+
"provider_name": "Anthropic",
|
471
|
+
"customizations_supported": [],
|
472
|
+
"inference_configurations": [
|
473
|
+
"PROVISIONED"
|
474
|
+
],
|
475
|
+
"response_streaming_supported": true,
|
476
|
+
"input_modalities": [
|
477
|
+
"TEXT",
|
478
|
+
"IMAGE"
|
479
|
+
],
|
480
|
+
"output_modalities": [
|
481
|
+
"TEXT"
|
482
|
+
]
|
483
|
+
}
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"id": "anthropic.claude-3-opus-20240229-v1:0:28k",
|
487
|
+
"created_at": null,
|
488
|
+
"display_name": "Claude 3 Opus",
|
489
|
+
"provider": "bedrock",
|
490
|
+
"context_window": 200000,
|
491
|
+
"max_tokens": 4096,
|
492
|
+
"type": "chat",
|
493
|
+
"family": "claude3_opus",
|
494
|
+
"supports_vision": true,
|
495
|
+
"supports_functions": true,
|
496
|
+
"supports_json_mode": true,
|
497
|
+
"input_price_per_million": 15.0,
|
498
|
+
"output_price_per_million": 75.0,
|
499
|
+
"metadata": {
|
500
|
+
"provider_name": "Anthropic",
|
501
|
+
"customizations_supported": [],
|
502
|
+
"inference_configurations": [
|
503
|
+
"PROVISIONED"
|
504
|
+
],
|
505
|
+
"response_streaming_supported": true,
|
506
|
+
"input_modalities": [
|
507
|
+
"TEXT",
|
508
|
+
"IMAGE"
|
509
|
+
],
|
510
|
+
"output_modalities": [
|
511
|
+
"TEXT"
|
512
|
+
]
|
513
|
+
}
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"id": "anthropic.claude-3-sonnet-20240229-v1:0",
|
517
|
+
"created_at": null,
|
518
|
+
"display_name": "Claude 3 Sonnet",
|
519
|
+
"provider": "bedrock",
|
520
|
+
"context_window": 200000,
|
521
|
+
"max_tokens": 4096,
|
522
|
+
"type": "chat",
|
523
|
+
"family": "claude3_sonnet",
|
524
|
+
"supports_vision": true,
|
525
|
+
"supports_functions": true,
|
526
|
+
"supports_json_mode": true,
|
527
|
+
"input_price_per_million": 3.0,
|
528
|
+
"output_price_per_million": 15.0,
|
529
|
+
"metadata": {
|
530
|
+
"provider_name": "Anthropic",
|
531
|
+
"customizations_supported": [],
|
532
|
+
"inference_configurations": [
|
533
|
+
"ON_DEMAND"
|
534
|
+
],
|
535
|
+
"response_streaming_supported": true,
|
536
|
+
"input_modalities": [
|
537
|
+
"TEXT",
|
538
|
+
"IMAGE"
|
539
|
+
],
|
540
|
+
"output_modalities": [
|
541
|
+
"TEXT"
|
542
|
+
]
|
543
|
+
}
|
544
|
+
},
|
545
|
+
{
|
546
|
+
"id": "anthropic.claude-3-sonnet-20240229-v1:0:200k",
|
547
|
+
"created_at": null,
|
548
|
+
"display_name": "Claude 3 Sonnet",
|
549
|
+
"provider": "bedrock",
|
550
|
+
"context_window": 200000,
|
551
|
+
"max_tokens": 4096,
|
552
|
+
"type": "chat",
|
553
|
+
"family": "claude3_sonnet",
|
554
|
+
"supports_vision": true,
|
555
|
+
"supports_functions": true,
|
556
|
+
"supports_json_mode": true,
|
557
|
+
"input_price_per_million": 3.0,
|
558
|
+
"output_price_per_million": 15.0,
|
559
|
+
"metadata": {
|
560
|
+
"provider_name": "Anthropic",
|
561
|
+
"customizations_supported": [],
|
562
|
+
"inference_configurations": [
|
563
|
+
"PROVISIONED"
|
564
|
+
],
|
565
|
+
"response_streaming_supported": true,
|
566
|
+
"input_modalities": [
|
567
|
+
"TEXT",
|
568
|
+
"IMAGE"
|
569
|
+
],
|
570
|
+
"output_modalities": [
|
571
|
+
"TEXT"
|
572
|
+
]
|
573
|
+
}
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"id": "anthropic.claude-3-sonnet-20240229-v1:0:28k",
|
577
|
+
"created_at": null,
|
578
|
+
"display_name": "Claude 3 Sonnet",
|
579
|
+
"provider": "bedrock",
|
580
|
+
"context_window": 200000,
|
581
|
+
"max_tokens": 4096,
|
582
|
+
"type": "chat",
|
583
|
+
"family": "claude3_sonnet",
|
584
|
+
"supports_vision": true,
|
585
|
+
"supports_functions": true,
|
586
|
+
"supports_json_mode": true,
|
587
|
+
"input_price_per_million": 3.0,
|
588
|
+
"output_price_per_million": 15.0,
|
589
|
+
"metadata": {
|
590
|
+
"provider_name": "Anthropic",
|
591
|
+
"customizations_supported": [],
|
592
|
+
"inference_configurations": [
|
593
|
+
"PROVISIONED"
|
594
|
+
],
|
595
|
+
"response_streaming_supported": true,
|
596
|
+
"input_modalities": [
|
597
|
+
"TEXT",
|
598
|
+
"IMAGE"
|
599
|
+
],
|
600
|
+
"output_modalities": [
|
601
|
+
"TEXT"
|
602
|
+
]
|
603
|
+
}
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"id": "anthropic.claude-instant-v1",
|
607
|
+
"created_at": null,
|
608
|
+
"display_name": "Claude Instant",
|
609
|
+
"provider": "bedrock",
|
610
|
+
"context_window": 4096,
|
611
|
+
"max_tokens": 4096,
|
612
|
+
"type": "chat",
|
613
|
+
"family": "claude_instant",
|
614
|
+
"supports_vision": false,
|
615
|
+
"supports_functions": false,
|
616
|
+
"supports_json_mode": false,
|
617
|
+
"input_price_per_million": 0.8,
|
618
|
+
"output_price_per_million": 2.4,
|
619
|
+
"metadata": {
|
620
|
+
"provider_name": "Anthropic",
|
621
|
+
"customizations_supported": [],
|
622
|
+
"inference_configurations": [
|
623
|
+
"ON_DEMAND"
|
624
|
+
],
|
625
|
+
"response_streaming_supported": true,
|
626
|
+
"input_modalities": [
|
627
|
+
"TEXT"
|
628
|
+
],
|
629
|
+
"output_modalities": [
|
630
|
+
"TEXT"
|
631
|
+
]
|
632
|
+
}
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"id": "anthropic.claude-instant-v1:2:100k",
|
636
|
+
"created_at": null,
|
637
|
+
"display_name": "Claude Instant",
|
638
|
+
"provider": "bedrock",
|
639
|
+
"context_window": 4096,
|
640
|
+
"max_tokens": 4096,
|
641
|
+
"type": "chat",
|
642
|
+
"family": "claude_instant",
|
643
|
+
"supports_vision": false,
|
644
|
+
"supports_functions": false,
|
645
|
+
"supports_json_mode": false,
|
646
|
+
"input_price_per_million": 0.8,
|
647
|
+
"output_price_per_million": 2.4,
|
648
|
+
"metadata": {
|
649
|
+
"provider_name": "Anthropic",
|
650
|
+
"customizations_supported": [],
|
651
|
+
"inference_configurations": [
|
652
|
+
"PROVISIONED"
|
653
|
+
],
|
654
|
+
"response_streaming_supported": true,
|
655
|
+
"input_modalities": [
|
656
|
+
"TEXT"
|
657
|
+
],
|
658
|
+
"output_modalities": [
|
659
|
+
"TEXT"
|
660
|
+
]
|
661
|
+
}
|
662
|
+
},
|
663
|
+
{
|
664
|
+
"id": "anthropic.claude-v2",
|
665
|
+
"created_at": null,
|
666
|
+
"display_name": "Claude",
|
667
|
+
"provider": "bedrock",
|
668
|
+
"context_window": 4096,
|
669
|
+
"max_tokens": 4096,
|
670
|
+
"type": "chat",
|
671
|
+
"family": "claude2",
|
672
|
+
"supports_vision": false,
|
673
|
+
"supports_functions": false,
|
674
|
+
"supports_json_mode": false,
|
675
|
+
"input_price_per_million": 8.0,
|
676
|
+
"output_price_per_million": 24.0,
|
677
|
+
"metadata": {
|
678
|
+
"provider_name": "Anthropic",
|
679
|
+
"customizations_supported": [],
|
680
|
+
"inference_configurations": [
|
681
|
+
"ON_DEMAND"
|
682
|
+
],
|
683
|
+
"response_streaming_supported": true,
|
684
|
+
"input_modalities": [
|
685
|
+
"TEXT"
|
686
|
+
],
|
687
|
+
"output_modalities": [
|
688
|
+
"TEXT"
|
689
|
+
]
|
690
|
+
}
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"id": "anthropic.claude-v2:0:100k",
|
694
|
+
"created_at": null,
|
695
|
+
"display_name": "Claude",
|
696
|
+
"provider": "bedrock",
|
697
|
+
"context_window": 4096,
|
698
|
+
"max_tokens": 4096,
|
699
|
+
"type": "chat",
|
700
|
+
"family": "claude2",
|
701
|
+
"supports_vision": false,
|
702
|
+
"supports_functions": false,
|
703
|
+
"supports_json_mode": false,
|
704
|
+
"input_price_per_million": 8.0,
|
705
|
+
"output_price_per_million": 24.0,
|
706
|
+
"metadata": {
|
707
|
+
"provider_name": "Anthropic",
|
708
|
+
"customizations_supported": [],
|
709
|
+
"inference_configurations": [
|
710
|
+
"PROVISIONED"
|
711
|
+
],
|
712
|
+
"response_streaming_supported": true,
|
713
|
+
"input_modalities": [
|
714
|
+
"TEXT"
|
715
|
+
],
|
716
|
+
"output_modalities": [
|
717
|
+
"TEXT"
|
718
|
+
]
|
719
|
+
}
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"id": "anthropic.claude-v2:0:18k",
|
723
|
+
"created_at": null,
|
724
|
+
"display_name": "Claude",
|
725
|
+
"provider": "bedrock",
|
726
|
+
"context_window": 4096,
|
727
|
+
"max_tokens": 4096,
|
728
|
+
"type": "chat",
|
729
|
+
"family": "claude2",
|
730
|
+
"supports_vision": false,
|
731
|
+
"supports_functions": false,
|
732
|
+
"supports_json_mode": false,
|
733
|
+
"input_price_per_million": 8.0,
|
734
|
+
"output_price_per_million": 24.0,
|
735
|
+
"metadata": {
|
736
|
+
"provider_name": "Anthropic",
|
737
|
+
"customizations_supported": [],
|
738
|
+
"inference_configurations": [
|
739
|
+
"PROVISIONED"
|
740
|
+
],
|
741
|
+
"response_streaming_supported": true,
|
742
|
+
"input_modalities": [
|
743
|
+
"TEXT"
|
744
|
+
],
|
745
|
+
"output_modalities": [
|
746
|
+
"TEXT"
|
747
|
+
]
|
748
|
+
}
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"id": "anthropic.claude-v2:1",
|
752
|
+
"created_at": null,
|
753
|
+
"display_name": "Claude",
|
754
|
+
"provider": "bedrock",
|
755
|
+
"context_window": 4096,
|
756
|
+
"max_tokens": 4096,
|
757
|
+
"type": "chat",
|
758
|
+
"family": "claude2",
|
759
|
+
"supports_vision": false,
|
760
|
+
"supports_functions": false,
|
761
|
+
"supports_json_mode": false,
|
762
|
+
"input_price_per_million": 8.0,
|
763
|
+
"output_price_per_million": 24.0,
|
764
|
+
"metadata": {
|
765
|
+
"provider_name": "Anthropic",
|
766
|
+
"customizations_supported": [],
|
767
|
+
"inference_configurations": [
|
768
|
+
"ON_DEMAND"
|
769
|
+
],
|
770
|
+
"response_streaming_supported": true,
|
771
|
+
"input_modalities": [
|
772
|
+
"TEXT"
|
773
|
+
],
|
774
|
+
"output_modalities": [
|
775
|
+
"TEXT"
|
776
|
+
]
|
777
|
+
}
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"id": "anthropic.claude-v2:1:18k",
|
781
|
+
"created_at": null,
|
782
|
+
"display_name": "Claude",
|
783
|
+
"provider": "bedrock",
|
784
|
+
"context_window": 4096,
|
785
|
+
"max_tokens": 4096,
|
786
|
+
"type": "chat",
|
787
|
+
"family": "claude2",
|
788
|
+
"supports_vision": false,
|
789
|
+
"supports_functions": false,
|
790
|
+
"supports_json_mode": false,
|
791
|
+
"input_price_per_million": 8.0,
|
792
|
+
"output_price_per_million": 24.0,
|
793
|
+
"metadata": {
|
794
|
+
"provider_name": "Anthropic",
|
795
|
+
"customizations_supported": [],
|
796
|
+
"inference_configurations": [
|
797
|
+
"PROVISIONED"
|
798
|
+
],
|
799
|
+
"response_streaming_supported": true,
|
800
|
+
"input_modalities": [
|
801
|
+
"TEXT"
|
802
|
+
],
|
803
|
+
"output_modalities": [
|
804
|
+
"TEXT"
|
805
|
+
]
|
806
|
+
}
|
807
|
+
},
|
808
|
+
{
|
809
|
+
"id": "anthropic.claude-v2:1:200k",
|
810
|
+
"created_at": null,
|
811
|
+
"display_name": "Claude",
|
812
|
+
"provider": "bedrock",
|
813
|
+
"context_window": 4096,
|
814
|
+
"max_tokens": 4096,
|
815
|
+
"type": "chat",
|
816
|
+
"family": "claude2",
|
817
|
+
"supports_vision": false,
|
818
|
+
"supports_functions": false,
|
819
|
+
"supports_json_mode": false,
|
820
|
+
"input_price_per_million": 8.0,
|
821
|
+
"output_price_per_million": 24.0,
|
822
|
+
"metadata": {
|
823
|
+
"provider_name": "Anthropic",
|
824
|
+
"customizations_supported": [],
|
825
|
+
"inference_configurations": [
|
826
|
+
"PROVISIONED"
|
827
|
+
],
|
828
|
+
"response_streaming_supported": true,
|
829
|
+
"input_modalities": [
|
830
|
+
"TEXT"
|
831
|
+
],
|
832
|
+
"output_modalities": [
|
833
|
+
"TEXT"
|
834
|
+
]
|
835
|
+
}
|
836
|
+
},
|
2
837
|
{
|
3
838
|
"id": "aqa",
|
4
839
|
"created_at": null,
|
@@ -28,15 +863,15 @@
|
|
28
863
|
"created_at": "2023-08-21T18:16:55+02:00",
|
29
864
|
"display_name": "Babbage 002",
|
30
865
|
"provider": "openai",
|
31
|
-
"context_window":
|
866
|
+
"context_window": 4096,
|
32
867
|
"max_tokens": 16384,
|
33
868
|
"type": "chat",
|
34
869
|
"family": "babbage",
|
35
870
|
"supports_vision": false,
|
36
|
-
"supports_functions":
|
871
|
+
"supports_functions": false,
|
37
872
|
"supports_json_mode": false,
|
38
|
-
"input_price_per_million": 0.
|
39
|
-
"output_price_per_million":
|
873
|
+
"input_price_per_million": 0.4,
|
874
|
+
"output_price_per_million": 0.4,
|
40
875
|
"metadata": {
|
41
876
|
"object": "model",
|
42
877
|
"owned_by": "system"
|
@@ -75,12 +910,12 @@
|
|
75
910
|
"context_window": 128000,
|
76
911
|
"max_tokens": 16384,
|
77
912
|
"type": "chat",
|
78
|
-
"family": "
|
913
|
+
"family": "chatgpt4o",
|
79
914
|
"supports_vision": true,
|
80
|
-
"supports_functions":
|
81
|
-
"supports_json_mode":
|
82
|
-
"input_price_per_million": 0
|
83
|
-
"output_price_per_million":
|
915
|
+
"supports_functions": false,
|
916
|
+
"supports_json_mode": true,
|
917
|
+
"input_price_per_million": 5.0,
|
918
|
+
"output_price_per_million": 15.0,
|
84
919
|
"metadata": {
|
85
920
|
"object": "model",
|
86
921
|
"owned_by": "system"
|
@@ -236,11 +1071,11 @@
|
|
236
1071
|
"display_name": "DALL-E-2",
|
237
1072
|
"provider": "openai",
|
238
1073
|
"context_window": 4096,
|
239
|
-
"max_tokens":
|
1074
|
+
"max_tokens": 16384,
|
240
1075
|
"type": "image",
|
241
|
-
"family": "
|
1076
|
+
"family": "dall_e",
|
242
1077
|
"supports_vision": false,
|
243
|
-
"supports_functions":
|
1078
|
+
"supports_functions": false,
|
244
1079
|
"supports_json_mode": false,
|
245
1080
|
"input_price_per_million": 0.5,
|
246
1081
|
"output_price_per_million": 1.5,
|
@@ -255,11 +1090,11 @@
|
|
255
1090
|
"display_name": "DALL-E-3",
|
256
1091
|
"provider": "openai",
|
257
1092
|
"context_window": 4096,
|
258
|
-
"max_tokens":
|
1093
|
+
"max_tokens": 16384,
|
259
1094
|
"type": "image",
|
260
|
-
"family": "
|
1095
|
+
"family": "dall_e",
|
261
1096
|
"supports_vision": false,
|
262
|
-
"supports_functions":
|
1097
|
+
"supports_functions": false,
|
263
1098
|
"supports_json_mode": false,
|
264
1099
|
"input_price_per_million": 0.5,
|
265
1100
|
"output_price_per_million": 1.5,
|
@@ -273,15 +1108,15 @@
|
|
273
1108
|
"created_at": "2023-08-21T18:11:41+02:00",
|
274
1109
|
"display_name": "Davinci 002",
|
275
1110
|
"provider": "openai",
|
276
|
-
"context_window":
|
1111
|
+
"context_window": 4096,
|
277
1112
|
"max_tokens": 16384,
|
278
1113
|
"type": "chat",
|
279
1114
|
"family": "davinci",
|
280
1115
|
"supports_vision": false,
|
281
|
-
"supports_functions":
|
1116
|
+
"supports_functions": false,
|
282
1117
|
"supports_json_mode": false,
|
283
|
-
"input_price_per_million": 0
|
284
|
-
"output_price_per_million":
|
1118
|
+
"input_price_per_million": 2.0,
|
1119
|
+
"output_price_per_million": 2.0,
|
285
1120
|
"metadata": {
|
286
1121
|
"object": "model",
|
287
1122
|
"owned_by": "system"
|
@@ -382,12 +1217,12 @@
|
|
382
1217
|
"context_window": 12288,
|
383
1218
|
"max_tokens": 4096,
|
384
1219
|
"type": "chat",
|
385
|
-
"family": "
|
386
|
-
"supports_vision":
|
387
|
-
"supports_functions":
|
388
|
-
"supports_json_mode":
|
389
|
-
"input_price_per_million": 0.
|
390
|
-
"output_price_per_million":
|
1220
|
+
"family": "other",
|
1221
|
+
"supports_vision": true,
|
1222
|
+
"supports_functions": true,
|
1223
|
+
"supports_json_mode": true,
|
1224
|
+
"input_price_per_million": 0.075,
|
1225
|
+
"output_price_per_million": 0.3,
|
391
1226
|
"metadata": {
|
392
1227
|
"version": "001",
|
393
1228
|
"description": "The original Gemini 1.0 Pro Vision model version which was optimized for image understanding. Gemini 1.0 Pro Vision was deprecated on July 12, 2024. Move to a newer Gemini version.",
|
@@ -833,6 +1668,32 @@
|
|
833
1668
|
]
|
834
1669
|
}
|
835
1670
|
},
|
1671
|
+
{
|
1672
|
+
"id": "gemini-2.0-flash-exp-image-generation",
|
1673
|
+
"created_at": null,
|
1674
|
+
"display_name": "Gemini 2.0 Flash (Image Generation) Experimental",
|
1675
|
+
"provider": "gemini",
|
1676
|
+
"context_window": 1048576,
|
1677
|
+
"max_tokens": 8192,
|
1678
|
+
"type": "chat",
|
1679
|
+
"family": "gemini20_flash",
|
1680
|
+
"supports_vision": true,
|
1681
|
+
"supports_functions": true,
|
1682
|
+
"supports_json_mode": true,
|
1683
|
+
"input_price_per_million": 0.1,
|
1684
|
+
"output_price_per_million": 0.4,
|
1685
|
+
"metadata": {
|
1686
|
+
"version": "2.0",
|
1687
|
+
"description": "Gemini 2.0 Flash (Image Generation) Experimental",
|
1688
|
+
"input_token_limit": 1048576,
|
1689
|
+
"output_token_limit": 8192,
|
1690
|
+
"supported_generation_methods": [
|
1691
|
+
"generateContent",
|
1692
|
+
"countTokens",
|
1693
|
+
"bidiGenerateContent"
|
1694
|
+
]
|
1695
|
+
}
|
1696
|
+
},
|
836
1697
|
{
|
837
1698
|
"id": "gemini-2.0-flash-lite",
|
838
1699
|
"created_at": null,
|
@@ -1013,8 +1874,8 @@
|
|
1013
1874
|
"created_at": null,
|
1014
1875
|
"display_name": "Gemini 2.0 Pro Experimental",
|
1015
1876
|
"provider": "gemini",
|
1016
|
-
"context_window":
|
1017
|
-
"max_tokens":
|
1877
|
+
"context_window": 1048576,
|
1878
|
+
"max_tokens": 65536,
|
1018
1879
|
"type": "chat",
|
1019
1880
|
"family": "other",
|
1020
1881
|
"supports_vision": true,
|
@@ -1023,10 +1884,10 @@
|
|
1023
1884
|
"input_price_per_million": 0.075,
|
1024
1885
|
"output_price_per_million": 0.3,
|
1025
1886
|
"metadata": {
|
1026
|
-
"version": "2.
|
1027
|
-
"description": "Experimental release (
|
1028
|
-
"input_token_limit":
|
1029
|
-
"output_token_limit":
|
1887
|
+
"version": "2.5-exp-03-25",
|
1888
|
+
"description": "Experimental release (March 25th, 2025) of Gemini 2.5 Pro",
|
1889
|
+
"input_token_limit": 1048576,
|
1890
|
+
"output_token_limit": 65536,
|
1030
1891
|
"supported_generation_methods": [
|
1031
1892
|
"generateContent",
|
1032
1893
|
"countTokens"
|
@@ -1038,8 +1899,8 @@
|
|
1038
1899
|
"created_at": null,
|
1039
1900
|
"display_name": "Gemini 2.0 Pro Experimental 02-05",
|
1040
1901
|
"provider": "gemini",
|
1041
|
-
"context_window":
|
1042
|
-
"max_tokens":
|
1902
|
+
"context_window": 1048576,
|
1903
|
+
"max_tokens": 65536,
|
1043
1904
|
"type": "chat",
|
1044
1905
|
"family": "other",
|
1045
1906
|
"supports_vision": true,
|
@@ -1048,35 +1909,108 @@
|
|
1048
1909
|
"input_price_per_million": 0.075,
|
1049
1910
|
"output_price_per_million": 0.3,
|
1050
1911
|
"metadata": {
|
1051
|
-
"version": "2.
|
1052
|
-
"description": "Experimental release (
|
1053
|
-
"input_token_limit":
|
1054
|
-
"output_token_limit":
|
1912
|
+
"version": "2.5-exp-03-25",
|
1913
|
+
"description": "Experimental release (March 25th, 2025) of Gemini 2.5 Pro",
|
1914
|
+
"input_token_limit": 1048576,
|
1915
|
+
"output_token_limit": 65536,
|
1916
|
+
"supported_generation_methods": [
|
1917
|
+
"generateContent",
|
1918
|
+
"countTokens"
|
1919
|
+
]
|
1920
|
+
}
|
1921
|
+
},
|
1922
|
+
{
|
1923
|
+
"id": "gemini-2.5-pro-exp-03-25",
|
1924
|
+
"created_at": null,
|
1925
|
+
"display_name": "Gemini 2.5 Pro Experimental 03-25",
|
1926
|
+
"provider": "gemini",
|
1927
|
+
"context_window": 1048576,
|
1928
|
+
"max_tokens": 65536,
|
1929
|
+
"type": "chat",
|
1930
|
+
"family": "gemini25_pro_exp",
|
1931
|
+
"supports_vision": true,
|
1932
|
+
"supports_functions": true,
|
1933
|
+
"supports_json_mode": false,
|
1934
|
+
"input_price_per_million": 0.12,
|
1935
|
+
"output_price_per_million": 0.5,
|
1936
|
+
"metadata": {
|
1937
|
+
"version": "2.5-exp-03-25",
|
1938
|
+
"description": "Experimental release (March 25th, 2025) of Gemini 2.5 Pro",
|
1939
|
+
"input_token_limit": 1048576,
|
1940
|
+
"output_token_limit": 65536,
|
1055
1941
|
"supported_generation_methods": [
|
1056
1942
|
"generateContent",
|
1057
1943
|
"countTokens"
|
1058
1944
|
]
|
1059
1945
|
}
|
1060
1946
|
},
|
1947
|
+
{
|
1948
|
+
"id": "gemini-embedding-exp",
|
1949
|
+
"created_at": null,
|
1950
|
+
"display_name": "Gemini Embedding Experimental",
|
1951
|
+
"provider": "gemini",
|
1952
|
+
"context_window": 8192,
|
1953
|
+
"max_tokens": 1,
|
1954
|
+
"type": "embedding",
|
1955
|
+
"family": "gemini_embedding_exp",
|
1956
|
+
"supports_vision": true,
|
1957
|
+
"supports_functions": true,
|
1958
|
+
"supports_json_mode": true,
|
1959
|
+
"input_price_per_million": 0.002,
|
1960
|
+
"output_price_per_million": 0.004,
|
1961
|
+
"metadata": {
|
1962
|
+
"version": "exp-03-07",
|
1963
|
+
"description": "Obtain a distributed representation of a text.",
|
1964
|
+
"input_token_limit": 8192,
|
1965
|
+
"output_token_limit": 1,
|
1966
|
+
"supported_generation_methods": [
|
1967
|
+
"embedContent"
|
1968
|
+
]
|
1969
|
+
}
|
1970
|
+
},
|
1971
|
+
{
|
1972
|
+
"id": "gemini-embedding-exp-03-07",
|
1973
|
+
"created_at": null,
|
1974
|
+
"display_name": "Gemini Embedding Experimental 03-07",
|
1975
|
+
"provider": "gemini",
|
1976
|
+
"context_window": 8192,
|
1977
|
+
"max_tokens": 1,
|
1978
|
+
"type": "embedding",
|
1979
|
+
"family": "gemini_embedding_exp",
|
1980
|
+
"supports_vision": true,
|
1981
|
+
"supports_functions": true,
|
1982
|
+
"supports_json_mode": true,
|
1983
|
+
"input_price_per_million": 0.002,
|
1984
|
+
"output_price_per_million": 0.004,
|
1985
|
+
"metadata": {
|
1986
|
+
"version": "exp-03-07",
|
1987
|
+
"description": "Obtain a distributed representation of a text.",
|
1988
|
+
"input_token_limit": 8192,
|
1989
|
+
"output_token_limit": 1,
|
1990
|
+
"supported_generation_methods": [
|
1991
|
+
"embedContent"
|
1992
|
+
]
|
1993
|
+
}
|
1994
|
+
},
|
1061
1995
|
{
|
1062
1996
|
"id": "gemini-exp-1206",
|
1063
1997
|
"created_at": null,
|
1064
1998
|
"display_name": "Gemini Experimental 1206",
|
1065
1999
|
"provider": "gemini",
|
1066
|
-
"context_window":
|
1067
|
-
"max_tokens":
|
2000
|
+
"context_window": 1048576,
|
2001
|
+
"max_tokens": 65536,
|
1068
2002
|
"type": "chat",
|
1069
2003
|
"family": "other",
|
1070
|
-
"supports_vision":
|
1071
|
-
"supports_functions":
|
1072
|
-
"supports_json_mode":
|
2004
|
+
"supports_vision": true,
|
2005
|
+
"supports_functions": true,
|
2006
|
+
"supports_json_mode": true,
|
1073
2007
|
"input_price_per_million": 0.075,
|
1074
2008
|
"output_price_per_million": 0.3,
|
1075
2009
|
"metadata": {
|
1076
|
-
"version": "2.
|
1077
|
-
"description": "Experimental release (
|
1078
|
-
"input_token_limit":
|
1079
|
-
"output_token_limit":
|
2010
|
+
"version": "2.5-exp-03-25",
|
2011
|
+
"description": "Experimental release (March 25th, 2025) of Gemini 2.5 Pro",
|
2012
|
+
"input_token_limit": 1048576,
|
2013
|
+
"output_token_limit": 65536,
|
1080
2014
|
"supported_generation_methods": [
|
1081
2015
|
"generateContent",
|
1082
2016
|
"countTokens"
|
@@ -1092,9 +2026,9 @@
|
|
1092
2026
|
"max_tokens": 4096,
|
1093
2027
|
"type": "chat",
|
1094
2028
|
"family": "other",
|
1095
|
-
"supports_vision":
|
1096
|
-
"supports_functions":
|
1097
|
-
"supports_json_mode":
|
2029
|
+
"supports_vision": true,
|
2030
|
+
"supports_functions": true,
|
2031
|
+
"supports_json_mode": true,
|
1098
2032
|
"input_price_per_million": 0.075,
|
1099
2033
|
"output_price_per_million": 0.3,
|
1100
2034
|
"metadata": {
|
@@ -1108,18 +2042,43 @@
|
|
1108
2042
|
]
|
1109
2043
|
}
|
1110
2044
|
},
|
2045
|
+
{
|
2046
|
+
"id": "gemma-3-27b-it",
|
2047
|
+
"created_at": null,
|
2048
|
+
"display_name": "Gemma 3 27B",
|
2049
|
+
"provider": "gemini",
|
2050
|
+
"context_window": 131072,
|
2051
|
+
"max_tokens": 8192,
|
2052
|
+
"type": "chat",
|
2053
|
+
"family": "other",
|
2054
|
+
"supports_vision": false,
|
2055
|
+
"supports_functions": false,
|
2056
|
+
"supports_json_mode": false,
|
2057
|
+
"input_price_per_million": 0.075,
|
2058
|
+
"output_price_per_million": 0.3,
|
2059
|
+
"metadata": {
|
2060
|
+
"version": "001",
|
2061
|
+
"description": null,
|
2062
|
+
"input_token_limit": 131072,
|
2063
|
+
"output_token_limit": 8192,
|
2064
|
+
"supported_generation_methods": [
|
2065
|
+
"generateContent",
|
2066
|
+
"countTokens"
|
2067
|
+
]
|
2068
|
+
}
|
2069
|
+
},
|
1111
2070
|
{
|
1112
2071
|
"id": "gpt-3.5-turbo",
|
1113
2072
|
"created_at": "2023-02-28T19:56:42+01:00",
|
1114
|
-
"display_name": "GPT-3.5
|
2073
|
+
"display_name": "GPT-3.5 Turbo",
|
1115
2074
|
"provider": "openai",
|
1116
2075
|
"context_window": 16385,
|
1117
2076
|
"max_tokens": 4096,
|
1118
2077
|
"type": "chat",
|
1119
|
-
"family": "
|
2078
|
+
"family": "gpt35_turbo",
|
1120
2079
|
"supports_vision": false,
|
1121
|
-
"supports_functions":
|
1122
|
-
"supports_json_mode":
|
2080
|
+
"supports_functions": false,
|
2081
|
+
"supports_json_mode": false,
|
1123
2082
|
"input_price_per_million": 0.5,
|
1124
2083
|
"output_price_per_million": 1.5,
|
1125
2084
|
"metadata": {
|
@@ -1130,15 +2089,15 @@
|
|
1130
2089
|
{
|
1131
2090
|
"id": "gpt-3.5-turbo-0125",
|
1132
2091
|
"created_at": "2024-01-23T23:19:18+01:00",
|
1133
|
-
"display_name": "GPT-3.5
|
2092
|
+
"display_name": "GPT-3.5 Turbo 0125",
|
1134
2093
|
"provider": "openai",
|
1135
|
-
"context_window":
|
2094
|
+
"context_window": 16385,
|
1136
2095
|
"max_tokens": 4096,
|
1137
2096
|
"type": "chat",
|
1138
|
-
"family": "
|
2097
|
+
"family": "gpt35_turbo",
|
1139
2098
|
"supports_vision": false,
|
1140
|
-
"supports_functions":
|
1141
|
-
"supports_json_mode":
|
2099
|
+
"supports_functions": false,
|
2100
|
+
"supports_json_mode": false,
|
1142
2101
|
"input_price_per_million": 0.5,
|
1143
2102
|
"output_price_per_million": 1.5,
|
1144
2103
|
"metadata": {
|
@@ -1149,15 +2108,15 @@
|
|
1149
2108
|
{
|
1150
2109
|
"id": "gpt-3.5-turbo-1106",
|
1151
2110
|
"created_at": "2023-11-02T22:15:48+01:00",
|
1152
|
-
"display_name": "GPT-3.5
|
2111
|
+
"display_name": "GPT-3.5 Turbo 1106",
|
1153
2112
|
"provider": "openai",
|
1154
|
-
"context_window":
|
2113
|
+
"context_window": 16385,
|
1155
2114
|
"max_tokens": 4096,
|
1156
2115
|
"type": "chat",
|
1157
|
-
"family": "
|
2116
|
+
"family": "gpt35_turbo",
|
1158
2117
|
"supports_vision": false,
|
1159
|
-
"supports_functions":
|
1160
|
-
"supports_json_mode":
|
2118
|
+
"supports_functions": false,
|
2119
|
+
"supports_json_mode": false,
|
1161
2120
|
"input_price_per_million": 0.5,
|
1162
2121
|
"output_price_per_million": 1.5,
|
1163
2122
|
"metadata": {
|
@@ -1168,15 +2127,15 @@
|
|
1168
2127
|
{
|
1169
2128
|
"id": "gpt-3.5-turbo-16k",
|
1170
2129
|
"created_at": "2023-05-11T00:35:02+02:00",
|
1171
|
-
"display_name": "GPT-3.5
|
2130
|
+
"display_name": "GPT-3.5 Turbo 16k",
|
1172
2131
|
"provider": "openai",
|
1173
2132
|
"context_window": 16385,
|
1174
2133
|
"max_tokens": 4096,
|
1175
2134
|
"type": "chat",
|
1176
|
-
"family": "
|
1177
|
-
"supports_vision": false,
|
1178
|
-
"supports_functions":
|
1179
|
-
"supports_json_mode":
|
2135
|
+
"family": "gpt35_turbo",
|
2136
|
+
"supports_vision": false,
|
2137
|
+
"supports_functions": false,
|
2138
|
+
"supports_json_mode": false,
|
1180
2139
|
"input_price_per_million": 0.5,
|
1181
2140
|
"output_price_per_million": 1.5,
|
1182
2141
|
"metadata": {
|
@@ -1187,15 +2146,15 @@
|
|
1187
2146
|
{
|
1188
2147
|
"id": "gpt-3.5-turbo-instruct",
|
1189
2148
|
"created_at": "2023-08-24T20:23:47+02:00",
|
1190
|
-
"display_name": "GPT-3.5
|
2149
|
+
"display_name": "GPT-3.5 Turbo Instruct",
|
1191
2150
|
"provider": "openai",
|
1192
|
-
"context_window":
|
2151
|
+
"context_window": 16385,
|
1193
2152
|
"max_tokens": 4096,
|
1194
2153
|
"type": "chat",
|
1195
|
-
"family": "
|
2154
|
+
"family": "gpt35_turbo",
|
1196
2155
|
"supports_vision": false,
|
1197
2156
|
"supports_functions": false,
|
1198
|
-
"supports_json_mode":
|
2157
|
+
"supports_json_mode": false,
|
1199
2158
|
"input_price_per_million": 0.5,
|
1200
2159
|
"output_price_per_million": 1.5,
|
1201
2160
|
"metadata": {
|
@@ -1206,15 +2165,15 @@
|
|
1206
2165
|
{
|
1207
2166
|
"id": "gpt-3.5-turbo-instruct-0914",
|
1208
2167
|
"created_at": "2023-09-07T23:34:32+02:00",
|
1209
|
-
"display_name": "GPT-3.5
|
2168
|
+
"display_name": "GPT-3.5 Turbo Instruct 0914",
|
1210
2169
|
"provider": "openai",
|
1211
|
-
"context_window":
|
2170
|
+
"context_window": 16385,
|
1212
2171
|
"max_tokens": 4096,
|
1213
2172
|
"type": "chat",
|
1214
|
-
"family": "
|
2173
|
+
"family": "gpt35_turbo",
|
1215
2174
|
"supports_vision": false,
|
1216
2175
|
"supports_functions": false,
|
1217
|
-
"supports_json_mode":
|
2176
|
+
"supports_json_mode": false,
|
1218
2177
|
"input_price_per_million": 0.5,
|
1219
2178
|
"output_price_per_million": 1.5,
|
1220
2179
|
"metadata": {
|
@@ -1227,15 +2186,15 @@
|
|
1227
2186
|
"created_at": "2023-06-27T18:13:31+02:00",
|
1228
2187
|
"display_name": "GPT-4",
|
1229
2188
|
"provider": "openai",
|
1230
|
-
"context_window":
|
1231
|
-
"max_tokens":
|
2189
|
+
"context_window": 8192,
|
2190
|
+
"max_tokens": 8192,
|
1232
2191
|
"type": "chat",
|
1233
2192
|
"family": "gpt4",
|
1234
|
-
"supports_vision":
|
2193
|
+
"supports_vision": true,
|
1235
2194
|
"supports_functions": true,
|
1236
2195
|
"supports_json_mode": false,
|
1237
|
-
"input_price_per_million": 0
|
1238
|
-
"output_price_per_million":
|
2196
|
+
"input_price_per_million": 10.0,
|
2197
|
+
"output_price_per_million": 30.0,
|
1239
2198
|
"metadata": {
|
1240
2199
|
"object": "model",
|
1241
2200
|
"owned_by": "openai"
|
@@ -1244,15 +2203,15 @@
|
|
1244
2203
|
{
|
1245
2204
|
"id": "gpt-4-0125-preview",
|
1246
2205
|
"created_at": "2024-01-23T20:20:12+01:00",
|
1247
|
-
"display_name": "GPT-4
|
2206
|
+
"display_name": "GPT-4 0125 Preview",
|
1248
2207
|
"provider": "openai",
|
1249
|
-
"context_window":
|
1250
|
-
"max_tokens":
|
2208
|
+
"context_window": 4096,
|
2209
|
+
"max_tokens": 16384,
|
1251
2210
|
"type": "chat",
|
1252
|
-
"family": "
|
1253
|
-
"supports_vision":
|
1254
|
-
"supports_functions":
|
1255
|
-
"supports_json_mode":
|
2211
|
+
"family": "other",
|
2212
|
+
"supports_vision": false,
|
2213
|
+
"supports_functions": false,
|
2214
|
+
"supports_json_mode": false,
|
1256
2215
|
"input_price_per_million": 0.5,
|
1257
2216
|
"output_price_per_million": 1.5,
|
1258
2217
|
"metadata": {
|
@@ -1263,14 +2222,14 @@
|
|
1263
2222
|
{
|
1264
2223
|
"id": "gpt-4-0613",
|
1265
2224
|
"created_at": "2023-06-12T18:54:56+02:00",
|
1266
|
-
"display_name": "GPT-4
|
2225
|
+
"display_name": "GPT-4 0613",
|
1267
2226
|
"provider": "openai",
|
1268
|
-
"context_window":
|
1269
|
-
"max_tokens":
|
2227
|
+
"context_window": 4096,
|
2228
|
+
"max_tokens": 16384,
|
1270
2229
|
"type": "chat",
|
1271
|
-
"family": "
|
2230
|
+
"family": "other",
|
1272
2231
|
"supports_vision": false,
|
1273
|
-
"supports_functions":
|
2232
|
+
"supports_functions": false,
|
1274
2233
|
"supports_json_mode": false,
|
1275
2234
|
"input_price_per_million": 0.5,
|
1276
2235
|
"output_price_per_million": 1.5,
|
@@ -1282,15 +2241,15 @@
|
|
1282
2241
|
{
|
1283
2242
|
"id": "gpt-4-1106-preview",
|
1284
2243
|
"created_at": "2023-11-02T21:33:26+01:00",
|
1285
|
-
"display_name": "GPT-4
|
2244
|
+
"display_name": "GPT-4 1106 Preview",
|
1286
2245
|
"provider": "openai",
|
1287
2246
|
"context_window": 4096,
|
1288
|
-
"max_tokens":
|
2247
|
+
"max_tokens": 16384,
|
1289
2248
|
"type": "chat",
|
1290
|
-
"family": "
|
1291
|
-
"supports_vision":
|
1292
|
-
"supports_functions":
|
1293
|
-
"supports_json_mode":
|
2249
|
+
"family": "other",
|
2250
|
+
"supports_vision": false,
|
2251
|
+
"supports_functions": false,
|
2252
|
+
"supports_json_mode": false,
|
1294
2253
|
"input_price_per_million": 0.5,
|
1295
2254
|
"output_price_per_million": 1.5,
|
1296
2255
|
"metadata": {
|
@@ -1301,7 +2260,7 @@
|
|
1301
2260
|
{
|
1302
2261
|
"id": "gpt-4-turbo",
|
1303
2262
|
"created_at": "2024-04-06T01:57:21+02:00",
|
1304
|
-
"display_name": "GPT-4
|
2263
|
+
"display_name": "GPT-4 Turbo",
|
1305
2264
|
"provider": "openai",
|
1306
2265
|
"context_window": 128000,
|
1307
2266
|
"max_tokens": 4096,
|
@@ -1309,9 +2268,9 @@
|
|
1309
2268
|
"family": "gpt4_turbo",
|
1310
2269
|
"supports_vision": true,
|
1311
2270
|
"supports_functions": true,
|
1312
|
-
"supports_json_mode":
|
1313
|
-
"input_price_per_million": 0
|
1314
|
-
"output_price_per_million":
|
2271
|
+
"supports_json_mode": false,
|
2272
|
+
"input_price_per_million": 10.0,
|
2273
|
+
"output_price_per_million": 30.0,
|
1315
2274
|
"metadata": {
|
1316
2275
|
"object": "model",
|
1317
2276
|
"owned_by": "system"
|
@@ -1320,7 +2279,7 @@
|
|
1320
2279
|
{
|
1321
2280
|
"id": "gpt-4-turbo-2024-04-09",
|
1322
2281
|
"created_at": "2024-04-08T20:41:17+02:00",
|
1323
|
-
"display_name": "GPT-4
|
2282
|
+
"display_name": "GPT-4 Turbo 20240409",
|
1324
2283
|
"provider": "openai",
|
1325
2284
|
"context_window": 128000,
|
1326
2285
|
"max_tokens": 4096,
|
@@ -1328,9 +2287,9 @@
|
|
1328
2287
|
"family": "gpt4_turbo",
|
1329
2288
|
"supports_vision": true,
|
1330
2289
|
"supports_functions": true,
|
1331
|
-
"supports_json_mode":
|
1332
|
-
"input_price_per_million": 0
|
1333
|
-
"output_price_per_million":
|
2290
|
+
"supports_json_mode": false,
|
2291
|
+
"input_price_per_million": 10.0,
|
2292
|
+
"output_price_per_million": 30.0,
|
1334
2293
|
"metadata": {
|
1335
2294
|
"object": "model",
|
1336
2295
|
"owned_by": "system"
|
@@ -1339,7 +2298,7 @@
|
|
1339
2298
|
{
|
1340
2299
|
"id": "gpt-4-turbo-preview",
|
1341
2300
|
"created_at": "2024-01-23T20:22:57+01:00",
|
1342
|
-
"display_name": "GPT-4
|
2301
|
+
"display_name": "GPT-4 Turbo Preview",
|
1343
2302
|
"provider": "openai",
|
1344
2303
|
"context_window": 128000,
|
1345
2304
|
"max_tokens": 4096,
|
@@ -1347,9 +2306,9 @@
|
|
1347
2306
|
"family": "gpt4_turbo",
|
1348
2307
|
"supports_vision": true,
|
1349
2308
|
"supports_functions": true,
|
1350
|
-
"supports_json_mode":
|
1351
|
-
"input_price_per_million": 0
|
1352
|
-
"output_price_per_million":
|
2309
|
+
"supports_json_mode": false,
|
2310
|
+
"input_price_per_million": 10.0,
|
2311
|
+
"output_price_per_million": 30.0,
|
1353
2312
|
"metadata": {
|
1354
2313
|
"object": "model",
|
1355
2314
|
"owned_by": "system"
|
@@ -1360,15 +2319,15 @@
|
|
1360
2319
|
"created_at": "2025-02-27T03:24:19+01:00",
|
1361
2320
|
"display_name": "GPT-4.5 Preview",
|
1362
2321
|
"provider": "openai",
|
1363
|
-
"context_window":
|
2322
|
+
"context_window": 128000,
|
1364
2323
|
"max_tokens": 4096,
|
1365
2324
|
"type": "chat",
|
1366
|
-
"family": "
|
1367
|
-
"supports_vision":
|
2325
|
+
"family": "gpt4_turbo",
|
2326
|
+
"supports_vision": true,
|
1368
2327
|
"supports_functions": true,
|
1369
2328
|
"supports_json_mode": false,
|
1370
|
-
"input_price_per_million": 0
|
1371
|
-
"output_price_per_million":
|
2329
|
+
"input_price_per_million": 10.0,
|
2330
|
+
"output_price_per_million": 30.0,
|
1372
2331
|
"metadata": {
|
1373
2332
|
"object": "model",
|
1374
2333
|
"owned_by": "system"
|
@@ -1379,15 +2338,15 @@
|
|
1379
2338
|
"created_at": "2025-02-27T03:28:24+01:00",
|
1380
2339
|
"display_name": "GPT-4.5 Preview 20250227",
|
1381
2340
|
"provider": "openai",
|
1382
|
-
"context_window":
|
2341
|
+
"context_window": 128000,
|
1383
2342
|
"max_tokens": 4096,
|
1384
2343
|
"type": "chat",
|
1385
|
-
"family": "
|
1386
|
-
"supports_vision":
|
2344
|
+
"family": "gpt4_turbo",
|
2345
|
+
"supports_vision": true,
|
1387
2346
|
"supports_functions": true,
|
1388
2347
|
"supports_json_mode": false,
|
1389
|
-
"input_price_per_million": 0
|
1390
|
-
"output_price_per_million":
|
2348
|
+
"input_price_per_million": 10.0,
|
2349
|
+
"output_price_per_million": 30.0,
|
1391
2350
|
"metadata": {
|
1392
2351
|
"object": "model",
|
1393
2352
|
"owned_by": "system"
|
@@ -1404,9 +2363,9 @@
|
|
1404
2363
|
"family": "gpt4o",
|
1405
2364
|
"supports_vision": true,
|
1406
2365
|
"supports_functions": true,
|
1407
|
-
"supports_json_mode":
|
1408
|
-
"input_price_per_million":
|
1409
|
-
"output_price_per_million":
|
2366
|
+
"supports_json_mode": true,
|
2367
|
+
"input_price_per_million": 2.5,
|
2368
|
+
"output_price_per_million": 10.0,
|
1410
2369
|
"metadata": {
|
1411
2370
|
"object": "model",
|
1412
2371
|
"owned_by": "system"
|
@@ -1423,9 +2382,9 @@
|
|
1423
2382
|
"family": "gpt4o",
|
1424
2383
|
"supports_vision": true,
|
1425
2384
|
"supports_functions": true,
|
1426
|
-
"supports_json_mode":
|
1427
|
-
"input_price_per_million":
|
1428
|
-
"output_price_per_million":
|
2385
|
+
"supports_json_mode": true,
|
2386
|
+
"input_price_per_million": 2.5,
|
2387
|
+
"output_price_per_million": 10.0,
|
1429
2388
|
"metadata": {
|
1430
2389
|
"object": "model",
|
1431
2390
|
"owned_by": "system"
|
@@ -1442,9 +2401,9 @@
|
|
1442
2401
|
"family": "gpt4o",
|
1443
2402
|
"supports_vision": true,
|
1444
2403
|
"supports_functions": true,
|
1445
|
-
"supports_json_mode":
|
1446
|
-
"input_price_per_million":
|
1447
|
-
"output_price_per_million":
|
2404
|
+
"supports_json_mode": true,
|
2405
|
+
"input_price_per_million": 2.5,
|
2406
|
+
"output_price_per_million": 10.0,
|
1448
2407
|
"metadata": {
|
1449
2408
|
"object": "model",
|
1450
2409
|
"owned_by": "system"
|
@@ -1461,9 +2420,9 @@
|
|
1461
2420
|
"family": "gpt4o",
|
1462
2421
|
"supports_vision": true,
|
1463
2422
|
"supports_functions": true,
|
1464
|
-
"supports_json_mode":
|
1465
|
-
"input_price_per_million":
|
1466
|
-
"output_price_per_million":
|
2423
|
+
"supports_json_mode": true,
|
2424
|
+
"input_price_per_million": 2.5,
|
2425
|
+
"output_price_per_million": 10.0,
|
1467
2426
|
"metadata": {
|
1468
2427
|
"object": "model",
|
1469
2428
|
"owned_by": "system"
|
@@ -1478,11 +2437,11 @@
|
|
1478
2437
|
"max_tokens": 16384,
|
1479
2438
|
"type": "chat",
|
1480
2439
|
"family": "gpt4o_audio",
|
1481
|
-
"supports_vision":
|
1482
|
-
"supports_functions":
|
2440
|
+
"supports_vision": false,
|
2441
|
+
"supports_functions": false,
|
1483
2442
|
"supports_json_mode": false,
|
1484
|
-
"input_price_per_million":
|
1485
|
-
"output_price_per_million":
|
2443
|
+
"input_price_per_million": 2.5,
|
2444
|
+
"output_price_per_million": 10.0,
|
1486
2445
|
"metadata": {
|
1487
2446
|
"object": "model",
|
1488
2447
|
"owned_by": "system"
|
@@ -1497,11 +2456,11 @@
|
|
1497
2456
|
"max_tokens": 16384,
|
1498
2457
|
"type": "chat",
|
1499
2458
|
"family": "gpt4o_audio",
|
1500
|
-
"supports_vision":
|
1501
|
-
"supports_functions":
|
2459
|
+
"supports_vision": false,
|
2460
|
+
"supports_functions": false,
|
1502
2461
|
"supports_json_mode": false,
|
1503
|
-
"input_price_per_million":
|
1504
|
-
"output_price_per_million":
|
2462
|
+
"input_price_per_million": 2.5,
|
2463
|
+
"output_price_per_million": 10.0,
|
1505
2464
|
"metadata": {
|
1506
2465
|
"object": "model",
|
1507
2466
|
"owned_by": "system"
|
@@ -1516,11 +2475,11 @@
|
|
1516
2475
|
"max_tokens": 16384,
|
1517
2476
|
"type": "chat",
|
1518
2477
|
"family": "gpt4o_audio",
|
1519
|
-
"supports_vision":
|
1520
|
-
"supports_functions":
|
2478
|
+
"supports_vision": false,
|
2479
|
+
"supports_functions": false,
|
1521
2480
|
"supports_json_mode": false,
|
1522
|
-
"input_price_per_million":
|
1523
|
-
"output_price_per_million":
|
2481
|
+
"input_price_per_million": 2.5,
|
2482
|
+
"output_price_per_million": 10.0,
|
1524
2483
|
"metadata": {
|
1525
2484
|
"object": "model",
|
1526
2485
|
"owned_by": "system"
|
@@ -1537,9 +2496,9 @@
|
|
1537
2496
|
"family": "gpt4o_mini",
|
1538
2497
|
"supports_vision": true,
|
1539
2498
|
"supports_functions": true,
|
1540
|
-
"supports_json_mode":
|
1541
|
-
"input_price_per_million": 0.
|
1542
|
-
"output_price_per_million":
|
2499
|
+
"supports_json_mode": true,
|
2500
|
+
"input_price_per_million": 0.15,
|
2501
|
+
"output_price_per_million": 0.6,
|
1543
2502
|
"metadata": {
|
1544
2503
|
"object": "model",
|
1545
2504
|
"owned_by": "system"
|
@@ -1556,9 +2515,9 @@
|
|
1556
2515
|
"family": "gpt4o_mini",
|
1557
2516
|
"supports_vision": true,
|
1558
2517
|
"supports_functions": true,
|
1559
|
-
"supports_json_mode":
|
1560
|
-
"input_price_per_million": 0.
|
1561
|
-
"output_price_per_million":
|
2518
|
+
"supports_json_mode": true,
|
2519
|
+
"input_price_per_million": 0.15,
|
2520
|
+
"output_price_per_million": 0.6,
|
1562
2521
|
"metadata": {
|
1563
2522
|
"object": "model",
|
1564
2523
|
"owned_by": "system"
|
@@ -1573,11 +2532,11 @@
|
|
1573
2532
|
"max_tokens": 16384,
|
1574
2533
|
"type": "chat",
|
1575
2534
|
"family": "gpt4o_mini_audio",
|
1576
|
-
"supports_vision":
|
1577
|
-
"supports_functions":
|
2535
|
+
"supports_vision": false,
|
2536
|
+
"supports_functions": false,
|
1578
2537
|
"supports_json_mode": false,
|
1579
|
-
"input_price_per_million": 0.
|
1580
|
-
"output_price_per_million":
|
2538
|
+
"input_price_per_million": 0.15,
|
2539
|
+
"output_price_per_million": 0.6,
|
1581
2540
|
"metadata": {
|
1582
2541
|
"object": "model",
|
1583
2542
|
"owned_by": "system"
|
@@ -1592,106 +2551,239 @@
|
|
1592
2551
|
"max_tokens": 16384,
|
1593
2552
|
"type": "chat",
|
1594
2553
|
"family": "gpt4o_mini_audio",
|
1595
|
-
"supports_vision":
|
1596
|
-
"supports_functions":
|
2554
|
+
"supports_vision": false,
|
2555
|
+
"supports_functions": false,
|
2556
|
+
"supports_json_mode": false,
|
2557
|
+
"input_price_per_million": 0.15,
|
2558
|
+
"output_price_per_million": 0.6,
|
2559
|
+
"metadata": {
|
2560
|
+
"object": "model",
|
2561
|
+
"owned_by": "system"
|
2562
|
+
}
|
2563
|
+
},
|
2564
|
+
{
|
2565
|
+
"id": "gpt-4o-mini-realtime-preview",
|
2566
|
+
"created_at": "2024-12-16T23:16:20+01:00",
|
2567
|
+
"display_name": "GPT-4o-Mini Realtime Preview",
|
2568
|
+
"provider": "openai",
|
2569
|
+
"context_window": 128000,
|
2570
|
+
"max_tokens": 4096,
|
2571
|
+
"type": "chat",
|
2572
|
+
"family": "gpt4o_mini_realtime",
|
2573
|
+
"supports_vision": false,
|
2574
|
+
"supports_functions": false,
|
2575
|
+
"supports_json_mode": false,
|
2576
|
+
"input_price_per_million": 0.6,
|
2577
|
+
"output_price_per_million": 2.4,
|
2578
|
+
"metadata": {
|
2579
|
+
"object": "model",
|
2580
|
+
"owned_by": "system"
|
2581
|
+
}
|
2582
|
+
},
|
2583
|
+
{
|
2584
|
+
"id": "gpt-4o-mini-realtime-preview-2024-12-17",
|
2585
|
+
"created_at": "2024-12-13T18:56:41+01:00",
|
2586
|
+
"display_name": "GPT-4o-Mini Realtime Preview 20241217",
|
2587
|
+
"provider": "openai",
|
2588
|
+
"context_window": 128000,
|
2589
|
+
"max_tokens": 4096,
|
2590
|
+
"type": "chat",
|
2591
|
+
"family": "gpt4o_mini_realtime",
|
2592
|
+
"supports_vision": false,
|
2593
|
+
"supports_functions": false,
|
2594
|
+
"supports_json_mode": false,
|
2595
|
+
"input_price_per_million": 0.6,
|
2596
|
+
"output_price_per_million": 2.4,
|
2597
|
+
"metadata": {
|
2598
|
+
"object": "model",
|
2599
|
+
"owned_by": "system"
|
2600
|
+
}
|
2601
|
+
},
|
2602
|
+
{
|
2603
|
+
"id": "gpt-4o-mini-search-preview",
|
2604
|
+
"created_at": "2025-03-08T00:46:01+01:00",
|
2605
|
+
"display_name": "GPT-4o-Mini Search Preview",
|
2606
|
+
"provider": "openai",
|
2607
|
+
"context_window": 4096,
|
2608
|
+
"max_tokens": 16384,
|
2609
|
+
"type": "chat",
|
2610
|
+
"family": "other",
|
2611
|
+
"supports_vision": false,
|
2612
|
+
"supports_functions": false,
|
2613
|
+
"supports_json_mode": false,
|
2614
|
+
"input_price_per_million": 0.5,
|
2615
|
+
"output_price_per_million": 1.5,
|
2616
|
+
"metadata": {
|
2617
|
+
"object": "model",
|
2618
|
+
"owned_by": "system"
|
2619
|
+
}
|
2620
|
+
},
|
2621
|
+
{
|
2622
|
+
"id": "gpt-4o-mini-search-preview-2025-03-11",
|
2623
|
+
"created_at": "2025-03-08T00:40:58+01:00",
|
2624
|
+
"display_name": "GPT-4o-Mini Search Preview 20250311",
|
2625
|
+
"provider": "openai",
|
2626
|
+
"context_window": 4096,
|
2627
|
+
"max_tokens": 16384,
|
2628
|
+
"type": "chat",
|
2629
|
+
"family": "other",
|
2630
|
+
"supports_vision": false,
|
2631
|
+
"supports_functions": false,
|
2632
|
+
"supports_json_mode": false,
|
2633
|
+
"input_price_per_million": 0.5,
|
2634
|
+
"output_price_per_million": 1.5,
|
2635
|
+
"metadata": {
|
2636
|
+
"object": "model",
|
2637
|
+
"owned_by": "system"
|
2638
|
+
}
|
2639
|
+
},
|
2640
|
+
{
|
2641
|
+
"id": "gpt-4o-mini-transcribe",
|
2642
|
+
"created_at": "2025-03-15T20:56:36+01:00",
|
2643
|
+
"display_name": "GPT-4o-Mini Transcribe",
|
2644
|
+
"provider": "openai",
|
2645
|
+
"context_window": 16000,
|
2646
|
+
"max_tokens": 2000,
|
2647
|
+
"type": "audio",
|
2648
|
+
"family": "gpt4o_mini_transcribe",
|
2649
|
+
"supports_vision": false,
|
2650
|
+
"supports_functions": false,
|
2651
|
+
"supports_json_mode": false,
|
2652
|
+
"input_price_per_million": 1.25,
|
2653
|
+
"output_price_per_million": 5.0,
|
2654
|
+
"metadata": {
|
2655
|
+
"object": "model",
|
2656
|
+
"owned_by": "system"
|
2657
|
+
}
|
2658
|
+
},
|
2659
|
+
{
|
2660
|
+
"id": "gpt-4o-mini-tts",
|
2661
|
+
"created_at": "2025-03-19T18:05:59+01:00",
|
2662
|
+
"display_name": "GPT-4o-Mini Tts",
|
2663
|
+
"provider": "openai",
|
2664
|
+
"context_window": null,
|
2665
|
+
"max_tokens": null,
|
2666
|
+
"type": "audio",
|
2667
|
+
"family": "gpt4o_mini_tts",
|
2668
|
+
"supports_vision": false,
|
2669
|
+
"supports_functions": false,
|
2670
|
+
"supports_json_mode": false,
|
2671
|
+
"input_price_per_million": 0.6,
|
2672
|
+
"output_price_per_million": 12.0,
|
2673
|
+
"metadata": {
|
2674
|
+
"object": "model",
|
2675
|
+
"owned_by": "system"
|
2676
|
+
}
|
2677
|
+
},
|
2678
|
+
{
|
2679
|
+
"id": "gpt-4o-realtime-preview",
|
2680
|
+
"created_at": "2024-09-30T03:33:18+02:00",
|
2681
|
+
"display_name": "GPT-4o-Realtime Preview",
|
2682
|
+
"provider": "openai",
|
2683
|
+
"context_window": 128000,
|
2684
|
+
"max_tokens": 4096,
|
2685
|
+
"type": "chat",
|
2686
|
+
"family": "gpt4o_realtime",
|
2687
|
+
"supports_vision": false,
|
2688
|
+
"supports_functions": false,
|
1597
2689
|
"supports_json_mode": false,
|
1598
|
-
"input_price_per_million": 0
|
1599
|
-
"output_price_per_million":
|
2690
|
+
"input_price_per_million": 5.0,
|
2691
|
+
"output_price_per_million": 20.0,
|
1600
2692
|
"metadata": {
|
1601
2693
|
"object": "model",
|
1602
2694
|
"owned_by": "system"
|
1603
2695
|
}
|
1604
2696
|
},
|
1605
2697
|
{
|
1606
|
-
"id": "gpt-4o-
|
1607
|
-
"created_at": "2024-
|
1608
|
-
"display_name": "GPT-4o-
|
2698
|
+
"id": "gpt-4o-realtime-preview-2024-10-01",
|
2699
|
+
"created_at": "2024-09-24T00:49:26+02:00",
|
2700
|
+
"display_name": "GPT-4o-Realtime Preview 20241001",
|
1609
2701
|
"provider": "openai",
|
1610
2702
|
"context_window": 128000,
|
1611
|
-
"max_tokens":
|
2703
|
+
"max_tokens": 4096,
|
1612
2704
|
"type": "chat",
|
1613
|
-
"family": "
|
1614
|
-
"supports_vision":
|
1615
|
-
"supports_functions":
|
2705
|
+
"family": "gpt4o_realtime",
|
2706
|
+
"supports_vision": false,
|
2707
|
+
"supports_functions": false,
|
1616
2708
|
"supports_json_mode": false,
|
1617
|
-
"input_price_per_million": 0
|
1618
|
-
"output_price_per_million":
|
2709
|
+
"input_price_per_million": 5.0,
|
2710
|
+
"output_price_per_million": 20.0,
|
1619
2711
|
"metadata": {
|
1620
2712
|
"object": "model",
|
1621
2713
|
"owned_by": "system"
|
1622
2714
|
}
|
1623
2715
|
},
|
1624
2716
|
{
|
1625
|
-
"id": "gpt-4o-
|
1626
|
-
"created_at": "2024-12-
|
1627
|
-
"display_name": "GPT-4o-
|
2717
|
+
"id": "gpt-4o-realtime-preview-2024-12-17",
|
2718
|
+
"created_at": "2024-12-11T20:30:30+01:00",
|
2719
|
+
"display_name": "GPT-4o-Realtime Preview 20241217",
|
1628
2720
|
"provider": "openai",
|
1629
2721
|
"context_window": 128000,
|
1630
|
-
"max_tokens":
|
2722
|
+
"max_tokens": 4096,
|
1631
2723
|
"type": "chat",
|
1632
|
-
"family": "
|
1633
|
-
"supports_vision":
|
1634
|
-
"supports_functions":
|
2724
|
+
"family": "gpt4o_realtime",
|
2725
|
+
"supports_vision": false,
|
2726
|
+
"supports_functions": false,
|
1635
2727
|
"supports_json_mode": false,
|
1636
|
-
"input_price_per_million": 0
|
1637
|
-
"output_price_per_million":
|
2728
|
+
"input_price_per_million": 5.0,
|
2729
|
+
"output_price_per_million": 20.0,
|
1638
2730
|
"metadata": {
|
1639
2731
|
"object": "model",
|
1640
2732
|
"owned_by": "system"
|
1641
2733
|
}
|
1642
2734
|
},
|
1643
2735
|
{
|
1644
|
-
"id": "gpt-4o-
|
1645
|
-
"created_at": "
|
1646
|
-
"display_name": "GPT-4o
|
2736
|
+
"id": "gpt-4o-search-preview",
|
2737
|
+
"created_at": "2025-03-08T00:05:20+01:00",
|
2738
|
+
"display_name": "GPT-4o Search Preview",
|
1647
2739
|
"provider": "openai",
|
1648
2740
|
"context_window": 128000,
|
1649
2741
|
"max_tokens": 16384,
|
1650
2742
|
"type": "chat",
|
1651
|
-
"family": "
|
2743
|
+
"family": "gpt4o_search",
|
1652
2744
|
"supports_vision": true,
|
1653
|
-
"supports_functions":
|
2745
|
+
"supports_functions": false,
|
1654
2746
|
"supports_json_mode": false,
|
1655
|
-
"input_price_per_million":
|
1656
|
-
"output_price_per_million":
|
2747
|
+
"input_price_per_million": 2.5,
|
2748
|
+
"output_price_per_million": 10.0,
|
1657
2749
|
"metadata": {
|
1658
2750
|
"object": "model",
|
1659
2751
|
"owned_by": "system"
|
1660
2752
|
}
|
1661
2753
|
},
|
1662
2754
|
{
|
1663
|
-
"id": "gpt-4o-
|
1664
|
-
"created_at": "
|
1665
|
-
"display_name": "GPT-4o
|
2755
|
+
"id": "gpt-4o-search-preview-2025-03-11",
|
2756
|
+
"created_at": "2025-03-07T23:56:10+01:00",
|
2757
|
+
"display_name": "GPT-4o Search Preview 20250311",
|
1666
2758
|
"provider": "openai",
|
1667
2759
|
"context_window": 128000,
|
1668
2760
|
"max_tokens": 16384,
|
1669
2761
|
"type": "chat",
|
1670
|
-
"family": "
|
2762
|
+
"family": "gpt4o_search",
|
1671
2763
|
"supports_vision": true,
|
1672
|
-
"supports_functions":
|
2764
|
+
"supports_functions": false,
|
1673
2765
|
"supports_json_mode": false,
|
1674
|
-
"input_price_per_million":
|
1675
|
-
"output_price_per_million":
|
2766
|
+
"input_price_per_million": 2.5,
|
2767
|
+
"output_price_per_million": 10.0,
|
1676
2768
|
"metadata": {
|
1677
2769
|
"object": "model",
|
1678
2770
|
"owned_by": "system"
|
1679
2771
|
}
|
1680
2772
|
},
|
1681
2773
|
{
|
1682
|
-
"id": "gpt-4o-
|
1683
|
-
"created_at": "
|
1684
|
-
"display_name": "GPT-4o-
|
2774
|
+
"id": "gpt-4o-transcribe",
|
2775
|
+
"created_at": "2025-03-15T20:54:23+01:00",
|
2776
|
+
"display_name": "GPT-4o-Transcribe",
|
1685
2777
|
"provider": "openai",
|
1686
2778
|
"context_window": 128000,
|
1687
2779
|
"max_tokens": 16384,
|
1688
|
-
"type": "
|
1689
|
-
"family": "
|
1690
|
-
"supports_vision":
|
1691
|
-
"supports_functions":
|
2780
|
+
"type": "audio",
|
2781
|
+
"family": "gpt4o_transcribe",
|
2782
|
+
"supports_vision": false,
|
2783
|
+
"supports_functions": false,
|
1692
2784
|
"supports_json_mode": false,
|
1693
|
-
"input_price_per_million":
|
1694
|
-
"output_price_per_million":
|
2785
|
+
"input_price_per_million": 2.5,
|
2786
|
+
"output_price_per_million": 10.0,
|
1695
2787
|
"metadata": {
|
1696
2788
|
"object": "model",
|
1697
2789
|
"owned_by": "system"
|
@@ -1705,8 +2797,8 @@
|
|
1705
2797
|
"context_window": 480,
|
1706
2798
|
"max_tokens": 8192,
|
1707
2799
|
"type": "image",
|
1708
|
-
"family": "
|
1709
|
-
"supports_vision":
|
2800
|
+
"family": "imagen3",
|
2801
|
+
"supports_vision": true,
|
1710
2802
|
"supports_functions": false,
|
1711
2803
|
"supports_json_mode": false,
|
1712
2804
|
"input_price_per_million": 0.075,
|
@@ -1730,9 +2822,9 @@
|
|
1730
2822
|
"max_tokens": 8192,
|
1731
2823
|
"type": "chat",
|
1732
2824
|
"family": "other",
|
1733
|
-
"supports_vision":
|
1734
|
-
"supports_functions":
|
1735
|
-
"supports_json_mode":
|
2825
|
+
"supports_vision": true,
|
2826
|
+
"supports_functions": true,
|
2827
|
+
"supports_json_mode": true,
|
1736
2828
|
"input_price_per_million": 0.075,
|
1737
2829
|
"output_price_per_million": 0.3,
|
1738
2830
|
"metadata": {
|
@@ -1746,20 +2838,58 @@
|
|
1746
2838
|
]
|
1747
2839
|
}
|
1748
2840
|
},
|
2841
|
+
{
|
2842
|
+
"id": "o1",
|
2843
|
+
"created_at": "2024-12-16T20:03:36+01:00",
|
2844
|
+
"display_name": "O1",
|
2845
|
+
"provider": "openai",
|
2846
|
+
"context_window": 200000,
|
2847
|
+
"max_tokens": 100000,
|
2848
|
+
"type": "chat",
|
2849
|
+
"family": "o1",
|
2850
|
+
"supports_vision": true,
|
2851
|
+
"supports_functions": true,
|
2852
|
+
"supports_json_mode": true,
|
2853
|
+
"input_price_per_million": 15.0,
|
2854
|
+
"output_price_per_million": 60.0,
|
2855
|
+
"metadata": {
|
2856
|
+
"object": "model",
|
2857
|
+
"owned_by": "system"
|
2858
|
+
}
|
2859
|
+
},
|
2860
|
+
{
|
2861
|
+
"id": "o1-2024-12-17",
|
2862
|
+
"created_at": "2024-12-16T06:29:36+01:00",
|
2863
|
+
"display_name": "O1-20241217",
|
2864
|
+
"provider": "openai",
|
2865
|
+
"context_window": 200000,
|
2866
|
+
"max_tokens": 100000,
|
2867
|
+
"type": "chat",
|
2868
|
+
"family": "o1",
|
2869
|
+
"supports_vision": true,
|
2870
|
+
"supports_functions": true,
|
2871
|
+
"supports_json_mode": true,
|
2872
|
+
"input_price_per_million": 15.0,
|
2873
|
+
"output_price_per_million": 60.0,
|
2874
|
+
"metadata": {
|
2875
|
+
"object": "model",
|
2876
|
+
"owned_by": "system"
|
2877
|
+
}
|
2878
|
+
},
|
1749
2879
|
{
|
1750
2880
|
"id": "o1-mini",
|
1751
2881
|
"created_at": "2024-09-06T20:56:48+02:00",
|
1752
2882
|
"display_name": "O1-Mini",
|
1753
2883
|
"provider": "openai",
|
1754
2884
|
"context_window": 128000,
|
1755
|
-
"max_tokens":
|
2885
|
+
"max_tokens": 65536,
|
1756
2886
|
"type": "chat",
|
1757
2887
|
"family": "o1_mini",
|
1758
|
-
"supports_vision":
|
1759
|
-
"supports_functions":
|
2888
|
+
"supports_vision": false,
|
2889
|
+
"supports_functions": false,
|
1760
2890
|
"supports_json_mode": false,
|
1761
|
-
"input_price_per_million":
|
1762
|
-
"output_price_per_million":
|
2891
|
+
"input_price_per_million": 1.1,
|
2892
|
+
"output_price_per_million": 4.4,
|
1763
2893
|
"metadata": {
|
1764
2894
|
"object": "model",
|
1765
2895
|
"owned_by": "system"
|
@@ -1774,11 +2904,11 @@
|
|
1774
2904
|
"max_tokens": 65536,
|
1775
2905
|
"type": "chat",
|
1776
2906
|
"family": "o1_mini",
|
1777
|
-
"supports_vision":
|
1778
|
-
"supports_functions":
|
2907
|
+
"supports_vision": false,
|
2908
|
+
"supports_functions": false,
|
1779
2909
|
"supports_json_mode": false,
|
1780
|
-
"input_price_per_million":
|
1781
|
-
"output_price_per_million":
|
2910
|
+
"input_price_per_million": 1.1,
|
2911
|
+
"output_price_per_million": 4.4,
|
1782
2912
|
"metadata": {
|
1783
2913
|
"object": "model",
|
1784
2914
|
"owned_by": "system"
|
@@ -1789,15 +2919,15 @@
|
|
1789
2919
|
"created_at": "2024-09-06T20:54:57+02:00",
|
1790
2920
|
"display_name": "O1-Preview",
|
1791
2921
|
"provider": "openai",
|
1792
|
-
"context_window":
|
1793
|
-
"max_tokens":
|
2922
|
+
"context_window": 200000,
|
2923
|
+
"max_tokens": 100000,
|
1794
2924
|
"type": "chat",
|
1795
2925
|
"family": "o1",
|
1796
2926
|
"supports_vision": true,
|
1797
2927
|
"supports_functions": true,
|
1798
|
-
"supports_json_mode":
|
1799
|
-
"input_price_per_million": 0
|
1800
|
-
"output_price_per_million":
|
2928
|
+
"supports_json_mode": true,
|
2929
|
+
"input_price_per_million": 15.0,
|
2930
|
+
"output_price_per_million": 60.0,
|
1801
2931
|
"metadata": {
|
1802
2932
|
"object": "model",
|
1803
2933
|
"owned_by": "system"
|
@@ -1808,15 +2938,91 @@
|
|
1808
2938
|
"created_at": "2024-09-06T20:54:25+02:00",
|
1809
2939
|
"display_name": "O1-Preview 20240912",
|
1810
2940
|
"provider": "openai",
|
1811
|
-
"context_window":
|
1812
|
-
"max_tokens":
|
2941
|
+
"context_window": 200000,
|
2942
|
+
"max_tokens": 100000,
|
1813
2943
|
"type": "chat",
|
1814
2944
|
"family": "o1",
|
1815
2945
|
"supports_vision": true,
|
1816
2946
|
"supports_functions": true,
|
1817
|
-
"supports_json_mode":
|
1818
|
-
"input_price_per_million": 0
|
1819
|
-
"output_price_per_million":
|
2947
|
+
"supports_json_mode": true,
|
2948
|
+
"input_price_per_million": 15.0,
|
2949
|
+
"output_price_per_million": 60.0,
|
2950
|
+
"metadata": {
|
2951
|
+
"object": "model",
|
2952
|
+
"owned_by": "system"
|
2953
|
+
}
|
2954
|
+
},
|
2955
|
+
{
|
2956
|
+
"id": "o1-pro",
|
2957
|
+
"created_at": "2025-03-17T23:49:51+01:00",
|
2958
|
+
"display_name": "O1-Pro",
|
2959
|
+
"provider": "openai",
|
2960
|
+
"context_window": 200000,
|
2961
|
+
"max_tokens": 100000,
|
2962
|
+
"type": "chat",
|
2963
|
+
"family": "o1_pro",
|
2964
|
+
"supports_vision": true,
|
2965
|
+
"supports_functions": true,
|
2966
|
+
"supports_json_mode": true,
|
2967
|
+
"input_price_per_million": 150.0,
|
2968
|
+
"output_price_per_million": 600.0,
|
2969
|
+
"metadata": {
|
2970
|
+
"object": "model",
|
2971
|
+
"owned_by": "system"
|
2972
|
+
}
|
2973
|
+
},
|
2974
|
+
{
|
2975
|
+
"id": "o1-pro-2025-03-19",
|
2976
|
+
"created_at": "2025-03-17T23:45:04+01:00",
|
2977
|
+
"display_name": "O1-Pro 20250319",
|
2978
|
+
"provider": "openai",
|
2979
|
+
"context_window": 200000,
|
2980
|
+
"max_tokens": 100000,
|
2981
|
+
"type": "chat",
|
2982
|
+
"family": "o1_pro",
|
2983
|
+
"supports_vision": true,
|
2984
|
+
"supports_functions": true,
|
2985
|
+
"supports_json_mode": true,
|
2986
|
+
"input_price_per_million": 150.0,
|
2987
|
+
"output_price_per_million": 600.0,
|
2988
|
+
"metadata": {
|
2989
|
+
"object": "model",
|
2990
|
+
"owned_by": "system"
|
2991
|
+
}
|
2992
|
+
},
|
2993
|
+
{
|
2994
|
+
"id": "o3-mini",
|
2995
|
+
"created_at": "2025-01-17T21:39:43+01:00",
|
2996
|
+
"display_name": "O3-Mini",
|
2997
|
+
"provider": "openai",
|
2998
|
+
"context_window": 200000,
|
2999
|
+
"max_tokens": 100000,
|
3000
|
+
"type": "chat",
|
3001
|
+
"family": "o3_mini",
|
3002
|
+
"supports_vision": false,
|
3003
|
+
"supports_functions": true,
|
3004
|
+
"supports_json_mode": true,
|
3005
|
+
"input_price_per_million": 1.1,
|
3006
|
+
"output_price_per_million": 4.4,
|
3007
|
+
"metadata": {
|
3008
|
+
"object": "model",
|
3009
|
+
"owned_by": "system"
|
3010
|
+
}
|
3011
|
+
},
|
3012
|
+
{
|
3013
|
+
"id": "o3-mini-2025-01-31",
|
3014
|
+
"created_at": "2025-01-27T21:36:40+01:00",
|
3015
|
+
"display_name": "O3-Mini 20250131",
|
3016
|
+
"provider": "openai",
|
3017
|
+
"context_window": 200000,
|
3018
|
+
"max_tokens": 100000,
|
3019
|
+
"type": "chat",
|
3020
|
+
"family": "o3_mini",
|
3021
|
+
"supports_vision": false,
|
3022
|
+
"supports_functions": true,
|
3023
|
+
"supports_json_mode": true,
|
3024
|
+
"input_price_per_million": 1.1,
|
3025
|
+
"output_price_per_million": 4.4,
|
1820
3026
|
"metadata": {
|
1821
3027
|
"object": "model",
|
1822
3028
|
"owned_by": "system"
|
@@ -1825,17 +3031,17 @@
|
|
1825
3031
|
{
|
1826
3032
|
"id": "omni-moderation-2024-09-26",
|
1827
3033
|
"created_at": "2024-11-27T20:07:46+01:00",
|
1828
|
-
"display_name": "Omni
|
3034
|
+
"display_name": "Omni Moderation 20240926",
|
1829
3035
|
"provider": "openai",
|
1830
|
-
"context_window":
|
1831
|
-
"max_tokens":
|
3036
|
+
"context_window": null,
|
3037
|
+
"max_tokens": null,
|
1832
3038
|
"type": "moderation",
|
1833
3039
|
"family": "moderation",
|
1834
|
-
"supports_vision":
|
1835
|
-
"supports_functions":
|
3040
|
+
"supports_vision": true,
|
3041
|
+
"supports_functions": false,
|
1836
3042
|
"supports_json_mode": false,
|
1837
|
-
"input_price_per_million": 0.
|
1838
|
-
"output_price_per_million":
|
3043
|
+
"input_price_per_million": 0.0,
|
3044
|
+
"output_price_per_million": 0.0,
|
1839
3045
|
"metadata": {
|
1840
3046
|
"object": "model",
|
1841
3047
|
"owned_by": "system"
|
@@ -1844,17 +3050,17 @@
|
|
1844
3050
|
{
|
1845
3051
|
"id": "omni-moderation-latest",
|
1846
3052
|
"created_at": "2024-11-15T17:47:45+01:00",
|
1847
|
-
"display_name": "Omni
|
3053
|
+
"display_name": "Omni Moderation Latest",
|
1848
3054
|
"provider": "openai",
|
1849
|
-
"context_window":
|
1850
|
-
"max_tokens":
|
3055
|
+
"context_window": null,
|
3056
|
+
"max_tokens": null,
|
1851
3057
|
"type": "moderation",
|
1852
3058
|
"family": "moderation",
|
1853
|
-
"supports_vision":
|
1854
|
-
"supports_functions":
|
3059
|
+
"supports_vision": true,
|
3060
|
+
"supports_functions": false,
|
1855
3061
|
"supports_json_mode": false,
|
1856
|
-
"input_price_per_million": 0.
|
1857
|
-
"output_price_per_million":
|
3062
|
+
"input_price_per_million": 0.0,
|
3063
|
+
"output_price_per_million": 0.0,
|
1858
3064
|
"metadata": {
|
1859
3065
|
"object": "model",
|
1860
3066
|
"owned_by": "system"
|
@@ -1913,17 +3119,17 @@
|
|
1913
3119
|
{
|
1914
3120
|
"id": "text-embedding-3-large",
|
1915
3121
|
"created_at": "2024-01-22T20:53:00+01:00",
|
1916
|
-
"display_name": "
|
3122
|
+
"display_name": "text-embedding- 3 Large",
|
1917
3123
|
"provider": "openai",
|
1918
|
-
"context_window":
|
1919
|
-
"max_tokens":
|
3124
|
+
"context_window": null,
|
3125
|
+
"max_tokens": null,
|
1920
3126
|
"type": "embedding",
|
1921
3127
|
"family": "embedding3_large",
|
1922
3128
|
"supports_vision": false,
|
1923
|
-
"supports_functions":
|
3129
|
+
"supports_functions": false,
|
1924
3130
|
"supports_json_mode": false,
|
1925
|
-
"input_price_per_million": 0.
|
1926
|
-
"output_price_per_million":
|
3131
|
+
"input_price_per_million": 0.13,
|
3132
|
+
"output_price_per_million": 0.13,
|
1927
3133
|
"metadata": {
|
1928
3134
|
"object": "model",
|
1929
3135
|
"owned_by": "system"
|
@@ -1932,17 +3138,17 @@
|
|
1932
3138
|
{
|
1933
3139
|
"id": "text-embedding-3-small",
|
1934
3140
|
"created_at": "2024-01-22T19:43:17+01:00",
|
1935
|
-
"display_name": "
|
3141
|
+
"display_name": "text-embedding- 3 Small",
|
1936
3142
|
"provider": "openai",
|
1937
|
-
"context_window":
|
1938
|
-
"max_tokens":
|
3143
|
+
"context_window": null,
|
3144
|
+
"max_tokens": null,
|
1939
3145
|
"type": "embedding",
|
1940
3146
|
"family": "embedding3_small",
|
1941
3147
|
"supports_vision": false,
|
1942
|
-
"supports_functions":
|
3148
|
+
"supports_functions": false,
|
1943
3149
|
"supports_json_mode": false,
|
1944
|
-
"input_price_per_million": 0.
|
1945
|
-
"output_price_per_million":
|
3150
|
+
"input_price_per_million": 0.02,
|
3151
|
+
"output_price_per_million": 0.02,
|
1946
3152
|
"metadata": {
|
1947
3153
|
"object": "model",
|
1948
3154
|
"owned_by": "system"
|
@@ -1951,17 +3157,17 @@
|
|
1951
3157
|
{
|
1952
3158
|
"id": "text-embedding-ada-002",
|
1953
3159
|
"created_at": "2022-12-16T20:01:39+01:00",
|
1954
|
-
"display_name": "
|
3160
|
+
"display_name": "text-embedding- Ada 002",
|
1955
3161
|
"provider": "openai",
|
1956
|
-
"context_window":
|
1957
|
-
"max_tokens":
|
3162
|
+
"context_window": null,
|
3163
|
+
"max_tokens": null,
|
1958
3164
|
"type": "embedding",
|
1959
|
-
"family": "
|
3165
|
+
"family": "embedding_ada",
|
1960
3166
|
"supports_vision": false,
|
1961
|
-
"supports_functions":
|
3167
|
+
"supports_functions": false,
|
1962
3168
|
"supports_json_mode": false,
|
1963
|
-
"input_price_per_million": 0.
|
1964
|
-
"output_price_per_million": 1
|
3169
|
+
"input_price_per_million": 0.1,
|
3170
|
+
"output_price_per_million": 0.1,
|
1965
3171
|
"metadata": {
|
1966
3172
|
"object": "model",
|
1967
3173
|
"owned_by": "openai-internal"
|
@@ -1972,15 +3178,15 @@
|
|
1972
3178
|
"created_at": "2023-04-19T23:49:11+02:00",
|
1973
3179
|
"display_name": "TTS-1",
|
1974
3180
|
"provider": "openai",
|
1975
|
-
"context_window":
|
1976
|
-
"max_tokens":
|
3181
|
+
"context_window": null,
|
3182
|
+
"max_tokens": null,
|
1977
3183
|
"type": "audio",
|
1978
3184
|
"family": "tts1",
|
1979
3185
|
"supports_vision": false,
|
1980
|
-
"supports_functions":
|
3186
|
+
"supports_functions": false,
|
1981
3187
|
"supports_json_mode": false,
|
1982
|
-
"input_price_per_million": 0
|
1983
|
-
"output_price_per_million":
|
3188
|
+
"input_price_per_million": 15.0,
|
3189
|
+
"output_price_per_million": 15.0,
|
1984
3190
|
"metadata": {
|
1985
3191
|
"object": "model",
|
1986
3192
|
"owned_by": "openai-internal"
|
@@ -1991,15 +3197,15 @@
|
|
1991
3197
|
"created_at": "2023-11-04T00:14:01+01:00",
|
1992
3198
|
"display_name": "TTS-1 1106",
|
1993
3199
|
"provider": "openai",
|
1994
|
-
"context_window":
|
1995
|
-
"max_tokens":
|
3200
|
+
"context_window": null,
|
3201
|
+
"max_tokens": null,
|
1996
3202
|
"type": "audio",
|
1997
3203
|
"family": "tts1",
|
1998
3204
|
"supports_vision": false,
|
1999
|
-
"supports_functions":
|
3205
|
+
"supports_functions": false,
|
2000
3206
|
"supports_json_mode": false,
|
2001
|
-
"input_price_per_million": 0
|
2002
|
-
"output_price_per_million":
|
3207
|
+
"input_price_per_million": 15.0,
|
3208
|
+
"output_price_per_million": 15.0,
|
2003
3209
|
"metadata": {
|
2004
3210
|
"object": "model",
|
2005
3211
|
"owned_by": "system"
|
@@ -2010,15 +3216,15 @@
|
|
2010
3216
|
"created_at": "2023-11-03T22:13:35+01:00",
|
2011
3217
|
"display_name": "TTS-1 HD",
|
2012
3218
|
"provider": "openai",
|
2013
|
-
"context_window":
|
2014
|
-
"max_tokens":
|
3219
|
+
"context_window": null,
|
3220
|
+
"max_tokens": null,
|
2015
3221
|
"type": "audio",
|
2016
3222
|
"family": "tts1_hd",
|
2017
3223
|
"supports_vision": false,
|
2018
|
-
"supports_functions":
|
3224
|
+
"supports_functions": false,
|
2019
3225
|
"supports_json_mode": false,
|
2020
|
-
"input_price_per_million": 0
|
2021
|
-
"output_price_per_million":
|
3226
|
+
"input_price_per_million": 30.0,
|
3227
|
+
"output_price_per_million": 30.0,
|
2022
3228
|
"metadata": {
|
2023
3229
|
"object": "model",
|
2024
3230
|
"owned_by": "system"
|
@@ -2029,15 +3235,15 @@
|
|
2029
3235
|
"created_at": "2023-11-04T00:18:53+01:00",
|
2030
3236
|
"display_name": "TTS-1 HD 1106",
|
2031
3237
|
"provider": "openai",
|
2032
|
-
"context_window":
|
2033
|
-
"max_tokens":
|
3238
|
+
"context_window": null,
|
3239
|
+
"max_tokens": null,
|
2034
3240
|
"type": "audio",
|
2035
3241
|
"family": "tts1_hd",
|
2036
3242
|
"supports_vision": false,
|
2037
|
-
"supports_functions":
|
3243
|
+
"supports_functions": false,
|
2038
3244
|
"supports_json_mode": false,
|
2039
|
-
"input_price_per_million": 0
|
2040
|
-
"output_price_per_million":
|
3245
|
+
"input_price_per_million": 30.0,
|
3246
|
+
"output_price_per_million": 30.0,
|
2041
3247
|
"metadata": {
|
2042
3248
|
"object": "model",
|
2043
3249
|
"owned_by": "system"
|
@@ -2048,15 +3254,15 @@
|
|
2048
3254
|
"created_at": "2023-02-27T22:13:04+01:00",
|
2049
3255
|
"display_name": "Whisper 1",
|
2050
3256
|
"provider": "openai",
|
2051
|
-
"context_window":
|
2052
|
-
"max_tokens":
|
3257
|
+
"context_window": null,
|
3258
|
+
"max_tokens": null,
|
2053
3259
|
"type": "audio",
|
2054
|
-
"family": "
|
3260
|
+
"family": "whisper",
|
2055
3261
|
"supports_vision": false,
|
2056
|
-
"supports_functions":
|
3262
|
+
"supports_functions": false,
|
2057
3263
|
"supports_json_mode": false,
|
2058
|
-
"input_price_per_million": 0.
|
2059
|
-
"output_price_per_million":
|
3264
|
+
"input_price_per_million": 0.006,
|
3265
|
+
"output_price_per_million": 0.006,
|
2060
3266
|
"metadata": {
|
2061
3267
|
"object": "model",
|
2062
3268
|
"owned_by": "openai-internal"
|