Skip to content

Commit 9a10f14

Browse files
committed
feat(models): add gpt-5.5 models
1 parent d93a6f5 commit 9a10f14

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

apps/sim/providers/models.ts

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,47 @@ 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: ['medium', 'high', 'xhigh'],
198+
},
199+
maxOutputTokens: 128000,
200+
},
201+
contextWindow: 1050000,
202+
releaseDate: '2026-04-23',
203+
},
204+
{
205+
id: 'gpt-5.5',
206+
pricing: {
207+
input: 5.0,
208+
cachedInput: 0.5,
209+
output: 30.0,
210+
updatedAt: '2026-04-23',
211+
},
212+
capabilities: {
213+
nativeStructuredOutputs: true,
214+
computerUse: true,
215+
reasoningEffort: {
216+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
217+
},
218+
verbosity: {
219+
values: ['low', 'medium', 'high'],
220+
},
221+
maxOutputTokens: 128000,
222+
},
223+
contextWindow: 1050000,
224+
releaseDate: '2026-04-23',
225+
recommended: true,
226+
},
186227
// GPT-5.4 family
187228
{
188229
id: 'gpt-5.4-pro',

0 commit comments

Comments
 (0)