llm.rb 9.0.0 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +76 -4
- data/README.md +80 -12
- data/data/anthropic.json +278 -258
- data/data/bedrock.json +1288 -1561
- data/data/deepseek.json +38 -38
- data/data/google.json +656 -579
- data/data/openai.json +860 -818
- data/data/xai.json +243 -552
- data/data/zai.json +168 -168
- data/lib/llm/active_record/acts_as_agent.rb +5 -0
- data/lib/llm/active_record.rb +1 -6
- data/lib/llm/agent.rb +90 -71
- data/lib/llm/context.rb +49 -48
- data/lib/llm/function/call_task.rb +46 -0
- data/lib/llm/function.rb +27 -1
- data/lib/llm/provider.rb +7 -0
- data/lib/llm/providers/anthropic/stream_parser.rb +2 -2
- data/lib/llm/providers/bedrock/stream_parser.rb +2 -2
- data/lib/llm/providers/google/stream_parser.rb +2 -2
- data/lib/llm/providers/openai/responses/stream_parser.rb +2 -2
- data/lib/llm/providers/openai/stream_parser.rb +2 -2
- data/lib/llm/schema.rb +11 -0
- data/lib/llm/sequel/agent.rb +5 -0
- data/lib/llm/sequel/plugin.rb +1 -6
- data/lib/llm/stream.rb +11 -36
- data/lib/llm/tool/param.rb +1 -8
- data/lib/llm/utils.rb +29 -0
- data/lib/llm/version.rb +1 -1
- data/lib/llm.rb +1 -0
- metadata +4 -3
- data/lib/llm/bot.rb +0 -3
data/data/openai.json
CHANGED
|
@@ -7,42 +7,38 @@
|
|
|
7
7
|
"name": "OpenAI",
|
|
8
8
|
"doc": "https://platform.openai.com/docs/models",
|
|
9
9
|
"models": {
|
|
10
|
-
"
|
|
11
|
-
"id": "
|
|
12
|
-
"name": "
|
|
13
|
-
"family": "
|
|
14
|
-
"attachment":
|
|
15
|
-
"reasoning":
|
|
16
|
-
"tool_call":
|
|
17
|
-
"structured_output": true,
|
|
10
|
+
"text-embedding-3-large": {
|
|
11
|
+
"id": "text-embedding-3-large",
|
|
12
|
+
"name": "text-embedding-3-large",
|
|
13
|
+
"family": "text-embedding",
|
|
14
|
+
"attachment": false,
|
|
15
|
+
"reasoning": false,
|
|
16
|
+
"tool_call": false,
|
|
18
17
|
"temperature": false,
|
|
19
|
-
"knowledge": "2024-
|
|
20
|
-
"release_date": "
|
|
21
|
-
"last_updated": "
|
|
18
|
+
"knowledge": "2024-01",
|
|
19
|
+
"release_date": "2024-01-25",
|
|
20
|
+
"last_updated": "2024-01-25",
|
|
22
21
|
"modalities": {
|
|
23
22
|
"input": [
|
|
24
|
-
"text"
|
|
25
|
-
"image"
|
|
23
|
+
"text"
|
|
26
24
|
],
|
|
27
25
|
"output": [
|
|
28
26
|
"text"
|
|
29
27
|
]
|
|
30
28
|
},
|
|
31
29
|
"open_weights": false,
|
|
32
|
-
"cost": {
|
|
33
|
-
"input": 1.25,
|
|
34
|
-
"output": 10,
|
|
35
|
-
"cache_read": 0.125
|
|
36
|
-
},
|
|
37
30
|
"limit": {
|
|
38
|
-
"context":
|
|
39
|
-
"
|
|
40
|
-
|
|
31
|
+
"context": 8191,
|
|
32
|
+
"output": 3072
|
|
33
|
+
},
|
|
34
|
+
"cost": {
|
|
35
|
+
"input": 0.13,
|
|
36
|
+
"output": 0
|
|
41
37
|
}
|
|
42
38
|
},
|
|
43
|
-
"gpt-4o
|
|
44
|
-
"id": "gpt-4o
|
|
45
|
-
"name": "GPT-4o
|
|
39
|
+
"gpt-4o": {
|
|
40
|
+
"id": "gpt-4o",
|
|
41
|
+
"name": "GPT-4o",
|
|
46
42
|
"family": "gpt",
|
|
47
43
|
"attachment": true,
|
|
48
44
|
"reasoning": false,
|
|
@@ -51,65 +47,63 @@
|
|
|
51
47
|
"temperature": true,
|
|
52
48
|
"knowledge": "2023-09",
|
|
53
49
|
"release_date": "2024-05-13",
|
|
54
|
-
"last_updated": "2024-
|
|
50
|
+
"last_updated": "2024-08-06",
|
|
55
51
|
"modalities": {
|
|
56
52
|
"input": [
|
|
57
53
|
"text",
|
|
58
|
-
"image"
|
|
54
|
+
"image",
|
|
55
|
+
"pdf"
|
|
59
56
|
],
|
|
60
57
|
"output": [
|
|
61
58
|
"text"
|
|
62
59
|
]
|
|
63
60
|
},
|
|
64
61
|
"open_weights": false,
|
|
65
|
-
"cost": {
|
|
66
|
-
"input": 5,
|
|
67
|
-
"output": 15
|
|
68
|
-
},
|
|
69
62
|
"limit": {
|
|
70
63
|
"context": 128000,
|
|
71
|
-
"output":
|
|
64
|
+
"output": 16384
|
|
65
|
+
},
|
|
66
|
+
"cost": {
|
|
67
|
+
"input": 2.5,
|
|
68
|
+
"output": 10,
|
|
69
|
+
"cache_read": 1.25
|
|
72
70
|
}
|
|
73
71
|
},
|
|
74
|
-
"
|
|
75
|
-
"id": "
|
|
76
|
-
"name": "
|
|
77
|
-
"family": "
|
|
78
|
-
"attachment":
|
|
79
|
-
"reasoning":
|
|
72
|
+
"gpt-image-1-mini": {
|
|
73
|
+
"id": "gpt-image-1-mini",
|
|
74
|
+
"name": "gpt-image-1-mini",
|
|
75
|
+
"family": "gpt-image",
|
|
76
|
+
"attachment": true,
|
|
77
|
+
"reasoning": false,
|
|
80
78
|
"tool_call": false,
|
|
81
|
-
"structured_output": true,
|
|
82
79
|
"temperature": false,
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"last_updated": "2024-09-12",
|
|
80
|
+
"release_date": "2025-09-26",
|
|
81
|
+
"last_updated": "2025-09-26",
|
|
86
82
|
"modalities": {
|
|
87
83
|
"input": [
|
|
88
|
-
"text"
|
|
84
|
+
"text",
|
|
85
|
+
"image"
|
|
89
86
|
],
|
|
90
87
|
"output": [
|
|
91
|
-
"text"
|
|
88
|
+
"text",
|
|
89
|
+
"image"
|
|
92
90
|
]
|
|
93
91
|
},
|
|
94
92
|
"open_weights": false,
|
|
95
|
-
"cost": {
|
|
96
|
-
"input": 1.1,
|
|
97
|
-
"output": 4.4,
|
|
98
|
-
"cache_read": 0.55
|
|
99
|
-
},
|
|
100
93
|
"limit": {
|
|
101
|
-
"context":
|
|
102
|
-
"
|
|
94
|
+
"context": 0,
|
|
95
|
+
"input": 0,
|
|
96
|
+
"output": 0
|
|
103
97
|
}
|
|
104
98
|
},
|
|
105
|
-
"gpt-5.2
|
|
106
|
-
"id": "gpt-5.2
|
|
107
|
-
"name": "GPT-5.2
|
|
108
|
-
"family": "gpt
|
|
99
|
+
"gpt-5.2": {
|
|
100
|
+
"id": "gpt-5.2",
|
|
101
|
+
"name": "GPT-5.2",
|
|
102
|
+
"family": "gpt",
|
|
109
103
|
"attachment": true,
|
|
110
104
|
"reasoning": true,
|
|
111
105
|
"tool_call": true,
|
|
112
|
-
"structured_output":
|
|
106
|
+
"structured_output": true,
|
|
113
107
|
"temperature": false,
|
|
114
108
|
"knowledge": "2025-08-31",
|
|
115
109
|
"release_date": "2025-12-11",
|
|
@@ -124,27 +118,29 @@
|
|
|
124
118
|
]
|
|
125
119
|
},
|
|
126
120
|
"open_weights": false,
|
|
127
|
-
"cost": {
|
|
128
|
-
"input": 21,
|
|
129
|
-
"output": 168
|
|
130
|
-
},
|
|
131
121
|
"limit": {
|
|
132
122
|
"context": 400000,
|
|
133
123
|
"input": 272000,
|
|
134
124
|
"output": 128000
|
|
125
|
+
},
|
|
126
|
+
"cost": {
|
|
127
|
+
"input": 1.75,
|
|
128
|
+
"output": 14,
|
|
129
|
+
"cache_read": 0.175
|
|
135
130
|
}
|
|
136
131
|
},
|
|
137
|
-
"
|
|
138
|
-
"id": "
|
|
139
|
-
"name": "
|
|
140
|
-
"family": "
|
|
132
|
+
"gpt-3.5-turbo": {
|
|
133
|
+
"id": "gpt-3.5-turbo",
|
|
134
|
+
"name": "GPT-3.5-turbo",
|
|
135
|
+
"family": "gpt",
|
|
141
136
|
"attachment": false,
|
|
142
137
|
"reasoning": false,
|
|
143
138
|
"tool_call": false,
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
139
|
+
"structured_output": false,
|
|
140
|
+
"temperature": true,
|
|
141
|
+
"knowledge": "2021-09-01",
|
|
142
|
+
"release_date": "2023-03-01",
|
|
143
|
+
"last_updated": "2023-11-06",
|
|
148
144
|
"modalities": {
|
|
149
145
|
"input": [
|
|
150
146
|
"text"
|
|
@@ -154,147 +150,89 @@
|
|
|
154
150
|
]
|
|
155
151
|
},
|
|
156
152
|
"open_weights": false,
|
|
157
|
-
"cost": {
|
|
158
|
-
"input": 0.13,
|
|
159
|
-
"output": 0
|
|
160
|
-
},
|
|
161
153
|
"limit": {
|
|
162
|
-
"context":
|
|
163
|
-
"output":
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
"gpt-5.3-chat-latest": {
|
|
167
|
-
"id": "gpt-5.3-chat-latest",
|
|
168
|
-
"name": "GPT-5.3 Chat (latest)",
|
|
169
|
-
"family": "gpt",
|
|
170
|
-
"attachment": true,
|
|
171
|
-
"reasoning": false,
|
|
172
|
-
"tool_call": true,
|
|
173
|
-
"structured_output": true,
|
|
174
|
-
"temperature": true,
|
|
175
|
-
"knowledge": "2025-08-31",
|
|
176
|
-
"release_date": "2026-03-03",
|
|
177
|
-
"last_updated": "2026-03-03",
|
|
178
|
-
"modalities": {
|
|
179
|
-
"input": [
|
|
180
|
-
"text",
|
|
181
|
-
"image"
|
|
182
|
-
],
|
|
183
|
-
"output": [
|
|
184
|
-
"text"
|
|
185
|
-
]
|
|
154
|
+
"context": 16385,
|
|
155
|
+
"output": 4096
|
|
186
156
|
},
|
|
187
|
-
"open_weights": false,
|
|
188
157
|
"cost": {
|
|
189
|
-
"input":
|
|
190
|
-
"output":
|
|
191
|
-
"cache_read":
|
|
192
|
-
},
|
|
193
|
-
"limit": {
|
|
194
|
-
"context": 128000,
|
|
195
|
-
"output": 16384
|
|
158
|
+
"input": 0.5,
|
|
159
|
+
"output": 1.5,
|
|
160
|
+
"cache_read": 1.25
|
|
196
161
|
}
|
|
197
162
|
},
|
|
198
|
-
"
|
|
199
|
-
"id": "
|
|
200
|
-
"name": "
|
|
201
|
-
"family": "
|
|
163
|
+
"o3-pro": {
|
|
164
|
+
"id": "o3-pro",
|
|
165
|
+
"name": "o3-pro",
|
|
166
|
+
"family": "o-pro",
|
|
202
167
|
"attachment": true,
|
|
203
168
|
"reasoning": true,
|
|
204
169
|
"tool_call": true,
|
|
205
170
|
"structured_output": true,
|
|
206
171
|
"temperature": false,
|
|
207
|
-
"knowledge": "
|
|
208
|
-
"release_date": "
|
|
209
|
-
"last_updated": "
|
|
172
|
+
"knowledge": "2024-05",
|
|
173
|
+
"release_date": "2025-06-10",
|
|
174
|
+
"last_updated": "2025-06-10",
|
|
210
175
|
"modalities": {
|
|
211
176
|
"input": [
|
|
212
177
|
"text",
|
|
213
|
-
"image"
|
|
214
|
-
"pdf"
|
|
178
|
+
"image"
|
|
215
179
|
],
|
|
216
180
|
"output": [
|
|
217
181
|
"text"
|
|
218
182
|
]
|
|
219
183
|
},
|
|
220
184
|
"open_weights": false,
|
|
221
|
-
"cost": {
|
|
222
|
-
"input": 5,
|
|
223
|
-
"output": 30,
|
|
224
|
-
"cache_read": 0.5,
|
|
225
|
-
"context_over_200k": {
|
|
226
|
-
"input": 10,
|
|
227
|
-
"output": 45,
|
|
228
|
-
"cache_read": 1
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
185
|
"limit": {
|
|
232
|
-
"context":
|
|
233
|
-
"
|
|
234
|
-
"output": 128000
|
|
186
|
+
"context": 200000,
|
|
187
|
+
"output": 100000
|
|
235
188
|
},
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
|
|
239
|
-
"cost": {
|
|
240
|
-
"input": 12.5,
|
|
241
|
-
"output": 75,
|
|
242
|
-
"cache_read": 1.25
|
|
243
|
-
},
|
|
244
|
-
"provider": {
|
|
245
|
-
"body": {
|
|
246
|
-
"service_tier": "priority"
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
189
|
+
"cost": {
|
|
190
|
+
"input": 20,
|
|
191
|
+
"output": 80
|
|
251
192
|
}
|
|
252
193
|
},
|
|
253
|
-
"
|
|
254
|
-
"id": "
|
|
255
|
-
"name": "
|
|
256
|
-
"family": "
|
|
257
|
-
"attachment":
|
|
194
|
+
"o1-preview": {
|
|
195
|
+
"id": "o1-preview",
|
|
196
|
+
"name": "o1-preview",
|
|
197
|
+
"family": "o",
|
|
198
|
+
"attachment": false,
|
|
258
199
|
"reasoning": true,
|
|
259
|
-
"tool_call":
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"last_updated": "2025-08-07",
|
|
200
|
+
"tool_call": false,
|
|
201
|
+
"temperature": true,
|
|
202
|
+
"knowledge": "2023-09",
|
|
203
|
+
"release_date": "2024-09-12",
|
|
204
|
+
"last_updated": "2024-09-12",
|
|
265
205
|
"modalities": {
|
|
266
206
|
"input": [
|
|
267
|
-
"text"
|
|
268
|
-
"image"
|
|
207
|
+
"text"
|
|
269
208
|
],
|
|
270
209
|
"output": [
|
|
271
210
|
"text"
|
|
272
211
|
]
|
|
273
212
|
},
|
|
274
213
|
"open_weights": false,
|
|
275
|
-
"cost": {
|
|
276
|
-
"input": 0.25,
|
|
277
|
-
"output": 2,
|
|
278
|
-
"cache_read": 0.025
|
|
279
|
-
},
|
|
280
214
|
"limit": {
|
|
281
|
-
"context":
|
|
282
|
-
"
|
|
283
|
-
|
|
215
|
+
"context": 128000,
|
|
216
|
+
"output": 32768
|
|
217
|
+
},
|
|
218
|
+
"cost": {
|
|
219
|
+
"input": 15,
|
|
220
|
+
"output": 60,
|
|
221
|
+
"cache_read": 7.5
|
|
284
222
|
}
|
|
285
223
|
},
|
|
286
|
-
"gpt-5-nano": {
|
|
287
|
-
"id": "gpt-5-nano",
|
|
288
|
-
"name": "GPT-5
|
|
224
|
+
"gpt-5.4-nano": {
|
|
225
|
+
"id": "gpt-5.4-nano",
|
|
226
|
+
"name": "GPT-5.4 nano",
|
|
289
227
|
"family": "gpt-nano",
|
|
290
228
|
"attachment": true,
|
|
291
229
|
"reasoning": true,
|
|
292
230
|
"tool_call": true,
|
|
293
231
|
"structured_output": true,
|
|
294
232
|
"temperature": false,
|
|
295
|
-
"knowledge": "
|
|
296
|
-
"release_date": "
|
|
297
|
-
"last_updated": "
|
|
233
|
+
"knowledge": "2025-08-31",
|
|
234
|
+
"release_date": "2026-03-17",
|
|
235
|
+
"last_updated": "2026-03-17",
|
|
298
236
|
"modalities": {
|
|
299
237
|
"input": [
|
|
300
238
|
"text",
|
|
@@ -305,80 +243,47 @@
|
|
|
305
243
|
]
|
|
306
244
|
},
|
|
307
245
|
"open_weights": false,
|
|
308
|
-
"cost": {
|
|
309
|
-
"input": 0.05,
|
|
310
|
-
"output": 0.4,
|
|
311
|
-
"cache_read": 0.005
|
|
312
|
-
},
|
|
313
246
|
"limit": {
|
|
314
247
|
"context": 400000,
|
|
315
248
|
"input": 272000,
|
|
316
249
|
"output": 128000
|
|
250
|
+
},
|
|
251
|
+
"cost": {
|
|
252
|
+
"input": 0.2,
|
|
253
|
+
"output": 1.25,
|
|
254
|
+
"cache_read": 0.02
|
|
317
255
|
}
|
|
318
256
|
},
|
|
319
|
-
"gpt-5
|
|
320
|
-
"id": "gpt-5
|
|
321
|
-
"name": "GPT-5
|
|
257
|
+
"gpt-5-chat-latest": {
|
|
258
|
+
"id": "gpt-5-chat-latest",
|
|
259
|
+
"name": "GPT-5 Chat (latest)",
|
|
322
260
|
"family": "gpt-codex",
|
|
323
261
|
"attachment": true,
|
|
324
262
|
"reasoning": true,
|
|
325
|
-
"tool_call":
|
|
263
|
+
"tool_call": false,
|
|
326
264
|
"structured_output": true,
|
|
327
|
-
"temperature":
|
|
328
|
-
"knowledge": "
|
|
329
|
-
"release_date": "
|
|
330
|
-
"last_updated": "
|
|
265
|
+
"temperature": true,
|
|
266
|
+
"knowledge": "2024-09-30",
|
|
267
|
+
"release_date": "2025-08-07",
|
|
268
|
+
"last_updated": "2025-08-07",
|
|
331
269
|
"modalities": {
|
|
332
270
|
"input": [
|
|
333
271
|
"text",
|
|
334
|
-
"image"
|
|
335
|
-
"pdf"
|
|
272
|
+
"image"
|
|
336
273
|
],
|
|
337
274
|
"output": [
|
|
338
275
|
"text"
|
|
339
276
|
]
|
|
340
277
|
},
|
|
341
278
|
"open_weights": false,
|
|
342
|
-
"cost": {
|
|
343
|
-
"input": 1.75,
|
|
344
|
-
"output": 14,
|
|
345
|
-
"cache_read": 0.175
|
|
346
|
-
},
|
|
347
279
|
"limit": {
|
|
348
280
|
"context": 400000,
|
|
349
281
|
"input": 272000,
|
|
350
282
|
"output": 128000
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
|
-
"gpt-4-turbo": {
|
|
354
|
-
"id": "gpt-4-turbo",
|
|
355
|
-
"name": "GPT-4 Turbo",
|
|
356
|
-
"family": "gpt",
|
|
357
|
-
"attachment": true,
|
|
358
|
-
"reasoning": false,
|
|
359
|
-
"tool_call": true,
|
|
360
|
-
"structured_output": false,
|
|
361
|
-
"temperature": true,
|
|
362
|
-
"knowledge": "2023-12",
|
|
363
|
-
"release_date": "2023-11-06",
|
|
364
|
-
"last_updated": "2024-04-09",
|
|
365
|
-
"modalities": {
|
|
366
|
-
"input": [
|
|
367
|
-
"text",
|
|
368
|
-
"image"
|
|
369
|
-
],
|
|
370
|
-
"output": [
|
|
371
|
-
"text"
|
|
372
|
-
]
|
|
373
283
|
},
|
|
374
|
-
"open_weights": false,
|
|
375
284
|
"cost": {
|
|
376
|
-
"input":
|
|
377
|
-
"output":
|
|
378
|
-
},
|
|
379
|
-
"limit": {
|
|
380
|
-
"context": 128000,
|
|
381
|
-
"output": 4096
|
|
285
|
+
"input": 1.25,
|
|
286
|
+
"output": 10
|
|
382
287
|
}
|
|
383
288
|
},
|
|
384
289
|
"text-embedding-ada-002": {
|
|
@@ -401,27 +306,74 @@
|
|
|
401
306
|
]
|
|
402
307
|
},
|
|
403
308
|
"open_weights": false,
|
|
309
|
+
"limit": {
|
|
310
|
+
"context": 8192,
|
|
311
|
+
"output": 1536
|
|
312
|
+
},
|
|
404
313
|
"cost": {
|
|
405
314
|
"input": 0.1,
|
|
406
315
|
"output": 0
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"gpt-5.5-pro": {
|
|
319
|
+
"id": "gpt-5.5-pro",
|
|
320
|
+
"name": "GPT-5.5 Pro",
|
|
321
|
+
"family": "gpt-pro",
|
|
322
|
+
"attachment": true,
|
|
323
|
+
"reasoning": true,
|
|
324
|
+
"tool_call": true,
|
|
325
|
+
"structured_output": true,
|
|
326
|
+
"temperature": false,
|
|
327
|
+
"knowledge": "2025-12-01",
|
|
328
|
+
"release_date": "2026-04-23",
|
|
329
|
+
"last_updated": "2026-04-23",
|
|
330
|
+
"modalities": {
|
|
331
|
+
"input": [
|
|
332
|
+
"text",
|
|
333
|
+
"image",
|
|
334
|
+
"pdf"
|
|
335
|
+
],
|
|
336
|
+
"output": [
|
|
337
|
+
"text"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
"open_weights": false,
|
|
341
|
+
"limit": {
|
|
342
|
+
"context": 1050000,
|
|
343
|
+
"input": 922000,
|
|
344
|
+
"output": 128000
|
|
407
345
|
},
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"output":
|
|
346
|
+
"cost": {
|
|
347
|
+
"input": 30,
|
|
348
|
+
"output": 180,
|
|
349
|
+
"tiers": [
|
|
350
|
+
{
|
|
351
|
+
"input": 60,
|
|
352
|
+
"output": 270,
|
|
353
|
+
"tier": {
|
|
354
|
+
"type": "context",
|
|
355
|
+
"size": 272000
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"context_over_200k": {
|
|
360
|
+
"input": 60,
|
|
361
|
+
"output": 270
|
|
362
|
+
}
|
|
411
363
|
}
|
|
412
364
|
},
|
|
413
|
-
"gpt-5.
|
|
414
|
-
"id": "gpt-5.
|
|
415
|
-
"name": "GPT-5.
|
|
416
|
-
"family": "gpt",
|
|
365
|
+
"gpt-5.1-codex-mini": {
|
|
366
|
+
"id": "gpt-5.1-codex-mini",
|
|
367
|
+
"name": "GPT-5.1 Codex mini",
|
|
368
|
+
"family": "gpt-codex",
|
|
417
369
|
"attachment": true,
|
|
418
370
|
"reasoning": true,
|
|
419
371
|
"tool_call": true,
|
|
420
372
|
"structured_output": true,
|
|
421
373
|
"temperature": false,
|
|
422
|
-
"knowledge": "
|
|
423
|
-
"release_date": "2025-
|
|
424
|
-
"last_updated": "2025-
|
|
374
|
+
"knowledge": "2024-09-30",
|
|
375
|
+
"release_date": "2025-11-13",
|
|
376
|
+
"last_updated": "2025-11-13",
|
|
425
377
|
"modalities": {
|
|
426
378
|
"input": [
|
|
427
379
|
"text",
|
|
@@ -432,29 +384,29 @@
|
|
|
432
384
|
]
|
|
433
385
|
},
|
|
434
386
|
"open_weights": false,
|
|
435
|
-
"cost": {
|
|
436
|
-
"input": 1.75,
|
|
437
|
-
"output": 14,
|
|
438
|
-
"cache_read": 0.175
|
|
439
|
-
},
|
|
440
387
|
"limit": {
|
|
441
388
|
"context": 400000,
|
|
442
389
|
"input": 272000,
|
|
443
390
|
"output": 128000
|
|
391
|
+
},
|
|
392
|
+
"cost": {
|
|
393
|
+
"input": 0.25,
|
|
394
|
+
"output": 2,
|
|
395
|
+
"cache_read": 0.025
|
|
444
396
|
}
|
|
445
397
|
},
|
|
446
|
-
"
|
|
447
|
-
"id": "
|
|
448
|
-
"name": "
|
|
449
|
-
"family": "
|
|
398
|
+
"gpt-5.2-pro": {
|
|
399
|
+
"id": "gpt-5.2-pro",
|
|
400
|
+
"name": "GPT-5.2 Pro",
|
|
401
|
+
"family": "gpt-pro",
|
|
450
402
|
"attachment": true,
|
|
451
403
|
"reasoning": true,
|
|
452
404
|
"tool_call": true,
|
|
453
|
-
"structured_output":
|
|
405
|
+
"structured_output": false,
|
|
454
406
|
"temperature": false,
|
|
455
|
-
"knowledge": "
|
|
456
|
-
"release_date": "2025-
|
|
457
|
-
"last_updated": "2025-
|
|
407
|
+
"knowledge": "2025-08-31",
|
|
408
|
+
"release_date": "2025-12-11",
|
|
409
|
+
"last_updated": "2025-12-11",
|
|
458
410
|
"modalities": {
|
|
459
411
|
"input": [
|
|
460
412
|
"text",
|
|
@@ -465,140 +417,120 @@
|
|
|
465
417
|
]
|
|
466
418
|
},
|
|
467
419
|
"open_weights": false,
|
|
468
|
-
"cost": {
|
|
469
|
-
"input": 20,
|
|
470
|
-
"output": 80
|
|
471
|
-
},
|
|
472
420
|
"limit": {
|
|
473
|
-
"context":
|
|
474
|
-
"
|
|
421
|
+
"context": 400000,
|
|
422
|
+
"input": 272000,
|
|
423
|
+
"output": 128000
|
|
424
|
+
},
|
|
425
|
+
"cost": {
|
|
426
|
+
"input": 21,
|
|
427
|
+
"output": 168
|
|
475
428
|
}
|
|
476
429
|
},
|
|
477
|
-
"gpt-4o-
|
|
478
|
-
"id": "gpt-4o-
|
|
479
|
-
"name": "GPT-4o
|
|
480
|
-
"family": "gpt
|
|
430
|
+
"gpt-4o-2024-05-13": {
|
|
431
|
+
"id": "gpt-4o-2024-05-13",
|
|
432
|
+
"name": "GPT-4o (2024-05-13)",
|
|
433
|
+
"family": "gpt",
|
|
481
434
|
"attachment": true,
|
|
482
435
|
"reasoning": false,
|
|
483
436
|
"tool_call": true,
|
|
484
437
|
"structured_output": true,
|
|
485
438
|
"temperature": true,
|
|
486
439
|
"knowledge": "2023-09",
|
|
487
|
-
"release_date": "2024-
|
|
488
|
-
"last_updated": "2024-
|
|
440
|
+
"release_date": "2024-05-13",
|
|
441
|
+
"last_updated": "2024-05-13",
|
|
489
442
|
"modalities": {
|
|
490
443
|
"input": [
|
|
491
444
|
"text",
|
|
492
|
-
"image"
|
|
493
|
-
"pdf"
|
|
445
|
+
"image"
|
|
494
446
|
],
|
|
495
447
|
"output": [
|
|
496
448
|
"text"
|
|
497
449
|
]
|
|
498
450
|
},
|
|
499
451
|
"open_weights": false,
|
|
500
|
-
"cost": {
|
|
501
|
-
"input": 0.15,
|
|
502
|
-
"output": 0.6,
|
|
503
|
-
"cache_read": 0.08
|
|
504
|
-
},
|
|
505
452
|
"limit": {
|
|
506
453
|
"context": 128000,
|
|
507
|
-
"output":
|
|
454
|
+
"output": 4096
|
|
455
|
+
},
|
|
456
|
+
"cost": {
|
|
457
|
+
"input": 5,
|
|
458
|
+
"output": 15
|
|
508
459
|
}
|
|
509
460
|
},
|
|
510
|
-
"
|
|
511
|
-
"id": "
|
|
512
|
-
"name": "
|
|
513
|
-
"family": "
|
|
461
|
+
"chatgpt-image-latest": {
|
|
462
|
+
"id": "chatgpt-image-latest",
|
|
463
|
+
"name": "chatgpt-image-latest",
|
|
464
|
+
"family": "gpt-image",
|
|
514
465
|
"attachment": true,
|
|
515
|
-
"reasoning":
|
|
516
|
-
"tool_call":
|
|
466
|
+
"reasoning": false,
|
|
467
|
+
"tool_call": false,
|
|
517
468
|
"temperature": false,
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
"last_updated": "2024-06-26",
|
|
469
|
+
"release_date": "2025-12-16",
|
|
470
|
+
"last_updated": "2025-12-16",
|
|
521
471
|
"modalities": {
|
|
522
472
|
"input": [
|
|
523
473
|
"text",
|
|
524
474
|
"image"
|
|
525
475
|
],
|
|
526
476
|
"output": [
|
|
527
|
-
"text"
|
|
477
|
+
"text",
|
|
478
|
+
"image"
|
|
528
479
|
]
|
|
529
480
|
},
|
|
530
481
|
"open_weights": false,
|
|
531
|
-
"cost": {
|
|
532
|
-
"input": 2,
|
|
533
|
-
"output": 8,
|
|
534
|
-
"cache_read": 0.5
|
|
535
|
-
},
|
|
536
482
|
"limit": {
|
|
537
|
-
"context":
|
|
538
|
-
"
|
|
483
|
+
"context": 0,
|
|
484
|
+
"input": 0,
|
|
485
|
+
"output": 0
|
|
539
486
|
}
|
|
540
487
|
},
|
|
541
|
-
"gpt-5.
|
|
542
|
-
"id": "gpt-5.
|
|
543
|
-
"name": "GPT-5.
|
|
544
|
-
"family": "gpt-
|
|
488
|
+
"gpt-5.3-codex-spark": {
|
|
489
|
+
"id": "gpt-5.3-codex-spark",
|
|
490
|
+
"name": "GPT-5.3 Codex Spark",
|
|
491
|
+
"family": "gpt-codex-spark",
|
|
545
492
|
"attachment": true,
|
|
546
493
|
"reasoning": true,
|
|
547
494
|
"tool_call": true,
|
|
548
495
|
"structured_output": true,
|
|
549
496
|
"temperature": false,
|
|
550
497
|
"knowledge": "2025-08-31",
|
|
551
|
-
"release_date": "2026-
|
|
552
|
-
"last_updated": "2026-
|
|
498
|
+
"release_date": "2026-02-05",
|
|
499
|
+
"last_updated": "2026-02-05",
|
|
553
500
|
"modalities": {
|
|
554
501
|
"input": [
|
|
555
502
|
"text",
|
|
556
|
-
"image"
|
|
503
|
+
"image",
|
|
504
|
+
"pdf"
|
|
557
505
|
],
|
|
558
506
|
"output": [
|
|
559
507
|
"text"
|
|
560
508
|
]
|
|
561
509
|
},
|
|
562
510
|
"open_weights": false,
|
|
563
|
-
"cost": {
|
|
564
|
-
"input": 0.75,
|
|
565
|
-
"output": 4.5,
|
|
566
|
-
"cache_read": 0.075
|
|
567
|
-
},
|
|
568
511
|
"limit": {
|
|
569
|
-
"context":
|
|
570
|
-
"input":
|
|
571
|
-
"output":
|
|
512
|
+
"context": 128000,
|
|
513
|
+
"input": 100000,
|
|
514
|
+
"output": 32000
|
|
572
515
|
},
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
"input": 1.5,
|
|
578
|
-
"output": 9,
|
|
579
|
-
"cache_read": 0.15
|
|
580
|
-
},
|
|
581
|
-
"provider": {
|
|
582
|
-
"body": {
|
|
583
|
-
"service_tier": "priority"
|
|
584
|
-
}
|
|
585
|
-
}
|
|
586
|
-
}
|
|
587
|
-
}
|
|
516
|
+
"cost": {
|
|
517
|
+
"input": 1.75,
|
|
518
|
+
"output": 14,
|
|
519
|
+
"cache_read": 0.175
|
|
588
520
|
}
|
|
589
521
|
},
|
|
590
|
-
"
|
|
591
|
-
"id": "
|
|
592
|
-
"name": "
|
|
593
|
-
"family": "
|
|
594
|
-
"attachment":
|
|
522
|
+
"gpt-5-codex": {
|
|
523
|
+
"id": "gpt-5-codex",
|
|
524
|
+
"name": "GPT-5-Codex",
|
|
525
|
+
"family": "gpt-codex",
|
|
526
|
+
"attachment": false,
|
|
595
527
|
"reasoning": true,
|
|
596
528
|
"tool_call": true,
|
|
597
529
|
"structured_output": true,
|
|
598
530
|
"temperature": false,
|
|
599
|
-
"knowledge": "2024-
|
|
600
|
-
"release_date": "2025-
|
|
601
|
-
"last_updated": "2025-
|
|
531
|
+
"knowledge": "2024-09-30",
|
|
532
|
+
"release_date": "2025-09-15",
|
|
533
|
+
"last_updated": "2025-09-15",
|
|
602
534
|
"modalities": {
|
|
603
535
|
"input": [
|
|
604
536
|
"text",
|
|
@@ -609,28 +541,29 @@
|
|
|
609
541
|
]
|
|
610
542
|
},
|
|
611
543
|
"open_weights": false,
|
|
612
|
-
"cost": {
|
|
613
|
-
"input": 1.1,
|
|
614
|
-
"output": 4.4,
|
|
615
|
-
"cache_read": 0.28
|
|
616
|
-
},
|
|
617
544
|
"limit": {
|
|
618
|
-
"context":
|
|
619
|
-
"
|
|
545
|
+
"context": 400000,
|
|
546
|
+
"input": 272000,
|
|
547
|
+
"output": 128000
|
|
548
|
+
},
|
|
549
|
+
"cost": {
|
|
550
|
+
"input": 1.25,
|
|
551
|
+
"output": 10,
|
|
552
|
+
"cache_read": 0.125
|
|
620
553
|
}
|
|
621
554
|
},
|
|
622
|
-
"gpt-5.
|
|
623
|
-
"id": "gpt-5.
|
|
624
|
-
"name": "GPT-5.
|
|
625
|
-
"family": "gpt-
|
|
555
|
+
"gpt-5.1-chat-latest": {
|
|
556
|
+
"id": "gpt-5.1-chat-latest",
|
|
557
|
+
"name": "GPT-5.1 Chat",
|
|
558
|
+
"family": "gpt-codex",
|
|
626
559
|
"attachment": true,
|
|
627
560
|
"reasoning": true,
|
|
628
561
|
"tool_call": true,
|
|
629
562
|
"structured_output": true,
|
|
630
563
|
"temperature": false,
|
|
631
|
-
"knowledge": "
|
|
632
|
-
"release_date": "
|
|
633
|
-
"last_updated": "
|
|
564
|
+
"knowledge": "2024-09-30",
|
|
565
|
+
"release_date": "2025-11-13",
|
|
566
|
+
"last_updated": "2025-11-13",
|
|
634
567
|
"modalities": {
|
|
635
568
|
"input": [
|
|
636
569
|
"text",
|
|
@@ -641,33 +574,33 @@
|
|
|
641
574
|
]
|
|
642
575
|
},
|
|
643
576
|
"open_weights": false,
|
|
644
|
-
"cost": {
|
|
645
|
-
"input": 0.2,
|
|
646
|
-
"output": 1.25,
|
|
647
|
-
"cache_read": 0.02
|
|
648
|
-
},
|
|
649
577
|
"limit": {
|
|
650
|
-
"context":
|
|
651
|
-
"
|
|
652
|
-
|
|
578
|
+
"context": 128000,
|
|
579
|
+
"output": 16384
|
|
580
|
+
},
|
|
581
|
+
"cost": {
|
|
582
|
+
"input": 1.25,
|
|
583
|
+
"output": 10,
|
|
584
|
+
"cache_read": 0.125
|
|
653
585
|
}
|
|
654
586
|
},
|
|
655
|
-
"gpt-image-1": {
|
|
656
|
-
"id": "gpt-image-1",
|
|
657
|
-
"name": "gpt-image-1",
|
|
587
|
+
"gpt-image-1.5": {
|
|
588
|
+
"id": "gpt-image-1.5",
|
|
589
|
+
"name": "gpt-image-1.5",
|
|
658
590
|
"family": "gpt-image",
|
|
659
591
|
"attachment": true,
|
|
660
592
|
"reasoning": false,
|
|
661
593
|
"tool_call": false,
|
|
662
594
|
"temperature": false,
|
|
663
|
-
"release_date": "2025-
|
|
664
|
-
"last_updated": "2025-
|
|
595
|
+
"release_date": "2025-11-25",
|
|
596
|
+
"last_updated": "2025-11-25",
|
|
665
597
|
"modalities": {
|
|
666
598
|
"input": [
|
|
667
599
|
"text",
|
|
668
600
|
"image"
|
|
669
601
|
],
|
|
670
602
|
"output": [
|
|
603
|
+
"text",
|
|
671
604
|
"image"
|
|
672
605
|
]
|
|
673
606
|
},
|
|
@@ -678,18 +611,18 @@
|
|
|
678
611
|
"output": 0
|
|
679
612
|
}
|
|
680
613
|
},
|
|
681
|
-
"gpt-
|
|
682
|
-
"id": "gpt-
|
|
683
|
-
"name": "GPT-
|
|
684
|
-
"family": "gpt
|
|
614
|
+
"gpt-4.1": {
|
|
615
|
+
"id": "gpt-4.1",
|
|
616
|
+
"name": "GPT-4.1",
|
|
617
|
+
"family": "gpt",
|
|
685
618
|
"attachment": true,
|
|
686
|
-
"reasoning":
|
|
619
|
+
"reasoning": false,
|
|
687
620
|
"tool_call": true,
|
|
688
621
|
"structured_output": true,
|
|
689
|
-
"temperature":
|
|
690
|
-
"knowledge": "
|
|
691
|
-
"release_date": "2025-
|
|
692
|
-
"last_updated": "2025-
|
|
622
|
+
"temperature": true,
|
|
623
|
+
"knowledge": "2024-04",
|
|
624
|
+
"release_date": "2025-04-14",
|
|
625
|
+
"last_updated": "2025-04-14",
|
|
693
626
|
"modalities": {
|
|
694
627
|
"input": [
|
|
695
628
|
"text",
|
|
@@ -701,61 +634,57 @@
|
|
|
701
634
|
]
|
|
702
635
|
},
|
|
703
636
|
"open_weights": false,
|
|
704
|
-
"cost": {
|
|
705
|
-
"input": 1.75,
|
|
706
|
-
"output": 14,
|
|
707
|
-
"cache_read": 0.175
|
|
708
|
-
},
|
|
709
637
|
"limit": {
|
|
710
|
-
"context":
|
|
711
|
-
"
|
|
712
|
-
|
|
638
|
+
"context": 1047576,
|
|
639
|
+
"output": 32768
|
|
640
|
+
},
|
|
641
|
+
"cost": {
|
|
642
|
+
"input": 2,
|
|
643
|
+
"output": 8,
|
|
644
|
+
"cache_read": 0.5
|
|
713
645
|
}
|
|
714
646
|
},
|
|
715
|
-
"
|
|
716
|
-
"id": "
|
|
717
|
-
"name": "
|
|
718
|
-
"family": "
|
|
719
|
-
"attachment":
|
|
720
|
-
"reasoning":
|
|
721
|
-
"tool_call":
|
|
722
|
-
"structured_output": true,
|
|
647
|
+
"text-embedding-3-small": {
|
|
648
|
+
"id": "text-embedding-3-small",
|
|
649
|
+
"name": "text-embedding-3-small",
|
|
650
|
+
"family": "text-embedding",
|
|
651
|
+
"attachment": false,
|
|
652
|
+
"reasoning": false,
|
|
653
|
+
"tool_call": false,
|
|
723
654
|
"temperature": false,
|
|
724
|
-
"knowledge": "
|
|
725
|
-
"release_date": "
|
|
726
|
-
"last_updated": "
|
|
655
|
+
"knowledge": "2024-01",
|
|
656
|
+
"release_date": "2024-01-25",
|
|
657
|
+
"last_updated": "2024-01-25",
|
|
727
658
|
"modalities": {
|
|
728
659
|
"input": [
|
|
729
|
-
"text"
|
|
730
|
-
"image"
|
|
660
|
+
"text"
|
|
731
661
|
],
|
|
732
662
|
"output": [
|
|
733
663
|
"text"
|
|
734
664
|
]
|
|
735
665
|
},
|
|
736
666
|
"open_weights": false,
|
|
737
|
-
"cost": {
|
|
738
|
-
"input": 1.75,
|
|
739
|
-
"output": 14,
|
|
740
|
-
"cache_read": 0.175
|
|
741
|
-
},
|
|
742
667
|
"limit": {
|
|
743
|
-
"context":
|
|
744
|
-
"output":
|
|
668
|
+
"context": 8191,
|
|
669
|
+
"output": 1536
|
|
670
|
+
},
|
|
671
|
+
"cost": {
|
|
672
|
+
"input": 0.02,
|
|
673
|
+
"output": 0
|
|
745
674
|
}
|
|
746
675
|
},
|
|
747
|
-
"gpt-5
|
|
748
|
-
"id": "gpt-5
|
|
749
|
-
"name": "GPT-5
|
|
750
|
-
"family": "gpt-
|
|
676
|
+
"gpt-5-pro": {
|
|
677
|
+
"id": "gpt-5-pro",
|
|
678
|
+
"name": "GPT-5 Pro",
|
|
679
|
+
"family": "gpt-pro",
|
|
751
680
|
"attachment": true,
|
|
752
681
|
"reasoning": true,
|
|
753
682
|
"tool_call": true,
|
|
754
683
|
"structured_output": true,
|
|
755
684
|
"temperature": false,
|
|
756
685
|
"knowledge": "2024-09-30",
|
|
757
|
-
"release_date": "2025-
|
|
758
|
-
"last_updated": "2025-
|
|
686
|
+
"release_date": "2025-10-06",
|
|
687
|
+
"last_updated": "2025-10-06",
|
|
759
688
|
"modalities": {
|
|
760
689
|
"input": [
|
|
761
690
|
"text",
|
|
@@ -766,77 +695,47 @@
|
|
|
766
695
|
]
|
|
767
696
|
},
|
|
768
697
|
"open_weights": false,
|
|
769
|
-
"cost": {
|
|
770
|
-
"input": 0.25,
|
|
771
|
-
"output": 2,
|
|
772
|
-
"cache_read": 0.025
|
|
773
|
-
},
|
|
774
698
|
"limit": {
|
|
775
699
|
"context": 400000,
|
|
776
700
|
"input": 272000,
|
|
777
|
-
"output":
|
|
778
|
-
}
|
|
779
|
-
},
|
|
780
|
-
"o1-preview": {
|
|
781
|
-
"id": "o1-preview",
|
|
782
|
-
"name": "o1-preview",
|
|
783
|
-
"family": "o",
|
|
784
|
-
"attachment": false,
|
|
785
|
-
"reasoning": true,
|
|
786
|
-
"tool_call": false,
|
|
787
|
-
"temperature": true,
|
|
788
|
-
"knowledge": "2023-09",
|
|
789
|
-
"release_date": "2024-09-12",
|
|
790
|
-
"last_updated": "2024-09-12",
|
|
791
|
-
"modalities": {
|
|
792
|
-
"input": [
|
|
793
|
-
"text"
|
|
794
|
-
],
|
|
795
|
-
"output": [
|
|
796
|
-
"text"
|
|
797
|
-
]
|
|
701
|
+
"output": 272000
|
|
798
702
|
},
|
|
799
|
-
"open_weights": false,
|
|
800
703
|
"cost": {
|
|
801
704
|
"input": 15,
|
|
802
|
-
"output":
|
|
803
|
-
"cache_read": 7.5
|
|
804
|
-
},
|
|
805
|
-
"limit": {
|
|
806
|
-
"context": 128000,
|
|
807
|
-
"output": 32768
|
|
705
|
+
"output": 120
|
|
808
706
|
}
|
|
809
707
|
},
|
|
810
|
-
"gpt-
|
|
811
|
-
"id": "gpt-
|
|
812
|
-
"name": "GPT-
|
|
813
|
-
"family": "gpt",
|
|
708
|
+
"gpt-4.1-mini": {
|
|
709
|
+
"id": "gpt-4.1-mini",
|
|
710
|
+
"name": "GPT-4.1 mini",
|
|
711
|
+
"family": "gpt-mini",
|
|
814
712
|
"attachment": true,
|
|
815
713
|
"reasoning": false,
|
|
816
714
|
"tool_call": true,
|
|
817
715
|
"structured_output": true,
|
|
818
716
|
"temperature": true,
|
|
819
|
-
"knowledge": "
|
|
820
|
-
"release_date": "
|
|
821
|
-
"last_updated": "
|
|
717
|
+
"knowledge": "2024-04",
|
|
718
|
+
"release_date": "2025-04-14",
|
|
719
|
+
"last_updated": "2025-04-14",
|
|
822
720
|
"modalities": {
|
|
823
721
|
"input": [
|
|
824
722
|
"text",
|
|
825
|
-
"image"
|
|
723
|
+
"image",
|
|
724
|
+
"pdf"
|
|
826
725
|
],
|
|
827
726
|
"output": [
|
|
828
727
|
"text"
|
|
829
728
|
]
|
|
830
729
|
},
|
|
831
730
|
"open_weights": false,
|
|
832
|
-
"cost": {
|
|
833
|
-
"input": 2.5,
|
|
834
|
-
"output": 10,
|
|
835
|
-
"cache_read": 1.25
|
|
836
|
-
},
|
|
837
731
|
"limit": {
|
|
838
|
-
"context":
|
|
839
|
-
"output":
|
|
732
|
+
"context": 1047576,
|
|
733
|
+
"output": 32768
|
|
734
|
+
},
|
|
735
|
+
"cost": {
|
|
736
|
+
"input": 0.4,
|
|
737
|
+
"output": 1.6,
|
|
738
|
+
"cache_read": 0.1
|
|
840
739
|
}
|
|
841
740
|
},
|
|
842
741
|
"gpt-5.1": {
|
|
@@ -861,85 +760,58 @@
|
|
|
861
760
|
]
|
|
862
761
|
},
|
|
863
762
|
"open_weights": false,
|
|
864
|
-
"cost": {
|
|
865
|
-
"input": 1.25,
|
|
866
|
-
"output": 10,
|
|
867
|
-
"cache_read": 0.13
|
|
868
|
-
},
|
|
869
763
|
"limit": {
|
|
870
764
|
"context": 400000,
|
|
871
765
|
"input": 272000,
|
|
872
766
|
"output": 128000
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
|
-
"gpt-image-1-mini": {
|
|
876
|
-
"id": "gpt-image-1-mini",
|
|
877
|
-
"name": "gpt-image-1-mini",
|
|
878
|
-
"family": "gpt-image",
|
|
879
|
-
"attachment": true,
|
|
880
|
-
"reasoning": false,
|
|
881
|
-
"tool_call": false,
|
|
882
|
-
"temperature": false,
|
|
883
|
-
"release_date": "2025-09-26",
|
|
884
|
-
"last_updated": "2025-09-26",
|
|
885
|
-
"modalities": {
|
|
886
|
-
"input": [
|
|
887
|
-
"text",
|
|
888
|
-
"image"
|
|
889
|
-
],
|
|
890
|
-
"output": [
|
|
891
|
-
"text",
|
|
892
|
-
"image"
|
|
893
|
-
]
|
|
894
767
|
},
|
|
895
|
-
"
|
|
896
|
-
|
|
897
|
-
"
|
|
898
|
-
"
|
|
899
|
-
"output": 0
|
|
768
|
+
"cost": {
|
|
769
|
+
"input": 1.25,
|
|
770
|
+
"output": 10,
|
|
771
|
+
"cache_read": 0.13
|
|
900
772
|
}
|
|
901
773
|
},
|
|
902
|
-
"
|
|
903
|
-
"id": "
|
|
904
|
-
"name": "
|
|
905
|
-
"family": "
|
|
774
|
+
"gpt-5-nano": {
|
|
775
|
+
"id": "gpt-5-nano",
|
|
776
|
+
"name": "GPT-5 Nano",
|
|
777
|
+
"family": "gpt-nano",
|
|
906
778
|
"attachment": true,
|
|
907
779
|
"reasoning": true,
|
|
908
780
|
"tool_call": true,
|
|
909
781
|
"structured_output": true,
|
|
910
782
|
"temperature": false,
|
|
911
|
-
"knowledge": "
|
|
912
|
-
"release_date": "
|
|
913
|
-
"last_updated": "
|
|
783
|
+
"knowledge": "2024-05-30",
|
|
784
|
+
"release_date": "2025-08-07",
|
|
785
|
+
"last_updated": "2025-08-07",
|
|
914
786
|
"modalities": {
|
|
915
787
|
"input": [
|
|
916
788
|
"text",
|
|
917
|
-
"image"
|
|
918
|
-
"pdf"
|
|
789
|
+
"image"
|
|
919
790
|
],
|
|
920
791
|
"output": [
|
|
921
792
|
"text"
|
|
922
793
|
]
|
|
923
794
|
},
|
|
924
795
|
"open_weights": false,
|
|
925
|
-
"cost": {
|
|
926
|
-
"input": 15,
|
|
927
|
-
"output": 60,
|
|
928
|
-
"cache_read": 7.5
|
|
929
|
-
},
|
|
930
796
|
"limit": {
|
|
931
|
-
"context":
|
|
932
|
-
"
|
|
797
|
+
"context": 400000,
|
|
798
|
+
"input": 272000,
|
|
799
|
+
"output": 128000
|
|
800
|
+
},
|
|
801
|
+
"cost": {
|
|
802
|
+
"input": 0.05,
|
|
803
|
+
"output": 0.4,
|
|
804
|
+
"cache_read": 0.005
|
|
933
805
|
}
|
|
934
806
|
},
|
|
935
|
-
"gpt-5.4
|
|
936
|
-
"id": "gpt-5.4
|
|
937
|
-
"name": "GPT-5.4
|
|
938
|
-
"family": "gpt
|
|
807
|
+
"gpt-5.4": {
|
|
808
|
+
"id": "gpt-5.4",
|
|
809
|
+
"name": "GPT-5.4",
|
|
810
|
+
"family": "gpt",
|
|
939
811
|
"attachment": true,
|
|
940
812
|
"reasoning": true,
|
|
941
813
|
"tool_call": true,
|
|
942
|
-
"structured_output":
|
|
814
|
+
"structured_output": true,
|
|
943
815
|
"temperature": false,
|
|
944
816
|
"knowledge": "2025-08-31",
|
|
945
817
|
"release_date": "2026-03-05",
|
|
@@ -947,69 +819,102 @@
|
|
|
947
819
|
"modalities": {
|
|
948
820
|
"input": [
|
|
949
821
|
"text",
|
|
950
|
-
"image"
|
|
822
|
+
"image",
|
|
823
|
+
"pdf"
|
|
951
824
|
],
|
|
952
825
|
"output": [
|
|
953
826
|
"text"
|
|
954
827
|
]
|
|
955
828
|
},
|
|
956
829
|
"open_weights": false,
|
|
957
|
-
"cost": {
|
|
958
|
-
"input": 30,
|
|
959
|
-
"output": 180,
|
|
960
|
-
"context_over_200k": {
|
|
961
|
-
"input": 60,
|
|
962
|
-
"output": 270
|
|
963
|
-
}
|
|
964
|
-
},
|
|
965
830
|
"limit": {
|
|
966
831
|
"context": 1050000,
|
|
967
832
|
"input": 922000,
|
|
968
833
|
"output": 128000
|
|
834
|
+
},
|
|
835
|
+
"experimental": {
|
|
836
|
+
"modes": {
|
|
837
|
+
"fast": {
|
|
838
|
+
"cost": {
|
|
839
|
+
"input": 5,
|
|
840
|
+
"output": 30,
|
|
841
|
+
"cache_read": 0.5
|
|
842
|
+
},
|
|
843
|
+
"provider": {
|
|
844
|
+
"body": {
|
|
845
|
+
"service_tier": "priority"
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
"cost": {
|
|
852
|
+
"input": 2.5,
|
|
853
|
+
"output": 15,
|
|
854
|
+
"cache_read": 0.25,
|
|
855
|
+
"tiers": [
|
|
856
|
+
{
|
|
857
|
+
"input": 5,
|
|
858
|
+
"output": 22.5,
|
|
859
|
+
"cache_read": 0.5,
|
|
860
|
+
"tier": {
|
|
861
|
+
"type": "context",
|
|
862
|
+
"size": 272000
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"context_over_200k": {
|
|
867
|
+
"input": 5,
|
|
868
|
+
"output": 22.5,
|
|
869
|
+
"cache_read": 0.5
|
|
870
|
+
}
|
|
969
871
|
}
|
|
970
872
|
},
|
|
971
|
-
"gpt-
|
|
972
|
-
"id": "gpt-
|
|
973
|
-
"name": "GPT-
|
|
974
|
-
"family": "gpt",
|
|
975
|
-
"attachment":
|
|
873
|
+
"gpt-4o-mini": {
|
|
874
|
+
"id": "gpt-4o-mini",
|
|
875
|
+
"name": "GPT-4o mini",
|
|
876
|
+
"family": "gpt-mini",
|
|
877
|
+
"attachment": true,
|
|
976
878
|
"reasoning": false,
|
|
977
|
-
"tool_call":
|
|
978
|
-
"structured_output":
|
|
879
|
+
"tool_call": true,
|
|
880
|
+
"structured_output": true,
|
|
979
881
|
"temperature": true,
|
|
980
|
-
"knowledge": "
|
|
981
|
-
"release_date": "
|
|
982
|
-
"last_updated": "
|
|
882
|
+
"knowledge": "2023-09",
|
|
883
|
+
"release_date": "2024-07-18",
|
|
884
|
+
"last_updated": "2024-07-18",
|
|
983
885
|
"modalities": {
|
|
984
886
|
"input": [
|
|
985
|
-
"text"
|
|
887
|
+
"text",
|
|
888
|
+
"image",
|
|
889
|
+
"pdf"
|
|
986
890
|
],
|
|
987
891
|
"output": [
|
|
988
892
|
"text"
|
|
989
893
|
]
|
|
990
894
|
},
|
|
991
895
|
"open_weights": false,
|
|
992
|
-
"cost": {
|
|
993
|
-
"input": 0.5,
|
|
994
|
-
"output": 1.5,
|
|
995
|
-
"cache_read": 1.25
|
|
996
|
-
},
|
|
997
896
|
"limit": {
|
|
998
|
-
"context":
|
|
999
|
-
"output":
|
|
897
|
+
"context": 128000,
|
|
898
|
+
"output": 16384
|
|
899
|
+
},
|
|
900
|
+
"cost": {
|
|
901
|
+
"input": 0.15,
|
|
902
|
+
"output": 0.6,
|
|
903
|
+
"cache_read": 0.08
|
|
1000
904
|
}
|
|
1001
905
|
},
|
|
1002
|
-
"
|
|
1003
|
-
"id": "
|
|
1004
|
-
"name": "
|
|
1005
|
-
"family": "o",
|
|
906
|
+
"o1-pro": {
|
|
907
|
+
"id": "o1-pro",
|
|
908
|
+
"name": "o1-pro",
|
|
909
|
+
"family": "o-pro",
|
|
1006
910
|
"attachment": true,
|
|
1007
911
|
"reasoning": true,
|
|
1008
912
|
"tool_call": true,
|
|
913
|
+
"structured_output": true,
|
|
1009
914
|
"temperature": false,
|
|
1010
|
-
"knowledge": "
|
|
1011
|
-
"release_date": "
|
|
1012
|
-
"last_updated": "
|
|
915
|
+
"knowledge": "2023-09",
|
|
916
|
+
"release_date": "2025-03-19",
|
|
917
|
+
"last_updated": "2025-03-19",
|
|
1013
918
|
"modalities": {
|
|
1014
919
|
"input": [
|
|
1015
920
|
"text",
|
|
@@ -1020,149 +925,140 @@
|
|
|
1020
925
|
]
|
|
1021
926
|
},
|
|
1022
927
|
"open_weights": false,
|
|
1023
|
-
"cost": {
|
|
1024
|
-
"input": 10,
|
|
1025
|
-
"output": 40,
|
|
1026
|
-
"cache_read": 2.5
|
|
1027
|
-
},
|
|
1028
928
|
"limit": {
|
|
1029
929
|
"context": 200000,
|
|
1030
930
|
"output": 100000
|
|
931
|
+
},
|
|
932
|
+
"cost": {
|
|
933
|
+
"input": 150,
|
|
934
|
+
"output": 600
|
|
1031
935
|
}
|
|
1032
936
|
},
|
|
1033
|
-
"
|
|
1034
|
-
"id": "
|
|
1035
|
-
"name": "
|
|
1036
|
-
"family": "
|
|
1037
|
-
"attachment":
|
|
1038
|
-
"reasoning":
|
|
937
|
+
"gpt-4-turbo": {
|
|
938
|
+
"id": "gpt-4-turbo",
|
|
939
|
+
"name": "GPT-4 Turbo",
|
|
940
|
+
"family": "gpt",
|
|
941
|
+
"attachment": true,
|
|
942
|
+
"reasoning": false,
|
|
1039
943
|
"tool_call": true,
|
|
1040
|
-
"structured_output":
|
|
1041
|
-
"temperature":
|
|
1042
|
-
"knowledge": "
|
|
1043
|
-
"release_date": "
|
|
1044
|
-
"last_updated": "
|
|
944
|
+
"structured_output": false,
|
|
945
|
+
"temperature": true,
|
|
946
|
+
"knowledge": "2023-12",
|
|
947
|
+
"release_date": "2023-11-06",
|
|
948
|
+
"last_updated": "2024-04-09",
|
|
1045
949
|
"modalities": {
|
|
1046
950
|
"input": [
|
|
1047
|
-
"text"
|
|
951
|
+
"text",
|
|
952
|
+
"image"
|
|
1048
953
|
],
|
|
1049
954
|
"output": [
|
|
1050
955
|
"text"
|
|
1051
956
|
]
|
|
1052
957
|
},
|
|
1053
958
|
"open_weights": false,
|
|
1054
|
-
"cost": {
|
|
1055
|
-
"input": 1.1,
|
|
1056
|
-
"output": 4.4,
|
|
1057
|
-
"cache_read": 0.55
|
|
1058
|
-
},
|
|
1059
959
|
"limit": {
|
|
1060
|
-
"context":
|
|
1061
|
-
"output":
|
|
960
|
+
"context": 128000,
|
|
961
|
+
"output": 4096
|
|
962
|
+
},
|
|
963
|
+
"cost": {
|
|
964
|
+
"input": 10,
|
|
965
|
+
"output": 30
|
|
1062
966
|
}
|
|
1063
967
|
},
|
|
1064
|
-
"
|
|
1065
|
-
"id": "
|
|
1066
|
-
"name": "
|
|
1067
|
-
"family": "
|
|
1068
|
-
"attachment":
|
|
1069
|
-
"reasoning":
|
|
1070
|
-
"tool_call":
|
|
968
|
+
"gpt-5.4-mini": {
|
|
969
|
+
"id": "gpt-5.4-mini",
|
|
970
|
+
"name": "GPT-5.4 mini",
|
|
971
|
+
"family": "gpt-mini",
|
|
972
|
+
"attachment": true,
|
|
973
|
+
"reasoning": true,
|
|
974
|
+
"tool_call": true,
|
|
975
|
+
"structured_output": true,
|
|
1071
976
|
"temperature": false,
|
|
1072
|
-
"knowledge": "
|
|
1073
|
-
"release_date": "
|
|
1074
|
-
"last_updated": "
|
|
977
|
+
"knowledge": "2025-08-31",
|
|
978
|
+
"release_date": "2026-03-17",
|
|
979
|
+
"last_updated": "2026-03-17",
|
|
1075
980
|
"modalities": {
|
|
1076
981
|
"input": [
|
|
1077
|
-
"text"
|
|
982
|
+
"text",
|
|
983
|
+
"image"
|
|
1078
984
|
],
|
|
1079
985
|
"output": [
|
|
1080
986
|
"text"
|
|
1081
987
|
]
|
|
1082
988
|
},
|
|
1083
989
|
"open_weights": false,
|
|
1084
|
-
"cost": {
|
|
1085
|
-
"input": 0.02,
|
|
1086
|
-
"output": 0
|
|
1087
|
-
},
|
|
1088
990
|
"limit": {
|
|
1089
|
-
"context":
|
|
1090
|
-
"
|
|
991
|
+
"context": 400000,
|
|
992
|
+
"input": 272000,
|
|
993
|
+
"output": 128000
|
|
994
|
+
},
|
|
995
|
+
"experimental": {
|
|
996
|
+
"modes": {
|
|
997
|
+
"fast": {
|
|
998
|
+
"cost": {
|
|
999
|
+
"input": 1.5,
|
|
1000
|
+
"output": 9,
|
|
1001
|
+
"cache_read": 0.15
|
|
1002
|
+
},
|
|
1003
|
+
"provider": {
|
|
1004
|
+
"body": {
|
|
1005
|
+
"service_tier": "priority"
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"cost": {
|
|
1012
|
+
"input": 0.75,
|
|
1013
|
+
"output": 4.5,
|
|
1014
|
+
"cache_read": 0.075
|
|
1091
1015
|
}
|
|
1092
1016
|
},
|
|
1093
|
-
"o1
|
|
1094
|
-
"id": "o1
|
|
1095
|
-
"name": "o1
|
|
1096
|
-
"family": "o
|
|
1017
|
+
"o1": {
|
|
1018
|
+
"id": "o1",
|
|
1019
|
+
"name": "o1",
|
|
1020
|
+
"family": "o",
|
|
1097
1021
|
"attachment": true,
|
|
1098
1022
|
"reasoning": true,
|
|
1099
1023
|
"tool_call": true,
|
|
1100
1024
|
"structured_output": true,
|
|
1101
1025
|
"temperature": false,
|
|
1102
1026
|
"knowledge": "2023-09",
|
|
1103
|
-
"release_date": "
|
|
1104
|
-
"last_updated": "
|
|
1027
|
+
"release_date": "2024-12-05",
|
|
1028
|
+
"last_updated": "2024-12-05",
|
|
1105
1029
|
"modalities": {
|
|
1106
1030
|
"input": [
|
|
1107
1031
|
"text",
|
|
1108
|
-
"image"
|
|
1032
|
+
"image",
|
|
1033
|
+
"pdf"
|
|
1109
1034
|
],
|
|
1110
1035
|
"output": [
|
|
1111
1036
|
"text"
|
|
1112
1037
|
]
|
|
1113
1038
|
},
|
|
1114
1039
|
"open_weights": false,
|
|
1115
|
-
"cost": {
|
|
1116
|
-
"input": 150,
|
|
1117
|
-
"output": 600
|
|
1118
|
-
},
|
|
1119
1040
|
"limit": {
|
|
1120
1041
|
"context": 200000,
|
|
1121
1042
|
"output": 100000
|
|
1122
|
-
}
|
|
1123
|
-
},
|
|
1124
|
-
"gpt-4": {
|
|
1125
|
-
"id": "gpt-4",
|
|
1126
|
-
"name": "GPT-4",
|
|
1127
|
-
"family": "gpt",
|
|
1128
|
-
"attachment": true,
|
|
1129
|
-
"reasoning": false,
|
|
1130
|
-
"tool_call": true,
|
|
1131
|
-
"structured_output": false,
|
|
1132
|
-
"temperature": true,
|
|
1133
|
-
"knowledge": "2023-11",
|
|
1134
|
-
"release_date": "2023-11-06",
|
|
1135
|
-
"last_updated": "2024-04-09",
|
|
1136
|
-
"modalities": {
|
|
1137
|
-
"input": [
|
|
1138
|
-
"text"
|
|
1139
|
-
],
|
|
1140
|
-
"output": [
|
|
1141
|
-
"text"
|
|
1142
|
-
]
|
|
1143
1043
|
},
|
|
1144
|
-
"open_weights": false,
|
|
1145
1044
|
"cost": {
|
|
1146
|
-
"input":
|
|
1147
|
-
"output": 60
|
|
1148
|
-
|
|
1149
|
-
"limit": {
|
|
1150
|
-
"context": 8192,
|
|
1151
|
-
"output": 8192
|
|
1045
|
+
"input": 15,
|
|
1046
|
+
"output": 60,
|
|
1047
|
+
"cache_read": 7.5
|
|
1152
1048
|
}
|
|
1153
1049
|
},
|
|
1154
|
-
"gpt-5-codex": {
|
|
1155
|
-
"id": "gpt-5-codex",
|
|
1156
|
-
"name": "GPT-5
|
|
1050
|
+
"gpt-5.1-codex-max": {
|
|
1051
|
+
"id": "gpt-5.1-codex-max",
|
|
1052
|
+
"name": "GPT-5.1 Codex Max",
|
|
1157
1053
|
"family": "gpt-codex",
|
|
1158
|
-
"attachment":
|
|
1054
|
+
"attachment": true,
|
|
1159
1055
|
"reasoning": true,
|
|
1160
1056
|
"tool_call": true,
|
|
1161
1057
|
"structured_output": true,
|
|
1162
1058
|
"temperature": false,
|
|
1163
1059
|
"knowledge": "2024-09-30",
|
|
1164
|
-
"release_date": "2025-
|
|
1165
|
-
"last_updated": "2025-
|
|
1060
|
+
"release_date": "2025-11-13",
|
|
1061
|
+
"last_updated": "2025-11-13",
|
|
1166
1062
|
"modalities": {
|
|
1167
1063
|
"input": [
|
|
1168
1064
|
"text",
|
|
@@ -1173,29 +1069,29 @@
|
|
|
1173
1069
|
]
|
|
1174
1070
|
},
|
|
1175
1071
|
"open_weights": false,
|
|
1176
|
-
"cost": {
|
|
1177
|
-
"input": 1.25,
|
|
1178
|
-
"output": 10,
|
|
1179
|
-
"cache_read": 0.125
|
|
1180
|
-
},
|
|
1181
1072
|
"limit": {
|
|
1182
1073
|
"context": 400000,
|
|
1183
1074
|
"input": 272000,
|
|
1184
1075
|
"output": 128000
|
|
1076
|
+
},
|
|
1077
|
+
"cost": {
|
|
1078
|
+
"input": 1.25,
|
|
1079
|
+
"output": 10,
|
|
1080
|
+
"cache_read": 0.125
|
|
1185
1081
|
}
|
|
1186
1082
|
},
|
|
1187
|
-
"gpt-5.
|
|
1188
|
-
"id": "gpt-5.
|
|
1189
|
-
"name": "GPT-5.
|
|
1083
|
+
"gpt-5.5": {
|
|
1084
|
+
"id": "gpt-5.5",
|
|
1085
|
+
"name": "GPT-5.5",
|
|
1190
1086
|
"family": "gpt",
|
|
1191
1087
|
"attachment": true,
|
|
1192
1088
|
"reasoning": true,
|
|
1193
1089
|
"tool_call": true,
|
|
1194
1090
|
"structured_output": true,
|
|
1195
1091
|
"temperature": false,
|
|
1196
|
-
"knowledge": "2025-
|
|
1197
|
-
"release_date": "2026-
|
|
1198
|
-
"last_updated": "2026-
|
|
1092
|
+
"knowledge": "2025-12-01",
|
|
1093
|
+
"release_date": "2026-04-23",
|
|
1094
|
+
"last_updated": "2026-04-23",
|
|
1199
1095
|
"modalities": {
|
|
1200
1096
|
"input": [
|
|
1201
1097
|
"text",
|
|
@@ -1207,16 +1103,6 @@
|
|
|
1207
1103
|
]
|
|
1208
1104
|
},
|
|
1209
1105
|
"open_weights": false,
|
|
1210
|
-
"cost": {
|
|
1211
|
-
"input": 2.5,
|
|
1212
|
-
"output": 15,
|
|
1213
|
-
"cache_read": 0.25,
|
|
1214
|
-
"context_over_200k": {
|
|
1215
|
-
"input": 5,
|
|
1216
|
-
"output": 22.5,
|
|
1217
|
-
"cache_read": 0.5
|
|
1218
|
-
}
|
|
1219
|
-
},
|
|
1220
1106
|
"limit": {
|
|
1221
1107
|
"context": 1050000,
|
|
1222
1108
|
"input": 922000,
|
|
@@ -1226,9 +1112,9 @@
|
|
|
1226
1112
|
"modes": {
|
|
1227
1113
|
"fast": {
|
|
1228
1114
|
"cost": {
|
|
1229
|
-
"input": 5,
|
|
1230
|
-
"output":
|
|
1231
|
-
"cache_read":
|
|
1115
|
+
"input": 12.5,
|
|
1116
|
+
"output": 75,
|
|
1117
|
+
"cache_read": 1.25
|
|
1232
1118
|
},
|
|
1233
1119
|
"provider": {
|
|
1234
1120
|
"body": {
|
|
@@ -1237,20 +1123,41 @@
|
|
|
1237
1123
|
}
|
|
1238
1124
|
}
|
|
1239
1125
|
}
|
|
1126
|
+
},
|
|
1127
|
+
"cost": {
|
|
1128
|
+
"input": 5,
|
|
1129
|
+
"output": 30,
|
|
1130
|
+
"cache_read": 0.5,
|
|
1131
|
+
"tiers": [
|
|
1132
|
+
{
|
|
1133
|
+
"input": 10,
|
|
1134
|
+
"output": 45,
|
|
1135
|
+
"cache_read": 1,
|
|
1136
|
+
"tier": {
|
|
1137
|
+
"type": "context",
|
|
1138
|
+
"size": 272000
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
],
|
|
1142
|
+
"context_over_200k": {
|
|
1143
|
+
"input": 10,
|
|
1144
|
+
"output": 45,
|
|
1145
|
+
"cache_read": 1
|
|
1146
|
+
}
|
|
1240
1147
|
}
|
|
1241
1148
|
},
|
|
1242
|
-
"gpt-5.
|
|
1243
|
-
"id": "gpt-5.
|
|
1244
|
-
"name": "GPT-5.
|
|
1245
|
-
"family": "gpt-
|
|
1149
|
+
"gpt-5.4-pro": {
|
|
1150
|
+
"id": "gpt-5.4-pro",
|
|
1151
|
+
"name": "GPT-5.4 Pro",
|
|
1152
|
+
"family": "gpt-pro",
|
|
1246
1153
|
"attachment": true,
|
|
1247
1154
|
"reasoning": true,
|
|
1248
1155
|
"tool_call": true,
|
|
1249
|
-
"structured_output":
|
|
1156
|
+
"structured_output": false,
|
|
1250
1157
|
"temperature": false,
|
|
1251
|
-
"knowledge": "
|
|
1252
|
-
"release_date": "
|
|
1253
|
-
"last_updated": "
|
|
1158
|
+
"knowledge": "2025-08-31",
|
|
1159
|
+
"release_date": "2026-03-05",
|
|
1160
|
+
"last_updated": "2026-03-05",
|
|
1254
1161
|
"modalities": {
|
|
1255
1162
|
"input": [
|
|
1256
1163
|
"text",
|
|
@@ -1261,75 +1168,91 @@
|
|
|
1261
1168
|
]
|
|
1262
1169
|
},
|
|
1263
1170
|
"open_weights": false,
|
|
1264
|
-
"cost": {
|
|
1265
|
-
"input": 1.25,
|
|
1266
|
-
"output": 10,
|
|
1267
|
-
"cache_read": 0.125
|
|
1268
|
-
},
|
|
1269
1171
|
"limit": {
|
|
1270
|
-
"context":
|
|
1271
|
-
"
|
|
1172
|
+
"context": 1050000,
|
|
1173
|
+
"input": 922000,
|
|
1174
|
+
"output": 128000
|
|
1175
|
+
},
|
|
1176
|
+
"cost": {
|
|
1177
|
+
"input": 30,
|
|
1178
|
+
"output": 180,
|
|
1179
|
+
"tiers": [
|
|
1180
|
+
{
|
|
1181
|
+
"input": 60,
|
|
1182
|
+
"output": 270,
|
|
1183
|
+
"tier": {
|
|
1184
|
+
"type": "context",
|
|
1185
|
+
"size": 272000
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
],
|
|
1189
|
+
"context_over_200k": {
|
|
1190
|
+
"input": 60,
|
|
1191
|
+
"output": 270
|
|
1192
|
+
}
|
|
1272
1193
|
}
|
|
1273
1194
|
},
|
|
1274
|
-
"gpt-5.
|
|
1275
|
-
"id": "gpt-5.
|
|
1276
|
-
"name": "GPT-5.
|
|
1277
|
-
"family": "gpt-codex
|
|
1195
|
+
"gpt-5.2-chat-latest": {
|
|
1196
|
+
"id": "gpt-5.2-chat-latest",
|
|
1197
|
+
"name": "GPT-5.2 Chat",
|
|
1198
|
+
"family": "gpt-codex",
|
|
1278
1199
|
"attachment": true,
|
|
1279
1200
|
"reasoning": true,
|
|
1280
1201
|
"tool_call": true,
|
|
1281
1202
|
"structured_output": true,
|
|
1282
1203
|
"temperature": false,
|
|
1283
1204
|
"knowledge": "2025-08-31",
|
|
1284
|
-
"release_date": "
|
|
1285
|
-
"last_updated": "
|
|
1205
|
+
"release_date": "2025-12-11",
|
|
1206
|
+
"last_updated": "2025-12-11",
|
|
1286
1207
|
"modalities": {
|
|
1287
1208
|
"input": [
|
|
1288
1209
|
"text",
|
|
1289
|
-
"image"
|
|
1290
|
-
"pdf"
|
|
1210
|
+
"image"
|
|
1291
1211
|
],
|
|
1292
1212
|
"output": [
|
|
1293
1213
|
"text"
|
|
1294
1214
|
]
|
|
1295
1215
|
},
|
|
1296
1216
|
"open_weights": false,
|
|
1217
|
+
"limit": {
|
|
1218
|
+
"context": 128000,
|
|
1219
|
+
"output": 16384
|
|
1220
|
+
},
|
|
1297
1221
|
"cost": {
|
|
1298
1222
|
"input": 1.75,
|
|
1299
1223
|
"output": 14,
|
|
1300
1224
|
"cache_read": 0.175
|
|
1301
|
-
},
|
|
1302
|
-
"limit": {
|
|
1303
|
-
"context": 128000,
|
|
1304
|
-
"input": 100000,
|
|
1305
|
-
"output": 32000
|
|
1306
1225
|
}
|
|
1307
1226
|
},
|
|
1308
|
-
"
|
|
1309
|
-
"id": "
|
|
1310
|
-
"name": "
|
|
1311
|
-
"family": "
|
|
1227
|
+
"o4-mini-deep-research": {
|
|
1228
|
+
"id": "o4-mini-deep-research",
|
|
1229
|
+
"name": "o4-mini-deep-research",
|
|
1230
|
+
"family": "o-mini",
|
|
1312
1231
|
"attachment": true,
|
|
1313
|
-
"reasoning":
|
|
1314
|
-
"tool_call":
|
|
1232
|
+
"reasoning": true,
|
|
1233
|
+
"tool_call": true,
|
|
1315
1234
|
"temperature": false,
|
|
1316
|
-
"
|
|
1317
|
-
"
|
|
1235
|
+
"knowledge": "2024-05",
|
|
1236
|
+
"release_date": "2024-06-26",
|
|
1237
|
+
"last_updated": "2024-06-26",
|
|
1318
1238
|
"modalities": {
|
|
1319
1239
|
"input": [
|
|
1320
1240
|
"text",
|
|
1321
1241
|
"image"
|
|
1322
1242
|
],
|
|
1323
1243
|
"output": [
|
|
1324
|
-
"text"
|
|
1325
|
-
"image"
|
|
1244
|
+
"text"
|
|
1326
1245
|
]
|
|
1327
1246
|
},
|
|
1328
1247
|
"open_weights": false,
|
|
1329
1248
|
"limit": {
|
|
1330
|
-
"context":
|
|
1331
|
-
"
|
|
1332
|
-
|
|
1249
|
+
"context": 200000,
|
|
1250
|
+
"output": 100000
|
|
1251
|
+
},
|
|
1252
|
+
"cost": {
|
|
1253
|
+
"input": 2,
|
|
1254
|
+
"output": 8,
|
|
1255
|
+
"cache_read": 0.5
|
|
1333
1256
|
}
|
|
1334
1257
|
},
|
|
1335
1258
|
"gpt-4.1-nano": {
|
|
@@ -1354,20 +1277,50 @@
|
|
|
1354
1277
|
]
|
|
1355
1278
|
},
|
|
1356
1279
|
"open_weights": false,
|
|
1280
|
+
"limit": {
|
|
1281
|
+
"context": 1047576,
|
|
1282
|
+
"output": 32768
|
|
1283
|
+
},
|
|
1357
1284
|
"cost": {
|
|
1358
1285
|
"input": 0.1,
|
|
1359
1286
|
"output": 0.4,
|
|
1360
1287
|
"cache_read": 0.03
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"gpt-4": {
|
|
1291
|
+
"id": "gpt-4",
|
|
1292
|
+
"name": "GPT-4",
|
|
1293
|
+
"family": "gpt",
|
|
1294
|
+
"attachment": true,
|
|
1295
|
+
"reasoning": false,
|
|
1296
|
+
"tool_call": true,
|
|
1297
|
+
"structured_output": false,
|
|
1298
|
+
"temperature": true,
|
|
1299
|
+
"knowledge": "2023-11",
|
|
1300
|
+
"release_date": "2023-11-06",
|
|
1301
|
+
"last_updated": "2024-04-09",
|
|
1302
|
+
"modalities": {
|
|
1303
|
+
"input": [
|
|
1304
|
+
"text"
|
|
1305
|
+
],
|
|
1306
|
+
"output": [
|
|
1307
|
+
"text"
|
|
1308
|
+
]
|
|
1361
1309
|
},
|
|
1310
|
+
"open_weights": false,
|
|
1362
1311
|
"limit": {
|
|
1363
|
-
"context":
|
|
1364
|
-
"output":
|
|
1312
|
+
"context": 8192,
|
|
1313
|
+
"output": 8192
|
|
1314
|
+
},
|
|
1315
|
+
"cost": {
|
|
1316
|
+
"input": 30,
|
|
1317
|
+
"output": 60
|
|
1365
1318
|
}
|
|
1366
1319
|
},
|
|
1367
|
-
"
|
|
1368
|
-
"id": "
|
|
1369
|
-
"name": "
|
|
1370
|
-
"family": "o",
|
|
1320
|
+
"o4-mini": {
|
|
1321
|
+
"id": "o4-mini",
|
|
1322
|
+
"name": "o4-mini",
|
|
1323
|
+
"family": "o-mini",
|
|
1371
1324
|
"attachment": true,
|
|
1372
1325
|
"reasoning": true,
|
|
1373
1326
|
"tool_call": true,
|
|
@@ -1379,36 +1332,35 @@
|
|
|
1379
1332
|
"modalities": {
|
|
1380
1333
|
"input": [
|
|
1381
1334
|
"text",
|
|
1382
|
-
"image"
|
|
1383
|
-
"pdf"
|
|
1335
|
+
"image"
|
|
1384
1336
|
],
|
|
1385
1337
|
"output": [
|
|
1386
1338
|
"text"
|
|
1387
1339
|
]
|
|
1388
1340
|
},
|
|
1389
1341
|
"open_weights": false,
|
|
1390
|
-
"cost": {
|
|
1391
|
-
"input": 2,
|
|
1392
|
-
"output": 8,
|
|
1393
|
-
"cache_read": 0.5
|
|
1394
|
-
},
|
|
1395
1342
|
"limit": {
|
|
1396
1343
|
"context": 200000,
|
|
1397
1344
|
"output": 100000
|
|
1345
|
+
},
|
|
1346
|
+
"cost": {
|
|
1347
|
+
"input": 1.1,
|
|
1348
|
+
"output": 4.4,
|
|
1349
|
+
"cache_read": 0.28
|
|
1398
1350
|
}
|
|
1399
1351
|
},
|
|
1400
|
-
"gpt-5-
|
|
1401
|
-
"id": "gpt-5-
|
|
1402
|
-
"name": "GPT-5
|
|
1403
|
-
"family": "gpt-
|
|
1352
|
+
"gpt-5.1-codex": {
|
|
1353
|
+
"id": "gpt-5.1-codex",
|
|
1354
|
+
"name": "GPT-5.1 Codex",
|
|
1355
|
+
"family": "gpt-codex",
|
|
1404
1356
|
"attachment": true,
|
|
1405
1357
|
"reasoning": true,
|
|
1406
1358
|
"tool_call": true,
|
|
1407
1359
|
"structured_output": true,
|
|
1408
1360
|
"temperature": false,
|
|
1409
1361
|
"knowledge": "2024-09-30",
|
|
1410
|
-
"release_date": "2025-
|
|
1411
|
-
"last_updated": "2025-
|
|
1362
|
+
"release_date": "2025-11-13",
|
|
1363
|
+
"last_updated": "2025-11-13",
|
|
1412
1364
|
"modalities": {
|
|
1413
1365
|
"input": [
|
|
1414
1366
|
"text",
|
|
@@ -1419,19 +1371,20 @@
|
|
|
1419
1371
|
]
|
|
1420
1372
|
},
|
|
1421
1373
|
"open_weights": false,
|
|
1422
|
-
"cost": {
|
|
1423
|
-
"input": 15,
|
|
1424
|
-
"output": 120
|
|
1425
|
-
},
|
|
1426
1374
|
"limit": {
|
|
1427
1375
|
"context": 400000,
|
|
1428
1376
|
"input": 272000,
|
|
1429
|
-
"output":
|
|
1377
|
+
"output": 128000
|
|
1378
|
+
},
|
|
1379
|
+
"cost": {
|
|
1380
|
+
"input": 1.25,
|
|
1381
|
+
"output": 10,
|
|
1382
|
+
"cache_read": 0.125
|
|
1430
1383
|
}
|
|
1431
1384
|
},
|
|
1432
|
-
"gpt-4o": {
|
|
1433
|
-
"id": "gpt-4o",
|
|
1434
|
-
"name": "GPT-4o",
|
|
1385
|
+
"gpt-4o-2024-11-20": {
|
|
1386
|
+
"id": "gpt-4o-2024-11-20",
|
|
1387
|
+
"name": "GPT-4o (2024-11-20)",
|
|
1435
1388
|
"family": "gpt",
|
|
1436
1389
|
"attachment": true,
|
|
1437
1390
|
"reasoning": false,
|
|
@@ -1439,39 +1392,98 @@
|
|
|
1439
1392
|
"structured_output": true,
|
|
1440
1393
|
"temperature": true,
|
|
1441
1394
|
"knowledge": "2023-09",
|
|
1442
|
-
"release_date": "2024-
|
|
1443
|
-
"last_updated": "2024-
|
|
1395
|
+
"release_date": "2024-11-20",
|
|
1396
|
+
"last_updated": "2024-11-20",
|
|
1444
1397
|
"modalities": {
|
|
1445
1398
|
"input": [
|
|
1446
1399
|
"text",
|
|
1447
|
-
"image"
|
|
1448
|
-
"pdf"
|
|
1400
|
+
"image"
|
|
1449
1401
|
],
|
|
1450
1402
|
"output": [
|
|
1451
1403
|
"text"
|
|
1452
1404
|
]
|
|
1453
1405
|
},
|
|
1454
1406
|
"open_weights": false,
|
|
1407
|
+
"limit": {
|
|
1408
|
+
"context": 128000,
|
|
1409
|
+
"output": 16384
|
|
1410
|
+
},
|
|
1455
1411
|
"cost": {
|
|
1456
1412
|
"input": 2.5,
|
|
1457
1413
|
"output": 10,
|
|
1458
1414
|
"cache_read": 1.25
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
"gpt-5.2-codex": {
|
|
1418
|
+
"id": "gpt-5.2-codex",
|
|
1419
|
+
"name": "GPT-5.2 Codex",
|
|
1420
|
+
"family": "gpt-codex",
|
|
1421
|
+
"attachment": true,
|
|
1422
|
+
"reasoning": true,
|
|
1423
|
+
"tool_call": true,
|
|
1424
|
+
"structured_output": true,
|
|
1425
|
+
"temperature": false,
|
|
1426
|
+
"knowledge": "2025-08-31",
|
|
1427
|
+
"release_date": "2025-12-11",
|
|
1428
|
+
"last_updated": "2025-12-11",
|
|
1429
|
+
"modalities": {
|
|
1430
|
+
"input": [
|
|
1431
|
+
"text",
|
|
1432
|
+
"image",
|
|
1433
|
+
"pdf"
|
|
1434
|
+
],
|
|
1435
|
+
"output": [
|
|
1436
|
+
"text"
|
|
1437
|
+
]
|
|
1459
1438
|
},
|
|
1439
|
+
"open_weights": false,
|
|
1460
1440
|
"limit": {
|
|
1461
|
-
"context":
|
|
1462
|
-
"
|
|
1441
|
+
"context": 400000,
|
|
1442
|
+
"input": 272000,
|
|
1443
|
+
"output": 128000
|
|
1444
|
+
},
|
|
1445
|
+
"cost": {
|
|
1446
|
+
"input": 1.75,
|
|
1447
|
+
"output": 14,
|
|
1448
|
+
"cache_read": 0.175
|
|
1463
1449
|
}
|
|
1464
1450
|
},
|
|
1465
|
-
"gpt-
|
|
1466
|
-
"id": "gpt-
|
|
1467
|
-
"name": "
|
|
1468
|
-
"family": "gpt",
|
|
1451
|
+
"gpt-image-1": {
|
|
1452
|
+
"id": "gpt-image-1",
|
|
1453
|
+
"name": "gpt-image-1",
|
|
1454
|
+
"family": "gpt-image",
|
|
1455
|
+
"attachment": true,
|
|
1456
|
+
"reasoning": false,
|
|
1457
|
+
"tool_call": false,
|
|
1458
|
+
"temperature": false,
|
|
1459
|
+
"release_date": "2025-04-24",
|
|
1460
|
+
"last_updated": "2025-04-24",
|
|
1461
|
+
"modalities": {
|
|
1462
|
+
"input": [
|
|
1463
|
+
"text",
|
|
1464
|
+
"image"
|
|
1465
|
+
],
|
|
1466
|
+
"output": [
|
|
1467
|
+
"image"
|
|
1468
|
+
]
|
|
1469
|
+
},
|
|
1470
|
+
"open_weights": false,
|
|
1471
|
+
"limit": {
|
|
1472
|
+
"context": 0,
|
|
1473
|
+
"input": 0,
|
|
1474
|
+
"output": 0
|
|
1475
|
+
}
|
|
1476
|
+
},
|
|
1477
|
+
"gpt-5-mini": {
|
|
1478
|
+
"id": "gpt-5-mini",
|
|
1479
|
+
"name": "GPT-5 Mini",
|
|
1480
|
+
"family": "gpt-mini",
|
|
1469
1481
|
"attachment": true,
|
|
1470
1482
|
"reasoning": true,
|
|
1471
1483
|
"tool_call": true,
|
|
1472
1484
|
"structured_output": true,
|
|
1473
1485
|
"temperature": false,
|
|
1474
|
-
"knowledge": "2024-
|
|
1486
|
+
"knowledge": "2024-05-30",
|
|
1475
1487
|
"release_date": "2025-08-07",
|
|
1476
1488
|
"last_updated": "2025-08-07",
|
|
1477
1489
|
"modalities": {
|
|
@@ -1484,88 +1496,126 @@
|
|
|
1484
1496
|
]
|
|
1485
1497
|
},
|
|
1486
1498
|
"open_weights": false,
|
|
1487
|
-
"cost": {
|
|
1488
|
-
"input": 1.25,
|
|
1489
|
-
"output": 10,
|
|
1490
|
-
"cache_read": 0.125
|
|
1491
|
-
},
|
|
1492
1499
|
"limit": {
|
|
1493
1500
|
"context": 400000,
|
|
1494
1501
|
"input": 272000,
|
|
1495
1502
|
"output": 128000
|
|
1503
|
+
},
|
|
1504
|
+
"cost": {
|
|
1505
|
+
"input": 0.25,
|
|
1506
|
+
"output": 2,
|
|
1507
|
+
"cache_read": 0.025
|
|
1496
1508
|
}
|
|
1497
1509
|
},
|
|
1498
|
-
"
|
|
1499
|
-
"id": "
|
|
1500
|
-
"name": "
|
|
1510
|
+
"o3-mini": {
|
|
1511
|
+
"id": "o3-mini",
|
|
1512
|
+
"name": "o3-mini",
|
|
1513
|
+
"family": "o-mini",
|
|
1514
|
+
"attachment": false,
|
|
1515
|
+
"reasoning": true,
|
|
1516
|
+
"tool_call": true,
|
|
1517
|
+
"structured_output": true,
|
|
1518
|
+
"temperature": false,
|
|
1519
|
+
"knowledge": "2024-05",
|
|
1520
|
+
"release_date": "2024-12-20",
|
|
1521
|
+
"last_updated": "2025-01-29",
|
|
1522
|
+
"modalities": {
|
|
1523
|
+
"input": [
|
|
1524
|
+
"text"
|
|
1525
|
+
],
|
|
1526
|
+
"output": [
|
|
1527
|
+
"text"
|
|
1528
|
+
]
|
|
1529
|
+
},
|
|
1530
|
+
"open_weights": false,
|
|
1531
|
+
"limit": {
|
|
1532
|
+
"context": 200000,
|
|
1533
|
+
"output": 100000
|
|
1534
|
+
},
|
|
1535
|
+
"cost": {
|
|
1536
|
+
"input": 1.1,
|
|
1537
|
+
"output": 4.4,
|
|
1538
|
+
"cache_read": 0.55
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"gpt-5.3-codex": {
|
|
1542
|
+
"id": "gpt-5.3-codex",
|
|
1543
|
+
"name": "GPT-5.3 Codex",
|
|
1501
1544
|
"family": "gpt-codex",
|
|
1502
1545
|
"attachment": true,
|
|
1503
1546
|
"reasoning": true,
|
|
1504
|
-
"tool_call":
|
|
1547
|
+
"tool_call": true,
|
|
1505
1548
|
"structured_output": true,
|
|
1506
|
-
"temperature":
|
|
1507
|
-
"knowledge": "
|
|
1508
|
-
"release_date": "
|
|
1509
|
-
"last_updated": "
|
|
1549
|
+
"temperature": false,
|
|
1550
|
+
"knowledge": "2025-08-31",
|
|
1551
|
+
"release_date": "2026-02-05",
|
|
1552
|
+
"last_updated": "2026-02-05",
|
|
1510
1553
|
"modalities": {
|
|
1511
1554
|
"input": [
|
|
1512
1555
|
"text",
|
|
1513
|
-
"image"
|
|
1556
|
+
"image",
|
|
1557
|
+
"pdf"
|
|
1514
1558
|
],
|
|
1515
1559
|
"output": [
|
|
1516
1560
|
"text"
|
|
1517
1561
|
]
|
|
1518
1562
|
},
|
|
1519
1563
|
"open_weights": false,
|
|
1520
|
-
"cost": {
|
|
1521
|
-
"input": 1.25,
|
|
1522
|
-
"output": 10
|
|
1523
|
-
},
|
|
1524
1564
|
"limit": {
|
|
1525
1565
|
"context": 400000,
|
|
1526
1566
|
"input": 272000,
|
|
1527
1567
|
"output": 128000
|
|
1568
|
+
},
|
|
1569
|
+
"cost": {
|
|
1570
|
+
"input": 1.75,
|
|
1571
|
+
"output": 14,
|
|
1572
|
+
"cache_read": 0.175
|
|
1528
1573
|
}
|
|
1529
1574
|
},
|
|
1530
|
-
"gpt-
|
|
1531
|
-
"id": "gpt-
|
|
1532
|
-
"name": "
|
|
1533
|
-
"family": "gpt
|
|
1575
|
+
"gpt-4o-2024-08-06": {
|
|
1576
|
+
"id": "gpt-4o-2024-08-06",
|
|
1577
|
+
"name": "GPT-4o (2024-08-06)",
|
|
1578
|
+
"family": "gpt",
|
|
1534
1579
|
"attachment": true,
|
|
1535
1580
|
"reasoning": false,
|
|
1536
|
-
"tool_call":
|
|
1537
|
-
"
|
|
1538
|
-
"
|
|
1539
|
-
"
|
|
1581
|
+
"tool_call": true,
|
|
1582
|
+
"structured_output": true,
|
|
1583
|
+
"temperature": true,
|
|
1584
|
+
"knowledge": "2023-09",
|
|
1585
|
+
"release_date": "2024-08-06",
|
|
1586
|
+
"last_updated": "2024-08-06",
|
|
1540
1587
|
"modalities": {
|
|
1541
1588
|
"input": [
|
|
1542
1589
|
"text",
|
|
1543
1590
|
"image"
|
|
1544
1591
|
],
|
|
1545
1592
|
"output": [
|
|
1546
|
-
"text"
|
|
1547
|
-
"image"
|
|
1593
|
+
"text"
|
|
1548
1594
|
]
|
|
1549
1595
|
},
|
|
1550
1596
|
"open_weights": false,
|
|
1551
1597
|
"limit": {
|
|
1552
|
-
"context":
|
|
1553
|
-
"
|
|
1554
|
-
|
|
1598
|
+
"context": 128000,
|
|
1599
|
+
"output": 16384
|
|
1600
|
+
},
|
|
1601
|
+
"cost": {
|
|
1602
|
+
"input": 2.5,
|
|
1603
|
+
"output": 10,
|
|
1604
|
+
"cache_read": 1.25
|
|
1555
1605
|
}
|
|
1556
1606
|
},
|
|
1557
|
-
"
|
|
1558
|
-
"id": "
|
|
1559
|
-
"name": "
|
|
1560
|
-
"family": "
|
|
1607
|
+
"o3": {
|
|
1608
|
+
"id": "o3",
|
|
1609
|
+
"name": "o3",
|
|
1610
|
+
"family": "o",
|
|
1561
1611
|
"attachment": true,
|
|
1562
1612
|
"reasoning": true,
|
|
1563
1613
|
"tool_call": true,
|
|
1564
1614
|
"structured_output": true,
|
|
1565
1615
|
"temperature": false,
|
|
1566
|
-
"knowledge": "
|
|
1567
|
-
"release_date": "
|
|
1568
|
-
"last_updated": "
|
|
1616
|
+
"knowledge": "2024-05",
|
|
1617
|
+
"release_date": "2025-04-16",
|
|
1618
|
+
"last_updated": "2025-04-16",
|
|
1569
1619
|
"modalities": {
|
|
1570
1620
|
"input": [
|
|
1571
1621
|
"text",
|
|
@@ -1577,98 +1627,90 @@
|
|
|
1577
1627
|
]
|
|
1578
1628
|
},
|
|
1579
1629
|
"open_weights": false,
|
|
1580
|
-
"cost": {
|
|
1581
|
-
"input": 30,
|
|
1582
|
-
"output": 180,
|
|
1583
|
-
"context_over_200k": {
|
|
1584
|
-
"input": 60,
|
|
1585
|
-
"output": 270
|
|
1586
|
-
}
|
|
1587
|
-
},
|
|
1588
1630
|
"limit": {
|
|
1589
|
-
"context":
|
|
1590
|
-
"
|
|
1591
|
-
|
|
1631
|
+
"context": 200000,
|
|
1632
|
+
"output": 100000
|
|
1633
|
+
},
|
|
1634
|
+
"cost": {
|
|
1635
|
+
"input": 2,
|
|
1636
|
+
"output": 8,
|
|
1637
|
+
"cache_read": 0.5
|
|
1592
1638
|
}
|
|
1593
1639
|
},
|
|
1594
|
-
"
|
|
1595
|
-
"id": "
|
|
1596
|
-
"name": "
|
|
1597
|
-
"family": "
|
|
1598
|
-
"attachment":
|
|
1599
|
-
"reasoning":
|
|
1600
|
-
"tool_call":
|
|
1640
|
+
"o1-mini": {
|
|
1641
|
+
"id": "o1-mini",
|
|
1642
|
+
"name": "o1-mini",
|
|
1643
|
+
"family": "o-mini",
|
|
1644
|
+
"attachment": false,
|
|
1645
|
+
"reasoning": true,
|
|
1646
|
+
"tool_call": false,
|
|
1601
1647
|
"structured_output": true,
|
|
1602
|
-
"temperature":
|
|
1603
|
-
"knowledge": "
|
|
1604
|
-
"release_date": "
|
|
1605
|
-
"last_updated": "
|
|
1648
|
+
"temperature": false,
|
|
1649
|
+
"knowledge": "2023-09",
|
|
1650
|
+
"release_date": "2024-09-12",
|
|
1651
|
+
"last_updated": "2024-09-12",
|
|
1606
1652
|
"modalities": {
|
|
1607
1653
|
"input": [
|
|
1608
|
-
"text"
|
|
1609
|
-
"image",
|
|
1610
|
-
"pdf"
|
|
1654
|
+
"text"
|
|
1611
1655
|
],
|
|
1612
1656
|
"output": [
|
|
1613
1657
|
"text"
|
|
1614
1658
|
]
|
|
1615
1659
|
},
|
|
1616
1660
|
"open_weights": false,
|
|
1617
|
-
"cost": {
|
|
1618
|
-
"input": 2,
|
|
1619
|
-
"output": 8,
|
|
1620
|
-
"cache_read": 0.5
|
|
1621
|
-
},
|
|
1622
1661
|
"limit": {
|
|
1623
|
-
"context":
|
|
1624
|
-
"output":
|
|
1662
|
+
"context": 128000,
|
|
1663
|
+
"output": 65536
|
|
1664
|
+
},
|
|
1665
|
+
"cost": {
|
|
1666
|
+
"input": 1.1,
|
|
1667
|
+
"output": 4.4,
|
|
1668
|
+
"cache_read": 0.55
|
|
1625
1669
|
}
|
|
1626
1670
|
},
|
|
1627
|
-
"
|
|
1628
|
-
"id": "
|
|
1629
|
-
"name": "
|
|
1630
|
-
"family": "
|
|
1671
|
+
"o3-deep-research": {
|
|
1672
|
+
"id": "o3-deep-research",
|
|
1673
|
+
"name": "o3-deep-research",
|
|
1674
|
+
"family": "o",
|
|
1631
1675
|
"attachment": true,
|
|
1632
|
-
"reasoning":
|
|
1676
|
+
"reasoning": true,
|
|
1633
1677
|
"tool_call": true,
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1636
|
-
"
|
|
1637
|
-
"
|
|
1638
|
-
"last_updated": "2025-04-14",
|
|
1678
|
+
"temperature": false,
|
|
1679
|
+
"knowledge": "2024-05",
|
|
1680
|
+
"release_date": "2024-06-26",
|
|
1681
|
+
"last_updated": "2024-06-26",
|
|
1639
1682
|
"modalities": {
|
|
1640
1683
|
"input": [
|
|
1641
1684
|
"text",
|
|
1642
|
-
"image"
|
|
1643
|
-
"pdf"
|
|
1685
|
+
"image"
|
|
1644
1686
|
],
|
|
1645
1687
|
"output": [
|
|
1646
1688
|
"text"
|
|
1647
1689
|
]
|
|
1648
1690
|
},
|
|
1649
1691
|
"open_weights": false,
|
|
1650
|
-
"cost": {
|
|
1651
|
-
"input": 0.4,
|
|
1652
|
-
"output": 1.6,
|
|
1653
|
-
"cache_read": 0.1
|
|
1654
|
-
},
|
|
1655
1692
|
"limit": {
|
|
1656
|
-
"context":
|
|
1657
|
-
"output":
|
|
1693
|
+
"context": 200000,
|
|
1694
|
+
"output": 100000
|
|
1695
|
+
},
|
|
1696
|
+
"cost": {
|
|
1697
|
+
"input": 10,
|
|
1698
|
+
"output": 40,
|
|
1699
|
+
"cache_read": 2.5
|
|
1658
1700
|
}
|
|
1659
1701
|
},
|
|
1660
|
-
"gpt-5
|
|
1661
|
-
"id": "gpt-5
|
|
1662
|
-
"name": "GPT-5
|
|
1663
|
-
"family": "gpt
|
|
1702
|
+
"gpt-5": {
|
|
1703
|
+
"id": "gpt-5",
|
|
1704
|
+
"name": "GPT-5",
|
|
1705
|
+
"family": "gpt",
|
|
1664
1706
|
"attachment": true,
|
|
1665
1707
|
"reasoning": true,
|
|
1666
1708
|
"tool_call": true,
|
|
1667
1709
|
"structured_output": true,
|
|
1668
1710
|
"temperature": false,
|
|
1669
1711
|
"knowledge": "2024-09-30",
|
|
1670
|
-
"release_date": "2025-
|
|
1671
|
-
"last_updated": "2025-
|
|
1712
|
+
"release_date": "2025-08-07",
|
|
1713
|
+
"last_updated": "2025-08-07",
|
|
1672
1714
|
"modalities": {
|
|
1673
1715
|
"input": [
|
|
1674
1716
|
"text",
|
|
@@ -1679,29 +1721,29 @@
|
|
|
1679
1721
|
]
|
|
1680
1722
|
},
|
|
1681
1723
|
"open_weights": false,
|
|
1682
|
-
"cost": {
|
|
1683
|
-
"input": 1.25,
|
|
1684
|
-
"output": 10,
|
|
1685
|
-
"cache_read": 0.125
|
|
1686
|
-
},
|
|
1687
1724
|
"limit": {
|
|
1688
1725
|
"context": 400000,
|
|
1689
1726
|
"input": 272000,
|
|
1690
1727
|
"output": 128000
|
|
1728
|
+
},
|
|
1729
|
+
"cost": {
|
|
1730
|
+
"input": 1.25,
|
|
1731
|
+
"output": 10,
|
|
1732
|
+
"cache_read": 0.125
|
|
1691
1733
|
}
|
|
1692
1734
|
},
|
|
1693
|
-
"gpt-
|
|
1694
|
-
"id": "gpt-
|
|
1695
|
-
"name": "GPT-
|
|
1735
|
+
"gpt-5.3-chat-latest": {
|
|
1736
|
+
"id": "gpt-5.3-chat-latest",
|
|
1737
|
+
"name": "GPT-5.3 Chat (latest)",
|
|
1696
1738
|
"family": "gpt",
|
|
1697
1739
|
"attachment": true,
|
|
1698
1740
|
"reasoning": false,
|
|
1699
1741
|
"tool_call": true,
|
|
1700
1742
|
"structured_output": true,
|
|
1701
1743
|
"temperature": true,
|
|
1702
|
-
"knowledge": "
|
|
1703
|
-
"release_date": "
|
|
1704
|
-
"last_updated": "
|
|
1744
|
+
"knowledge": "2025-08-31",
|
|
1745
|
+
"release_date": "2026-03-03",
|
|
1746
|
+
"last_updated": "2026-03-03",
|
|
1705
1747
|
"modalities": {
|
|
1706
1748
|
"input": [
|
|
1707
1749
|
"text",
|
|
@@ -1712,14 +1754,14 @@
|
|
|
1712
1754
|
]
|
|
1713
1755
|
},
|
|
1714
1756
|
"open_weights": false,
|
|
1715
|
-
"cost": {
|
|
1716
|
-
"input": 2.5,
|
|
1717
|
-
"output": 10,
|
|
1718
|
-
"cache_read": 1.25
|
|
1719
|
-
},
|
|
1720
1757
|
"limit": {
|
|
1721
1758
|
"context": 128000,
|
|
1722
1759
|
"output": 16384
|
|
1760
|
+
},
|
|
1761
|
+
"cost": {
|
|
1762
|
+
"input": 1.75,
|
|
1763
|
+
"output": 14,
|
|
1764
|
+
"cache_read": 0.175
|
|
1723
1765
|
}
|
|
1724
1766
|
}
|
|
1725
1767
|
}
|