llm.rb 11.3.1 → 12.1.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 +354 -2
- data/LICENSE +93 -17
- data/README.md +226 -616
- data/data/anthropic.json +322 -426
- data/data/bedrock.json +2634 -1144
- data/data/deepinfra.json +1513 -0
- data/data/deepseek.json +57 -28
- data/data/google.json +411 -771
- data/data/openai.json +1104 -771
- data/data/xai.json +141 -292
- data/data/zai.json +263 -141
- data/lib/llm/active_record/acts_as_agent.rb +3 -41
- data/lib/llm/active_record/acts_as_llm.rb +18 -0
- data/lib/llm/active_record.rb +3 -3
- data/lib/llm/agent.rb +25 -1
- data/lib/llm/context.rb +17 -5
- data/lib/llm/contract/completion.rb +2 -2
- data/lib/llm/json_adapter.rb +29 -3
- data/lib/llm/provider.rb +3 -3
- data/lib/llm/providers/deepinfra/audio.rb +66 -0
- data/lib/llm/providers/deepinfra/images.rb +90 -0
- data/lib/llm/providers/deepinfra/response_adapter.rb +36 -0
- data/lib/llm/providers/deepinfra.rb +100 -0
- data/lib/llm/providers/deepseek/images.rb +109 -0
- data/lib/llm/providers/deepseek/request_adapter.rb +32 -0
- data/lib/llm/providers/deepseek/response_adapter/image.rb +9 -0
- data/lib/llm/providers/deepseek/response_adapter.rb +29 -0
- data/lib/llm/providers/deepseek.rb +4 -2
- data/lib/llm/providers/google/request_adapter.rb +22 -5
- data/lib/llm/providers/google.rb +4 -4
- data/lib/llm/providers/llamacpp.rb +5 -5
- data/lib/llm/providers/openai/audio.rb +6 -2
- data/lib/llm/providers/openai/images.rb +9 -50
- data/lib/llm/providers/openai/request_adapter/respond.rb +38 -4
- data/lib/llm/providers/openai/response_adapter/audio.rb +5 -1
- data/lib/llm/providers/openai/response_adapter/completion.rb +1 -1
- data/lib/llm/providers/openai/response_adapter/image.rb +0 -4
- data/lib/llm/providers/openai/responses.rb +1 -0
- data/lib/llm/providers/openai/stream_parser.rb +5 -6
- data/lib/llm/providers/openai.rb +2 -2
- data/lib/llm/providers/xai/images.rb +49 -26
- data/lib/llm/providers/xai.rb +2 -2
- data/lib/llm/repl/input.rb +64 -0
- data/lib/llm/repl/status.rb +30 -0
- data/lib/llm/repl/stream.rb +46 -0
- data/lib/llm/repl/transcript.rb +61 -0
- data/lib/llm/repl/window.rb +107 -0
- data/lib/llm/repl.rb +78 -0
- data/lib/llm/response.rb +10 -0
- data/lib/llm/schema/leaf.rb +7 -1
- data/lib/llm/schema/renderer.rb +121 -0
- data/lib/llm/schema.rb +30 -0
- data/lib/llm/sequel/agent.rb +2 -43
- data/lib/llm/sequel/plugin.rb +25 -7
- data/lib/llm/tools/chdir.rb +23 -0
- data/lib/llm/tools/git.rb +41 -0
- data/lib/llm/tools/mkdir.rb +32 -0
- data/lib/llm/tools/pwd.rb +20 -0
- data/lib/llm/tools/read_file.rb +40 -0
- data/lib/llm/tools/rg.rb +46 -0
- data/lib/llm/tools/shell.rb +48 -0
- data/lib/llm/tools/swap_text.rb +25 -0
- data/lib/llm/tools/write_file.rb +24 -0
- data/lib/llm/tools.rb +5 -0
- data/lib/llm/tracer/telemetry.rb +4 -6
- data/lib/llm/tracer.rb +9 -21
- data/lib/llm/transport/execution.rb +16 -1
- data/lib/llm/transport/net_http_adapter.rb +1 -1
- data/lib/llm/uridata.rb +16 -0
- data/lib/llm/version.rb +1 -1
- data/lib/llm.rb +9 -0
- data/llm.gemspec +5 -18
- data/resources/deepdive.md +829 -263
- metadata +31 -18
- data/lib/llm/tracer/langsmith.rb +0 -144
data/data/openai.json
CHANGED
|
@@ -7,9 +7,54 @@
|
|
|
7
7
|
"name": "OpenAI",
|
|
8
8
|
"doc": "https://platform.openai.com/docs/models",
|
|
9
9
|
"models": {
|
|
10
|
+
"o3": {
|
|
11
|
+
"id": "o3",
|
|
12
|
+
"name": "o3",
|
|
13
|
+
"description": "Deliberate o-series reasoner for hard math, coding, and multi-step analysis",
|
|
14
|
+
"family": "o",
|
|
15
|
+
"attachment": true,
|
|
16
|
+
"reasoning": true,
|
|
17
|
+
"reasoning_options": [
|
|
18
|
+
{
|
|
19
|
+
"type": "effort",
|
|
20
|
+
"values": [
|
|
21
|
+
"low",
|
|
22
|
+
"medium",
|
|
23
|
+
"high"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"tool_call": true,
|
|
28
|
+
"structured_output": true,
|
|
29
|
+
"temperature": false,
|
|
30
|
+
"knowledge": "2024-05",
|
|
31
|
+
"release_date": "2025-04-16",
|
|
32
|
+
"last_updated": "2025-04-16",
|
|
33
|
+
"modalities": {
|
|
34
|
+
"input": [
|
|
35
|
+
"text",
|
|
36
|
+
"image",
|
|
37
|
+
"pdf"
|
|
38
|
+
],
|
|
39
|
+
"output": [
|
|
40
|
+
"text"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"open_weights": false,
|
|
44
|
+
"limit": {
|
|
45
|
+
"context": 200000,
|
|
46
|
+
"output": 100000
|
|
47
|
+
},
|
|
48
|
+
"cost": {
|
|
49
|
+
"input": 2,
|
|
50
|
+
"output": 8,
|
|
51
|
+
"cache_read": 0.5
|
|
52
|
+
}
|
|
53
|
+
},
|
|
10
54
|
"text-embedding-3-large": {
|
|
11
55
|
"id": "text-embedding-3-large",
|
|
12
56
|
"name": "text-embedding-3-large",
|
|
57
|
+
"description": "Embedding model for semantic search, retrieval, clustering, and ranking pipelines",
|
|
13
58
|
"family": "text-embedding",
|
|
14
59
|
"attachment": false,
|
|
15
60
|
"reasoning": false,
|
|
@@ -36,23 +81,33 @@
|
|
|
36
81
|
"output": 0
|
|
37
82
|
}
|
|
38
83
|
},
|
|
39
|
-
"gpt-
|
|
40
|
-
"id": "gpt-
|
|
41
|
-
"name": "GPT-
|
|
42
|
-
"
|
|
84
|
+
"gpt-5.2-pro": {
|
|
85
|
+
"id": "gpt-5.2-pro",
|
|
86
|
+
"name": "GPT-5.2 Pro",
|
|
87
|
+
"description": "Higher-accuracy GPT-5.2 variant for tougher reasoning and review workflows",
|
|
88
|
+
"family": "gpt-pro",
|
|
43
89
|
"attachment": true,
|
|
44
|
-
"reasoning":
|
|
90
|
+
"reasoning": true,
|
|
91
|
+
"reasoning_options": [
|
|
92
|
+
{
|
|
93
|
+
"type": "effort",
|
|
94
|
+
"values": [
|
|
95
|
+
"medium",
|
|
96
|
+
"high",
|
|
97
|
+
"xhigh"
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
],
|
|
45
101
|
"tool_call": true,
|
|
46
|
-
"structured_output":
|
|
47
|
-
"temperature":
|
|
48
|
-
"knowledge": "
|
|
49
|
-
"release_date": "
|
|
50
|
-
"last_updated": "
|
|
102
|
+
"structured_output": false,
|
|
103
|
+
"temperature": false,
|
|
104
|
+
"knowledge": "2025-08-31",
|
|
105
|
+
"release_date": "2025-12-11",
|
|
106
|
+
"last_updated": "2025-12-11",
|
|
51
107
|
"modalities": {
|
|
52
108
|
"input": [
|
|
53
109
|
"text",
|
|
54
|
-
"image"
|
|
55
|
-
"pdf"
|
|
110
|
+
"image"
|
|
56
111
|
],
|
|
57
112
|
"output": [
|
|
58
113
|
"text"
|
|
@@ -60,54 +115,39 @@
|
|
|
60
115
|
},
|
|
61
116
|
"open_weights": false,
|
|
62
117
|
"limit": {
|
|
63
|
-
"context":
|
|
64
|
-
"
|
|
118
|
+
"context": 400000,
|
|
119
|
+
"input": 272000,
|
|
120
|
+
"output": 128000
|
|
65
121
|
},
|
|
66
122
|
"cost": {
|
|
67
|
-
"input":
|
|
68
|
-
"output":
|
|
69
|
-
"cache_read": 1.25
|
|
70
|
-
}
|
|
71
|
-
},
|
|
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,
|
|
78
|
-
"tool_call": false,
|
|
79
|
-
"temperature": false,
|
|
80
|
-
"release_date": "2025-09-26",
|
|
81
|
-
"last_updated": "2025-09-26",
|
|
82
|
-
"modalities": {
|
|
83
|
-
"input": [
|
|
84
|
-
"text",
|
|
85
|
-
"image"
|
|
86
|
-
],
|
|
87
|
-
"output": [
|
|
88
|
-
"text",
|
|
89
|
-
"image"
|
|
90
|
-
]
|
|
91
|
-
},
|
|
92
|
-
"open_weights": false,
|
|
93
|
-
"limit": {
|
|
94
|
-
"context": 0,
|
|
95
|
-
"input": 0,
|
|
96
|
-
"output": 0
|
|
123
|
+
"input": 21,
|
|
124
|
+
"output": 168
|
|
97
125
|
}
|
|
98
126
|
},
|
|
99
|
-
"gpt-5
|
|
100
|
-
"id": "gpt-5
|
|
101
|
-
"name": "GPT-5
|
|
127
|
+
"gpt-5": {
|
|
128
|
+
"id": "gpt-5",
|
|
129
|
+
"name": "GPT-5",
|
|
130
|
+
"description": "Original GPT-5 workhorse for reasoning, coding, writing, and tool workflows",
|
|
102
131
|
"family": "gpt",
|
|
103
132
|
"attachment": true,
|
|
104
133
|
"reasoning": true,
|
|
134
|
+
"reasoning_options": [
|
|
135
|
+
{
|
|
136
|
+
"type": "effort",
|
|
137
|
+
"values": [
|
|
138
|
+
"minimal",
|
|
139
|
+
"low",
|
|
140
|
+
"medium",
|
|
141
|
+
"high"
|
|
142
|
+
]
|
|
143
|
+
}
|
|
144
|
+
],
|
|
105
145
|
"tool_call": true,
|
|
106
146
|
"structured_output": true,
|
|
107
147
|
"temperature": false,
|
|
108
|
-
"knowledge": "
|
|
109
|
-
"release_date": "2025-
|
|
110
|
-
"last_updated": "2025-
|
|
148
|
+
"knowledge": "2024-09-30",
|
|
149
|
+
"release_date": "2025-08-07",
|
|
150
|
+
"last_updated": "2025-08-07",
|
|
111
151
|
"modalities": {
|
|
112
152
|
"input": [
|
|
113
153
|
"text",
|
|
@@ -124,14 +164,15 @@
|
|
|
124
164
|
"output": 128000
|
|
125
165
|
},
|
|
126
166
|
"cost": {
|
|
127
|
-
"input": 1.
|
|
128
|
-
"output":
|
|
129
|
-
"cache_read": 0.
|
|
167
|
+
"input": 1.25,
|
|
168
|
+
"output": 10,
|
|
169
|
+
"cache_read": 0.125
|
|
130
170
|
}
|
|
131
171
|
},
|
|
132
172
|
"gpt-3.5-turbo": {
|
|
133
173
|
"id": "gpt-3.5-turbo",
|
|
134
174
|
"name": "GPT-3.5-turbo",
|
|
175
|
+
"description": "Compact GPT model for low-latency assistance and high-volume workloads",
|
|
135
176
|
"family": "gpt",
|
|
136
177
|
"attachment": false,
|
|
137
178
|
"reasoning": false,
|
|
@@ -157,21 +198,30 @@
|
|
|
157
198
|
"cost": {
|
|
158
199
|
"input": 0.5,
|
|
159
200
|
"output": 1.5,
|
|
160
|
-
"cache_read":
|
|
201
|
+
"cache_read": 0
|
|
161
202
|
}
|
|
162
203
|
},
|
|
163
|
-
"
|
|
164
|
-
"id": "
|
|
165
|
-
"name": "
|
|
166
|
-
"
|
|
204
|
+
"gpt-5-pro": {
|
|
205
|
+
"id": "gpt-5-pro",
|
|
206
|
+
"name": "GPT-5 Pro",
|
|
207
|
+
"description": "Higher-accuracy GPT-5 tier for tough analysis, coding reviews, and planning",
|
|
208
|
+
"family": "gpt-pro",
|
|
167
209
|
"attachment": true,
|
|
168
210
|
"reasoning": true,
|
|
211
|
+
"reasoning_options": [
|
|
212
|
+
{
|
|
213
|
+
"type": "effort",
|
|
214
|
+
"values": [
|
|
215
|
+
"high"
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
],
|
|
169
219
|
"tool_call": true,
|
|
170
220
|
"structured_output": true,
|
|
171
221
|
"temperature": false,
|
|
172
|
-
"knowledge": "2024-
|
|
173
|
-
"release_date": "2025-06
|
|
174
|
-
"last_updated": "2025-06
|
|
222
|
+
"knowledge": "2024-09-30",
|
|
223
|
+
"release_date": "2025-10-06",
|
|
224
|
+
"last_updated": "2025-10-06",
|
|
175
225
|
"modalities": {
|
|
176
226
|
"input": [
|
|
177
227
|
"text",
|
|
@@ -183,28 +233,33 @@
|
|
|
183
233
|
},
|
|
184
234
|
"open_weights": false,
|
|
185
235
|
"limit": {
|
|
186
|
-
"context":
|
|
187
|
-
"
|
|
236
|
+
"context": 400000,
|
|
237
|
+
"input": 272000,
|
|
238
|
+
"output": 272000
|
|
188
239
|
},
|
|
189
240
|
"cost": {
|
|
190
|
-
"input":
|
|
191
|
-
"output":
|
|
241
|
+
"input": 15,
|
|
242
|
+
"output": 120
|
|
192
243
|
}
|
|
193
244
|
},
|
|
194
|
-
"
|
|
195
|
-
"id": "
|
|
196
|
-
"name": "
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
245
|
+
"gpt-4o": {
|
|
246
|
+
"id": "gpt-4o",
|
|
247
|
+
"name": "GPT-4o",
|
|
248
|
+
"description": "Omni-era GPT for multimodal chat, practical coding, and general assistants",
|
|
249
|
+
"family": "gpt",
|
|
250
|
+
"attachment": true,
|
|
251
|
+
"reasoning": false,
|
|
252
|
+
"tool_call": true,
|
|
253
|
+
"structured_output": true,
|
|
201
254
|
"temperature": true,
|
|
202
255
|
"knowledge": "2023-09",
|
|
203
|
-
"release_date": "2024-
|
|
204
|
-
"last_updated": "2024-
|
|
256
|
+
"release_date": "2024-05-13",
|
|
257
|
+
"last_updated": "2024-08-06",
|
|
205
258
|
"modalities": {
|
|
206
259
|
"input": [
|
|
207
|
-
"text"
|
|
260
|
+
"text",
|
|
261
|
+
"image",
|
|
262
|
+
"pdf"
|
|
208
263
|
],
|
|
209
264
|
"output": [
|
|
210
265
|
"text"
|
|
@@ -213,30 +268,30 @@
|
|
|
213
268
|
"open_weights": false,
|
|
214
269
|
"limit": {
|
|
215
270
|
"context": 128000,
|
|
216
|
-
"output":
|
|
271
|
+
"output": 16384
|
|
217
272
|
},
|
|
218
273
|
"cost": {
|
|
219
|
-
"input":
|
|
220
|
-
"output":
|
|
221
|
-
"cache_read":
|
|
274
|
+
"input": 2.5,
|
|
275
|
+
"output": 10,
|
|
276
|
+
"cache_read": 1.25
|
|
222
277
|
}
|
|
223
278
|
},
|
|
224
|
-
"gpt-
|
|
225
|
-
"id": "gpt-
|
|
226
|
-
"name": "GPT-
|
|
227
|
-
"
|
|
279
|
+
"gpt-4": {
|
|
280
|
+
"id": "gpt-4",
|
|
281
|
+
"name": "GPT-4",
|
|
282
|
+
"description": "GPT model for general reasoning, writing, coding, and tool-assisted tasks",
|
|
283
|
+
"family": "gpt",
|
|
228
284
|
"attachment": true,
|
|
229
|
-
"reasoning":
|
|
285
|
+
"reasoning": false,
|
|
230
286
|
"tool_call": true,
|
|
231
|
-
"structured_output":
|
|
232
|
-
"temperature":
|
|
233
|
-
"knowledge": "
|
|
234
|
-
"release_date": "
|
|
235
|
-
"last_updated": "
|
|
287
|
+
"structured_output": false,
|
|
288
|
+
"temperature": true,
|
|
289
|
+
"knowledge": "2023-11",
|
|
290
|
+
"release_date": "2023-11-06",
|
|
291
|
+
"last_updated": "2024-04-09",
|
|
236
292
|
"modalities": {
|
|
237
293
|
"input": [
|
|
238
|
-
"text"
|
|
239
|
-
"image"
|
|
294
|
+
"text"
|
|
240
295
|
],
|
|
241
296
|
"output": [
|
|
242
297
|
"text"
|
|
@@ -244,28 +299,37 @@
|
|
|
244
299
|
},
|
|
245
300
|
"open_weights": false,
|
|
246
301
|
"limit": {
|
|
247
|
-
"context":
|
|
248
|
-
"
|
|
249
|
-
"output": 128000
|
|
302
|
+
"context": 8192,
|
|
303
|
+
"output": 8192
|
|
250
304
|
},
|
|
251
305
|
"cost": {
|
|
252
|
-
"input":
|
|
253
|
-
"output":
|
|
254
|
-
"cache_read": 0.02
|
|
306
|
+
"input": 30,
|
|
307
|
+
"output": 60
|
|
255
308
|
}
|
|
256
309
|
},
|
|
257
|
-
"
|
|
258
|
-
"id": "
|
|
259
|
-
"name": "
|
|
260
|
-
"
|
|
310
|
+
"o4-mini": {
|
|
311
|
+
"id": "o4-mini",
|
|
312
|
+
"name": "o4-mini",
|
|
313
|
+
"description": "Fast o-series model for compact reasoning, coding, and tool use",
|
|
314
|
+
"family": "o-mini",
|
|
261
315
|
"attachment": true,
|
|
262
316
|
"reasoning": true,
|
|
263
|
-
"
|
|
317
|
+
"reasoning_options": [
|
|
318
|
+
{
|
|
319
|
+
"type": "effort",
|
|
320
|
+
"values": [
|
|
321
|
+
"low",
|
|
322
|
+
"medium",
|
|
323
|
+
"high"
|
|
324
|
+
]
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"tool_call": true,
|
|
264
328
|
"structured_output": true,
|
|
265
|
-
"temperature":
|
|
266
|
-
"knowledge": "2024-
|
|
267
|
-
"release_date": "2025-
|
|
268
|
-
"last_updated": "2025-
|
|
329
|
+
"temperature": false,
|
|
330
|
+
"knowledge": "2024-05",
|
|
331
|
+
"release_date": "2025-04-16",
|
|
332
|
+
"last_updated": "2025-04-16",
|
|
269
333
|
"modalities": {
|
|
270
334
|
"input": [
|
|
271
335
|
"text",
|
|
@@ -277,29 +341,42 @@
|
|
|
277
341
|
},
|
|
278
342
|
"open_weights": false,
|
|
279
343
|
"limit": {
|
|
280
|
-
"context":
|
|
281
|
-
"
|
|
282
|
-
"output": 128000
|
|
344
|
+
"context": 200000,
|
|
345
|
+
"output": 100000
|
|
283
346
|
},
|
|
284
347
|
"cost": {
|
|
285
|
-
"input": 1.
|
|
286
|
-
"output":
|
|
348
|
+
"input": 1.1,
|
|
349
|
+
"output": 4.4,
|
|
350
|
+
"cache_read": 0.275
|
|
287
351
|
}
|
|
288
352
|
},
|
|
289
|
-
"
|
|
290
|
-
"id": "
|
|
291
|
-
"name": "
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
353
|
+
"o3-pro": {
|
|
354
|
+
"id": "o3-pro",
|
|
355
|
+
"name": "o3-pro",
|
|
356
|
+
"description": "High-effort o3 tier for difficult technical reasoning and careful answers",
|
|
357
|
+
"family": "o-pro",
|
|
358
|
+
"attachment": true,
|
|
359
|
+
"reasoning": true,
|
|
360
|
+
"reasoning_options": [
|
|
361
|
+
{
|
|
362
|
+
"type": "effort",
|
|
363
|
+
"values": [
|
|
364
|
+
"low",
|
|
365
|
+
"medium",
|
|
366
|
+
"high"
|
|
367
|
+
]
|
|
368
|
+
}
|
|
369
|
+
],
|
|
370
|
+
"tool_call": true,
|
|
371
|
+
"structured_output": true,
|
|
296
372
|
"temperature": false,
|
|
297
|
-
"knowledge": "
|
|
298
|
-
"release_date": "
|
|
299
|
-
"last_updated": "
|
|
373
|
+
"knowledge": "2024-05",
|
|
374
|
+
"release_date": "2025-06-10",
|
|
375
|
+
"last_updated": "2025-06-10",
|
|
300
376
|
"modalities": {
|
|
301
377
|
"input": [
|
|
302
|
-
"text"
|
|
378
|
+
"text",
|
|
379
|
+
"image"
|
|
303
380
|
],
|
|
304
381
|
"output": [
|
|
305
382
|
"text"
|
|
@@ -307,73 +384,55 @@
|
|
|
307
384
|
},
|
|
308
385
|
"open_weights": false,
|
|
309
386
|
"limit": {
|
|
310
|
-
"context":
|
|
311
|
-
"output":
|
|
387
|
+
"context": 200000,
|
|
388
|
+
"output": 100000
|
|
312
389
|
},
|
|
313
390
|
"cost": {
|
|
314
|
-
"input":
|
|
315
|
-
"output":
|
|
391
|
+
"input": 20,
|
|
392
|
+
"output": 80
|
|
316
393
|
}
|
|
317
394
|
},
|
|
318
|
-
"
|
|
319
|
-
"id": "
|
|
320
|
-
"name": "
|
|
321
|
-
"
|
|
395
|
+
"chatgpt-image-latest": {
|
|
396
|
+
"id": "chatgpt-image-latest",
|
|
397
|
+
"name": "chatgpt-image-latest",
|
|
398
|
+
"description": "Image model for prompt-driven generation, editing, and visual design workflows",
|
|
399
|
+
"family": "gpt-image",
|
|
322
400
|
"attachment": true,
|
|
323
|
-
"reasoning":
|
|
324
|
-
"tool_call":
|
|
325
|
-
"structured_output": true,
|
|
401
|
+
"reasoning": false,
|
|
402
|
+
"tool_call": false,
|
|
326
403
|
"temperature": false,
|
|
327
|
-
"
|
|
328
|
-
"
|
|
329
|
-
"last_updated": "2026-04-23",
|
|
404
|
+
"release_date": "2025-12-16",
|
|
405
|
+
"last_updated": "2025-12-16",
|
|
330
406
|
"modalities": {
|
|
331
407
|
"input": [
|
|
332
408
|
"text",
|
|
333
|
-
"image"
|
|
334
|
-
"pdf"
|
|
409
|
+
"image"
|
|
335
410
|
],
|
|
336
411
|
"output": [
|
|
337
|
-
"text"
|
|
412
|
+
"text",
|
|
413
|
+
"image"
|
|
338
414
|
]
|
|
339
415
|
},
|
|
340
416
|
"open_weights": false,
|
|
341
417
|
"limit": {
|
|
342
|
-
"context":
|
|
343
|
-
"input":
|
|
344
|
-
"output":
|
|
345
|
-
},
|
|
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
|
-
}
|
|
418
|
+
"context": 0,
|
|
419
|
+
"input": 0,
|
|
420
|
+
"output": 0
|
|
363
421
|
}
|
|
364
422
|
},
|
|
365
|
-
"gpt-
|
|
366
|
-
"id": "gpt-
|
|
367
|
-
"name": "GPT-
|
|
368
|
-
"
|
|
423
|
+
"gpt-4o-2024-05-13": {
|
|
424
|
+
"id": "gpt-4o-2024-05-13",
|
|
425
|
+
"name": "GPT-4o (2024-05-13)",
|
|
426
|
+
"description": "GPT model for general reasoning, writing, coding, and tool-assisted tasks",
|
|
427
|
+
"family": "gpt",
|
|
369
428
|
"attachment": true,
|
|
370
|
-
"reasoning":
|
|
429
|
+
"reasoning": false,
|
|
371
430
|
"tool_call": true,
|
|
372
431
|
"structured_output": true,
|
|
373
|
-
"temperature":
|
|
374
|
-
"knowledge": "
|
|
375
|
-
"release_date": "
|
|
376
|
-
"last_updated": "
|
|
432
|
+
"temperature": true,
|
|
433
|
+
"knowledge": "2023-09",
|
|
434
|
+
"release_date": "2024-05-13",
|
|
435
|
+
"last_updated": "2024-05-13",
|
|
377
436
|
"modalities": {
|
|
378
437
|
"input": [
|
|
379
438
|
"text",
|
|
@@ -385,28 +444,39 @@
|
|
|
385
444
|
},
|
|
386
445
|
"open_weights": false,
|
|
387
446
|
"limit": {
|
|
388
|
-
"context":
|
|
389
|
-
"
|
|
390
|
-
"output": 128000
|
|
447
|
+
"context": 128000,
|
|
448
|
+
"output": 4096
|
|
391
449
|
},
|
|
392
450
|
"cost": {
|
|
393
|
-
"input":
|
|
394
|
-
"output":
|
|
395
|
-
"cache_read": 0.025
|
|
451
|
+
"input": 5,
|
|
452
|
+
"output": 15
|
|
396
453
|
}
|
|
397
454
|
},
|
|
398
|
-
"gpt-5.
|
|
399
|
-
"id": "gpt-5.
|
|
400
|
-
"name": "GPT-5.
|
|
401
|
-
"
|
|
455
|
+
"gpt-5.4-nano": {
|
|
456
|
+
"id": "gpt-5.4-nano",
|
|
457
|
+
"name": "GPT-5.4 nano",
|
|
458
|
+
"description": "Cheapest GPT-5.4 lane for simple routing, extraction, and bulk automation",
|
|
459
|
+
"family": "gpt-nano",
|
|
402
460
|
"attachment": true,
|
|
403
461
|
"reasoning": true,
|
|
462
|
+
"reasoning_options": [
|
|
463
|
+
{
|
|
464
|
+
"type": "effort",
|
|
465
|
+
"values": [
|
|
466
|
+
"none",
|
|
467
|
+
"low",
|
|
468
|
+
"medium",
|
|
469
|
+
"high",
|
|
470
|
+
"xhigh"
|
|
471
|
+
]
|
|
472
|
+
}
|
|
473
|
+
],
|
|
404
474
|
"tool_call": true,
|
|
405
|
-
"structured_output":
|
|
475
|
+
"structured_output": true,
|
|
406
476
|
"temperature": false,
|
|
407
477
|
"knowledge": "2025-08-31",
|
|
408
|
-
"release_date": "
|
|
409
|
-
"last_updated": "
|
|
478
|
+
"release_date": "2026-03-17",
|
|
479
|
+
"last_updated": "2026-03-17",
|
|
410
480
|
"modalities": {
|
|
411
481
|
"input": [
|
|
412
482
|
"text",
|
|
@@ -423,22 +493,25 @@
|
|
|
423
493
|
"output": 128000
|
|
424
494
|
},
|
|
425
495
|
"cost": {
|
|
426
|
-
"input":
|
|
427
|
-
"output":
|
|
496
|
+
"input": 0.2,
|
|
497
|
+
"output": 1.25,
|
|
498
|
+
"cache_read": 0.02
|
|
428
499
|
}
|
|
429
500
|
},
|
|
430
|
-
"gpt-
|
|
431
|
-
"id": "gpt-
|
|
432
|
-
"name": "GPT-
|
|
433
|
-
"
|
|
501
|
+
"gpt-5-chat-latest": {
|
|
502
|
+
"id": "gpt-5-chat-latest",
|
|
503
|
+
"name": "GPT-5 Chat (latest)",
|
|
504
|
+
"description": "Chat-tuned GPT model for conversational assistance, writing, and tool workflows",
|
|
505
|
+
"family": "gpt-codex",
|
|
434
506
|
"attachment": true,
|
|
435
|
-
"reasoning":
|
|
436
|
-
"
|
|
507
|
+
"reasoning": true,
|
|
508
|
+
"reasoning_options": [],
|
|
509
|
+
"tool_call": false,
|
|
437
510
|
"structured_output": true,
|
|
438
511
|
"temperature": true,
|
|
439
|
-
"knowledge": "
|
|
440
|
-
"release_date": "
|
|
441
|
-
"last_updated": "
|
|
512
|
+
"knowledge": "2024-09-30",
|
|
513
|
+
"release_date": "2025-08-07",
|
|
514
|
+
"last_updated": "2025-08-07",
|
|
442
515
|
"modalities": {
|
|
443
516
|
"input": [
|
|
444
517
|
"text",
|
|
@@ -450,47 +523,79 @@
|
|
|
450
523
|
},
|
|
451
524
|
"open_weights": false,
|
|
452
525
|
"limit": {
|
|
453
|
-
"context":
|
|
454
|
-
"
|
|
526
|
+
"context": 400000,
|
|
527
|
+
"input": 272000,
|
|
528
|
+
"output": 128000
|
|
455
529
|
},
|
|
456
530
|
"cost": {
|
|
457
|
-
"input":
|
|
458
|
-
"output":
|
|
531
|
+
"input": 1.25,
|
|
532
|
+
"output": 10,
|
|
533
|
+
"cache_read": 0.125
|
|
459
534
|
}
|
|
460
535
|
},
|
|
461
|
-
"
|
|
462
|
-
"id": "
|
|
463
|
-
"name": "
|
|
464
|
-
"
|
|
536
|
+
"gpt-5.1-codex": {
|
|
537
|
+
"id": "gpt-5.1-codex",
|
|
538
|
+
"name": "GPT-5.1 Codex",
|
|
539
|
+
"description": "Codex GPT for repository edits, code review, and practical software agents",
|
|
540
|
+
"family": "gpt-codex",
|
|
465
541
|
"attachment": true,
|
|
466
|
-
"reasoning":
|
|
467
|
-
"
|
|
542
|
+
"reasoning": true,
|
|
543
|
+
"reasoning_options": [
|
|
544
|
+
{
|
|
545
|
+
"type": "effort",
|
|
546
|
+
"values": [
|
|
547
|
+
"low",
|
|
548
|
+
"medium",
|
|
549
|
+
"high"
|
|
550
|
+
]
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"tool_call": true,
|
|
554
|
+
"structured_output": true,
|
|
468
555
|
"temperature": false,
|
|
469
|
-
"
|
|
470
|
-
"
|
|
556
|
+
"knowledge": "2024-09-30",
|
|
557
|
+
"release_date": "2025-11-13",
|
|
558
|
+
"last_updated": "2025-11-13",
|
|
471
559
|
"modalities": {
|
|
472
560
|
"input": [
|
|
473
561
|
"text",
|
|
474
562
|
"image"
|
|
475
563
|
],
|
|
476
564
|
"output": [
|
|
477
|
-
"text"
|
|
478
|
-
"image"
|
|
565
|
+
"text"
|
|
479
566
|
]
|
|
480
567
|
},
|
|
481
568
|
"open_weights": false,
|
|
482
569
|
"limit": {
|
|
483
|
-
"context":
|
|
484
|
-
"input":
|
|
485
|
-
"output":
|
|
570
|
+
"context": 400000,
|
|
571
|
+
"input": 272000,
|
|
572
|
+
"output": 128000
|
|
573
|
+
},
|
|
574
|
+
"cost": {
|
|
575
|
+
"input": 1.25,
|
|
576
|
+
"output": 10,
|
|
577
|
+
"cache_read": 0.125
|
|
486
578
|
}
|
|
487
579
|
},
|
|
488
580
|
"gpt-5.3-codex-spark": {
|
|
489
581
|
"id": "gpt-5.3-codex-spark",
|
|
490
582
|
"name": "GPT-5.3 Codex Spark",
|
|
583
|
+
"description": "Coding-optimized GPT model for repository edits, reviews, and agentic software work",
|
|
491
584
|
"family": "gpt-codex-spark",
|
|
492
585
|
"attachment": true,
|
|
493
586
|
"reasoning": true,
|
|
587
|
+
"reasoning_options": [
|
|
588
|
+
{
|
|
589
|
+
"type": "effort",
|
|
590
|
+
"values": [
|
|
591
|
+
"none",
|
|
592
|
+
"low",
|
|
593
|
+
"medium",
|
|
594
|
+
"high",
|
|
595
|
+
"xhigh"
|
|
596
|
+
]
|
|
597
|
+
}
|
|
598
|
+
],
|
|
494
599
|
"tool_call": true,
|
|
495
600
|
"structured_output": true,
|
|
496
601
|
"temperature": false,
|
|
@@ -519,18 +624,30 @@
|
|
|
519
624
|
"cache_read": 0.175
|
|
520
625
|
}
|
|
521
626
|
},
|
|
522
|
-
"gpt-5-codex": {
|
|
523
|
-
"id": "gpt-5-codex",
|
|
524
|
-
"name": "GPT-5
|
|
627
|
+
"gpt-5.1-codex-max": {
|
|
628
|
+
"id": "gpt-5.1-codex-max",
|
|
629
|
+
"name": "GPT-5.1 Codex Max",
|
|
630
|
+
"description": "Coding-optimized GPT model for repository edits, reviews, and agentic software work",
|
|
525
631
|
"family": "gpt-codex",
|
|
526
|
-
"attachment":
|
|
632
|
+
"attachment": true,
|
|
527
633
|
"reasoning": true,
|
|
634
|
+
"reasoning_options": [
|
|
635
|
+
{
|
|
636
|
+
"type": "effort",
|
|
637
|
+
"values": [
|
|
638
|
+
"low",
|
|
639
|
+
"medium",
|
|
640
|
+
"high",
|
|
641
|
+
"xhigh"
|
|
642
|
+
]
|
|
643
|
+
}
|
|
644
|
+
],
|
|
528
645
|
"tool_call": true,
|
|
529
646
|
"structured_output": true,
|
|
530
647
|
"temperature": false,
|
|
531
648
|
"knowledge": "2024-09-30",
|
|
532
|
-
"release_date": "2025-
|
|
533
|
-
"last_updated": "2025-
|
|
649
|
+
"release_date": "2025-11-13",
|
|
650
|
+
"last_updated": "2025-11-13",
|
|
534
651
|
"modalities": {
|
|
535
652
|
"input": [
|
|
536
653
|
"text",
|
|
@@ -552,18 +669,19 @@
|
|
|
552
669
|
"cache_read": 0.125
|
|
553
670
|
}
|
|
554
671
|
},
|
|
555
|
-
"gpt-5.
|
|
556
|
-
"id": "gpt-5.
|
|
557
|
-
"name": "GPT-5.
|
|
558
|
-
"
|
|
672
|
+
"gpt-5.3-chat-latest": {
|
|
673
|
+
"id": "gpt-5.3-chat-latest",
|
|
674
|
+
"name": "GPT-5.3 Chat (latest)",
|
|
675
|
+
"description": "Chat-tuned GPT model for conversational assistance, writing, and tool workflows",
|
|
676
|
+
"family": "gpt",
|
|
559
677
|
"attachment": true,
|
|
560
|
-
"reasoning":
|
|
678
|
+
"reasoning": false,
|
|
561
679
|
"tool_call": true,
|
|
562
680
|
"structured_output": true,
|
|
563
|
-
"temperature":
|
|
564
|
-
"knowledge": "
|
|
565
|
-
"release_date": "
|
|
566
|
-
"last_updated": "
|
|
681
|
+
"temperature": true,
|
|
682
|
+
"knowledge": "2025-08-31",
|
|
683
|
+
"release_date": "2026-03-03",
|
|
684
|
+
"last_updated": "2026-03-03",
|
|
567
685
|
"modalities": {
|
|
568
686
|
"input": [
|
|
569
687
|
"text",
|
|
@@ -579,55 +697,28 @@
|
|
|
579
697
|
"output": 16384
|
|
580
698
|
},
|
|
581
699
|
"cost": {
|
|
582
|
-
"input": 1.
|
|
583
|
-
"output":
|
|
584
|
-
"cache_read": 0.
|
|
585
|
-
}
|
|
586
|
-
},
|
|
587
|
-
"gpt-image-1.5": {
|
|
588
|
-
"id": "gpt-image-1.5",
|
|
589
|
-
"name": "gpt-image-1.5",
|
|
590
|
-
"family": "gpt-image",
|
|
591
|
-
"attachment": true,
|
|
592
|
-
"reasoning": false,
|
|
593
|
-
"tool_call": false,
|
|
594
|
-
"temperature": false,
|
|
595
|
-
"release_date": "2025-11-25",
|
|
596
|
-
"last_updated": "2025-11-25",
|
|
597
|
-
"modalities": {
|
|
598
|
-
"input": [
|
|
599
|
-
"text",
|
|
600
|
-
"image"
|
|
601
|
-
],
|
|
602
|
-
"output": [
|
|
603
|
-
"text",
|
|
604
|
-
"image"
|
|
605
|
-
]
|
|
606
|
-
},
|
|
607
|
-
"open_weights": false,
|
|
608
|
-
"limit": {
|
|
609
|
-
"context": 0,
|
|
610
|
-
"input": 0,
|
|
611
|
-
"output": 0
|
|
700
|
+
"input": 1.75,
|
|
701
|
+
"output": 14,
|
|
702
|
+
"cache_read": 0.175
|
|
612
703
|
}
|
|
613
704
|
},
|
|
614
|
-
"gpt-
|
|
615
|
-
"id": "gpt-
|
|
616
|
-
"name": "GPT-
|
|
705
|
+
"gpt-4o-2024-08-06": {
|
|
706
|
+
"id": "gpt-4o-2024-08-06",
|
|
707
|
+
"name": "GPT-4o (2024-08-06)",
|
|
708
|
+
"description": "GPT model for general reasoning, writing, coding, and tool-assisted tasks",
|
|
617
709
|
"family": "gpt",
|
|
618
710
|
"attachment": true,
|
|
619
711
|
"reasoning": false,
|
|
620
712
|
"tool_call": true,
|
|
621
713
|
"structured_output": true,
|
|
622
714
|
"temperature": true,
|
|
623
|
-
"knowledge": "
|
|
624
|
-
"release_date": "
|
|
625
|
-
"last_updated": "
|
|
715
|
+
"knowledge": "2023-09",
|
|
716
|
+
"release_date": "2024-08-06",
|
|
717
|
+
"last_updated": "2024-08-06",
|
|
626
718
|
"modalities": {
|
|
627
719
|
"input": [
|
|
628
720
|
"text",
|
|
629
|
-
"image"
|
|
630
|
-
"pdf"
|
|
721
|
+
"image"
|
|
631
722
|
],
|
|
632
723
|
"output": [
|
|
633
724
|
"text"
|
|
@@ -635,26 +726,27 @@
|
|
|
635
726
|
},
|
|
636
727
|
"open_weights": false,
|
|
637
728
|
"limit": {
|
|
638
|
-
"context":
|
|
639
|
-
"output":
|
|
729
|
+
"context": 128000,
|
|
730
|
+
"output": 16384
|
|
640
731
|
},
|
|
641
732
|
"cost": {
|
|
642
|
-
"input": 2,
|
|
643
|
-
"output":
|
|
644
|
-
"cache_read":
|
|
733
|
+
"input": 2.5,
|
|
734
|
+
"output": 10,
|
|
735
|
+
"cache_read": 1.25
|
|
645
736
|
}
|
|
646
737
|
},
|
|
647
|
-
"text-embedding-
|
|
648
|
-
"id": "text-embedding-
|
|
649
|
-
"name": "text-embedding-
|
|
738
|
+
"text-embedding-ada-002": {
|
|
739
|
+
"id": "text-embedding-ada-002",
|
|
740
|
+
"name": "text-embedding-ada-002",
|
|
741
|
+
"description": "Embedding model for semantic search, retrieval, clustering, and ranking pipelines",
|
|
650
742
|
"family": "text-embedding",
|
|
651
743
|
"attachment": false,
|
|
652
744
|
"reasoning": false,
|
|
653
745
|
"tool_call": false,
|
|
654
746
|
"temperature": false,
|
|
655
|
-
"knowledge": "
|
|
656
|
-
"release_date": "
|
|
657
|
-
"last_updated": "
|
|
747
|
+
"knowledge": "2022-12",
|
|
748
|
+
"release_date": "2022-12-15",
|
|
749
|
+
"last_updated": "2022-12-15",
|
|
658
750
|
"modalities": {
|
|
659
751
|
"input": [
|
|
660
752
|
"text"
|
|
@@ -665,30 +757,40 @@
|
|
|
665
757
|
},
|
|
666
758
|
"open_weights": false,
|
|
667
759
|
"limit": {
|
|
668
|
-
"context":
|
|
760
|
+
"context": 8192,
|
|
669
761
|
"output": 1536
|
|
670
762
|
},
|
|
671
763
|
"cost": {
|
|
672
|
-
"input": 0.
|
|
764
|
+
"input": 0.1,
|
|
673
765
|
"output": 0
|
|
674
766
|
}
|
|
675
767
|
},
|
|
676
|
-
"
|
|
677
|
-
"id": "
|
|
678
|
-
"name": "
|
|
679
|
-
"
|
|
680
|
-
"
|
|
768
|
+
"o3-mini": {
|
|
769
|
+
"id": "o3-mini",
|
|
770
|
+
"name": "o3-mini",
|
|
771
|
+
"description": "Smaller o-series reasoner for economical coding, math, and planning tasks",
|
|
772
|
+
"family": "o-mini",
|
|
773
|
+
"attachment": false,
|
|
681
774
|
"reasoning": true,
|
|
775
|
+
"reasoning_options": [
|
|
776
|
+
{
|
|
777
|
+
"type": "effort",
|
|
778
|
+
"values": [
|
|
779
|
+
"low",
|
|
780
|
+
"medium",
|
|
781
|
+
"high"
|
|
782
|
+
]
|
|
783
|
+
}
|
|
784
|
+
],
|
|
682
785
|
"tool_call": true,
|
|
683
786
|
"structured_output": true,
|
|
684
787
|
"temperature": false,
|
|
685
|
-
"knowledge": "2024-
|
|
686
|
-
"release_date": "
|
|
687
|
-
"last_updated": "2025-
|
|
788
|
+
"knowledge": "2024-05",
|
|
789
|
+
"release_date": "2024-12-20",
|
|
790
|
+
"last_updated": "2025-01-29",
|
|
688
791
|
"modalities": {
|
|
689
792
|
"input": [
|
|
690
|
-
"text"
|
|
691
|
-
"image"
|
|
793
|
+
"text"
|
|
692
794
|
],
|
|
693
795
|
"output": [
|
|
694
796
|
"text"
|
|
@@ -696,32 +798,44 @@
|
|
|
696
798
|
},
|
|
697
799
|
"open_weights": false,
|
|
698
800
|
"limit": {
|
|
699
|
-
"context":
|
|
700
|
-
"
|
|
701
|
-
"output": 272000
|
|
801
|
+
"context": 200000,
|
|
802
|
+
"output": 100000
|
|
702
803
|
},
|
|
703
804
|
"cost": {
|
|
704
|
-
"input":
|
|
705
|
-
"output":
|
|
805
|
+
"input": 1.1,
|
|
806
|
+
"output": 4.4,
|
|
807
|
+
"cache_read": 0.55
|
|
706
808
|
}
|
|
707
809
|
},
|
|
708
|
-
"gpt-
|
|
709
|
-
"id": "gpt-
|
|
710
|
-
"name": "GPT-
|
|
711
|
-
"
|
|
810
|
+
"gpt-5.2": {
|
|
811
|
+
"id": "gpt-5.2",
|
|
812
|
+
"name": "GPT-5.2",
|
|
813
|
+
"description": "Reliable GPT generation for broad coding, writing, and tool-assisted product work",
|
|
814
|
+
"family": "gpt",
|
|
712
815
|
"attachment": true,
|
|
713
|
-
"reasoning":
|
|
816
|
+
"reasoning": true,
|
|
817
|
+
"reasoning_options": [
|
|
818
|
+
{
|
|
819
|
+
"type": "effort",
|
|
820
|
+
"values": [
|
|
821
|
+
"none",
|
|
822
|
+
"low",
|
|
823
|
+
"medium",
|
|
824
|
+
"high",
|
|
825
|
+
"xhigh"
|
|
826
|
+
]
|
|
827
|
+
}
|
|
828
|
+
],
|
|
714
829
|
"tool_call": true,
|
|
715
830
|
"structured_output": true,
|
|
716
|
-
"temperature":
|
|
717
|
-
"knowledge": "
|
|
718
|
-
"release_date": "2025-
|
|
719
|
-
"last_updated": "2025-
|
|
831
|
+
"temperature": false,
|
|
832
|
+
"knowledge": "2025-08-31",
|
|
833
|
+
"release_date": "2025-12-11",
|
|
834
|
+
"last_updated": "2025-12-11",
|
|
720
835
|
"modalities": {
|
|
721
836
|
"input": [
|
|
722
837
|
"text",
|
|
723
|
-
"image"
|
|
724
|
-
"pdf"
|
|
838
|
+
"image"
|
|
725
839
|
],
|
|
726
840
|
"output": [
|
|
727
841
|
"text"
|
|
@@ -729,31 +843,46 @@
|
|
|
729
843
|
},
|
|
730
844
|
"open_weights": false,
|
|
731
845
|
"limit": {
|
|
732
|
-
"context":
|
|
733
|
-
"
|
|
846
|
+
"context": 400000,
|
|
847
|
+
"input": 272000,
|
|
848
|
+
"output": 128000
|
|
734
849
|
},
|
|
735
850
|
"cost": {
|
|
736
|
-
"input":
|
|
737
|
-
"output":
|
|
738
|
-
"cache_read": 0.
|
|
851
|
+
"input": 1.75,
|
|
852
|
+
"output": 14,
|
|
853
|
+
"cache_read": 0.175
|
|
739
854
|
}
|
|
740
855
|
},
|
|
741
|
-
"gpt-5.
|
|
742
|
-
"id": "gpt-5.
|
|
743
|
-
"name": "GPT-5.
|
|
744
|
-
"
|
|
856
|
+
"gpt-5.3-codex": {
|
|
857
|
+
"id": "gpt-5.3-codex",
|
|
858
|
+
"name": "GPT-5.3 Codex",
|
|
859
|
+
"description": "Coding-optimized GPT model for repository edits, reviews, and agentic software work",
|
|
860
|
+
"family": "gpt-codex",
|
|
745
861
|
"attachment": true,
|
|
746
862
|
"reasoning": true,
|
|
863
|
+
"reasoning_options": [
|
|
864
|
+
{
|
|
865
|
+
"type": "effort",
|
|
866
|
+
"values": [
|
|
867
|
+
"none",
|
|
868
|
+
"low",
|
|
869
|
+
"medium",
|
|
870
|
+
"high",
|
|
871
|
+
"xhigh"
|
|
872
|
+
]
|
|
873
|
+
}
|
|
874
|
+
],
|
|
747
875
|
"tool_call": true,
|
|
748
876
|
"structured_output": true,
|
|
749
877
|
"temperature": false,
|
|
750
|
-
"knowledge": "
|
|
751
|
-
"release_date": "
|
|
752
|
-
"last_updated": "
|
|
878
|
+
"knowledge": "2025-08-31",
|
|
879
|
+
"release_date": "2026-02-05",
|
|
880
|
+
"last_updated": "2026-02-05",
|
|
753
881
|
"modalities": {
|
|
754
882
|
"input": [
|
|
755
883
|
"text",
|
|
756
|
-
"image"
|
|
884
|
+
"image",
|
|
885
|
+
"pdf"
|
|
757
886
|
],
|
|
758
887
|
"output": [
|
|
759
888
|
"text"
|
|
@@ -766,23 +895,64 @@
|
|
|
766
895
|
"output": 128000
|
|
767
896
|
},
|
|
768
897
|
"cost": {
|
|
769
|
-
"input": 1.
|
|
770
|
-
"output":
|
|
771
|
-
"cache_read": 0.
|
|
898
|
+
"input": 1.75,
|
|
899
|
+
"output": 14,
|
|
900
|
+
"cache_read": 0.175
|
|
772
901
|
}
|
|
773
902
|
},
|
|
774
|
-
"
|
|
775
|
-
"id": "
|
|
776
|
-
"name": "
|
|
777
|
-
"
|
|
903
|
+
"text-embedding-3-small": {
|
|
904
|
+
"id": "text-embedding-3-small",
|
|
905
|
+
"name": "text-embedding-3-small",
|
|
906
|
+
"description": "Embedding model for semantic search, retrieval, clustering, and ranking pipelines",
|
|
907
|
+
"family": "text-embedding",
|
|
908
|
+
"attachment": false,
|
|
909
|
+
"reasoning": false,
|
|
910
|
+
"tool_call": false,
|
|
911
|
+
"temperature": false,
|
|
912
|
+
"knowledge": "2024-01",
|
|
913
|
+
"release_date": "2024-01-25",
|
|
914
|
+
"last_updated": "2024-01-25",
|
|
915
|
+
"modalities": {
|
|
916
|
+
"input": [
|
|
917
|
+
"text"
|
|
918
|
+
],
|
|
919
|
+
"output": [
|
|
920
|
+
"text"
|
|
921
|
+
]
|
|
922
|
+
},
|
|
923
|
+
"open_weights": false,
|
|
924
|
+
"limit": {
|
|
925
|
+
"context": 8191,
|
|
926
|
+
"output": 1536
|
|
927
|
+
},
|
|
928
|
+
"cost": {
|
|
929
|
+
"input": 0.02,
|
|
930
|
+
"output": 0
|
|
931
|
+
}
|
|
932
|
+
},
|
|
933
|
+
"gpt-5.1-codex-mini": {
|
|
934
|
+
"id": "gpt-5.1-codex-mini",
|
|
935
|
+
"name": "GPT-5.1 Codex mini",
|
|
936
|
+
"description": "Coding-optimized GPT model for repository edits, reviews, and agentic software work",
|
|
937
|
+
"family": "gpt-codex",
|
|
778
938
|
"attachment": true,
|
|
779
939
|
"reasoning": true,
|
|
940
|
+
"reasoning_options": [
|
|
941
|
+
{
|
|
942
|
+
"type": "effort",
|
|
943
|
+
"values": [
|
|
944
|
+
"low",
|
|
945
|
+
"medium",
|
|
946
|
+
"high"
|
|
947
|
+
]
|
|
948
|
+
}
|
|
949
|
+
],
|
|
780
950
|
"tool_call": true,
|
|
781
951
|
"structured_output": true,
|
|
782
952
|
"temperature": false,
|
|
783
|
-
"knowledge": "2024-
|
|
784
|
-
"release_date": "2025-
|
|
785
|
-
"last_updated": "2025-
|
|
953
|
+
"knowledge": "2024-09-30",
|
|
954
|
+
"release_date": "2025-11-13",
|
|
955
|
+
"last_updated": "2025-11-13",
|
|
786
956
|
"modalities": {
|
|
787
957
|
"input": [
|
|
788
958
|
"text",
|
|
@@ -799,28 +969,36 @@
|
|
|
799
969
|
"output": 128000
|
|
800
970
|
},
|
|
801
971
|
"cost": {
|
|
802
|
-
"input": 0.
|
|
803
|
-
"output":
|
|
804
|
-
"cache_read": 0.
|
|
972
|
+
"input": 0.25,
|
|
973
|
+
"output": 2,
|
|
974
|
+
"cache_read": 0.025
|
|
805
975
|
}
|
|
806
976
|
},
|
|
807
|
-
"gpt-5.
|
|
808
|
-
"id": "gpt-5.
|
|
809
|
-
"name": "GPT-5.
|
|
810
|
-
"
|
|
977
|
+
"gpt-5.1-chat-latest": {
|
|
978
|
+
"id": "gpt-5.1-chat-latest",
|
|
979
|
+
"name": "GPT-5.1 Chat",
|
|
980
|
+
"description": "Chat-tuned GPT-5.1 for polished assistants, writing, and product conversations",
|
|
981
|
+
"family": "gpt-codex",
|
|
811
982
|
"attachment": true,
|
|
812
983
|
"reasoning": true,
|
|
984
|
+
"reasoning_options": [
|
|
985
|
+
{
|
|
986
|
+
"type": "effort",
|
|
987
|
+
"values": [
|
|
988
|
+
"medium"
|
|
989
|
+
]
|
|
990
|
+
}
|
|
991
|
+
],
|
|
813
992
|
"tool_call": true,
|
|
814
993
|
"structured_output": true,
|
|
815
994
|
"temperature": false,
|
|
816
|
-
"knowledge": "
|
|
817
|
-
"release_date": "
|
|
818
|
-
"last_updated": "
|
|
995
|
+
"knowledge": "2024-09-30",
|
|
996
|
+
"release_date": "2025-11-13",
|
|
997
|
+
"last_updated": "2025-11-13",
|
|
819
998
|
"modalities": {
|
|
820
999
|
"input": [
|
|
821
1000
|
"text",
|
|
822
|
-
"image"
|
|
823
|
-
"pdf"
|
|
1001
|
+
"image"
|
|
824
1002
|
],
|
|
825
1003
|
"output": [
|
|
826
1004
|
"text"
|
|
@@ -828,65 +1006,40 @@
|
|
|
828
1006
|
},
|
|
829
1007
|
"open_weights": false,
|
|
830
1008
|
"limit": {
|
|
831
|
-
"context":
|
|
832
|
-
"
|
|
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
|
-
}
|
|
1009
|
+
"context": 128000,
|
|
1010
|
+
"output": 16384
|
|
850
1011
|
},
|
|
851
1012
|
"cost": {
|
|
852
|
-
"input":
|
|
853
|
-
"output":
|
|
854
|
-
"cache_read": 0.
|
|
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
|
-
}
|
|
1013
|
+
"input": 1.25,
|
|
1014
|
+
"output": 10,
|
|
1015
|
+
"cache_read": 0.125
|
|
871
1016
|
}
|
|
872
1017
|
},
|
|
873
|
-
"gpt-
|
|
874
|
-
"id": "gpt-
|
|
875
|
-
"name": "GPT-
|
|
876
|
-
"
|
|
1018
|
+
"gpt-5.2-chat-latest": {
|
|
1019
|
+
"id": "gpt-5.2-chat-latest",
|
|
1020
|
+
"name": "GPT-5.2 Chat",
|
|
1021
|
+
"description": "Chat-tuned GPT model for conversational assistance, writing, and tool workflows",
|
|
1022
|
+
"family": "gpt-codex",
|
|
877
1023
|
"attachment": true,
|
|
878
|
-
"reasoning":
|
|
1024
|
+
"reasoning": true,
|
|
1025
|
+
"reasoning_options": [
|
|
1026
|
+
{
|
|
1027
|
+
"type": "effort",
|
|
1028
|
+
"values": [
|
|
1029
|
+
"medium"
|
|
1030
|
+
]
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
879
1033
|
"tool_call": true,
|
|
880
1034
|
"structured_output": true,
|
|
881
|
-
"temperature":
|
|
882
|
-
"knowledge": "
|
|
883
|
-
"release_date": "
|
|
884
|
-
"last_updated": "
|
|
1035
|
+
"temperature": false,
|
|
1036
|
+
"knowledge": "2025-08-31",
|
|
1037
|
+
"release_date": "2025-12-11",
|
|
1038
|
+
"last_updated": "2025-12-11",
|
|
885
1039
|
"modalities": {
|
|
886
1040
|
"input": [
|
|
887
1041
|
"text",
|
|
888
|
-
"image"
|
|
889
|
-
"pdf"
|
|
1042
|
+
"image"
|
|
890
1043
|
],
|
|
891
1044
|
"output": [
|
|
892
1045
|
"text"
|
|
@@ -898,23 +1051,31 @@
|
|
|
898
1051
|
"output": 16384
|
|
899
1052
|
},
|
|
900
1053
|
"cost": {
|
|
901
|
-
"input":
|
|
902
|
-
"output":
|
|
903
|
-
"cache_read": 0.
|
|
1054
|
+
"input": 1.75,
|
|
1055
|
+
"output": 14,
|
|
1056
|
+
"cache_read": 0.175
|
|
904
1057
|
}
|
|
905
1058
|
},
|
|
906
|
-
"
|
|
907
|
-
"id": "
|
|
908
|
-
"name": "
|
|
909
|
-
"
|
|
1059
|
+
"o4-mini-deep-research": {
|
|
1060
|
+
"id": "o4-mini-deep-research",
|
|
1061
|
+
"name": "o4-mini-deep-research",
|
|
1062
|
+
"description": "Research model for long-horizon investigation, synthesis, and analytical reports",
|
|
1063
|
+
"family": "o-mini",
|
|
910
1064
|
"attachment": true,
|
|
911
1065
|
"reasoning": true,
|
|
1066
|
+
"reasoning_options": [
|
|
1067
|
+
{
|
|
1068
|
+
"type": "effort",
|
|
1069
|
+
"values": [
|
|
1070
|
+
"medium"
|
|
1071
|
+
]
|
|
1072
|
+
}
|
|
1073
|
+
],
|
|
912
1074
|
"tool_call": true,
|
|
913
|
-
"structured_output": true,
|
|
914
1075
|
"temperature": false,
|
|
915
|
-
"knowledge": "
|
|
916
|
-
"release_date": "
|
|
917
|
-
"last_updated": "
|
|
1076
|
+
"knowledge": "2024-05",
|
|
1077
|
+
"release_date": "2024-06-26",
|
|
1078
|
+
"last_updated": "2024-06-26",
|
|
918
1079
|
"modalities": {
|
|
919
1080
|
"input": [
|
|
920
1081
|
"text",
|
|
@@ -930,22 +1091,52 @@
|
|
|
930
1091
|
"output": 100000
|
|
931
1092
|
},
|
|
932
1093
|
"cost": {
|
|
933
|
-
"input":
|
|
934
|
-
"output":
|
|
1094
|
+
"input": 2,
|
|
1095
|
+
"output": 8,
|
|
1096
|
+
"cache_read": 0.5
|
|
935
1097
|
}
|
|
936
1098
|
},
|
|
937
|
-
"gpt-
|
|
938
|
-
"id": "gpt-
|
|
939
|
-
"name": "
|
|
940
|
-
"
|
|
1099
|
+
"gpt-image-1.5": {
|
|
1100
|
+
"id": "gpt-image-1.5",
|
|
1101
|
+
"name": "gpt-image-1.5",
|
|
1102
|
+
"description": "Image model for prompt-driven generation, editing, and visual design workflows",
|
|
1103
|
+
"family": "gpt-image",
|
|
1104
|
+
"attachment": true,
|
|
1105
|
+
"reasoning": false,
|
|
1106
|
+
"tool_call": false,
|
|
1107
|
+
"temperature": false,
|
|
1108
|
+
"release_date": "2025-11-25",
|
|
1109
|
+
"last_updated": "2025-11-25",
|
|
1110
|
+
"modalities": {
|
|
1111
|
+
"input": [
|
|
1112
|
+
"text",
|
|
1113
|
+
"image"
|
|
1114
|
+
],
|
|
1115
|
+
"output": [
|
|
1116
|
+
"text",
|
|
1117
|
+
"image"
|
|
1118
|
+
]
|
|
1119
|
+
},
|
|
1120
|
+
"open_weights": false,
|
|
1121
|
+
"limit": {
|
|
1122
|
+
"context": 0,
|
|
1123
|
+
"input": 0,
|
|
1124
|
+
"output": 0
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
"gpt-4.1-nano": {
|
|
1128
|
+
"id": "gpt-4.1-nano",
|
|
1129
|
+
"name": "GPT-4.1 nano",
|
|
1130
|
+
"description": "Tiny GPT-4.1 option for classification, routing, and very high-volume tasks",
|
|
1131
|
+
"family": "gpt-nano",
|
|
941
1132
|
"attachment": true,
|
|
942
1133
|
"reasoning": false,
|
|
943
1134
|
"tool_call": true,
|
|
944
|
-
"structured_output":
|
|
1135
|
+
"structured_output": true,
|
|
945
1136
|
"temperature": true,
|
|
946
|
-
"knowledge": "
|
|
947
|
-
"release_date": "
|
|
948
|
-
"last_updated": "
|
|
1137
|
+
"knowledge": "2024-04",
|
|
1138
|
+
"release_date": "2025-04-14",
|
|
1139
|
+
"last_updated": "2025-04-14",
|
|
949
1140
|
"modalities": {
|
|
950
1141
|
"input": [
|
|
951
1142
|
"text",
|
|
@@ -957,26 +1148,28 @@
|
|
|
957
1148
|
},
|
|
958
1149
|
"open_weights": false,
|
|
959
1150
|
"limit": {
|
|
960
|
-
"context":
|
|
961
|
-
"output":
|
|
1151
|
+
"context": 1047576,
|
|
1152
|
+
"output": 32768
|
|
962
1153
|
},
|
|
963
1154
|
"cost": {
|
|
964
|
-
"input":
|
|
965
|
-
"output":
|
|
1155
|
+
"input": 0.1,
|
|
1156
|
+
"output": 0.4,
|
|
1157
|
+
"cache_read": 0.025
|
|
966
1158
|
}
|
|
967
1159
|
},
|
|
968
|
-
"gpt-
|
|
969
|
-
"id": "gpt-
|
|
970
|
-
"name": "GPT-
|
|
971
|
-
"
|
|
1160
|
+
"gpt-4o-2024-11-20": {
|
|
1161
|
+
"id": "gpt-4o-2024-11-20",
|
|
1162
|
+
"name": "GPT-4o (2024-11-20)",
|
|
1163
|
+
"description": "GPT model for general reasoning, writing, coding, and tool-assisted tasks",
|
|
1164
|
+
"family": "gpt",
|
|
972
1165
|
"attachment": true,
|
|
973
|
-
"reasoning":
|
|
1166
|
+
"reasoning": false,
|
|
974
1167
|
"tool_call": true,
|
|
975
1168
|
"structured_output": true,
|
|
976
|
-
"temperature":
|
|
977
|
-
"knowledge": "
|
|
978
|
-
"release_date": "
|
|
979
|
-
"last_updated": "
|
|
1169
|
+
"temperature": true,
|
|
1170
|
+
"knowledge": "2023-09",
|
|
1171
|
+
"release_date": "2024-11-20",
|
|
1172
|
+
"last_updated": "2024-11-20",
|
|
980
1173
|
"modalities": {
|
|
981
1174
|
"input": [
|
|
982
1175
|
"text",
|
|
@@ -988,38 +1181,32 @@
|
|
|
988
1181
|
},
|
|
989
1182
|
"open_weights": false,
|
|
990
1183
|
"limit": {
|
|
991
|
-
"context":
|
|
992
|
-
"
|
|
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
|
-
}
|
|
1184
|
+
"context": 128000,
|
|
1185
|
+
"output": 16384
|
|
1010
1186
|
},
|
|
1011
1187
|
"cost": {
|
|
1012
|
-
"input":
|
|
1013
|
-
"output":
|
|
1014
|
-
"cache_read":
|
|
1188
|
+
"input": 2.5,
|
|
1189
|
+
"output": 10,
|
|
1190
|
+
"cache_read": 1.25
|
|
1015
1191
|
}
|
|
1016
1192
|
},
|
|
1017
1193
|
"o1": {
|
|
1018
1194
|
"id": "o1",
|
|
1019
1195
|
"name": "o1",
|
|
1196
|
+
"description": "O-series reasoning model for hard analysis, math, coding, and planning",
|
|
1020
1197
|
"family": "o",
|
|
1021
1198
|
"attachment": true,
|
|
1022
1199
|
"reasoning": true,
|
|
1200
|
+
"reasoning_options": [
|
|
1201
|
+
{
|
|
1202
|
+
"type": "effort",
|
|
1203
|
+
"values": [
|
|
1204
|
+
"low",
|
|
1205
|
+
"medium",
|
|
1206
|
+
"high"
|
|
1207
|
+
]
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1023
1210
|
"tool_call": true,
|
|
1024
1211
|
"structured_output": true,
|
|
1025
1212
|
"temperature": false,
|
|
@@ -1047,18 +1234,29 @@
|
|
|
1047
1234
|
"cache_read": 7.5
|
|
1048
1235
|
}
|
|
1049
1236
|
},
|
|
1050
|
-
"
|
|
1051
|
-
"id": "
|
|
1052
|
-
"name": "
|
|
1053
|
-
"
|
|
1237
|
+
"o1-pro": {
|
|
1238
|
+
"id": "o1-pro",
|
|
1239
|
+
"name": "o1-pro",
|
|
1240
|
+
"description": "O-series reasoning model for hard analysis, math, coding, and planning",
|
|
1241
|
+
"family": "o-pro",
|
|
1054
1242
|
"attachment": true,
|
|
1055
1243
|
"reasoning": true,
|
|
1244
|
+
"reasoning_options": [
|
|
1245
|
+
{
|
|
1246
|
+
"type": "effort",
|
|
1247
|
+
"values": [
|
|
1248
|
+
"low",
|
|
1249
|
+
"medium",
|
|
1250
|
+
"high"
|
|
1251
|
+
]
|
|
1252
|
+
}
|
|
1253
|
+
],
|
|
1056
1254
|
"tool_call": true,
|
|
1057
1255
|
"structured_output": true,
|
|
1058
1256
|
"temperature": false,
|
|
1059
|
-
"knowledge": "
|
|
1060
|
-
"release_date": "2025-
|
|
1061
|
-
"last_updated": "2025-
|
|
1257
|
+
"knowledge": "2023-09",
|
|
1258
|
+
"release_date": "2025-03-19",
|
|
1259
|
+
"last_updated": "2025-03-19",
|
|
1062
1260
|
"modalities": {
|
|
1063
1261
|
"input": [
|
|
1064
1262
|
"text",
|
|
@@ -1070,28 +1268,39 @@
|
|
|
1070
1268
|
},
|
|
1071
1269
|
"open_weights": false,
|
|
1072
1270
|
"limit": {
|
|
1073
|
-
"context":
|
|
1074
|
-
"
|
|
1075
|
-
"output": 128000
|
|
1271
|
+
"context": 200000,
|
|
1272
|
+
"output": 100000
|
|
1076
1273
|
},
|
|
1077
1274
|
"cost": {
|
|
1078
|
-
"input":
|
|
1079
|
-
"output":
|
|
1080
|
-
"cache_read": 0.125
|
|
1275
|
+
"input": 150,
|
|
1276
|
+
"output": 600
|
|
1081
1277
|
}
|
|
1082
1278
|
},
|
|
1083
|
-
"gpt-5.
|
|
1084
|
-
"id": "gpt-5.
|
|
1085
|
-
"name": "GPT-5.
|
|
1279
|
+
"gpt-5.4": {
|
|
1280
|
+
"id": "gpt-5.4",
|
|
1281
|
+
"name": "GPT-5.4",
|
|
1282
|
+
"description": "Agent-ready GPT for coding and computer-use workflows at a lower cost",
|
|
1086
1283
|
"family": "gpt",
|
|
1087
1284
|
"attachment": true,
|
|
1088
1285
|
"reasoning": true,
|
|
1286
|
+
"reasoning_options": [
|
|
1287
|
+
{
|
|
1288
|
+
"type": "effort",
|
|
1289
|
+
"values": [
|
|
1290
|
+
"none",
|
|
1291
|
+
"low",
|
|
1292
|
+
"medium",
|
|
1293
|
+
"high",
|
|
1294
|
+
"xhigh"
|
|
1295
|
+
]
|
|
1296
|
+
}
|
|
1297
|
+
],
|
|
1089
1298
|
"tool_call": true,
|
|
1090
1299
|
"structured_output": true,
|
|
1091
1300
|
"temperature": false,
|
|
1092
|
-
"knowledge": "2025-
|
|
1093
|
-
"release_date": "2026-
|
|
1094
|
-
"last_updated": "2026-
|
|
1301
|
+
"knowledge": "2025-08-31",
|
|
1302
|
+
"release_date": "2026-03-05",
|
|
1303
|
+
"last_updated": "2026-03-05",
|
|
1095
1304
|
"modalities": {
|
|
1096
1305
|
"input": [
|
|
1097
1306
|
"text",
|
|
@@ -1112,9 +1321,9 @@
|
|
|
1112
1321
|
"modes": {
|
|
1113
1322
|
"fast": {
|
|
1114
1323
|
"cost": {
|
|
1115
|
-
"input":
|
|
1116
|
-
"output":
|
|
1117
|
-
"cache_read":
|
|
1324
|
+
"input": 5,
|
|
1325
|
+
"output": 30,
|
|
1326
|
+
"cache_read": 0.5
|
|
1118
1327
|
},
|
|
1119
1328
|
"provider": {
|
|
1120
1329
|
"body": {
|
|
@@ -1125,116 +1334,52 @@
|
|
|
1125
1334
|
}
|
|
1126
1335
|
},
|
|
1127
1336
|
"cost": {
|
|
1128
|
-
"input": 5,
|
|
1129
|
-
"output":
|
|
1130
|
-
"cache_read": 0.
|
|
1131
|
-
"tiers": [
|
|
1132
|
-
{
|
|
1133
|
-
"input":
|
|
1134
|
-
"output":
|
|
1135
|
-
"cache_read":
|
|
1136
|
-
"tier": {
|
|
1137
|
-
"type": "context",
|
|
1138
|
-
"size": 272000
|
|
1139
|
-
}
|
|
1140
|
-
}
|
|
1141
|
-
],
|
|
1142
|
-
"context_over_200k": {
|
|
1143
|
-
"input":
|
|
1144
|
-
"output":
|
|
1145
|
-
"cache_read":
|
|
1146
|
-
}
|
|
1147
|
-
}
|
|
1148
|
-
},
|
|
1149
|
-
"gpt-5.4-pro": {
|
|
1150
|
-
"id": "gpt-5.4-pro",
|
|
1151
|
-
"name": "GPT-5.4 Pro",
|
|
1152
|
-
"family": "gpt-pro",
|
|
1153
|
-
"attachment": true,
|
|
1154
|
-
"reasoning": true,
|
|
1155
|
-
"tool_call": true,
|
|
1156
|
-
"structured_output": false,
|
|
1157
|
-
"temperature": false,
|
|
1158
|
-
"knowledge": "2025-08-31",
|
|
1159
|
-
"release_date": "2026-03-05",
|
|
1160
|
-
"last_updated": "2026-03-05",
|
|
1161
|
-
"modalities": {
|
|
1162
|
-
"input": [
|
|
1163
|
-
"text",
|
|
1164
|
-
"image"
|
|
1165
|
-
],
|
|
1166
|
-
"output": [
|
|
1167
|
-
"text"
|
|
1168
|
-
]
|
|
1169
|
-
},
|
|
1170
|
-
"open_weights": false,
|
|
1171
|
-
"limit": {
|
|
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
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
},
|
|
1195
|
-
"gpt-5.2-chat-latest": {
|
|
1196
|
-
"id": "gpt-5.2-chat-latest",
|
|
1197
|
-
"name": "GPT-5.2 Chat",
|
|
1198
|
-
"family": "gpt-codex",
|
|
1199
|
-
"attachment": true,
|
|
1200
|
-
"reasoning": true,
|
|
1201
|
-
"tool_call": true,
|
|
1202
|
-
"structured_output": true,
|
|
1203
|
-
"temperature": false,
|
|
1204
|
-
"knowledge": "2025-08-31",
|
|
1205
|
-
"release_date": "2025-12-11",
|
|
1206
|
-
"last_updated": "2025-12-11",
|
|
1207
|
-
"modalities": {
|
|
1208
|
-
"input": [
|
|
1209
|
-
"text",
|
|
1210
|
-
"image"
|
|
1211
|
-
],
|
|
1212
|
-
"output": [
|
|
1213
|
-
"text"
|
|
1214
|
-
]
|
|
1215
|
-
},
|
|
1216
|
-
"open_weights": false,
|
|
1217
|
-
"limit": {
|
|
1218
|
-
"context": 128000,
|
|
1219
|
-
"output": 16384
|
|
1220
|
-
},
|
|
1221
|
-
"cost": {
|
|
1222
|
-
"input": 1.75,
|
|
1223
|
-
"output": 14,
|
|
1224
|
-
"cache_read": 0.175
|
|
1337
|
+
"input": 2.5,
|
|
1338
|
+
"output": 15,
|
|
1339
|
+
"cache_read": 0.25,
|
|
1340
|
+
"tiers": [
|
|
1341
|
+
{
|
|
1342
|
+
"input": 5,
|
|
1343
|
+
"output": 22.5,
|
|
1344
|
+
"cache_read": 0.5,
|
|
1345
|
+
"tier": {
|
|
1346
|
+
"type": "context",
|
|
1347
|
+
"size": 272000
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
],
|
|
1351
|
+
"context_over_200k": {
|
|
1352
|
+
"input": 5,
|
|
1353
|
+
"output": 22.5,
|
|
1354
|
+
"cache_read": 0.5
|
|
1355
|
+
}
|
|
1225
1356
|
}
|
|
1226
1357
|
},
|
|
1227
|
-
"
|
|
1228
|
-
"id": "
|
|
1229
|
-
"name": "
|
|
1230
|
-
"
|
|
1358
|
+
"gpt-5.4-mini": {
|
|
1359
|
+
"id": "gpt-5.4-mini",
|
|
1360
|
+
"name": "GPT-5.4 mini",
|
|
1361
|
+
"description": "Strong small GPT for coding subagents, quick tool use, and high-volume work",
|
|
1362
|
+
"family": "gpt-mini",
|
|
1231
1363
|
"attachment": true,
|
|
1232
1364
|
"reasoning": true,
|
|
1365
|
+
"reasoning_options": [
|
|
1366
|
+
{
|
|
1367
|
+
"type": "effort",
|
|
1368
|
+
"values": [
|
|
1369
|
+
"none",
|
|
1370
|
+
"low",
|
|
1371
|
+
"medium",
|
|
1372
|
+
"high",
|
|
1373
|
+
"xhigh"
|
|
1374
|
+
]
|
|
1375
|
+
}
|
|
1376
|
+
],
|
|
1233
1377
|
"tool_call": true,
|
|
1378
|
+
"structured_output": true,
|
|
1234
1379
|
"temperature": false,
|
|
1235
|
-
"knowledge": "
|
|
1236
|
-
"release_date": "
|
|
1237
|
-
"last_updated": "
|
|
1380
|
+
"knowledge": "2025-08-31",
|
|
1381
|
+
"release_date": "2026-03-17",
|
|
1382
|
+
"last_updated": "2026-03-17",
|
|
1238
1383
|
"modalities": {
|
|
1239
1384
|
"input": [
|
|
1240
1385
|
"text",
|
|
@@ -1246,19 +1391,37 @@
|
|
|
1246
1391
|
},
|
|
1247
1392
|
"open_weights": false,
|
|
1248
1393
|
"limit": {
|
|
1249
|
-
"context":
|
|
1250
|
-
"
|
|
1394
|
+
"context": 400000,
|
|
1395
|
+
"input": 272000,
|
|
1396
|
+
"output": 128000
|
|
1397
|
+
},
|
|
1398
|
+
"experimental": {
|
|
1399
|
+
"modes": {
|
|
1400
|
+
"fast": {
|
|
1401
|
+
"cost": {
|
|
1402
|
+
"input": 1.5,
|
|
1403
|
+
"output": 9,
|
|
1404
|
+
"cache_read": 0.15
|
|
1405
|
+
},
|
|
1406
|
+
"provider": {
|
|
1407
|
+
"body": {
|
|
1408
|
+
"service_tier": "priority"
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1251
1413
|
},
|
|
1252
1414
|
"cost": {
|
|
1253
|
-
"input":
|
|
1254
|
-
"output":
|
|
1255
|
-
"cache_read": 0.
|
|
1415
|
+
"input": 0.75,
|
|
1416
|
+
"output": 4.5,
|
|
1417
|
+
"cache_read": 0.075
|
|
1256
1418
|
}
|
|
1257
1419
|
},
|
|
1258
|
-
"gpt-4.1
|
|
1259
|
-
"id": "gpt-4.1
|
|
1260
|
-
"name": "GPT-4.1
|
|
1261
|
-
"
|
|
1420
|
+
"gpt-4.1": {
|
|
1421
|
+
"id": "gpt-4.1",
|
|
1422
|
+
"name": "GPT-4.1",
|
|
1423
|
+
"description": "Long-lived GPT workhorse for coding, instruction following, and production apps",
|
|
1424
|
+
"family": "gpt",
|
|
1262
1425
|
"attachment": true,
|
|
1263
1426
|
"reasoning": false,
|
|
1264
1427
|
"tool_call": true,
|
|
@@ -1270,7 +1433,8 @@
|
|
|
1270
1433
|
"modalities": {
|
|
1271
1434
|
"input": [
|
|
1272
1435
|
"text",
|
|
1273
|
-
"image"
|
|
1436
|
+
"image",
|
|
1437
|
+
"pdf"
|
|
1274
1438
|
],
|
|
1275
1439
|
"output": [
|
|
1276
1440
|
"text"
|
|
@@ -1282,26 +1446,35 @@
|
|
|
1282
1446
|
"output": 32768
|
|
1283
1447
|
},
|
|
1284
1448
|
"cost": {
|
|
1285
|
-
"input":
|
|
1286
|
-
"output":
|
|
1287
|
-
"cache_read": 0.
|
|
1449
|
+
"input": 2,
|
|
1450
|
+
"output": 8,
|
|
1451
|
+
"cache_read": 0.5
|
|
1288
1452
|
}
|
|
1289
1453
|
},
|
|
1290
|
-
"
|
|
1291
|
-
"id": "
|
|
1292
|
-
"name": "
|
|
1293
|
-
"
|
|
1454
|
+
"o3-deep-research": {
|
|
1455
|
+
"id": "o3-deep-research",
|
|
1456
|
+
"name": "o3-deep-research",
|
|
1457
|
+
"description": "Research model for long-horizon investigation, synthesis, and analytical reports",
|
|
1458
|
+
"family": "o",
|
|
1294
1459
|
"attachment": true,
|
|
1295
|
-
"reasoning":
|
|
1460
|
+
"reasoning": true,
|
|
1461
|
+
"reasoning_options": [
|
|
1462
|
+
{
|
|
1463
|
+
"type": "effort",
|
|
1464
|
+
"values": [
|
|
1465
|
+
"medium"
|
|
1466
|
+
]
|
|
1467
|
+
}
|
|
1468
|
+
],
|
|
1296
1469
|
"tool_call": true,
|
|
1297
|
-
"
|
|
1298
|
-
"
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1301
|
-
"last_updated": "2024-04-09",
|
|
1470
|
+
"temperature": false,
|
|
1471
|
+
"knowledge": "2024-05",
|
|
1472
|
+
"release_date": "2024-06-26",
|
|
1473
|
+
"last_updated": "2024-06-26",
|
|
1302
1474
|
"modalities": {
|
|
1303
1475
|
"input": [
|
|
1304
|
-
"text"
|
|
1476
|
+
"text",
|
|
1477
|
+
"image"
|
|
1305
1478
|
],
|
|
1306
1479
|
"output": [
|
|
1307
1480
|
"text"
|
|
@@ -1309,26 +1482,39 @@
|
|
|
1309
1482
|
},
|
|
1310
1483
|
"open_weights": false,
|
|
1311
1484
|
"limit": {
|
|
1312
|
-
"context":
|
|
1313
|
-
"output":
|
|
1485
|
+
"context": 200000,
|
|
1486
|
+
"output": 100000
|
|
1314
1487
|
},
|
|
1315
1488
|
"cost": {
|
|
1316
|
-
"input":
|
|
1317
|
-
"output":
|
|
1489
|
+
"input": 10,
|
|
1490
|
+
"output": 40,
|
|
1491
|
+
"cache_read": 2.5
|
|
1318
1492
|
}
|
|
1319
1493
|
},
|
|
1320
|
-
"
|
|
1321
|
-
"id": "
|
|
1322
|
-
"name": "
|
|
1323
|
-
"
|
|
1494
|
+
"gpt-5-mini": {
|
|
1495
|
+
"id": "gpt-5-mini",
|
|
1496
|
+
"name": "GPT-5 Mini",
|
|
1497
|
+
"description": "Small GPT-5 for responsive agents, coding help, and everyday automation",
|
|
1498
|
+
"family": "gpt-mini",
|
|
1324
1499
|
"attachment": true,
|
|
1325
1500
|
"reasoning": true,
|
|
1501
|
+
"reasoning_options": [
|
|
1502
|
+
{
|
|
1503
|
+
"type": "effort",
|
|
1504
|
+
"values": [
|
|
1505
|
+
"minimal",
|
|
1506
|
+
"low",
|
|
1507
|
+
"medium",
|
|
1508
|
+
"high"
|
|
1509
|
+
]
|
|
1510
|
+
}
|
|
1511
|
+
],
|
|
1326
1512
|
"tool_call": true,
|
|
1327
1513
|
"structured_output": true,
|
|
1328
1514
|
"temperature": false,
|
|
1329
|
-
"knowledge": "2024-05",
|
|
1330
|
-
"release_date": "2025-
|
|
1331
|
-
"last_updated": "2025-
|
|
1515
|
+
"knowledge": "2024-05-30",
|
|
1516
|
+
"release_date": "2025-08-07",
|
|
1517
|
+
"last_updated": "2025-08-07",
|
|
1332
1518
|
"modalities": {
|
|
1333
1519
|
"input": [
|
|
1334
1520
|
"text",
|
|
@@ -1340,64 +1526,61 @@
|
|
|
1340
1526
|
},
|
|
1341
1527
|
"open_weights": false,
|
|
1342
1528
|
"limit": {
|
|
1343
|
-
"context":
|
|
1344
|
-
"
|
|
1529
|
+
"context": 400000,
|
|
1530
|
+
"input": 272000,
|
|
1531
|
+
"output": 128000
|
|
1345
1532
|
},
|
|
1346
1533
|
"cost": {
|
|
1347
|
-
"input":
|
|
1348
|
-
"output":
|
|
1349
|
-
"cache_read": 0.
|
|
1534
|
+
"input": 0.25,
|
|
1535
|
+
"output": 2,
|
|
1536
|
+
"cache_read": 0.025
|
|
1350
1537
|
}
|
|
1351
1538
|
},
|
|
1352
|
-
"gpt-
|
|
1353
|
-
"id": "gpt-
|
|
1354
|
-
"name": "
|
|
1355
|
-
"
|
|
1539
|
+
"gpt-image-1": {
|
|
1540
|
+
"id": "gpt-image-1",
|
|
1541
|
+
"name": "gpt-image-1",
|
|
1542
|
+
"description": "OpenAI image model for production generation, edits, and brand-safe visual workflows",
|
|
1543
|
+
"family": "gpt-image",
|
|
1356
1544
|
"attachment": true,
|
|
1357
|
-
"reasoning":
|
|
1358
|
-
"tool_call":
|
|
1359
|
-
"structured_output": true,
|
|
1545
|
+
"reasoning": false,
|
|
1546
|
+
"tool_call": false,
|
|
1360
1547
|
"temperature": false,
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"last_updated": "2025-11-13",
|
|
1548
|
+
"release_date": "2025-04-24",
|
|
1549
|
+
"last_updated": "2025-04-24",
|
|
1364
1550
|
"modalities": {
|
|
1365
1551
|
"input": [
|
|
1366
1552
|
"text",
|
|
1367
1553
|
"image"
|
|
1368
1554
|
],
|
|
1369
1555
|
"output": [
|
|
1370
|
-
"
|
|
1556
|
+
"image"
|
|
1371
1557
|
]
|
|
1372
1558
|
},
|
|
1373
1559
|
"open_weights": false,
|
|
1374
1560
|
"limit": {
|
|
1375
|
-
"context":
|
|
1376
|
-
"input":
|
|
1377
|
-
"output":
|
|
1378
|
-
},
|
|
1379
|
-
"cost": {
|
|
1380
|
-
"input": 1.25,
|
|
1381
|
-
"output": 10,
|
|
1382
|
-
"cache_read": 0.125
|
|
1561
|
+
"context": 0,
|
|
1562
|
+
"input": 0,
|
|
1563
|
+
"output": 0
|
|
1383
1564
|
}
|
|
1384
1565
|
},
|
|
1385
|
-
"gpt-
|
|
1386
|
-
"id": "gpt-
|
|
1387
|
-
"name": "GPT-
|
|
1388
|
-
"
|
|
1566
|
+
"gpt-4.1-mini": {
|
|
1567
|
+
"id": "gpt-4.1-mini",
|
|
1568
|
+
"name": "GPT-4.1 mini",
|
|
1569
|
+
"description": "Affordable GPT-4.1 lane for fast coding help and structured extraction",
|
|
1570
|
+
"family": "gpt-mini",
|
|
1389
1571
|
"attachment": true,
|
|
1390
1572
|
"reasoning": false,
|
|
1391
1573
|
"tool_call": true,
|
|
1392
1574
|
"structured_output": true,
|
|
1393
1575
|
"temperature": true,
|
|
1394
|
-
"knowledge": "
|
|
1395
|
-
"release_date": "
|
|
1396
|
-
"last_updated": "
|
|
1576
|
+
"knowledge": "2024-04",
|
|
1577
|
+
"release_date": "2025-04-14",
|
|
1578
|
+
"last_updated": "2025-04-14",
|
|
1397
1579
|
"modalities": {
|
|
1398
1580
|
"input": [
|
|
1399
1581
|
"text",
|
|
1400
|
-
"image"
|
|
1582
|
+
"image",
|
|
1583
|
+
"pdf"
|
|
1401
1584
|
],
|
|
1402
1585
|
"output": [
|
|
1403
1586
|
"text"
|
|
@@ -1405,32 +1588,32 @@
|
|
|
1405
1588
|
},
|
|
1406
1589
|
"open_weights": false,
|
|
1407
1590
|
"limit": {
|
|
1408
|
-
"context":
|
|
1409
|
-
"output":
|
|
1591
|
+
"context": 1047576,
|
|
1592
|
+
"output": 32768
|
|
1410
1593
|
},
|
|
1411
1594
|
"cost": {
|
|
1412
|
-
"input":
|
|
1413
|
-
"output":
|
|
1414
|
-
"cache_read": 1
|
|
1595
|
+
"input": 0.4,
|
|
1596
|
+
"output": 1.6,
|
|
1597
|
+
"cache_read": 0.1
|
|
1415
1598
|
}
|
|
1416
1599
|
},
|
|
1417
|
-
"gpt-
|
|
1418
|
-
"id": "gpt-
|
|
1419
|
-
"name": "GPT-
|
|
1420
|
-
"
|
|
1600
|
+
"gpt-4-turbo": {
|
|
1601
|
+
"id": "gpt-4-turbo",
|
|
1602
|
+
"name": "GPT-4 Turbo",
|
|
1603
|
+
"description": "Compact GPT model for low-latency assistance and high-volume workloads",
|
|
1604
|
+
"family": "gpt",
|
|
1421
1605
|
"attachment": true,
|
|
1422
|
-
"reasoning":
|
|
1606
|
+
"reasoning": false,
|
|
1423
1607
|
"tool_call": true,
|
|
1424
|
-
"structured_output":
|
|
1425
|
-
"temperature":
|
|
1426
|
-
"knowledge": "
|
|
1427
|
-
"release_date": "
|
|
1428
|
-
"last_updated": "
|
|
1608
|
+
"structured_output": false,
|
|
1609
|
+
"temperature": true,
|
|
1610
|
+
"knowledge": "2023-12",
|
|
1611
|
+
"release_date": "2023-11-06",
|
|
1612
|
+
"last_updated": "2024-04-09",
|
|
1429
1613
|
"modalities": {
|
|
1430
1614
|
"input": [
|
|
1431
1615
|
"text",
|
|
1432
|
-
"image"
|
|
1433
|
-
"pdf"
|
|
1616
|
+
"image"
|
|
1434
1617
|
],
|
|
1435
1618
|
"output": [
|
|
1436
1619
|
"text"
|
|
@@ -1438,32 +1621,32 @@
|
|
|
1438
1621
|
},
|
|
1439
1622
|
"open_weights": false,
|
|
1440
1623
|
"limit": {
|
|
1441
|
-
"context":
|
|
1442
|
-
"
|
|
1443
|
-
"output": 128000
|
|
1624
|
+
"context": 128000,
|
|
1625
|
+
"output": 4096
|
|
1444
1626
|
},
|
|
1445
1627
|
"cost": {
|
|
1446
|
-
"input":
|
|
1447
|
-
"output":
|
|
1448
|
-
"cache_read": 0.175
|
|
1628
|
+
"input": 10,
|
|
1629
|
+
"output": 30
|
|
1449
1630
|
}
|
|
1450
1631
|
},
|
|
1451
|
-
"gpt-image-1": {
|
|
1452
|
-
"id": "gpt-image-1",
|
|
1453
|
-
"name": "gpt-image-1",
|
|
1632
|
+
"gpt-image-1-mini": {
|
|
1633
|
+
"id": "gpt-image-1-mini",
|
|
1634
|
+
"name": "gpt-image-1-mini",
|
|
1635
|
+
"description": "Image model for prompt-driven generation, editing, and visual design workflows",
|
|
1454
1636
|
"family": "gpt-image",
|
|
1455
1637
|
"attachment": true,
|
|
1456
1638
|
"reasoning": false,
|
|
1457
1639
|
"tool_call": false,
|
|
1458
1640
|
"temperature": false,
|
|
1459
|
-
"release_date": "2025-
|
|
1460
|
-
"last_updated": "2025-
|
|
1641
|
+
"release_date": "2025-09-26",
|
|
1642
|
+
"last_updated": "2025-09-26",
|
|
1461
1643
|
"modalities": {
|
|
1462
1644
|
"input": [
|
|
1463
1645
|
"text",
|
|
1464
1646
|
"image"
|
|
1465
1647
|
],
|
|
1466
1648
|
"output": [
|
|
1649
|
+
"text",
|
|
1467
1650
|
"image"
|
|
1468
1651
|
]
|
|
1469
1652
|
},
|
|
@@ -1474,12 +1657,24 @@
|
|
|
1474
1657
|
"output": 0
|
|
1475
1658
|
}
|
|
1476
1659
|
},
|
|
1477
|
-
"gpt-5-
|
|
1478
|
-
"id": "gpt-5-
|
|
1479
|
-
"name": "GPT-5
|
|
1480
|
-
"
|
|
1660
|
+
"gpt-5-nano": {
|
|
1661
|
+
"id": "gpt-5-nano",
|
|
1662
|
+
"name": "GPT-5 Nano",
|
|
1663
|
+
"description": "Tiny GPT-5 lane for routing, extraction, classification, and bulk jobs",
|
|
1664
|
+
"family": "gpt-nano",
|
|
1481
1665
|
"attachment": true,
|
|
1482
1666
|
"reasoning": true,
|
|
1667
|
+
"reasoning_options": [
|
|
1668
|
+
{
|
|
1669
|
+
"type": "effort",
|
|
1670
|
+
"values": [
|
|
1671
|
+
"minimal",
|
|
1672
|
+
"low",
|
|
1673
|
+
"medium",
|
|
1674
|
+
"high"
|
|
1675
|
+
]
|
|
1676
|
+
}
|
|
1677
|
+
],
|
|
1483
1678
|
"tool_call": true,
|
|
1484
1679
|
"structured_output": true,
|
|
1485
1680
|
"temperature": false,
|
|
@@ -1502,26 +1697,38 @@
|
|
|
1502
1697
|
"output": 128000
|
|
1503
1698
|
},
|
|
1504
1699
|
"cost": {
|
|
1505
|
-
"input": 0.
|
|
1506
|
-
"output":
|
|
1507
|
-
"cache_read": 0.
|
|
1700
|
+
"input": 0.05,
|
|
1701
|
+
"output": 0.4,
|
|
1702
|
+
"cache_read": 0.005
|
|
1508
1703
|
}
|
|
1509
1704
|
},
|
|
1510
|
-
"
|
|
1511
|
-
"id": "
|
|
1512
|
-
"name": "
|
|
1513
|
-
"
|
|
1514
|
-
"
|
|
1705
|
+
"gpt-5.4-pro": {
|
|
1706
|
+
"id": "gpt-5.4-pro",
|
|
1707
|
+
"name": "GPT-5.4 Pro",
|
|
1708
|
+
"description": "More exact GPT-5.4 tier for demanding professional reasoning and agent tasks",
|
|
1709
|
+
"family": "gpt-pro",
|
|
1710
|
+
"attachment": true,
|
|
1515
1711
|
"reasoning": true,
|
|
1712
|
+
"reasoning_options": [
|
|
1713
|
+
{
|
|
1714
|
+
"type": "effort",
|
|
1715
|
+
"values": [
|
|
1716
|
+
"medium",
|
|
1717
|
+
"high",
|
|
1718
|
+
"xhigh"
|
|
1719
|
+
]
|
|
1720
|
+
}
|
|
1721
|
+
],
|
|
1516
1722
|
"tool_call": true,
|
|
1517
|
-
"structured_output":
|
|
1723
|
+
"structured_output": false,
|
|
1518
1724
|
"temperature": false,
|
|
1519
|
-
"knowledge": "
|
|
1520
|
-
"release_date": "
|
|
1521
|
-
"last_updated": "
|
|
1725
|
+
"knowledge": "2025-08-31",
|
|
1726
|
+
"release_date": "2026-03-05",
|
|
1727
|
+
"last_updated": "2026-03-05",
|
|
1522
1728
|
"modalities": {
|
|
1523
1729
|
"input": [
|
|
1524
|
-
"text"
|
|
1730
|
+
"text",
|
|
1731
|
+
"image"
|
|
1525
1732
|
],
|
|
1526
1733
|
"output": [
|
|
1527
1734
|
"text"
|
|
@@ -1529,27 +1736,52 @@
|
|
|
1529
1736
|
},
|
|
1530
1737
|
"open_weights": false,
|
|
1531
1738
|
"limit": {
|
|
1532
|
-
"context":
|
|
1533
|
-
"
|
|
1739
|
+
"context": 1050000,
|
|
1740
|
+
"input": 922000,
|
|
1741
|
+
"output": 128000
|
|
1534
1742
|
},
|
|
1535
1743
|
"cost": {
|
|
1536
|
-
"input":
|
|
1537
|
-
"output":
|
|
1538
|
-
"
|
|
1744
|
+
"input": 30,
|
|
1745
|
+
"output": 180,
|
|
1746
|
+
"tiers": [
|
|
1747
|
+
{
|
|
1748
|
+
"input": 60,
|
|
1749
|
+
"output": 270,
|
|
1750
|
+
"tier": {
|
|
1751
|
+
"type": "context",
|
|
1752
|
+
"size": 272000
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1755
|
+
],
|
|
1756
|
+
"context_over_200k": {
|
|
1757
|
+
"input": 60,
|
|
1758
|
+
"output": 270
|
|
1759
|
+
}
|
|
1539
1760
|
}
|
|
1540
1761
|
},
|
|
1541
|
-
"gpt-5.
|
|
1542
|
-
"id": "gpt-5.
|
|
1543
|
-
"name": "GPT-5.
|
|
1544
|
-
"
|
|
1762
|
+
"gpt-5.5-pro": {
|
|
1763
|
+
"id": "gpt-5.5-pro",
|
|
1764
|
+
"name": "GPT-5.5 Pro",
|
|
1765
|
+
"description": "Highest-accuracy GPT-5.5 tier for slower, precision-heavy reasoning and coding",
|
|
1766
|
+
"family": "gpt-pro",
|
|
1545
1767
|
"attachment": true,
|
|
1546
1768
|
"reasoning": true,
|
|
1769
|
+
"reasoning_options": [
|
|
1770
|
+
{
|
|
1771
|
+
"type": "effort",
|
|
1772
|
+
"values": [
|
|
1773
|
+
"medium",
|
|
1774
|
+
"high",
|
|
1775
|
+
"xhigh"
|
|
1776
|
+
]
|
|
1777
|
+
}
|
|
1778
|
+
],
|
|
1547
1779
|
"tool_call": true,
|
|
1548
1780
|
"structured_output": true,
|
|
1549
1781
|
"temperature": false,
|
|
1550
|
-
"knowledge": "2025-
|
|
1551
|
-
"release_date": "2026-
|
|
1552
|
-
"last_updated": "2026-
|
|
1782
|
+
"knowledge": "2025-12-01",
|
|
1783
|
+
"release_date": "2026-04-23",
|
|
1784
|
+
"last_updated": "2026-04-23",
|
|
1553
1785
|
"modalities": {
|
|
1554
1786
|
"input": [
|
|
1555
1787
|
"text",
|
|
@@ -1562,32 +1794,47 @@
|
|
|
1562
1794
|
},
|
|
1563
1795
|
"open_weights": false,
|
|
1564
1796
|
"limit": {
|
|
1565
|
-
"context":
|
|
1566
|
-
"input":
|
|
1797
|
+
"context": 1050000,
|
|
1798
|
+
"input": 922000,
|
|
1567
1799
|
"output": 128000
|
|
1568
1800
|
},
|
|
1569
1801
|
"cost": {
|
|
1570
|
-
"input":
|
|
1571
|
-
"output":
|
|
1572
|
-
"
|
|
1802
|
+
"input": 30,
|
|
1803
|
+
"output": 180,
|
|
1804
|
+
"tiers": [
|
|
1805
|
+
{
|
|
1806
|
+
"input": 60,
|
|
1807
|
+
"output": 270,
|
|
1808
|
+
"tier": {
|
|
1809
|
+
"type": "context",
|
|
1810
|
+
"size": 272000
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
],
|
|
1814
|
+
"context_over_200k": {
|
|
1815
|
+
"input": 60,
|
|
1816
|
+
"output": 270
|
|
1817
|
+
}
|
|
1573
1818
|
}
|
|
1574
1819
|
},
|
|
1575
|
-
"gpt-4o-
|
|
1576
|
-
"id": "gpt-4o-
|
|
1577
|
-
"name": "GPT-4o
|
|
1578
|
-
"
|
|
1820
|
+
"gpt-4o-mini": {
|
|
1821
|
+
"id": "gpt-4o-mini",
|
|
1822
|
+
"name": "GPT-4o mini",
|
|
1823
|
+
"description": "Small omni GPT for cheap multimodal assistance and production-scale traffic",
|
|
1824
|
+
"family": "gpt-mini",
|
|
1579
1825
|
"attachment": true,
|
|
1580
1826
|
"reasoning": false,
|
|
1581
1827
|
"tool_call": true,
|
|
1582
1828
|
"structured_output": true,
|
|
1583
1829
|
"temperature": true,
|
|
1584
1830
|
"knowledge": "2023-09",
|
|
1585
|
-
"release_date": "2024-
|
|
1586
|
-
"last_updated": "2024-
|
|
1831
|
+
"release_date": "2024-07-18",
|
|
1832
|
+
"last_updated": "2024-07-18",
|
|
1587
1833
|
"modalities": {
|
|
1588
1834
|
"input": [
|
|
1589
1835
|
"text",
|
|
1590
|
-
"image"
|
|
1836
|
+
"image",
|
|
1837
|
+
"pdf"
|
|
1591
1838
|
],
|
|
1592
1839
|
"output": [
|
|
1593
1840
|
"text"
|
|
@@ -1599,28 +1846,38 @@
|
|
|
1599
1846
|
"output": 16384
|
|
1600
1847
|
},
|
|
1601
1848
|
"cost": {
|
|
1602
|
-
"input":
|
|
1603
|
-
"output":
|
|
1604
|
-
"cache_read":
|
|
1849
|
+
"input": 0.15,
|
|
1850
|
+
"output": 0.6,
|
|
1851
|
+
"cache_read": 0.075
|
|
1605
1852
|
}
|
|
1606
1853
|
},
|
|
1607
|
-
"
|
|
1608
|
-
"id": "
|
|
1609
|
-
"name": "
|
|
1610
|
-
"
|
|
1611
|
-
"
|
|
1854
|
+
"gpt-5-codex": {
|
|
1855
|
+
"id": "gpt-5-codex",
|
|
1856
|
+
"name": "GPT-5-Codex",
|
|
1857
|
+
"description": "Coding-optimized GPT model for repository edits, reviews, and agentic software work",
|
|
1858
|
+
"family": "gpt-codex",
|
|
1859
|
+
"attachment": false,
|
|
1612
1860
|
"reasoning": true,
|
|
1861
|
+
"reasoning_options": [
|
|
1862
|
+
{
|
|
1863
|
+
"type": "effort",
|
|
1864
|
+
"values": [
|
|
1865
|
+
"low",
|
|
1866
|
+
"medium",
|
|
1867
|
+
"high"
|
|
1868
|
+
]
|
|
1869
|
+
}
|
|
1870
|
+
],
|
|
1613
1871
|
"tool_call": true,
|
|
1614
1872
|
"structured_output": true,
|
|
1615
1873
|
"temperature": false,
|
|
1616
|
-
"knowledge": "2024-
|
|
1617
|
-
"release_date": "2025-
|
|
1618
|
-
"last_updated": "2025-
|
|
1874
|
+
"knowledge": "2024-09-30",
|
|
1875
|
+
"release_date": "2025-09-15",
|
|
1876
|
+
"last_updated": "2025-09-15",
|
|
1619
1877
|
"modalities": {
|
|
1620
1878
|
"input": [
|
|
1621
1879
|
"text",
|
|
1622
|
-
"image"
|
|
1623
|
-
"pdf"
|
|
1880
|
+
"image"
|
|
1624
1881
|
],
|
|
1625
1882
|
"output": [
|
|
1626
1883
|
"text"
|
|
@@ -1628,30 +1885,45 @@
|
|
|
1628
1885
|
},
|
|
1629
1886
|
"open_weights": false,
|
|
1630
1887
|
"limit": {
|
|
1631
|
-
"context":
|
|
1632
|
-
"
|
|
1888
|
+
"context": 400000,
|
|
1889
|
+
"input": 272000,
|
|
1890
|
+
"output": 128000
|
|
1633
1891
|
},
|
|
1634
1892
|
"cost": {
|
|
1635
|
-
"input":
|
|
1636
|
-
"output":
|
|
1637
|
-
"cache_read": 0.
|
|
1893
|
+
"input": 1.25,
|
|
1894
|
+
"output": 10,
|
|
1895
|
+
"cache_read": 0.125
|
|
1638
1896
|
}
|
|
1639
1897
|
},
|
|
1640
|
-
"
|
|
1641
|
-
"id": "
|
|
1642
|
-
"name": "
|
|
1643
|
-
"
|
|
1644
|
-
"
|
|
1898
|
+
"gpt-5.2-codex": {
|
|
1899
|
+
"id": "gpt-5.2-codex",
|
|
1900
|
+
"name": "GPT-5.2 Codex",
|
|
1901
|
+
"description": "Code-specialist GPT for repository edits, reviews, and long-running software agents",
|
|
1902
|
+
"family": "gpt-codex",
|
|
1903
|
+
"attachment": true,
|
|
1645
1904
|
"reasoning": true,
|
|
1646
|
-
"
|
|
1905
|
+
"reasoning_options": [
|
|
1906
|
+
{
|
|
1907
|
+
"type": "effort",
|
|
1908
|
+
"values": [
|
|
1909
|
+
"low",
|
|
1910
|
+
"medium",
|
|
1911
|
+
"high",
|
|
1912
|
+
"xhigh"
|
|
1913
|
+
]
|
|
1914
|
+
}
|
|
1915
|
+
],
|
|
1916
|
+
"tool_call": true,
|
|
1647
1917
|
"structured_output": true,
|
|
1648
1918
|
"temperature": false,
|
|
1649
|
-
"knowledge": "
|
|
1650
|
-
"release_date": "
|
|
1651
|
-
"last_updated": "
|
|
1919
|
+
"knowledge": "2025-08-31",
|
|
1920
|
+
"release_date": "2025-12-11",
|
|
1921
|
+
"last_updated": "2025-12-11",
|
|
1652
1922
|
"modalities": {
|
|
1653
1923
|
"input": [
|
|
1654
|
-
"text"
|
|
1924
|
+
"text",
|
|
1925
|
+
"image",
|
|
1926
|
+
"pdf"
|
|
1655
1927
|
],
|
|
1656
1928
|
"output": [
|
|
1657
1929
|
"text"
|
|
@@ -1659,58 +1931,72 @@
|
|
|
1659
1931
|
},
|
|
1660
1932
|
"open_weights": false,
|
|
1661
1933
|
"limit": {
|
|
1662
|
-
"context":
|
|
1663
|
-
"
|
|
1934
|
+
"context": 400000,
|
|
1935
|
+
"input": 272000,
|
|
1936
|
+
"output": 128000
|
|
1664
1937
|
},
|
|
1665
1938
|
"cost": {
|
|
1666
|
-
"input": 1.
|
|
1667
|
-
"output":
|
|
1668
|
-
"cache_read": 0.
|
|
1939
|
+
"input": 1.75,
|
|
1940
|
+
"output": 14,
|
|
1941
|
+
"cache_read": 0.175
|
|
1669
1942
|
}
|
|
1670
1943
|
},
|
|
1671
|
-
"
|
|
1672
|
-
"id": "
|
|
1673
|
-
"name": "
|
|
1674
|
-
"
|
|
1944
|
+
"gpt-image-2": {
|
|
1945
|
+
"id": "gpt-image-2",
|
|
1946
|
+
"name": "gpt-image-2",
|
|
1947
|
+
"description": "Image model for prompt-driven generation, editing, and visual design workflows",
|
|
1948
|
+
"family": "gpt-image",
|
|
1675
1949
|
"attachment": true,
|
|
1676
|
-
"reasoning":
|
|
1677
|
-
"tool_call":
|
|
1950
|
+
"reasoning": false,
|
|
1951
|
+
"tool_call": false,
|
|
1678
1952
|
"temperature": false,
|
|
1679
|
-
"
|
|
1680
|
-
"
|
|
1681
|
-
"last_updated": "2024-06-26",
|
|
1953
|
+
"release_date": "2026-04-21",
|
|
1954
|
+
"last_updated": "2026-04-21",
|
|
1682
1955
|
"modalities": {
|
|
1683
1956
|
"input": [
|
|
1684
1957
|
"text",
|
|
1685
1958
|
"image"
|
|
1686
1959
|
],
|
|
1687
1960
|
"output": [
|
|
1688
|
-
"
|
|
1961
|
+
"image"
|
|
1689
1962
|
]
|
|
1690
1963
|
},
|
|
1691
1964
|
"open_weights": false,
|
|
1692
1965
|
"limit": {
|
|
1693
|
-
"context":
|
|
1694
|
-
"
|
|
1966
|
+
"context": 0,
|
|
1967
|
+
"input": 0,
|
|
1968
|
+
"output": 0
|
|
1695
1969
|
},
|
|
1696
1970
|
"cost": {
|
|
1697
|
-
"input":
|
|
1698
|
-
"output":
|
|
1699
|
-
"cache_read":
|
|
1971
|
+
"input": 5,
|
|
1972
|
+
"output": 30,
|
|
1973
|
+
"cache_read": 1.25
|
|
1700
1974
|
}
|
|
1701
1975
|
},
|
|
1702
|
-
"gpt-5": {
|
|
1703
|
-
"id": "gpt-5",
|
|
1704
|
-
"name": "GPT-5",
|
|
1976
|
+
"gpt-5.1": {
|
|
1977
|
+
"id": "gpt-5.1",
|
|
1978
|
+
"name": "GPT-5.1",
|
|
1979
|
+
"description": "Sharper GPT-5 generation for coding, product work, and tool-assisted tasks",
|
|
1705
1980
|
"family": "gpt",
|
|
1706
1981
|
"attachment": true,
|
|
1707
1982
|
"reasoning": true,
|
|
1983
|
+
"reasoning_options": [
|
|
1984
|
+
{
|
|
1985
|
+
"type": "effort",
|
|
1986
|
+
"values": [
|
|
1987
|
+
"none",
|
|
1988
|
+
"low",
|
|
1989
|
+
"medium",
|
|
1990
|
+
"high"
|
|
1991
|
+
]
|
|
1992
|
+
}
|
|
1993
|
+
],
|
|
1708
1994
|
"tool_call": true,
|
|
1709
1995
|
"structured_output": true,
|
|
1710
1996
|
"temperature": false,
|
|
1711
1997
|
"knowledge": "2024-09-30",
|
|
1712
|
-
"release_date": "2025-
|
|
1713
|
-
"last_updated": "2025-
|
|
1998
|
+
"release_date": "2025-11-13",
|
|
1999
|
+
"last_updated": "2025-11-13",
|
|
1714
2000
|
"modalities": {
|
|
1715
2001
|
"input": [
|
|
1716
2002
|
"text",
|
|
@@ -1732,22 +2018,36 @@
|
|
|
1732
2018
|
"cache_read": 0.125
|
|
1733
2019
|
}
|
|
1734
2020
|
},
|
|
1735
|
-
"gpt-5.
|
|
1736
|
-
"id": "gpt-5.
|
|
1737
|
-
"name": "GPT-5.
|
|
2021
|
+
"gpt-5.5": {
|
|
2022
|
+
"id": "gpt-5.5",
|
|
2023
|
+
"name": "GPT-5.5",
|
|
2024
|
+
"description": "Default frontier GPT for coding, computer use, research, and knowledge work",
|
|
1738
2025
|
"family": "gpt",
|
|
1739
2026
|
"attachment": true,
|
|
1740
|
-
"reasoning":
|
|
2027
|
+
"reasoning": true,
|
|
2028
|
+
"reasoning_options": [
|
|
2029
|
+
{
|
|
2030
|
+
"type": "effort",
|
|
2031
|
+
"values": [
|
|
2032
|
+
"none",
|
|
2033
|
+
"low",
|
|
2034
|
+
"medium",
|
|
2035
|
+
"high",
|
|
2036
|
+
"xhigh"
|
|
2037
|
+
]
|
|
2038
|
+
}
|
|
2039
|
+
],
|
|
1741
2040
|
"tool_call": true,
|
|
1742
2041
|
"structured_output": true,
|
|
1743
|
-
"temperature":
|
|
1744
|
-
"knowledge": "2025-
|
|
1745
|
-
"release_date": "2026-
|
|
1746
|
-
"last_updated": "2026-
|
|
2042
|
+
"temperature": false,
|
|
2043
|
+
"knowledge": "2025-12-01",
|
|
2044
|
+
"release_date": "2026-04-23",
|
|
2045
|
+
"last_updated": "2026-04-23",
|
|
1747
2046
|
"modalities": {
|
|
1748
2047
|
"input": [
|
|
1749
2048
|
"text",
|
|
1750
|
-
"image"
|
|
2049
|
+
"image",
|
|
2050
|
+
"pdf"
|
|
1751
2051
|
],
|
|
1752
2052
|
"output": [
|
|
1753
2053
|
"text"
|
|
@@ -1755,13 +2055,46 @@
|
|
|
1755
2055
|
},
|
|
1756
2056
|
"open_weights": false,
|
|
1757
2057
|
"limit": {
|
|
1758
|
-
"context":
|
|
1759
|
-
"
|
|
2058
|
+
"context": 1050000,
|
|
2059
|
+
"input": 922000,
|
|
2060
|
+
"output": 128000
|
|
2061
|
+
},
|
|
2062
|
+
"experimental": {
|
|
2063
|
+
"modes": {
|
|
2064
|
+
"fast": {
|
|
2065
|
+
"cost": {
|
|
2066
|
+
"input": 12.5,
|
|
2067
|
+
"output": 75,
|
|
2068
|
+
"cache_read": 1.25
|
|
2069
|
+
},
|
|
2070
|
+
"provider": {
|
|
2071
|
+
"body": {
|
|
2072
|
+
"service_tier": "priority"
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
1760
2077
|
},
|
|
1761
2078
|
"cost": {
|
|
1762
|
-
"input":
|
|
1763
|
-
"output":
|
|
1764
|
-
"cache_read": 0.
|
|
2079
|
+
"input": 5,
|
|
2080
|
+
"output": 30,
|
|
2081
|
+
"cache_read": 0.5,
|
|
2082
|
+
"tiers": [
|
|
2083
|
+
{
|
|
2084
|
+
"input": 10,
|
|
2085
|
+
"output": 45,
|
|
2086
|
+
"cache_read": 1,
|
|
2087
|
+
"tier": {
|
|
2088
|
+
"type": "context",
|
|
2089
|
+
"size": 272000
|
|
2090
|
+
}
|
|
2091
|
+
}
|
|
2092
|
+
],
|
|
2093
|
+
"context_over_200k": {
|
|
2094
|
+
"input": 10,
|
|
2095
|
+
"output": 45,
|
|
2096
|
+
"cache_read": 1
|
|
2097
|
+
}
|
|
1765
2098
|
}
|
|
1766
2099
|
}
|
|
1767
2100
|
}
|