Skip to content

Commit 8863f11

Browse files
authored
feat(models): add gpt-5.5 models (#4300)
* feat(models): add gpt-5.5 models * fix(models): address gpt-5.5 review feedback * fix(models): align gpt-5.5 pro controls
1 parent d93a6f5 commit 8863f11

1 file changed

Lines changed: 43 additions & 1 deletion

File tree

apps/sim/providers/models.ts

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,49 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
183183
contextWindow: 1047576,
184184
releaseDate: '2025-04-14',
185185
},
186+
// GPT-5.5 family
187+
{
188+
id: 'gpt-5.5-pro',
189+
pricing: {
190+
input: 30.0,
191+
output: 180.0,
192+
updatedAt: '2026-04-23',
193+
},
194+
capabilities: {
195+
nativeStructuredOutputs: true,
196+
reasoningEffort: {
197+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
198+
},
199+
verbosity: {
200+
values: ['low', 'medium', 'high'],
201+
},
202+
maxOutputTokens: 128000,
203+
},
204+
contextWindow: 1050000,
205+
releaseDate: '2026-04-23',
206+
},
207+
{
208+
id: 'gpt-5.5',
209+
pricing: {
210+
input: 5.0,
211+
cachedInput: 0.5,
212+
output: 30.0,
213+
updatedAt: '2026-04-23',
214+
},
215+
capabilities: {
216+
nativeStructuredOutputs: true,
217+
reasoningEffort: {
218+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
219+
},
220+
verbosity: {
221+
values: ['low', 'medium', 'high'],
222+
},
223+
maxOutputTokens: 128000,
224+
},
225+
contextWindow: 1050000,
226+
releaseDate: '2026-04-23',
227+
recommended: true,
228+
},
186229
// GPT-5.4 family
187230
{
188231
id: 'gpt-5.4-pro',
@@ -219,7 +262,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
219262
},
220263
contextWindow: 1050000,
221264
releaseDate: '2026-03-05',
222-
recommended: true,
223265
},
224266
{
225267
id: 'gpt-5.4-mini',

0 commit comments

Comments
 (0)