ruby_llm 0.1.0.pre25 → 0.1.0.pre26
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 +19 -3
- data/Rakefile +3 -0
- data/bin/console +2 -0
- data/lib/ruby_llm/configuration.rb +2 -0
- data/lib/ruby_llm/error.rb +12 -2
- data/lib/ruby_llm/model_capabilities/anthropic.rb +1 -3
- data/lib/ruby_llm/model_capabilities/deepseek.rb +93 -0
- data/lib/ruby_llm/model_capabilities/gemini.rb +132 -0
- data/lib/ruby_llm/model_capabilities/openai.rb +35 -11
- data/lib/ruby_llm/model_info.rb +6 -10
- data/lib/ruby_llm/models.json +2068 -686
- data/lib/ruby_llm/models.rb +4 -2
- data/lib/ruby_llm/provider.rb +11 -4
- data/lib/ruby_llm/providers/anthropic.rb +8 -5
- data/lib/ruby_llm/providers/deepseek.rb +20 -0
- data/lib/ruby_llm/providers/gemini.rb +28 -0
- data/lib/ruby_llm/providers/openai.rb +12 -7
- data/lib/ruby_llm/stream_accumulator.rb +7 -4
- data/lib/ruby_llm/version.rb +1 -1
- data/lib/ruby_llm.rb +8 -1
- data/lib/tasks/models.rake +7 -3
- metadata +6 -2
data/lib/ruby_llm/models.json
CHANGED
@@ -1,686 +1,2068 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
}
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
{
|
55
|
-
"
|
56
|
-
"
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
"
|
75
|
-
"
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
"
|
94
|
-
"
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
"
|
113
|
-
"
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
"
|
132
|
-
"
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
"
|
151
|
-
"
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
"
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
"
|
227
|
-
"
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
"
|
246
|
-
"
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
"
|
265
|
-
"
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
"
|
284
|
-
"
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
"
|
303
|
-
"
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
"
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
}
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
{
|
378
|
-
"
|
379
|
-
"
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
"
|
398
|
-
"
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
"
|
417
|
-
"
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
"
|
436
|
-
"
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
"
|
455
|
-
"
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
"
|
474
|
-
"
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
"
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
"
|
550
|
-
"
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
"
|
569
|
-
"
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
"
|
588
|
-
"
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
"
|
607
|
-
"
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
"
|
626
|
-
"
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
"
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
}
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"id": "gpt-4o-mini-audio-preview-2024-12-17",
|
4
|
+
"created_at": "2024-12-13T19:52:00+01:00",
|
5
|
+
"display_name": "GPT-4o-Mini Audio Preview 20241217",
|
6
|
+
"provider": "openai",
|
7
|
+
"context_window": 128000,
|
8
|
+
"max_tokens": 16384,
|
9
|
+
"type": "chat",
|
10
|
+
"family": "gpt4o_mini",
|
11
|
+
"supports_vision": false,
|
12
|
+
"supports_functions": true,
|
13
|
+
"supports_json_mode": false,
|
14
|
+
"input_price_per_million": 0.5,
|
15
|
+
"output_price_per_million": 1.5,
|
16
|
+
"metadata": {
|
17
|
+
"object": "model",
|
18
|
+
"owned_by": "system"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"id": "dall-e-3",
|
23
|
+
"created_at": "2023-10-31T21:46:29+01:00",
|
24
|
+
"display_name": "DALL-E-3",
|
25
|
+
"provider": "openai",
|
26
|
+
"context_window": 4096,
|
27
|
+
"max_tokens": 4096,
|
28
|
+
"type": "image",
|
29
|
+
"family": "dalle3",
|
30
|
+
"supports_vision": false,
|
31
|
+
"supports_functions": true,
|
32
|
+
"supports_json_mode": false,
|
33
|
+
"input_price_per_million": 0.5,
|
34
|
+
"output_price_per_million": 1.5,
|
35
|
+
"metadata": {
|
36
|
+
"object": "model",
|
37
|
+
"owned_by": "system"
|
38
|
+
}
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"id": "dall-e-2",
|
42
|
+
"created_at": "2023-11-01T01:22:57+01:00",
|
43
|
+
"display_name": "DALL-E-2",
|
44
|
+
"provider": "openai",
|
45
|
+
"context_window": 4096,
|
46
|
+
"max_tokens": 4096,
|
47
|
+
"type": "image",
|
48
|
+
"family": "dalle2",
|
49
|
+
"supports_vision": false,
|
50
|
+
"supports_functions": true,
|
51
|
+
"supports_json_mode": false,
|
52
|
+
"input_price_per_million": 0.5,
|
53
|
+
"output_price_per_million": 1.5,
|
54
|
+
"metadata": {
|
55
|
+
"object": "model",
|
56
|
+
"owned_by": "system"
|
57
|
+
}
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"id": "gpt-4o-2024-11-20",
|
61
|
+
"created_at": "2025-02-12T04:39:03+01:00",
|
62
|
+
"display_name": "GPT-4o 20241120",
|
63
|
+
"provider": "openai",
|
64
|
+
"context_window": 128000,
|
65
|
+
"max_tokens": 16384,
|
66
|
+
"type": "chat",
|
67
|
+
"family": "gpt4o",
|
68
|
+
"supports_vision": false,
|
69
|
+
"supports_functions": true,
|
70
|
+
"supports_json_mode": false,
|
71
|
+
"input_price_per_million": 0.5,
|
72
|
+
"output_price_per_million": 1.5,
|
73
|
+
"metadata": {
|
74
|
+
"object": "model",
|
75
|
+
"owned_by": "system"
|
76
|
+
}
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"id": "gpt-4o-audio-preview-2024-10-01",
|
80
|
+
"created_at": "2024-09-27T00:17:22+02:00",
|
81
|
+
"display_name": "GPT-4o Audio Preview 20241001",
|
82
|
+
"provider": "openai",
|
83
|
+
"context_window": 128000,
|
84
|
+
"max_tokens": 16384,
|
85
|
+
"type": "chat",
|
86
|
+
"family": "gpt4o",
|
87
|
+
"supports_vision": false,
|
88
|
+
"supports_functions": true,
|
89
|
+
"supports_json_mode": false,
|
90
|
+
"input_price_per_million": 0.5,
|
91
|
+
"output_price_per_million": 1.5,
|
92
|
+
"metadata": {
|
93
|
+
"object": "model",
|
94
|
+
"owned_by": "system"
|
95
|
+
}
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"id": "gpt-4o-audio-preview",
|
99
|
+
"created_at": "2024-09-27T20:07:23+02:00",
|
100
|
+
"display_name": "GPT-4o Audio Preview",
|
101
|
+
"provider": "openai",
|
102
|
+
"context_window": 128000,
|
103
|
+
"max_tokens": 16384,
|
104
|
+
"type": "chat",
|
105
|
+
"family": "gpt4o",
|
106
|
+
"supports_vision": false,
|
107
|
+
"supports_functions": true,
|
108
|
+
"supports_json_mode": false,
|
109
|
+
"input_price_per_million": 0.5,
|
110
|
+
"output_price_per_million": 1.5,
|
111
|
+
"metadata": {
|
112
|
+
"object": "model",
|
113
|
+
"owned_by": "system"
|
114
|
+
}
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"id": "o1-mini-2024-09-12",
|
118
|
+
"created_at": "2024-09-06T20:56:19+02:00",
|
119
|
+
"display_name": "O1-Mini 20240912",
|
120
|
+
"provider": "openai",
|
121
|
+
"context_window": 128000,
|
122
|
+
"max_tokens": 65536,
|
123
|
+
"type": "chat",
|
124
|
+
"family": "o1",
|
125
|
+
"supports_vision": false,
|
126
|
+
"supports_functions": true,
|
127
|
+
"supports_json_mode": false,
|
128
|
+
"input_price_per_million": 0.5,
|
129
|
+
"output_price_per_million": 1.5,
|
130
|
+
"metadata": {
|
131
|
+
"object": "model",
|
132
|
+
"owned_by": "system"
|
133
|
+
}
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"id": "gpt-4o-mini-realtime-preview-2024-12-17",
|
137
|
+
"created_at": "2024-12-13T18:56:41+01:00",
|
138
|
+
"display_name": "GPT-4o-Mini Realtime Preview 20241217",
|
139
|
+
"provider": "openai",
|
140
|
+
"context_window": 128000,
|
141
|
+
"max_tokens": 16384,
|
142
|
+
"type": "chat",
|
143
|
+
"family": "gpt4o_mini_realtime",
|
144
|
+
"supports_vision": false,
|
145
|
+
"supports_functions": true,
|
146
|
+
"supports_json_mode": false,
|
147
|
+
"input_price_per_million": 0.5,
|
148
|
+
"output_price_per_million": 1.5,
|
149
|
+
"metadata": {
|
150
|
+
"object": "model",
|
151
|
+
"owned_by": "system"
|
152
|
+
}
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"id": "o1-preview-2024-09-12",
|
156
|
+
"created_at": "2024-09-06T20:54:25+02:00",
|
157
|
+
"display_name": "O1-Preview 20240912",
|
158
|
+
"provider": "openai",
|
159
|
+
"context_window": 128000,
|
160
|
+
"max_tokens": 32768,
|
161
|
+
"type": "chat",
|
162
|
+
"family": "o1",
|
163
|
+
"supports_vision": false,
|
164
|
+
"supports_functions": true,
|
165
|
+
"supports_json_mode": false,
|
166
|
+
"input_price_per_million": 0.5,
|
167
|
+
"output_price_per_million": 1.5,
|
168
|
+
"metadata": {
|
169
|
+
"object": "model",
|
170
|
+
"owned_by": "system"
|
171
|
+
}
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"id": "o1-mini",
|
175
|
+
"created_at": "2024-09-06T20:56:48+02:00",
|
176
|
+
"display_name": "O1-Mini",
|
177
|
+
"provider": "openai",
|
178
|
+
"context_window": 128000,
|
179
|
+
"max_tokens": 4096,
|
180
|
+
"type": "chat",
|
181
|
+
"family": "o1_mini",
|
182
|
+
"supports_vision": false,
|
183
|
+
"supports_functions": true,
|
184
|
+
"supports_json_mode": false,
|
185
|
+
"input_price_per_million": 0.5,
|
186
|
+
"output_price_per_million": 1.5,
|
187
|
+
"metadata": {
|
188
|
+
"object": "model",
|
189
|
+
"owned_by": "system"
|
190
|
+
}
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"id": "o1-preview",
|
194
|
+
"created_at": "2024-09-06T20:54:57+02:00",
|
195
|
+
"display_name": "O1-Preview",
|
196
|
+
"provider": "openai",
|
197
|
+
"context_window": 128000,
|
198
|
+
"max_tokens": 4096,
|
199
|
+
"type": "chat",
|
200
|
+
"family": "o1",
|
201
|
+
"supports_vision": false,
|
202
|
+
"supports_functions": true,
|
203
|
+
"supports_json_mode": false,
|
204
|
+
"input_price_per_million": 0.5,
|
205
|
+
"output_price_per_million": 1.5,
|
206
|
+
"metadata": {
|
207
|
+
"object": "model",
|
208
|
+
"owned_by": "system"
|
209
|
+
}
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"id": "gpt-4o-mini-realtime-preview",
|
213
|
+
"created_at": "2024-12-16T23:16:20+01:00",
|
214
|
+
"display_name": "GPT-4o-Mini Realtime Preview",
|
215
|
+
"provider": "openai",
|
216
|
+
"context_window": 128000,
|
217
|
+
"max_tokens": 16384,
|
218
|
+
"type": "chat",
|
219
|
+
"family": "gpt4o_mini_realtime",
|
220
|
+
"supports_vision": false,
|
221
|
+
"supports_functions": true,
|
222
|
+
"supports_json_mode": false,
|
223
|
+
"input_price_per_million": 0.5,
|
224
|
+
"output_price_per_million": 1.5,
|
225
|
+
"metadata": {
|
226
|
+
"object": "model",
|
227
|
+
"owned_by": "system"
|
228
|
+
}
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"id": "whisper-1",
|
232
|
+
"created_at": "2023-02-27T22:13:04+01:00",
|
233
|
+
"display_name": "Whisper 1",
|
234
|
+
"provider": "openai",
|
235
|
+
"context_window": 4096,
|
236
|
+
"max_tokens": 4096,
|
237
|
+
"type": "audio",
|
238
|
+
"family": "whisper1",
|
239
|
+
"supports_vision": false,
|
240
|
+
"supports_functions": true,
|
241
|
+
"supports_json_mode": false,
|
242
|
+
"input_price_per_million": 0.5,
|
243
|
+
"output_price_per_million": 1.5,
|
244
|
+
"metadata": {
|
245
|
+
"object": "model",
|
246
|
+
"owned_by": "openai-internal"
|
247
|
+
}
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"id": "gpt-4-turbo",
|
251
|
+
"created_at": "2024-04-06T01:57:21+02:00",
|
252
|
+
"display_name": "GPT-4-Turbo",
|
253
|
+
"provider": "openai",
|
254
|
+
"context_window": 128000,
|
255
|
+
"max_tokens": 16384,
|
256
|
+
"type": "chat",
|
257
|
+
"family": "gpt4_turbo",
|
258
|
+
"supports_vision": true,
|
259
|
+
"supports_functions": true,
|
260
|
+
"supports_json_mode": true,
|
261
|
+
"input_price_per_million": 0.5,
|
262
|
+
"output_price_per_million": 1.5,
|
263
|
+
"metadata": {
|
264
|
+
"object": "model",
|
265
|
+
"owned_by": "system"
|
266
|
+
}
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"id": "gpt-4o-mini-audio-preview",
|
270
|
+
"created_at": "2024-12-16T23:17:04+01:00",
|
271
|
+
"display_name": "GPT-4o-Mini Audio Preview",
|
272
|
+
"provider": "openai",
|
273
|
+
"context_window": 128000,
|
274
|
+
"max_tokens": 16384,
|
275
|
+
"type": "chat",
|
276
|
+
"family": "gpt4o_mini",
|
277
|
+
"supports_vision": false,
|
278
|
+
"supports_functions": true,
|
279
|
+
"supports_json_mode": false,
|
280
|
+
"input_price_per_million": 0.5,
|
281
|
+
"output_price_per_million": 1.5,
|
282
|
+
"metadata": {
|
283
|
+
"object": "model",
|
284
|
+
"owned_by": "system"
|
285
|
+
}
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"id": "gpt-4o-realtime-preview-2024-10-01",
|
289
|
+
"created_at": "2024-09-24T00:49:26+02:00",
|
290
|
+
"display_name": "GPT-4o Realtime Preview 20241001",
|
291
|
+
"provider": "openai",
|
292
|
+
"context_window": 128000,
|
293
|
+
"max_tokens": 16384,
|
294
|
+
"type": "chat",
|
295
|
+
"family": "gpt4o_realtime",
|
296
|
+
"supports_vision": false,
|
297
|
+
"supports_functions": true,
|
298
|
+
"supports_json_mode": false,
|
299
|
+
"input_price_per_million": 0.5,
|
300
|
+
"output_price_per_million": 1.5,
|
301
|
+
"metadata": {
|
302
|
+
"object": "model",
|
303
|
+
"owned_by": "system"
|
304
|
+
}
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"id": "babbage-002",
|
308
|
+
"created_at": "2023-08-21T18:16:55+02:00",
|
309
|
+
"display_name": "Babbage 002",
|
310
|
+
"provider": "openai",
|
311
|
+
"context_window": 4096,
|
312
|
+
"max_tokens": 4096,
|
313
|
+
"type": "chat",
|
314
|
+
"family": "babbage",
|
315
|
+
"supports_vision": false,
|
316
|
+
"supports_functions": true,
|
317
|
+
"supports_json_mode": false,
|
318
|
+
"input_price_per_million": 0.5,
|
319
|
+
"output_price_per_million": 1.5,
|
320
|
+
"metadata": {
|
321
|
+
"object": "model",
|
322
|
+
"owned_by": "system"
|
323
|
+
}
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"id": "tts-1-hd-1106",
|
327
|
+
"created_at": "2023-11-04T00:18:53+01:00",
|
328
|
+
"display_name": "TTS-1 HD 1106",
|
329
|
+
"provider": "openai",
|
330
|
+
"context_window": 4096,
|
331
|
+
"max_tokens": 4096,
|
332
|
+
"type": "audio",
|
333
|
+
"family": "tts1_hd",
|
334
|
+
"supports_vision": false,
|
335
|
+
"supports_functions": true,
|
336
|
+
"supports_json_mode": false,
|
337
|
+
"input_price_per_million": 0.5,
|
338
|
+
"output_price_per_million": 1.5,
|
339
|
+
"metadata": {
|
340
|
+
"object": "model",
|
341
|
+
"owned_by": "system"
|
342
|
+
}
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"id": "gpt-4o-audio-preview-2024-12-17",
|
346
|
+
"created_at": "2024-12-12T21:10:39+01:00",
|
347
|
+
"display_name": "GPT-4o Audio Preview 20241217",
|
348
|
+
"provider": "openai",
|
349
|
+
"context_window": 128000,
|
350
|
+
"max_tokens": 16384,
|
351
|
+
"type": "chat",
|
352
|
+
"family": "gpt4o",
|
353
|
+
"supports_vision": false,
|
354
|
+
"supports_functions": true,
|
355
|
+
"supports_json_mode": false,
|
356
|
+
"input_price_per_million": 0.5,
|
357
|
+
"output_price_per_million": 1.5,
|
358
|
+
"metadata": {
|
359
|
+
"object": "model",
|
360
|
+
"owned_by": "system"
|
361
|
+
}
|
362
|
+
},
|
363
|
+
{
|
364
|
+
"id": "tts-1-hd",
|
365
|
+
"created_at": "2023-11-03T22:13:35+01:00",
|
366
|
+
"display_name": "TTS-1 HD",
|
367
|
+
"provider": "openai",
|
368
|
+
"context_window": 4096,
|
369
|
+
"max_tokens": 4096,
|
370
|
+
"type": "audio",
|
371
|
+
"family": "tts1_hd",
|
372
|
+
"supports_vision": false,
|
373
|
+
"supports_functions": true,
|
374
|
+
"supports_json_mode": false,
|
375
|
+
"input_price_per_million": 0.5,
|
376
|
+
"output_price_per_million": 1.5,
|
377
|
+
"metadata": {
|
378
|
+
"object": "model",
|
379
|
+
"owned_by": "system"
|
380
|
+
}
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"id": "gpt-4o-2024-08-06",
|
384
|
+
"created_at": "2024-08-05T01:38:39+02:00",
|
385
|
+
"display_name": "GPT-4o 20240806",
|
386
|
+
"provider": "openai",
|
387
|
+
"context_window": 128000,
|
388
|
+
"max_tokens": 16384,
|
389
|
+
"type": "chat",
|
390
|
+
"family": "gpt4o",
|
391
|
+
"supports_vision": false,
|
392
|
+
"supports_functions": true,
|
393
|
+
"supports_json_mode": false,
|
394
|
+
"input_price_per_million": 0.5,
|
395
|
+
"output_price_per_million": 1.5,
|
396
|
+
"metadata": {
|
397
|
+
"object": "model",
|
398
|
+
"owned_by": "system"
|
399
|
+
}
|
400
|
+
},
|
401
|
+
{
|
402
|
+
"id": "gpt-4o",
|
403
|
+
"created_at": "2024-05-10T20:50:49+02:00",
|
404
|
+
"display_name": "GPT-4o",
|
405
|
+
"provider": "openai",
|
406
|
+
"context_window": 128000,
|
407
|
+
"max_tokens": 16384,
|
408
|
+
"type": "chat",
|
409
|
+
"family": "gpt4o",
|
410
|
+
"supports_vision": false,
|
411
|
+
"supports_functions": true,
|
412
|
+
"supports_json_mode": false,
|
413
|
+
"input_price_per_million": 0.5,
|
414
|
+
"output_price_per_million": 1.5,
|
415
|
+
"metadata": {
|
416
|
+
"object": "model",
|
417
|
+
"owned_by": "system"
|
418
|
+
}
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"id": "chatgpt-4o-latest",
|
422
|
+
"created_at": "2024-08-13T04:12:11+02:00",
|
423
|
+
"display_name": "ChatGPT-4o Latest",
|
424
|
+
"provider": "openai",
|
425
|
+
"context_window": 128000,
|
426
|
+
"max_tokens": 16384,
|
427
|
+
"type": "chat",
|
428
|
+
"family": "gpt4o",
|
429
|
+
"supports_vision": false,
|
430
|
+
"supports_functions": true,
|
431
|
+
"supports_json_mode": false,
|
432
|
+
"input_price_per_million": 0.5,
|
433
|
+
"output_price_per_million": 1.5,
|
434
|
+
"metadata": {
|
435
|
+
"object": "model",
|
436
|
+
"owned_by": "system"
|
437
|
+
}
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"id": "text-embedding-3-large",
|
441
|
+
"created_at": "2024-01-22T20:53:00+01:00",
|
442
|
+
"display_name": "Text Embedding 3 Large",
|
443
|
+
"provider": "openai",
|
444
|
+
"context_window": 4096,
|
445
|
+
"max_tokens": 4096,
|
446
|
+
"type": "embedding",
|
447
|
+
"family": "embedding3_large",
|
448
|
+
"supports_vision": false,
|
449
|
+
"supports_functions": true,
|
450
|
+
"supports_json_mode": false,
|
451
|
+
"input_price_per_million": 0.5,
|
452
|
+
"output_price_per_million": 1.5,
|
453
|
+
"metadata": {
|
454
|
+
"object": "model",
|
455
|
+
"owned_by": "system"
|
456
|
+
}
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"id": "gpt-4-turbo-2024-04-09",
|
460
|
+
"created_at": "2024-04-08T20:41:17+02:00",
|
461
|
+
"display_name": "GPT-4-Turbo 20240409",
|
462
|
+
"provider": "openai",
|
463
|
+
"context_window": 128000,
|
464
|
+
"max_tokens": 16384,
|
465
|
+
"type": "chat",
|
466
|
+
"family": "gpt4_turbo",
|
467
|
+
"supports_vision": true,
|
468
|
+
"supports_functions": true,
|
469
|
+
"supports_json_mode": true,
|
470
|
+
"input_price_per_million": 0.5,
|
471
|
+
"output_price_per_million": 1.5,
|
472
|
+
"metadata": {
|
473
|
+
"object": "model",
|
474
|
+
"owned_by": "system"
|
475
|
+
}
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"id": "tts-1",
|
479
|
+
"created_at": "2023-04-19T23:49:11+02:00",
|
480
|
+
"display_name": "TTS-1",
|
481
|
+
"provider": "openai",
|
482
|
+
"context_window": 4096,
|
483
|
+
"max_tokens": 4096,
|
484
|
+
"type": "audio",
|
485
|
+
"family": "tts1",
|
486
|
+
"supports_vision": false,
|
487
|
+
"supports_functions": true,
|
488
|
+
"supports_json_mode": false,
|
489
|
+
"input_price_per_million": 0.5,
|
490
|
+
"output_price_per_million": 1.5,
|
491
|
+
"metadata": {
|
492
|
+
"object": "model",
|
493
|
+
"owned_by": "openai-internal"
|
494
|
+
}
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"id": "tts-1-1106",
|
498
|
+
"created_at": "2023-11-04T00:14:01+01:00",
|
499
|
+
"display_name": "TTS-1 1106",
|
500
|
+
"provider": "openai",
|
501
|
+
"context_window": 4096,
|
502
|
+
"max_tokens": 4096,
|
503
|
+
"type": "audio",
|
504
|
+
"family": "tts1",
|
505
|
+
"supports_vision": false,
|
506
|
+
"supports_functions": true,
|
507
|
+
"supports_json_mode": false,
|
508
|
+
"input_price_per_million": 0.5,
|
509
|
+
"output_price_per_million": 1.5,
|
510
|
+
"metadata": {
|
511
|
+
"object": "model",
|
512
|
+
"owned_by": "system"
|
513
|
+
}
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"id": "gpt-4o-mini-2024-07-18",
|
517
|
+
"created_at": "2024-07-17T01:31:57+02:00",
|
518
|
+
"display_name": "GPT-4o-Mini 20240718",
|
519
|
+
"provider": "openai",
|
520
|
+
"context_window": 128000,
|
521
|
+
"max_tokens": 16384,
|
522
|
+
"type": "chat",
|
523
|
+
"family": "gpt4o_mini",
|
524
|
+
"supports_vision": false,
|
525
|
+
"supports_functions": true,
|
526
|
+
"supports_json_mode": false,
|
527
|
+
"input_price_per_million": 0.5,
|
528
|
+
"output_price_per_million": 1.5,
|
529
|
+
"metadata": {
|
530
|
+
"object": "model",
|
531
|
+
"owned_by": "system"
|
532
|
+
}
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"id": "gpt-4o-mini",
|
536
|
+
"created_at": "2024-07-17T01:32:21+02:00",
|
537
|
+
"display_name": "GPT-4o-Mini",
|
538
|
+
"provider": "openai",
|
539
|
+
"context_window": 128000,
|
540
|
+
"max_tokens": 16384,
|
541
|
+
"type": "chat",
|
542
|
+
"family": "gpt4o_mini",
|
543
|
+
"supports_vision": false,
|
544
|
+
"supports_functions": true,
|
545
|
+
"supports_json_mode": false,
|
546
|
+
"input_price_per_million": 0.5,
|
547
|
+
"output_price_per_million": 1.5,
|
548
|
+
"metadata": {
|
549
|
+
"object": "model",
|
550
|
+
"owned_by": "system"
|
551
|
+
}
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"id": "davinci-002",
|
555
|
+
"created_at": "2023-08-21T18:11:41+02:00",
|
556
|
+
"display_name": "Davinci 002",
|
557
|
+
"provider": "openai",
|
558
|
+
"context_window": 4096,
|
559
|
+
"max_tokens": 4096,
|
560
|
+
"type": "chat",
|
561
|
+
"family": "davinci",
|
562
|
+
"supports_vision": false,
|
563
|
+
"supports_functions": true,
|
564
|
+
"supports_json_mode": false,
|
565
|
+
"input_price_per_million": 0.5,
|
566
|
+
"output_price_per_million": 1.5,
|
567
|
+
"metadata": {
|
568
|
+
"object": "model",
|
569
|
+
"owned_by": "system"
|
570
|
+
}
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"id": "gpt-3.5-turbo-1106",
|
574
|
+
"created_at": "2023-11-02T22:15:48+01:00",
|
575
|
+
"display_name": "GPT-3.5-Turbo 1106",
|
576
|
+
"provider": "openai",
|
577
|
+
"context_window": 16385,
|
578
|
+
"max_tokens": 4096,
|
579
|
+
"type": "chat",
|
580
|
+
"family": "gpt35",
|
581
|
+
"supports_vision": false,
|
582
|
+
"supports_functions": true,
|
583
|
+
"supports_json_mode": true,
|
584
|
+
"input_price_per_million": 0.5,
|
585
|
+
"output_price_per_million": 1.5,
|
586
|
+
"metadata": {
|
587
|
+
"object": "model",
|
588
|
+
"owned_by": "system"
|
589
|
+
}
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"id": "omni-moderation-2024-09-26",
|
593
|
+
"created_at": "2024-11-27T20:07:46+01:00",
|
594
|
+
"display_name": "Omni Moderation 20240926",
|
595
|
+
"provider": "openai",
|
596
|
+
"context_window": 4096,
|
597
|
+
"max_tokens": 4096,
|
598
|
+
"type": "moderation",
|
599
|
+
"family": "moderation",
|
600
|
+
"supports_vision": false,
|
601
|
+
"supports_functions": true,
|
602
|
+
"supports_json_mode": false,
|
603
|
+
"input_price_per_million": 0.5,
|
604
|
+
"output_price_per_million": 1.5,
|
605
|
+
"metadata": {
|
606
|
+
"object": "model",
|
607
|
+
"owned_by": "system"
|
608
|
+
}
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"id": "gpt-3.5-turbo-instruct",
|
612
|
+
"created_at": "2023-08-24T20:23:47+02:00",
|
613
|
+
"display_name": "GPT-3.5-Turbo Instruct",
|
614
|
+
"provider": "openai",
|
615
|
+
"context_window": 4096,
|
616
|
+
"max_tokens": 4096,
|
617
|
+
"type": "chat",
|
618
|
+
"family": "gpt35",
|
619
|
+
"supports_vision": false,
|
620
|
+
"supports_functions": false,
|
621
|
+
"supports_json_mode": true,
|
622
|
+
"input_price_per_million": 0.5,
|
623
|
+
"output_price_per_million": 1.5,
|
624
|
+
"metadata": {
|
625
|
+
"object": "model",
|
626
|
+
"owned_by": "system"
|
627
|
+
}
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"id": "gpt-3.5-turbo-instruct-0914",
|
631
|
+
"created_at": "2023-09-07T23:34:32+02:00",
|
632
|
+
"display_name": "GPT-3.5-Turbo Instruct 0914",
|
633
|
+
"provider": "openai",
|
634
|
+
"context_window": 4096,
|
635
|
+
"max_tokens": 4096,
|
636
|
+
"type": "chat",
|
637
|
+
"family": "gpt35",
|
638
|
+
"supports_vision": false,
|
639
|
+
"supports_functions": false,
|
640
|
+
"supports_json_mode": true,
|
641
|
+
"input_price_per_million": 0.5,
|
642
|
+
"output_price_per_million": 1.5,
|
643
|
+
"metadata": {
|
644
|
+
"object": "model",
|
645
|
+
"owned_by": "system"
|
646
|
+
}
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"id": "gpt-3.5-turbo-0125",
|
650
|
+
"created_at": "2024-01-23T23:19:18+01:00",
|
651
|
+
"display_name": "GPT-3.5-Turbo 0125",
|
652
|
+
"provider": "openai",
|
653
|
+
"context_window": 16385,
|
654
|
+
"max_tokens": 4096,
|
655
|
+
"type": "chat",
|
656
|
+
"family": "gpt35",
|
657
|
+
"supports_vision": false,
|
658
|
+
"supports_functions": true,
|
659
|
+
"supports_json_mode": true,
|
660
|
+
"input_price_per_million": 0.5,
|
661
|
+
"output_price_per_million": 1.5,
|
662
|
+
"metadata": {
|
663
|
+
"object": "model",
|
664
|
+
"owned_by": "system"
|
665
|
+
}
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"id": "gpt-4o-realtime-preview-2024-12-17",
|
669
|
+
"created_at": "2024-12-11T20:30:30+01:00",
|
670
|
+
"display_name": "GPT-4o Realtime Preview 20241217",
|
671
|
+
"provider": "openai",
|
672
|
+
"context_window": 128000,
|
673
|
+
"max_tokens": 16384,
|
674
|
+
"type": "chat",
|
675
|
+
"family": "gpt4o_realtime",
|
676
|
+
"supports_vision": false,
|
677
|
+
"supports_functions": true,
|
678
|
+
"supports_json_mode": false,
|
679
|
+
"input_price_per_million": 0.5,
|
680
|
+
"output_price_per_million": 1.5,
|
681
|
+
"metadata": {
|
682
|
+
"object": "model",
|
683
|
+
"owned_by": "system"
|
684
|
+
}
|
685
|
+
},
|
686
|
+
{
|
687
|
+
"id": "gpt-3.5-turbo",
|
688
|
+
"created_at": "2023-02-28T19:56:42+01:00",
|
689
|
+
"display_name": "GPT-3.5-Turbo",
|
690
|
+
"provider": "openai",
|
691
|
+
"context_window": 16385,
|
692
|
+
"max_tokens": 4096,
|
693
|
+
"type": "chat",
|
694
|
+
"family": "gpt35",
|
695
|
+
"supports_vision": false,
|
696
|
+
"supports_functions": true,
|
697
|
+
"supports_json_mode": true,
|
698
|
+
"input_price_per_million": 0.5,
|
699
|
+
"output_price_per_million": 1.5,
|
700
|
+
"metadata": {
|
701
|
+
"object": "model",
|
702
|
+
"owned_by": "openai"
|
703
|
+
}
|
704
|
+
},
|
705
|
+
{
|
706
|
+
"id": "gpt-4o-realtime-preview",
|
707
|
+
"created_at": "2024-09-30T03:33:18+02:00",
|
708
|
+
"display_name": "GPT-4o Realtime Preview",
|
709
|
+
"provider": "openai",
|
710
|
+
"context_window": 128000,
|
711
|
+
"max_tokens": 16384,
|
712
|
+
"type": "chat",
|
713
|
+
"family": "gpt4o_realtime",
|
714
|
+
"supports_vision": false,
|
715
|
+
"supports_functions": true,
|
716
|
+
"supports_json_mode": false,
|
717
|
+
"input_price_per_million": 0.5,
|
718
|
+
"output_price_per_million": 1.5,
|
719
|
+
"metadata": {
|
720
|
+
"object": "model",
|
721
|
+
"owned_by": "system"
|
722
|
+
}
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"id": "gpt-3.5-turbo-16k",
|
726
|
+
"created_at": "2023-05-11T00:35:02+02:00",
|
727
|
+
"display_name": "GPT-3.5-Turbo 16k",
|
728
|
+
"provider": "openai",
|
729
|
+
"context_window": 16385,
|
730
|
+
"max_tokens": 4096,
|
731
|
+
"type": "chat",
|
732
|
+
"family": "gpt35",
|
733
|
+
"supports_vision": false,
|
734
|
+
"supports_functions": true,
|
735
|
+
"supports_json_mode": true,
|
736
|
+
"input_price_per_million": 0.5,
|
737
|
+
"output_price_per_million": 1.5,
|
738
|
+
"metadata": {
|
739
|
+
"object": "model",
|
740
|
+
"owned_by": "openai-internal"
|
741
|
+
}
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"id": "text-embedding-3-small",
|
745
|
+
"created_at": "2024-01-22T19:43:17+01:00",
|
746
|
+
"display_name": "Text Embedding 3 Small",
|
747
|
+
"provider": "openai",
|
748
|
+
"context_window": 4096,
|
749
|
+
"max_tokens": 4096,
|
750
|
+
"type": "embedding",
|
751
|
+
"family": "embedding3_small",
|
752
|
+
"supports_vision": false,
|
753
|
+
"supports_functions": true,
|
754
|
+
"supports_json_mode": false,
|
755
|
+
"input_price_per_million": 0.5,
|
756
|
+
"output_price_per_million": 1.5,
|
757
|
+
"metadata": {
|
758
|
+
"object": "model",
|
759
|
+
"owned_by": "system"
|
760
|
+
}
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"id": "gpt-4",
|
764
|
+
"created_at": "2023-06-27T18:13:31+02:00",
|
765
|
+
"display_name": "GPT-4",
|
766
|
+
"provider": "openai",
|
767
|
+
"context_window": 4096,
|
768
|
+
"max_tokens": 4096,
|
769
|
+
"type": "chat",
|
770
|
+
"family": "gpt4",
|
771
|
+
"supports_vision": false,
|
772
|
+
"supports_functions": true,
|
773
|
+
"supports_json_mode": false,
|
774
|
+
"input_price_per_million": 0.5,
|
775
|
+
"output_price_per_million": 1.5,
|
776
|
+
"metadata": {
|
777
|
+
"object": "model",
|
778
|
+
"owned_by": "openai"
|
779
|
+
}
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"id": "gpt-4o-2024-05-13",
|
783
|
+
"created_at": "2024-05-10T21:08:52+02:00",
|
784
|
+
"display_name": "GPT-4o 20240513",
|
785
|
+
"provider": "openai",
|
786
|
+
"context_window": 128000,
|
787
|
+
"max_tokens": 16384,
|
788
|
+
"type": "chat",
|
789
|
+
"family": "gpt4o",
|
790
|
+
"supports_vision": false,
|
791
|
+
"supports_functions": true,
|
792
|
+
"supports_json_mode": false,
|
793
|
+
"input_price_per_million": 0.5,
|
794
|
+
"output_price_per_million": 1.5,
|
795
|
+
"metadata": {
|
796
|
+
"object": "model",
|
797
|
+
"owned_by": "system"
|
798
|
+
}
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"id": "gpt-4-1106-preview",
|
802
|
+
"created_at": "2023-11-02T21:33:26+01:00",
|
803
|
+
"display_name": "GPT-4-1106 Preview",
|
804
|
+
"provider": "openai",
|
805
|
+
"context_window": 4096,
|
806
|
+
"max_tokens": 4096,
|
807
|
+
"type": "chat",
|
808
|
+
"family": "gpt4",
|
809
|
+
"supports_vision": true,
|
810
|
+
"supports_functions": true,
|
811
|
+
"supports_json_mode": true,
|
812
|
+
"input_price_per_million": 0.5,
|
813
|
+
"output_price_per_million": 1.5,
|
814
|
+
"metadata": {
|
815
|
+
"object": "model",
|
816
|
+
"owned_by": "system"
|
817
|
+
}
|
818
|
+
},
|
819
|
+
{
|
820
|
+
"id": "text-embedding-ada-002",
|
821
|
+
"created_at": "2022-12-16T20:01:39+01:00",
|
822
|
+
"display_name": "Text Embedding Ada 002",
|
823
|
+
"provider": "openai",
|
824
|
+
"context_window": 4096,
|
825
|
+
"max_tokens": 4096,
|
826
|
+
"type": "embedding",
|
827
|
+
"family": "embedding2",
|
828
|
+
"supports_vision": false,
|
829
|
+
"supports_functions": true,
|
830
|
+
"supports_json_mode": false,
|
831
|
+
"input_price_per_million": 0.5,
|
832
|
+
"output_price_per_million": 1.5,
|
833
|
+
"metadata": {
|
834
|
+
"object": "model",
|
835
|
+
"owned_by": "openai-internal"
|
836
|
+
}
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"id": "omni-moderation-latest",
|
840
|
+
"created_at": "2024-11-15T17:47:45+01:00",
|
841
|
+
"display_name": "Omni Moderation Latest",
|
842
|
+
"provider": "openai",
|
843
|
+
"context_window": 4096,
|
844
|
+
"max_tokens": 4096,
|
845
|
+
"type": "moderation",
|
846
|
+
"family": "moderation",
|
847
|
+
"supports_vision": false,
|
848
|
+
"supports_functions": true,
|
849
|
+
"supports_json_mode": false,
|
850
|
+
"input_price_per_million": 0.5,
|
851
|
+
"output_price_per_million": 1.5,
|
852
|
+
"metadata": {
|
853
|
+
"object": "model",
|
854
|
+
"owned_by": "system"
|
855
|
+
}
|
856
|
+
},
|
857
|
+
{
|
858
|
+
"id": "gpt-4-0613",
|
859
|
+
"created_at": "2023-06-12T18:54:56+02:00",
|
860
|
+
"display_name": "GPT-4-0613",
|
861
|
+
"provider": "openai",
|
862
|
+
"context_window": 8192,
|
863
|
+
"max_tokens": 8192,
|
864
|
+
"type": "chat",
|
865
|
+
"family": "gpt4",
|
866
|
+
"supports_vision": false,
|
867
|
+
"supports_functions": true,
|
868
|
+
"supports_json_mode": false,
|
869
|
+
"input_price_per_million": 0.5,
|
870
|
+
"output_price_per_million": 1.5,
|
871
|
+
"metadata": {
|
872
|
+
"object": "model",
|
873
|
+
"owned_by": "openai"
|
874
|
+
}
|
875
|
+
},
|
876
|
+
{
|
877
|
+
"id": "gpt-4-turbo-preview",
|
878
|
+
"created_at": "2024-01-23T20:22:57+01:00",
|
879
|
+
"display_name": "GPT-4-Turbo Preview",
|
880
|
+
"provider": "openai",
|
881
|
+
"context_window": 128000,
|
882
|
+
"max_tokens": 16384,
|
883
|
+
"type": "chat",
|
884
|
+
"family": "gpt4_turbo",
|
885
|
+
"supports_vision": true,
|
886
|
+
"supports_functions": true,
|
887
|
+
"supports_json_mode": true,
|
888
|
+
"input_price_per_million": 0.5,
|
889
|
+
"output_price_per_million": 1.5,
|
890
|
+
"metadata": {
|
891
|
+
"object": "model",
|
892
|
+
"owned_by": "system"
|
893
|
+
}
|
894
|
+
},
|
895
|
+
{
|
896
|
+
"id": "gpt-4-0125-preview",
|
897
|
+
"created_at": "2024-01-23T20:20:12+01:00",
|
898
|
+
"display_name": "GPT-4-0125 Preview",
|
899
|
+
"provider": "openai",
|
900
|
+
"context_window": 8192,
|
901
|
+
"max_tokens": 8192,
|
902
|
+
"type": "chat",
|
903
|
+
"family": "gpt4",
|
904
|
+
"supports_vision": true,
|
905
|
+
"supports_functions": true,
|
906
|
+
"supports_json_mode": true,
|
907
|
+
"input_price_per_million": 0.5,
|
908
|
+
"output_price_per_million": 1.5,
|
909
|
+
"metadata": {
|
910
|
+
"object": "model",
|
911
|
+
"owned_by": "system"
|
912
|
+
}
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"id": "claude-3-5-sonnet-20241022",
|
916
|
+
"created_at": "2024-10-22T00:00:00Z",
|
917
|
+
"display_name": "Claude 3.5 Sonnet (New)",
|
918
|
+
"provider": "anthropic",
|
919
|
+
"context_window": 200000,
|
920
|
+
"max_tokens": 8192,
|
921
|
+
"type": "model",
|
922
|
+
"family": "claude35_sonnet",
|
923
|
+
"supports_vision": true,
|
924
|
+
"supports_functions": true,
|
925
|
+
"supports_json_mode": true,
|
926
|
+
"input_price_per_million": 3.0,
|
927
|
+
"output_price_per_million": 15.0,
|
928
|
+
"metadata": {}
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"id": "claude-3-5-haiku-20241022",
|
932
|
+
"created_at": "2024-10-22T00:00:00Z",
|
933
|
+
"display_name": "Claude 3.5 Haiku",
|
934
|
+
"provider": "anthropic",
|
935
|
+
"context_window": 200000,
|
936
|
+
"max_tokens": 8192,
|
937
|
+
"type": "model",
|
938
|
+
"family": "claude35_haiku",
|
939
|
+
"supports_vision": false,
|
940
|
+
"supports_functions": true,
|
941
|
+
"supports_json_mode": true,
|
942
|
+
"input_price_per_million": 0.8,
|
943
|
+
"output_price_per_million": 4.0,
|
944
|
+
"metadata": {}
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"id": "claude-3-5-sonnet-20240620",
|
948
|
+
"created_at": "2024-06-20T00:00:00Z",
|
949
|
+
"display_name": "Claude 3.5 Sonnet (Old)",
|
950
|
+
"provider": "anthropic",
|
951
|
+
"context_window": 200000,
|
952
|
+
"max_tokens": 8192,
|
953
|
+
"type": "model",
|
954
|
+
"family": "claude35_sonnet",
|
955
|
+
"supports_vision": true,
|
956
|
+
"supports_functions": true,
|
957
|
+
"supports_json_mode": true,
|
958
|
+
"input_price_per_million": 3.0,
|
959
|
+
"output_price_per_million": 15.0,
|
960
|
+
"metadata": {}
|
961
|
+
},
|
962
|
+
{
|
963
|
+
"id": "claude-3-haiku-20240307",
|
964
|
+
"created_at": "2024-03-07T00:00:00Z",
|
965
|
+
"display_name": "Claude 3 Haiku",
|
966
|
+
"provider": "anthropic",
|
967
|
+
"context_window": 200000,
|
968
|
+
"max_tokens": 4096,
|
969
|
+
"type": "model",
|
970
|
+
"family": "claude3_haiku",
|
971
|
+
"supports_vision": true,
|
972
|
+
"supports_functions": true,
|
973
|
+
"supports_json_mode": true,
|
974
|
+
"input_price_per_million": 0.25,
|
975
|
+
"output_price_per_million": 1.25,
|
976
|
+
"metadata": {}
|
977
|
+
},
|
978
|
+
{
|
979
|
+
"id": "claude-3-opus-20240229",
|
980
|
+
"created_at": "2024-02-29T00:00:00Z",
|
981
|
+
"display_name": "Claude 3 Opus",
|
982
|
+
"provider": "anthropic",
|
983
|
+
"context_window": 200000,
|
984
|
+
"max_tokens": 4096,
|
985
|
+
"type": "model",
|
986
|
+
"family": "claude3_opus",
|
987
|
+
"supports_vision": true,
|
988
|
+
"supports_functions": true,
|
989
|
+
"supports_json_mode": true,
|
990
|
+
"input_price_per_million": 15.0,
|
991
|
+
"output_price_per_million": 75.0,
|
992
|
+
"metadata": {}
|
993
|
+
},
|
994
|
+
{
|
995
|
+
"id": "claude-3-sonnet-20240229",
|
996
|
+
"created_at": "2024-02-29T00:00:00Z",
|
997
|
+
"display_name": "Claude 3 Sonnet",
|
998
|
+
"provider": "anthropic",
|
999
|
+
"context_window": 200000,
|
1000
|
+
"max_tokens": 4096,
|
1001
|
+
"type": "model",
|
1002
|
+
"family": "claude3_sonnet",
|
1003
|
+
"supports_vision": true,
|
1004
|
+
"supports_functions": true,
|
1005
|
+
"supports_json_mode": true,
|
1006
|
+
"input_price_per_million": 3.0,
|
1007
|
+
"output_price_per_million": 15.0,
|
1008
|
+
"metadata": {}
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
"id": "claude-2.1",
|
1012
|
+
"created_at": "2023-11-21T00:00:00Z",
|
1013
|
+
"display_name": "Claude 2.1",
|
1014
|
+
"provider": "anthropic",
|
1015
|
+
"context_window": 100000,
|
1016
|
+
"max_tokens": 4096,
|
1017
|
+
"type": "model",
|
1018
|
+
"family": "claude2",
|
1019
|
+
"supports_vision": false,
|
1020
|
+
"supports_functions": false,
|
1021
|
+
"supports_json_mode": false,
|
1022
|
+
"input_price_per_million": 3.0,
|
1023
|
+
"output_price_per_million": 15.0,
|
1024
|
+
"metadata": {}
|
1025
|
+
},
|
1026
|
+
{
|
1027
|
+
"id": "claude-2.0",
|
1028
|
+
"created_at": "2023-07-11T00:00:00Z",
|
1029
|
+
"display_name": "Claude 2.0",
|
1030
|
+
"provider": "anthropic",
|
1031
|
+
"context_window": 100000,
|
1032
|
+
"max_tokens": 4096,
|
1033
|
+
"type": "model",
|
1034
|
+
"family": "claude2",
|
1035
|
+
"supports_vision": false,
|
1036
|
+
"supports_functions": false,
|
1037
|
+
"supports_json_mode": false,
|
1038
|
+
"input_price_per_million": 3.0,
|
1039
|
+
"output_price_per_million": 15.0,
|
1040
|
+
"metadata": {}
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"id": "chat-bison-001",
|
1044
|
+
"created_at": null,
|
1045
|
+
"display_name": "chat-bison-001",
|
1046
|
+
"provider": "gemini",
|
1047
|
+
"context_window": 32768,
|
1048
|
+
"max_tokens": 4096,
|
1049
|
+
"type": "legacy",
|
1050
|
+
"family": "bison",
|
1051
|
+
"supports_vision": false,
|
1052
|
+
"supports_functions": false,
|
1053
|
+
"supports_json_mode": false,
|
1054
|
+
"input_price_per_million": 0.075,
|
1055
|
+
"output_price_per_million": 0.3,
|
1056
|
+
"metadata": {
|
1057
|
+
"object": "model",
|
1058
|
+
"owned_by": "google"
|
1059
|
+
}
|
1060
|
+
},
|
1061
|
+
{
|
1062
|
+
"id": "text-bison-001",
|
1063
|
+
"created_at": null,
|
1064
|
+
"display_name": "text-bison-001",
|
1065
|
+
"provider": "gemini",
|
1066
|
+
"context_window": 32768,
|
1067
|
+
"max_tokens": 4096,
|
1068
|
+
"type": "legacy",
|
1069
|
+
"family": "bison",
|
1070
|
+
"supports_vision": false,
|
1071
|
+
"supports_functions": false,
|
1072
|
+
"supports_json_mode": false,
|
1073
|
+
"input_price_per_million": 0.075,
|
1074
|
+
"output_price_per_million": 0.3,
|
1075
|
+
"metadata": {
|
1076
|
+
"object": "model",
|
1077
|
+
"owned_by": "google"
|
1078
|
+
}
|
1079
|
+
},
|
1080
|
+
{
|
1081
|
+
"id": "text-bison-safety-recitation-off",
|
1082
|
+
"created_at": null,
|
1083
|
+
"display_name": "text-bison-safety-recitation-off",
|
1084
|
+
"provider": "gemini",
|
1085
|
+
"context_window": 32768,
|
1086
|
+
"max_tokens": 4096,
|
1087
|
+
"type": "legacy",
|
1088
|
+
"family": "bison",
|
1089
|
+
"supports_vision": false,
|
1090
|
+
"supports_functions": false,
|
1091
|
+
"supports_json_mode": false,
|
1092
|
+
"input_price_per_million": 0.075,
|
1093
|
+
"output_price_per_million": 0.3,
|
1094
|
+
"metadata": {
|
1095
|
+
"object": "model",
|
1096
|
+
"owned_by": "google"
|
1097
|
+
}
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
"id": "text-bison-safety-off",
|
1101
|
+
"created_at": null,
|
1102
|
+
"display_name": "text-bison-safety-off",
|
1103
|
+
"provider": "gemini",
|
1104
|
+
"context_window": 32768,
|
1105
|
+
"max_tokens": 4096,
|
1106
|
+
"type": "legacy",
|
1107
|
+
"family": "bison",
|
1108
|
+
"supports_vision": false,
|
1109
|
+
"supports_functions": false,
|
1110
|
+
"supports_json_mode": false,
|
1111
|
+
"input_price_per_million": 0.075,
|
1112
|
+
"output_price_per_million": 0.3,
|
1113
|
+
"metadata": {
|
1114
|
+
"object": "model",
|
1115
|
+
"owned_by": "google"
|
1116
|
+
}
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"id": "text-bison-recitation-off",
|
1120
|
+
"created_at": null,
|
1121
|
+
"display_name": "text-bison-recitation-off",
|
1122
|
+
"provider": "gemini",
|
1123
|
+
"context_window": 32768,
|
1124
|
+
"max_tokens": 4096,
|
1125
|
+
"type": "legacy",
|
1126
|
+
"family": "bison",
|
1127
|
+
"supports_vision": false,
|
1128
|
+
"supports_functions": false,
|
1129
|
+
"supports_json_mode": false,
|
1130
|
+
"input_price_per_million": 0.075,
|
1131
|
+
"output_price_per_million": 0.3,
|
1132
|
+
"metadata": {
|
1133
|
+
"object": "model",
|
1134
|
+
"owned_by": "google"
|
1135
|
+
}
|
1136
|
+
},
|
1137
|
+
{
|
1138
|
+
"id": "embedding-gecko-001",
|
1139
|
+
"created_at": null,
|
1140
|
+
"display_name": "embedding-gecko-001",
|
1141
|
+
"provider": "gemini",
|
1142
|
+
"context_window": 32768,
|
1143
|
+
"max_tokens": 4096,
|
1144
|
+
"type": "embedding",
|
1145
|
+
"family": "other",
|
1146
|
+
"supports_vision": false,
|
1147
|
+
"supports_functions": false,
|
1148
|
+
"supports_json_mode": false,
|
1149
|
+
"input_price_per_million": 0.0,
|
1150
|
+
"output_price_per_million": 0.0,
|
1151
|
+
"metadata": {
|
1152
|
+
"object": "model",
|
1153
|
+
"owned_by": "google"
|
1154
|
+
}
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"id": "evergreen-custom",
|
1158
|
+
"created_at": null,
|
1159
|
+
"display_name": "evergreen-custom",
|
1160
|
+
"provider": "gemini",
|
1161
|
+
"context_window": 32768,
|
1162
|
+
"max_tokens": 4096,
|
1163
|
+
"type": "chat",
|
1164
|
+
"family": "other",
|
1165
|
+
"supports_vision": false,
|
1166
|
+
"supports_functions": false,
|
1167
|
+
"supports_json_mode": false,
|
1168
|
+
"input_price_per_million": 0.075,
|
1169
|
+
"output_price_per_million": 0.3,
|
1170
|
+
"metadata": {
|
1171
|
+
"object": "model",
|
1172
|
+
"owned_by": "google"
|
1173
|
+
}
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
"id": "gemini-1.0-pro-latest",
|
1177
|
+
"created_at": null,
|
1178
|
+
"display_name": "gemini-1.0-pro-latest",
|
1179
|
+
"provider": "gemini",
|
1180
|
+
"context_window": 32768,
|
1181
|
+
"max_tokens": 4096,
|
1182
|
+
"type": "chat",
|
1183
|
+
"family": "other",
|
1184
|
+
"supports_vision": true,
|
1185
|
+
"supports_functions": true,
|
1186
|
+
"supports_json_mode": true,
|
1187
|
+
"input_price_per_million": 0.075,
|
1188
|
+
"output_price_per_million": 0.3,
|
1189
|
+
"metadata": {
|
1190
|
+
"object": "model",
|
1191
|
+
"owned_by": "google"
|
1192
|
+
}
|
1193
|
+
},
|
1194
|
+
{
|
1195
|
+
"id": "gemini-1.0-pro",
|
1196
|
+
"created_at": null,
|
1197
|
+
"display_name": "gemini-1.0-pro",
|
1198
|
+
"provider": "gemini",
|
1199
|
+
"context_window": 32768,
|
1200
|
+
"max_tokens": 4096,
|
1201
|
+
"type": "chat",
|
1202
|
+
"family": "other",
|
1203
|
+
"supports_vision": true,
|
1204
|
+
"supports_functions": true,
|
1205
|
+
"supports_json_mode": true,
|
1206
|
+
"input_price_per_million": 0.075,
|
1207
|
+
"output_price_per_million": 0.3,
|
1208
|
+
"metadata": {
|
1209
|
+
"object": "model",
|
1210
|
+
"owned_by": "google"
|
1211
|
+
}
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"id": "gemini-pro",
|
1215
|
+
"created_at": null,
|
1216
|
+
"display_name": "gemini-pro",
|
1217
|
+
"provider": "gemini",
|
1218
|
+
"context_window": 32768,
|
1219
|
+
"max_tokens": 4096,
|
1220
|
+
"type": "chat",
|
1221
|
+
"family": "other",
|
1222
|
+
"supports_vision": false,
|
1223
|
+
"supports_functions": false,
|
1224
|
+
"supports_json_mode": false,
|
1225
|
+
"input_price_per_million": 0.075,
|
1226
|
+
"output_price_per_million": 0.3,
|
1227
|
+
"metadata": {
|
1228
|
+
"object": "model",
|
1229
|
+
"owned_by": "google"
|
1230
|
+
}
|
1231
|
+
},
|
1232
|
+
{
|
1233
|
+
"id": "gemini-1.0-pro-001",
|
1234
|
+
"created_at": null,
|
1235
|
+
"display_name": "gemini-1.0-pro-001",
|
1236
|
+
"provider": "gemini",
|
1237
|
+
"context_window": 32768,
|
1238
|
+
"max_tokens": 4096,
|
1239
|
+
"type": "chat",
|
1240
|
+
"family": "other",
|
1241
|
+
"supports_vision": true,
|
1242
|
+
"supports_functions": true,
|
1243
|
+
"supports_json_mode": true,
|
1244
|
+
"input_price_per_million": 0.075,
|
1245
|
+
"output_price_per_million": 0.3,
|
1246
|
+
"metadata": {
|
1247
|
+
"object": "model",
|
1248
|
+
"owned_by": "google"
|
1249
|
+
}
|
1250
|
+
},
|
1251
|
+
{
|
1252
|
+
"id": "gemini-1.0-pro-vision-latest",
|
1253
|
+
"created_at": null,
|
1254
|
+
"display_name": "gemini-1.0-pro-vision-latest",
|
1255
|
+
"provider": "gemini",
|
1256
|
+
"context_window": 32768,
|
1257
|
+
"max_tokens": 4096,
|
1258
|
+
"type": "chat",
|
1259
|
+
"family": "other",
|
1260
|
+
"supports_vision": true,
|
1261
|
+
"supports_functions": true,
|
1262
|
+
"supports_json_mode": true,
|
1263
|
+
"input_price_per_million": 0.075,
|
1264
|
+
"output_price_per_million": 0.3,
|
1265
|
+
"metadata": {
|
1266
|
+
"object": "model",
|
1267
|
+
"owned_by": "google"
|
1268
|
+
}
|
1269
|
+
},
|
1270
|
+
{
|
1271
|
+
"id": "gemini-pro-vision",
|
1272
|
+
"created_at": null,
|
1273
|
+
"display_name": "gemini-pro-vision",
|
1274
|
+
"provider": "gemini",
|
1275
|
+
"context_window": 32768,
|
1276
|
+
"max_tokens": 4096,
|
1277
|
+
"type": "chat",
|
1278
|
+
"family": "other",
|
1279
|
+
"supports_vision": false,
|
1280
|
+
"supports_functions": false,
|
1281
|
+
"supports_json_mode": false,
|
1282
|
+
"input_price_per_million": 0.075,
|
1283
|
+
"output_price_per_million": 0.3,
|
1284
|
+
"metadata": {
|
1285
|
+
"object": "model",
|
1286
|
+
"owned_by": "google"
|
1287
|
+
}
|
1288
|
+
},
|
1289
|
+
{
|
1290
|
+
"id": "gemini-1.5-pro-latest",
|
1291
|
+
"created_at": null,
|
1292
|
+
"display_name": "gemini-1.5-pro-latest",
|
1293
|
+
"provider": "gemini",
|
1294
|
+
"context_window": 2097152,
|
1295
|
+
"max_tokens": 8192,
|
1296
|
+
"type": "chat",
|
1297
|
+
"family": "gemini15_pro",
|
1298
|
+
"supports_vision": true,
|
1299
|
+
"supports_functions": true,
|
1300
|
+
"supports_json_mode": true,
|
1301
|
+
"input_price_per_million": 1.25,
|
1302
|
+
"output_price_per_million": 5.0,
|
1303
|
+
"metadata": {
|
1304
|
+
"object": "model",
|
1305
|
+
"owned_by": "google"
|
1306
|
+
}
|
1307
|
+
},
|
1308
|
+
{
|
1309
|
+
"id": "gemini-1.5-pro-001",
|
1310
|
+
"created_at": null,
|
1311
|
+
"display_name": "gemini-1.5-pro-001",
|
1312
|
+
"provider": "gemini",
|
1313
|
+
"context_window": 2097152,
|
1314
|
+
"max_tokens": 8192,
|
1315
|
+
"type": "chat",
|
1316
|
+
"family": "gemini15_pro",
|
1317
|
+
"supports_vision": true,
|
1318
|
+
"supports_functions": true,
|
1319
|
+
"supports_json_mode": true,
|
1320
|
+
"input_price_per_million": 1.25,
|
1321
|
+
"output_price_per_million": 5.0,
|
1322
|
+
"metadata": {
|
1323
|
+
"object": "model",
|
1324
|
+
"owned_by": "google"
|
1325
|
+
}
|
1326
|
+
},
|
1327
|
+
{
|
1328
|
+
"id": "gemini-1.5-pro-002",
|
1329
|
+
"created_at": null,
|
1330
|
+
"display_name": "gemini-1.5-pro-002",
|
1331
|
+
"provider": "gemini",
|
1332
|
+
"context_window": 2097152,
|
1333
|
+
"max_tokens": 8192,
|
1334
|
+
"type": "chat",
|
1335
|
+
"family": "gemini15_pro",
|
1336
|
+
"supports_vision": true,
|
1337
|
+
"supports_functions": true,
|
1338
|
+
"supports_json_mode": true,
|
1339
|
+
"input_price_per_million": 1.25,
|
1340
|
+
"output_price_per_million": 5.0,
|
1341
|
+
"metadata": {
|
1342
|
+
"object": "model",
|
1343
|
+
"owned_by": "google"
|
1344
|
+
}
|
1345
|
+
},
|
1346
|
+
{
|
1347
|
+
"id": "gemini-1.5-pro",
|
1348
|
+
"created_at": null,
|
1349
|
+
"display_name": "gemini-1.5-pro",
|
1350
|
+
"provider": "gemini",
|
1351
|
+
"context_window": 2097152,
|
1352
|
+
"max_tokens": 8192,
|
1353
|
+
"type": "chat",
|
1354
|
+
"family": "gemini15_pro",
|
1355
|
+
"supports_vision": true,
|
1356
|
+
"supports_functions": true,
|
1357
|
+
"supports_json_mode": true,
|
1358
|
+
"input_price_per_million": 1.25,
|
1359
|
+
"output_price_per_million": 5.0,
|
1360
|
+
"metadata": {
|
1361
|
+
"object": "model",
|
1362
|
+
"owned_by": "google"
|
1363
|
+
}
|
1364
|
+
},
|
1365
|
+
{
|
1366
|
+
"id": "gemini-1.5-flash-latest",
|
1367
|
+
"created_at": null,
|
1368
|
+
"display_name": "gemini-1.5-flash-latest",
|
1369
|
+
"provider": "gemini",
|
1370
|
+
"context_window": 1048576,
|
1371
|
+
"max_tokens": 8192,
|
1372
|
+
"type": "chat",
|
1373
|
+
"family": "gemini15_flash",
|
1374
|
+
"supports_vision": true,
|
1375
|
+
"supports_functions": true,
|
1376
|
+
"supports_json_mode": true,
|
1377
|
+
"input_price_per_million": 0.075,
|
1378
|
+
"output_price_per_million": 0.3,
|
1379
|
+
"metadata": {
|
1380
|
+
"object": "model",
|
1381
|
+
"owned_by": "google"
|
1382
|
+
}
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
"id": "gemini-1.5-flash-001",
|
1386
|
+
"created_at": null,
|
1387
|
+
"display_name": "gemini-1.5-flash-001",
|
1388
|
+
"provider": "gemini",
|
1389
|
+
"context_window": 1048576,
|
1390
|
+
"max_tokens": 8192,
|
1391
|
+
"type": "chat",
|
1392
|
+
"family": "gemini15_flash",
|
1393
|
+
"supports_vision": true,
|
1394
|
+
"supports_functions": true,
|
1395
|
+
"supports_json_mode": true,
|
1396
|
+
"input_price_per_million": 0.075,
|
1397
|
+
"output_price_per_million": 0.3,
|
1398
|
+
"metadata": {
|
1399
|
+
"object": "model",
|
1400
|
+
"owned_by": "google"
|
1401
|
+
}
|
1402
|
+
},
|
1403
|
+
{
|
1404
|
+
"id": "gemini-1.5-flash-001-tuning",
|
1405
|
+
"created_at": null,
|
1406
|
+
"display_name": "gemini-1.5-flash-001-tuning",
|
1407
|
+
"provider": "gemini",
|
1408
|
+
"context_window": 1048576,
|
1409
|
+
"max_tokens": 8192,
|
1410
|
+
"type": "chat",
|
1411
|
+
"family": "gemini15_flash",
|
1412
|
+
"supports_vision": true,
|
1413
|
+
"supports_functions": true,
|
1414
|
+
"supports_json_mode": true,
|
1415
|
+
"input_price_per_million": 0.075,
|
1416
|
+
"output_price_per_million": 0.3,
|
1417
|
+
"metadata": {
|
1418
|
+
"object": "model",
|
1419
|
+
"owned_by": "google"
|
1420
|
+
}
|
1421
|
+
},
|
1422
|
+
{
|
1423
|
+
"id": "gemini-1.5-flash",
|
1424
|
+
"created_at": null,
|
1425
|
+
"display_name": "gemini-1.5-flash",
|
1426
|
+
"provider": "gemini",
|
1427
|
+
"context_window": 1048576,
|
1428
|
+
"max_tokens": 8192,
|
1429
|
+
"type": "chat",
|
1430
|
+
"family": "gemini15_flash",
|
1431
|
+
"supports_vision": true,
|
1432
|
+
"supports_functions": true,
|
1433
|
+
"supports_json_mode": true,
|
1434
|
+
"input_price_per_million": 0.075,
|
1435
|
+
"output_price_per_million": 0.3,
|
1436
|
+
"metadata": {
|
1437
|
+
"object": "model",
|
1438
|
+
"owned_by": "google"
|
1439
|
+
}
|
1440
|
+
},
|
1441
|
+
{
|
1442
|
+
"id": "gemini-1.5-flash-002",
|
1443
|
+
"created_at": null,
|
1444
|
+
"display_name": "gemini-1.5-flash-002",
|
1445
|
+
"provider": "gemini",
|
1446
|
+
"context_window": 1048576,
|
1447
|
+
"max_tokens": 8192,
|
1448
|
+
"type": "chat",
|
1449
|
+
"family": "gemini15_flash",
|
1450
|
+
"supports_vision": true,
|
1451
|
+
"supports_functions": true,
|
1452
|
+
"supports_json_mode": true,
|
1453
|
+
"input_price_per_million": 0.075,
|
1454
|
+
"output_price_per_million": 0.3,
|
1455
|
+
"metadata": {
|
1456
|
+
"object": "model",
|
1457
|
+
"owned_by": "google"
|
1458
|
+
}
|
1459
|
+
},
|
1460
|
+
{
|
1461
|
+
"id": "gemini-1.5-flash-dark-launch",
|
1462
|
+
"created_at": null,
|
1463
|
+
"display_name": "gemini-1.5-flash-dark-launch",
|
1464
|
+
"provider": "gemini",
|
1465
|
+
"context_window": 1048576,
|
1466
|
+
"max_tokens": 8192,
|
1467
|
+
"type": "chat",
|
1468
|
+
"family": "gemini15_flash",
|
1469
|
+
"supports_vision": true,
|
1470
|
+
"supports_functions": true,
|
1471
|
+
"supports_json_mode": true,
|
1472
|
+
"input_price_per_million": 0.075,
|
1473
|
+
"output_price_per_million": 0.3,
|
1474
|
+
"metadata": {
|
1475
|
+
"object": "model",
|
1476
|
+
"owned_by": "google"
|
1477
|
+
}
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"id": "gemini-test-23",
|
1481
|
+
"created_at": null,
|
1482
|
+
"display_name": "gemini-test-23",
|
1483
|
+
"provider": "gemini",
|
1484
|
+
"context_window": 32768,
|
1485
|
+
"max_tokens": 4096,
|
1486
|
+
"type": "chat",
|
1487
|
+
"family": "other",
|
1488
|
+
"supports_vision": false,
|
1489
|
+
"supports_functions": false,
|
1490
|
+
"supports_json_mode": false,
|
1491
|
+
"input_price_per_million": 0.075,
|
1492
|
+
"output_price_per_million": 0.3,
|
1493
|
+
"metadata": {
|
1494
|
+
"object": "model",
|
1495
|
+
"owned_by": "google"
|
1496
|
+
}
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
"id": "gemini-1.5-flash-8b",
|
1500
|
+
"created_at": null,
|
1501
|
+
"display_name": "gemini-1.5-flash-8b",
|
1502
|
+
"provider": "gemini",
|
1503
|
+
"context_window": 1048576,
|
1504
|
+
"max_tokens": 8192,
|
1505
|
+
"type": "chat",
|
1506
|
+
"family": "gemini15_flash_8b",
|
1507
|
+
"supports_vision": true,
|
1508
|
+
"supports_functions": true,
|
1509
|
+
"supports_json_mode": true,
|
1510
|
+
"input_price_per_million": 0.0375,
|
1511
|
+
"output_price_per_million": 0.15,
|
1512
|
+
"metadata": {
|
1513
|
+
"object": "model",
|
1514
|
+
"owned_by": "google"
|
1515
|
+
}
|
1516
|
+
},
|
1517
|
+
{
|
1518
|
+
"id": "gemini-1.5-flash-8b-001",
|
1519
|
+
"created_at": null,
|
1520
|
+
"display_name": "gemini-1.5-flash-8b-001",
|
1521
|
+
"provider": "gemini",
|
1522
|
+
"context_window": 1048576,
|
1523
|
+
"max_tokens": 8192,
|
1524
|
+
"type": "chat",
|
1525
|
+
"family": "gemini15_flash_8b",
|
1526
|
+
"supports_vision": true,
|
1527
|
+
"supports_functions": true,
|
1528
|
+
"supports_json_mode": true,
|
1529
|
+
"input_price_per_million": 0.0375,
|
1530
|
+
"output_price_per_million": 0.15,
|
1531
|
+
"metadata": {
|
1532
|
+
"object": "model",
|
1533
|
+
"owned_by": "google"
|
1534
|
+
}
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"id": "gemini-1.5-flash-8b-latest",
|
1538
|
+
"created_at": null,
|
1539
|
+
"display_name": "gemini-1.5-flash-8b-latest",
|
1540
|
+
"provider": "gemini",
|
1541
|
+
"context_window": 1048576,
|
1542
|
+
"max_tokens": 8192,
|
1543
|
+
"type": "chat",
|
1544
|
+
"family": "gemini15_flash_8b",
|
1545
|
+
"supports_vision": true,
|
1546
|
+
"supports_functions": true,
|
1547
|
+
"supports_json_mode": true,
|
1548
|
+
"input_price_per_million": 0.0375,
|
1549
|
+
"output_price_per_million": 0.15,
|
1550
|
+
"metadata": {
|
1551
|
+
"object": "model",
|
1552
|
+
"owned_by": "google"
|
1553
|
+
}
|
1554
|
+
},
|
1555
|
+
{
|
1556
|
+
"id": "gemini-1.5-flash-8b-exp-0827",
|
1557
|
+
"created_at": null,
|
1558
|
+
"display_name": "gemini-1.5-flash-8b-exp-0827",
|
1559
|
+
"provider": "gemini",
|
1560
|
+
"context_window": 1048576,
|
1561
|
+
"max_tokens": 8192,
|
1562
|
+
"type": "chat",
|
1563
|
+
"family": "gemini15_flash_8b",
|
1564
|
+
"supports_vision": true,
|
1565
|
+
"supports_functions": true,
|
1566
|
+
"supports_json_mode": true,
|
1567
|
+
"input_price_per_million": 0.0375,
|
1568
|
+
"output_price_per_million": 0.15,
|
1569
|
+
"metadata": {
|
1570
|
+
"object": "model",
|
1571
|
+
"owned_by": "google"
|
1572
|
+
}
|
1573
|
+
},
|
1574
|
+
{
|
1575
|
+
"id": "gemini-1.5-flash-8b-exp-0924",
|
1576
|
+
"created_at": null,
|
1577
|
+
"display_name": "gemini-1.5-flash-8b-exp-0924",
|
1578
|
+
"provider": "gemini",
|
1579
|
+
"context_window": 1048576,
|
1580
|
+
"max_tokens": 8192,
|
1581
|
+
"type": "chat",
|
1582
|
+
"family": "gemini15_flash_8b",
|
1583
|
+
"supports_vision": true,
|
1584
|
+
"supports_functions": true,
|
1585
|
+
"supports_json_mode": true,
|
1586
|
+
"input_price_per_million": 0.0375,
|
1587
|
+
"output_price_per_million": 0.15,
|
1588
|
+
"metadata": {
|
1589
|
+
"object": "model",
|
1590
|
+
"owned_by": "google"
|
1591
|
+
}
|
1592
|
+
},
|
1593
|
+
{
|
1594
|
+
"id": "gemini-2.0-flash-exp",
|
1595
|
+
"created_at": null,
|
1596
|
+
"display_name": "gemini-2.0-flash-exp",
|
1597
|
+
"provider": "gemini",
|
1598
|
+
"context_window": 1048576,
|
1599
|
+
"max_tokens": 8192,
|
1600
|
+
"type": "chat",
|
1601
|
+
"family": "gemini20_flash",
|
1602
|
+
"supports_vision": true,
|
1603
|
+
"supports_functions": true,
|
1604
|
+
"supports_json_mode": true,
|
1605
|
+
"input_price_per_million": 0.1,
|
1606
|
+
"output_price_per_million": 0.4,
|
1607
|
+
"metadata": {
|
1608
|
+
"object": "model",
|
1609
|
+
"owned_by": "google"
|
1610
|
+
}
|
1611
|
+
},
|
1612
|
+
{
|
1613
|
+
"id": "gemini-2.0-flash",
|
1614
|
+
"created_at": null,
|
1615
|
+
"display_name": "gemini-2.0-flash",
|
1616
|
+
"provider": "gemini",
|
1617
|
+
"context_window": 1048576,
|
1618
|
+
"max_tokens": 8192,
|
1619
|
+
"type": "chat",
|
1620
|
+
"family": "gemini20_flash",
|
1621
|
+
"supports_vision": true,
|
1622
|
+
"supports_functions": true,
|
1623
|
+
"supports_json_mode": true,
|
1624
|
+
"input_price_per_million": 0.1,
|
1625
|
+
"output_price_per_million": 0.4,
|
1626
|
+
"metadata": {
|
1627
|
+
"object": "model",
|
1628
|
+
"owned_by": "google"
|
1629
|
+
}
|
1630
|
+
},
|
1631
|
+
{
|
1632
|
+
"id": "gemini-2.0-flash-001",
|
1633
|
+
"created_at": null,
|
1634
|
+
"display_name": "gemini-2.0-flash-001",
|
1635
|
+
"provider": "gemini",
|
1636
|
+
"context_window": 1048576,
|
1637
|
+
"max_tokens": 8192,
|
1638
|
+
"type": "chat",
|
1639
|
+
"family": "gemini20_flash",
|
1640
|
+
"supports_vision": true,
|
1641
|
+
"supports_functions": true,
|
1642
|
+
"supports_json_mode": true,
|
1643
|
+
"input_price_per_million": 0.1,
|
1644
|
+
"output_price_per_million": 0.4,
|
1645
|
+
"metadata": {
|
1646
|
+
"object": "model",
|
1647
|
+
"owned_by": "google"
|
1648
|
+
}
|
1649
|
+
},
|
1650
|
+
{
|
1651
|
+
"id": "gemini-2.0-flash-lite-preview",
|
1652
|
+
"created_at": null,
|
1653
|
+
"display_name": "gemini-2.0-flash-lite-preview",
|
1654
|
+
"provider": "gemini",
|
1655
|
+
"context_window": 1048576,
|
1656
|
+
"max_tokens": 8192,
|
1657
|
+
"type": "chat",
|
1658
|
+
"family": "gemini20_flash_lite",
|
1659
|
+
"supports_vision": false,
|
1660
|
+
"supports_functions": false,
|
1661
|
+
"supports_json_mode": false,
|
1662
|
+
"input_price_per_million": 0.075,
|
1663
|
+
"output_price_per_million": 0.3,
|
1664
|
+
"metadata": {
|
1665
|
+
"object": "model",
|
1666
|
+
"owned_by": "google"
|
1667
|
+
}
|
1668
|
+
},
|
1669
|
+
{
|
1670
|
+
"id": "gemini-2.0-flash-lite-preview-02-05",
|
1671
|
+
"created_at": null,
|
1672
|
+
"display_name": "gemini-2.0-flash-lite-preview-02-05",
|
1673
|
+
"provider": "gemini",
|
1674
|
+
"context_window": 1048576,
|
1675
|
+
"max_tokens": 8192,
|
1676
|
+
"type": "chat",
|
1677
|
+
"family": "gemini20_flash_lite",
|
1678
|
+
"supports_vision": false,
|
1679
|
+
"supports_functions": false,
|
1680
|
+
"supports_json_mode": false,
|
1681
|
+
"input_price_per_million": 0.075,
|
1682
|
+
"output_price_per_million": 0.3,
|
1683
|
+
"metadata": {
|
1684
|
+
"object": "model",
|
1685
|
+
"owned_by": "google"
|
1686
|
+
}
|
1687
|
+
},
|
1688
|
+
{
|
1689
|
+
"id": "gemini-2.0-pro-exp",
|
1690
|
+
"created_at": null,
|
1691
|
+
"display_name": "gemini-2.0-pro-exp",
|
1692
|
+
"provider": "gemini",
|
1693
|
+
"context_window": 32768,
|
1694
|
+
"max_tokens": 4096,
|
1695
|
+
"type": "chat",
|
1696
|
+
"family": "other",
|
1697
|
+
"supports_vision": true,
|
1698
|
+
"supports_functions": true,
|
1699
|
+
"supports_json_mode": true,
|
1700
|
+
"input_price_per_million": 0.075,
|
1701
|
+
"output_price_per_million": 0.3,
|
1702
|
+
"metadata": {
|
1703
|
+
"object": "model",
|
1704
|
+
"owned_by": "google"
|
1705
|
+
}
|
1706
|
+
},
|
1707
|
+
{
|
1708
|
+
"id": "gemini-2.0-pro-exp-02-05",
|
1709
|
+
"created_at": null,
|
1710
|
+
"display_name": "gemini-2.0-pro-exp-02-05",
|
1711
|
+
"provider": "gemini",
|
1712
|
+
"context_window": 32768,
|
1713
|
+
"max_tokens": 4096,
|
1714
|
+
"type": "chat",
|
1715
|
+
"family": "other",
|
1716
|
+
"supports_vision": true,
|
1717
|
+
"supports_functions": true,
|
1718
|
+
"supports_json_mode": true,
|
1719
|
+
"input_price_per_million": 0.075,
|
1720
|
+
"output_price_per_million": 0.3,
|
1721
|
+
"metadata": {
|
1722
|
+
"object": "model",
|
1723
|
+
"owned_by": "google"
|
1724
|
+
}
|
1725
|
+
},
|
1726
|
+
{
|
1727
|
+
"id": "gemini-exp-1206",
|
1728
|
+
"created_at": null,
|
1729
|
+
"display_name": "gemini-exp-1206",
|
1730
|
+
"provider": "gemini",
|
1731
|
+
"context_window": 32768,
|
1732
|
+
"max_tokens": 4096,
|
1733
|
+
"type": "chat",
|
1734
|
+
"family": "other",
|
1735
|
+
"supports_vision": false,
|
1736
|
+
"supports_functions": false,
|
1737
|
+
"supports_json_mode": false,
|
1738
|
+
"input_price_per_million": 0.075,
|
1739
|
+
"output_price_per_million": 0.3,
|
1740
|
+
"metadata": {
|
1741
|
+
"object": "model",
|
1742
|
+
"owned_by": "google"
|
1743
|
+
}
|
1744
|
+
},
|
1745
|
+
{
|
1746
|
+
"id": "gemini-tool-test",
|
1747
|
+
"created_at": null,
|
1748
|
+
"display_name": "gemini-tool-test",
|
1749
|
+
"provider": "gemini",
|
1750
|
+
"context_window": 32768,
|
1751
|
+
"max_tokens": 4096,
|
1752
|
+
"type": "chat",
|
1753
|
+
"family": "other",
|
1754
|
+
"supports_vision": false,
|
1755
|
+
"supports_functions": false,
|
1756
|
+
"supports_json_mode": false,
|
1757
|
+
"input_price_per_million": 0.075,
|
1758
|
+
"output_price_per_million": 0.3,
|
1759
|
+
"metadata": {
|
1760
|
+
"object": "model",
|
1761
|
+
"owned_by": "google"
|
1762
|
+
}
|
1763
|
+
},
|
1764
|
+
{
|
1765
|
+
"id": "gemini-2.0-flash-thinking-exp-01-21",
|
1766
|
+
"created_at": null,
|
1767
|
+
"display_name": "gemini-2.0-flash-thinking-exp-01-21",
|
1768
|
+
"provider": "gemini",
|
1769
|
+
"context_window": 1048576,
|
1770
|
+
"max_tokens": 8192,
|
1771
|
+
"type": "chat",
|
1772
|
+
"family": "gemini20_flash",
|
1773
|
+
"supports_vision": true,
|
1774
|
+
"supports_functions": true,
|
1775
|
+
"supports_json_mode": true,
|
1776
|
+
"input_price_per_million": 0.1,
|
1777
|
+
"output_price_per_million": 0.4,
|
1778
|
+
"metadata": {
|
1779
|
+
"object": "model",
|
1780
|
+
"owned_by": "google"
|
1781
|
+
}
|
1782
|
+
},
|
1783
|
+
{
|
1784
|
+
"id": "gemini-2.0-flash-thinking-exp",
|
1785
|
+
"created_at": null,
|
1786
|
+
"display_name": "gemini-2.0-flash-thinking-exp",
|
1787
|
+
"provider": "gemini",
|
1788
|
+
"context_window": 1048576,
|
1789
|
+
"max_tokens": 8192,
|
1790
|
+
"type": "chat",
|
1791
|
+
"family": "gemini20_flash",
|
1792
|
+
"supports_vision": true,
|
1793
|
+
"supports_functions": true,
|
1794
|
+
"supports_json_mode": true,
|
1795
|
+
"input_price_per_million": 0.1,
|
1796
|
+
"output_price_per_million": 0.4,
|
1797
|
+
"metadata": {
|
1798
|
+
"object": "model",
|
1799
|
+
"owned_by": "google"
|
1800
|
+
}
|
1801
|
+
},
|
1802
|
+
{
|
1803
|
+
"id": "gemini-2.0-flash-thinking-exp-1219",
|
1804
|
+
"created_at": null,
|
1805
|
+
"display_name": "gemini-2.0-flash-thinking-exp-1219",
|
1806
|
+
"provider": "gemini",
|
1807
|
+
"context_window": 1048576,
|
1808
|
+
"max_tokens": 8192,
|
1809
|
+
"type": "chat",
|
1810
|
+
"family": "gemini20_flash",
|
1811
|
+
"supports_vision": true,
|
1812
|
+
"supports_functions": true,
|
1813
|
+
"supports_json_mode": true,
|
1814
|
+
"input_price_per_million": 0.1,
|
1815
|
+
"output_price_per_million": 0.4,
|
1816
|
+
"metadata": {
|
1817
|
+
"object": "model",
|
1818
|
+
"owned_by": "google"
|
1819
|
+
}
|
1820
|
+
},
|
1821
|
+
{
|
1822
|
+
"id": "gemini-2.0-flash-thinking-exp-no-thoughts",
|
1823
|
+
"created_at": null,
|
1824
|
+
"display_name": "gemini-2.0-flash-thinking-exp-no-thoughts",
|
1825
|
+
"provider": "gemini",
|
1826
|
+
"context_window": 1048576,
|
1827
|
+
"max_tokens": 8192,
|
1828
|
+
"type": "chat",
|
1829
|
+
"family": "gemini20_flash",
|
1830
|
+
"supports_vision": true,
|
1831
|
+
"supports_functions": true,
|
1832
|
+
"supports_json_mode": true,
|
1833
|
+
"input_price_per_million": 0.1,
|
1834
|
+
"output_price_per_million": 0.4,
|
1835
|
+
"metadata": {
|
1836
|
+
"object": "model",
|
1837
|
+
"owned_by": "google"
|
1838
|
+
}
|
1839
|
+
},
|
1840
|
+
{
|
1841
|
+
"id": "gemini-2.0-flash-001-bidi-test",
|
1842
|
+
"created_at": null,
|
1843
|
+
"display_name": "gemini-2.0-flash-001-bidi-test",
|
1844
|
+
"provider": "gemini",
|
1845
|
+
"context_window": 1048576,
|
1846
|
+
"max_tokens": 8192,
|
1847
|
+
"type": "chat",
|
1848
|
+
"family": "gemini20_flash",
|
1849
|
+
"supports_vision": true,
|
1850
|
+
"supports_functions": true,
|
1851
|
+
"supports_json_mode": true,
|
1852
|
+
"input_price_per_million": 0.1,
|
1853
|
+
"output_price_per_million": 0.4,
|
1854
|
+
"metadata": {
|
1855
|
+
"object": "model",
|
1856
|
+
"owned_by": "google"
|
1857
|
+
}
|
1858
|
+
},
|
1859
|
+
{
|
1860
|
+
"id": "gemini-2.0-flash-audiogen-rev17",
|
1861
|
+
"created_at": null,
|
1862
|
+
"display_name": "gemini-2.0-flash-audiogen-rev17",
|
1863
|
+
"provider": "gemini",
|
1864
|
+
"context_window": 1048576,
|
1865
|
+
"max_tokens": 8192,
|
1866
|
+
"type": "chat",
|
1867
|
+
"family": "gemini20_flash",
|
1868
|
+
"supports_vision": true,
|
1869
|
+
"supports_functions": true,
|
1870
|
+
"supports_json_mode": true,
|
1871
|
+
"input_price_per_million": 0.1,
|
1872
|
+
"output_price_per_million": 0.4,
|
1873
|
+
"metadata": {
|
1874
|
+
"object": "model",
|
1875
|
+
"owned_by": "google"
|
1876
|
+
}
|
1877
|
+
},
|
1878
|
+
{
|
1879
|
+
"id": "gemini-2.0-flash-jarvis",
|
1880
|
+
"created_at": null,
|
1881
|
+
"display_name": "gemini-2.0-flash-jarvis",
|
1882
|
+
"provider": "gemini",
|
1883
|
+
"context_window": 1048576,
|
1884
|
+
"max_tokens": 8192,
|
1885
|
+
"type": "chat",
|
1886
|
+
"family": "gemini20_flash",
|
1887
|
+
"supports_vision": true,
|
1888
|
+
"supports_functions": true,
|
1889
|
+
"supports_json_mode": true,
|
1890
|
+
"input_price_per_million": 0.1,
|
1891
|
+
"output_price_per_million": 0.4,
|
1892
|
+
"metadata": {
|
1893
|
+
"object": "model",
|
1894
|
+
"owned_by": "google"
|
1895
|
+
}
|
1896
|
+
},
|
1897
|
+
{
|
1898
|
+
"id": "learnlm-1.5-pro-experimental",
|
1899
|
+
"created_at": null,
|
1900
|
+
"display_name": "learnlm-1.5-pro-experimental",
|
1901
|
+
"provider": "gemini",
|
1902
|
+
"context_window": 32768,
|
1903
|
+
"max_tokens": 4096,
|
1904
|
+
"type": "chat",
|
1905
|
+
"family": "other",
|
1906
|
+
"supports_vision": false,
|
1907
|
+
"supports_functions": false,
|
1908
|
+
"supports_json_mode": false,
|
1909
|
+
"input_price_per_million": 0.075,
|
1910
|
+
"output_price_per_million": 0.3,
|
1911
|
+
"metadata": {
|
1912
|
+
"object": "model",
|
1913
|
+
"owned_by": "google"
|
1914
|
+
}
|
1915
|
+
},
|
1916
|
+
{
|
1917
|
+
"id": "embedding-001",
|
1918
|
+
"created_at": null,
|
1919
|
+
"display_name": "embedding-001",
|
1920
|
+
"provider": "gemini",
|
1921
|
+
"context_window": 2048,
|
1922
|
+
"max_tokens": 768,
|
1923
|
+
"type": "embedding",
|
1924
|
+
"family": "embedding1",
|
1925
|
+
"supports_vision": false,
|
1926
|
+
"supports_functions": false,
|
1927
|
+
"supports_json_mode": false,
|
1928
|
+
"input_price_per_million": 0.0,
|
1929
|
+
"output_price_per_million": 0.0,
|
1930
|
+
"metadata": {
|
1931
|
+
"object": "model",
|
1932
|
+
"owned_by": "google"
|
1933
|
+
}
|
1934
|
+
},
|
1935
|
+
{
|
1936
|
+
"id": "text-embedding-004",
|
1937
|
+
"created_at": null,
|
1938
|
+
"display_name": "text-embedding-004",
|
1939
|
+
"provider": "gemini",
|
1940
|
+
"context_window": 2048,
|
1941
|
+
"max_tokens": 768,
|
1942
|
+
"type": "embedding",
|
1943
|
+
"family": "embedding4",
|
1944
|
+
"supports_vision": false,
|
1945
|
+
"supports_functions": false,
|
1946
|
+
"supports_json_mode": false,
|
1947
|
+
"input_price_per_million": 0.0,
|
1948
|
+
"output_price_per_million": 0.0,
|
1949
|
+
"metadata": {
|
1950
|
+
"object": "model",
|
1951
|
+
"owned_by": "google"
|
1952
|
+
}
|
1953
|
+
},
|
1954
|
+
{
|
1955
|
+
"id": "aqa",
|
1956
|
+
"created_at": null,
|
1957
|
+
"display_name": "aqa",
|
1958
|
+
"provider": "gemini",
|
1959
|
+
"context_window": 32768,
|
1960
|
+
"max_tokens": 1024,
|
1961
|
+
"type": "chat",
|
1962
|
+
"family": "other",
|
1963
|
+
"supports_vision": false,
|
1964
|
+
"supports_functions": false,
|
1965
|
+
"supports_json_mode": false,
|
1966
|
+
"input_price_per_million": 0.075,
|
1967
|
+
"output_price_per_million": 0.3,
|
1968
|
+
"metadata": {
|
1969
|
+
"object": "model",
|
1970
|
+
"owned_by": "google"
|
1971
|
+
}
|
1972
|
+
},
|
1973
|
+
{
|
1974
|
+
"id": "imagen-3.0-generate-002",
|
1975
|
+
"created_at": null,
|
1976
|
+
"display_name": "imagen-3.0-generate-002",
|
1977
|
+
"provider": "gemini",
|
1978
|
+
"context_window": 32768,
|
1979
|
+
"max_tokens": 4096,
|
1980
|
+
"type": "image",
|
1981
|
+
"family": "imagen3",
|
1982
|
+
"supports_vision": false,
|
1983
|
+
"supports_functions": false,
|
1984
|
+
"supports_json_mode": false,
|
1985
|
+
"input_price_per_million": 0.075,
|
1986
|
+
"output_price_per_million": 0.3,
|
1987
|
+
"metadata": {
|
1988
|
+
"object": "model",
|
1989
|
+
"owned_by": "google"
|
1990
|
+
}
|
1991
|
+
},
|
1992
|
+
{
|
1993
|
+
"id": "imagen-3.0-generate-002-exp",
|
1994
|
+
"created_at": null,
|
1995
|
+
"display_name": "imagen-3.0-generate-002-exp",
|
1996
|
+
"provider": "gemini",
|
1997
|
+
"context_window": 32768,
|
1998
|
+
"max_tokens": 4096,
|
1999
|
+
"type": "image",
|
2000
|
+
"family": "imagen3",
|
2001
|
+
"supports_vision": false,
|
2002
|
+
"supports_functions": false,
|
2003
|
+
"supports_json_mode": false,
|
2004
|
+
"input_price_per_million": 0.075,
|
2005
|
+
"output_price_per_million": 0.3,
|
2006
|
+
"metadata": {
|
2007
|
+
"object": "model",
|
2008
|
+
"owned_by": "google"
|
2009
|
+
}
|
2010
|
+
},
|
2011
|
+
{
|
2012
|
+
"id": "image-verification-001",
|
2013
|
+
"created_at": null,
|
2014
|
+
"display_name": "image-verification-001",
|
2015
|
+
"provider": "gemini",
|
2016
|
+
"context_window": 32768,
|
2017
|
+
"max_tokens": 4096,
|
2018
|
+
"type": "chat",
|
2019
|
+
"family": "other",
|
2020
|
+
"supports_vision": false,
|
2021
|
+
"supports_functions": false,
|
2022
|
+
"supports_json_mode": false,
|
2023
|
+
"input_price_per_million": 0.075,
|
2024
|
+
"output_price_per_million": 0.3,
|
2025
|
+
"metadata": {
|
2026
|
+
"object": "model",
|
2027
|
+
"owned_by": "google"
|
2028
|
+
}
|
2029
|
+
},
|
2030
|
+
{
|
2031
|
+
"id": "deepseek-chat",
|
2032
|
+
"created_at": null,
|
2033
|
+
"display_name": "DeepSeek V3",
|
2034
|
+
"provider": "deepseek",
|
2035
|
+
"context_window": 64000,
|
2036
|
+
"max_tokens": 8192,
|
2037
|
+
"type": "chat",
|
2038
|
+
"family": "deepseek",
|
2039
|
+
"supports_vision": true,
|
2040
|
+
"supports_functions": true,
|
2041
|
+
"supports_json_mode": true,
|
2042
|
+
"input_price_per_million": 0.27,
|
2043
|
+
"output_price_per_million": 1.1,
|
2044
|
+
"metadata": {
|
2045
|
+
"object": "model",
|
2046
|
+
"owned_by": "deepseek"
|
2047
|
+
}
|
2048
|
+
},
|
2049
|
+
{
|
2050
|
+
"id": "deepseek-reasoner",
|
2051
|
+
"created_at": null,
|
2052
|
+
"display_name": "DeepSeek R1",
|
2053
|
+
"provider": "deepseek",
|
2054
|
+
"context_window": 64000,
|
2055
|
+
"max_tokens": 8192,
|
2056
|
+
"type": "chat",
|
2057
|
+
"family": "deepseek_reasoner",
|
2058
|
+
"supports_vision": true,
|
2059
|
+
"supports_functions": true,
|
2060
|
+
"supports_json_mode": true,
|
2061
|
+
"input_price_per_million": 0.27,
|
2062
|
+
"output_price_per_million": 1.1,
|
2063
|
+
"metadata": {
|
2064
|
+
"object": "model",
|
2065
|
+
"owned_by": "deepseek"
|
2066
|
+
}
|
2067
|
+
}
|
2068
|
+
]
|