Skip to content

Commit a7fe1d3

Browse files
authored
fix(models): remove unrelease oai models, fix help modal (#2046)
1 parent 3faab2c commit a7fe1d3

2 files changed

Lines changed: 55 additions & 55 deletions

File tree

apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components-new/help-modal/help-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ export function HelpModal({ open, onOpenChange }: HelpModalProps) {
392392
>
393393
<SelectValue placeholder='Select a request type' />
394394
</SelectTrigger>
395-
<SelectContent className='z-[10000000]'>
395+
<SelectContent className='z-[10000200]'>
396396
<SelectItem value='bug'>Bug Report</SelectItem>
397397
<SelectItem value='feedback'>Feedback</SelectItem>
398398
<SelectItem value='feature_request'>Feature Request</SelectItem>

apps/sim/providers/models.ts

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -124,60 +124,60 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
124124
},
125125
contextWindow: 400000,
126126
},
127-
{
128-
id: 'gpt-5.1-mini',
129-
pricing: {
130-
input: 0.25,
131-
cachedInput: 0.025,
132-
output: 2.0,
133-
updatedAt: '2025-11-14',
134-
},
135-
capabilities: {
136-
reasoningEffort: {
137-
values: ['none', 'low', 'medium', 'high'],
138-
},
139-
verbosity: {
140-
values: ['low', 'medium', 'high'],
141-
},
142-
},
143-
contextWindow: 400000,
144-
},
145-
{
146-
id: 'gpt-5.1-nano',
147-
pricing: {
148-
input: 0.05,
149-
cachedInput: 0.005,
150-
output: 0.4,
151-
updatedAt: '2025-11-14',
152-
},
153-
capabilities: {
154-
reasoningEffort: {
155-
values: ['none', 'low', 'medium', 'high'],
156-
},
157-
verbosity: {
158-
values: ['low', 'medium', 'high'],
159-
},
160-
},
161-
contextWindow: 400000,
162-
},
163-
{
164-
id: 'gpt-5.1-codex',
165-
pricing: {
166-
input: 1.25,
167-
cachedInput: 0.125,
168-
output: 10.0,
169-
updatedAt: '2025-11-14',
170-
},
171-
capabilities: {
172-
reasoningEffort: {
173-
values: ['none', 'medium', 'high'],
174-
},
175-
verbosity: {
176-
values: ['low', 'medium', 'high'],
177-
},
178-
},
179-
contextWindow: 400000,
180-
},
127+
// {
128+
// id: 'gpt-5.1-mini',
129+
// pricing: {
130+
// input: 0.25,
131+
// cachedInput: 0.025,
132+
// output: 2.0,
133+
// updatedAt: '2025-11-14',
134+
// },
135+
// capabilities: {
136+
// reasoningEffort: {
137+
// values: ['none', 'low', 'medium', 'high'],
138+
// },
139+
// verbosity: {
140+
// values: ['low', 'medium', 'high'],
141+
// },
142+
// },
143+
// contextWindow: 400000,
144+
// },
145+
// {
146+
// id: 'gpt-5.1-nano',
147+
// pricing: {
148+
// input: 0.05,
149+
// cachedInput: 0.005,
150+
// output: 0.4,
151+
// updatedAt: '2025-11-14',
152+
// },
153+
// capabilities: {
154+
// reasoningEffort: {
155+
// values: ['none', 'low', 'medium', 'high'],
156+
// },
157+
// verbosity: {
158+
// values: ['low', 'medium', 'high'],
159+
// },
160+
// },
161+
// contextWindow: 400000,
162+
// },
163+
// {
164+
// id: 'gpt-5.1-codex',
165+
// pricing: {
166+
// input: 1.25,
167+
// cachedInput: 0.125,
168+
// output: 10.0,
169+
// updatedAt: '2025-11-14',
170+
// },
171+
// capabilities: {
172+
// reasoningEffort: {
173+
// values: ['none', 'medium', 'high'],
174+
// },
175+
// verbosity: {
176+
// values: ['low', 'medium', 'high'],
177+
// },
178+
// },
179+
// contextWindow: 400000,
180+
// },
181181
{
182182
id: 'gpt-5',
183183
pricing: {

0 commit comments

Comments
 (0)