Skip to content

Commit e56142f

Browse files
committed
fix(models): address gpt-5.5 review feedback
1 parent 9a10f14 commit e56142f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

apps/sim/providers/models.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
211211
},
212212
capabilities: {
213213
nativeStructuredOutputs: true,
214-
computerUse: true,
215214
reasoningEffort: {
216215
values: ['none', 'low', 'medium', 'high', 'xhigh'],
217216
},
@@ -260,7 +259,6 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
260259
},
261260
contextWindow: 1050000,
262261
releaseDate: '2026-03-05',
263-
recommended: true,
264262
},
265263
{
266264
id: 'gpt-5.4-mini',

apps/sim/providers/utils.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ describe('Model Capabilities', () => {
524524
(m) =>
525525
m.includes('gpt-5') &&
526526
!m.includes('chat-latest') &&
527+
!m.includes('gpt-5.5-pro') &&
527528
!m.includes('gpt-5.4-pro') &&
528529
!m.includes('gpt-5.2-pro') &&
529530
!m.includes('gpt-5-pro')
@@ -533,6 +534,9 @@ describe('Model Capabilities', () => {
533534
)
534535
expect(gpt5ModelsWithReasoningEffort.sort()).toEqual(gpt5ModelsWithVerbosity.sort())
535536

537+
expect(MODELS_WITH_REASONING_EFFORT).toContain('gpt-5.5-pro')
538+
expect(MODELS_WITH_VERBOSITY).not.toContain('gpt-5.5-pro')
539+
536540
expect(MODELS_WITH_REASONING_EFFORT).toContain('gpt-5.4-pro')
537541
expect(MODELS_WITH_VERBOSITY).not.toContain('gpt-5.4-pro')
538542

0 commit comments

Comments
 (0)