Skip to content

Commit 1829237

Browse files
committed
fix(models): align gpt-5.5 pro controls
1 parent e56142f commit 1829237

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

apps/sim/providers/models.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,10 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
194194
capabilities: {
195195
nativeStructuredOutputs: true,
196196
reasoningEffort: {
197-
values: ['medium', 'high', 'xhigh'],
197+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
198+
},
199+
verbosity: {
200+
values: ['low', 'medium', 'high'],
198201
},
199202
maxOutputTokens: 128000,
200203
},

apps/sim/providers/utils.test.ts

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

537-
expect(MODELS_WITH_REASONING_EFFORT).toContain('gpt-5.5-pro')
538-
expect(MODELS_WITH_VERBOSITY).not.toContain('gpt-5.5-pro')
539-
540536
expect(MODELS_WITH_REASONING_EFFORT).toContain('gpt-5.4-pro')
541537
expect(MODELS_WITH_VERBOSITY).not.toContain('gpt-5.4-pro')
542538

0 commit comments

Comments
 (0)