Skip to content

Commit f81cbde

Browse files
committed
feat(models): add gpt-5.4-mini and gpt-5.4-nano
1 parent 7d0fdef commit f81cbde

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

apps/sim/providers/models.ts

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,44 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
156156
},
157157
contextWindow: 1050000,
158158
},
159+
{
160+
id: 'gpt-5.4-mini',
161+
pricing: {
162+
input: 0.75,
163+
cachedInput: 0.075,
164+
output: 4.5,
165+
updatedAt: '2026-03-17',
166+
},
167+
capabilities: {
168+
reasoningEffort: {
169+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
170+
},
171+
verbosity: {
172+
values: ['low', 'medium', 'high'],
173+
},
174+
maxOutputTokens: 128000,
175+
},
176+
contextWindow: 400000,
177+
},
178+
{
179+
id: 'gpt-5.4-nano',
180+
pricing: {
181+
input: 0.2,
182+
cachedInput: 0.02,
183+
output: 1.25,
184+
updatedAt: '2026-03-17',
185+
},
186+
capabilities: {
187+
reasoningEffort: {
188+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
189+
},
190+
verbosity: {
191+
values: ['low', 'medium', 'high'],
192+
},
193+
maxOutputTokens: 128000,
194+
},
195+
contextWindow: 400000,
196+
},
159197
{
160198
id: 'gpt-5.2',
161199
pricing: {
@@ -546,6 +584,44 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
546584
},
547585
contextWindow: 1050000,
548586
},
587+
{
588+
id: 'azure/gpt-5.4-mini',
589+
pricing: {
590+
input: 0.75,
591+
cachedInput: 0.075,
592+
output: 4.5,
593+
updatedAt: '2026-03-17',
594+
},
595+
capabilities: {
596+
reasoningEffort: {
597+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
598+
},
599+
verbosity: {
600+
values: ['low', 'medium', 'high'],
601+
},
602+
maxOutputTokens: 128000,
603+
},
604+
contextWindow: 400000,
605+
},
606+
{
607+
id: 'azure/gpt-5.4-nano',
608+
pricing: {
609+
input: 0.2,
610+
cachedInput: 0.02,
611+
output: 1.25,
612+
updatedAt: '2026-03-17',
613+
},
614+
capabilities: {
615+
reasoningEffort: {
616+
values: ['none', 'low', 'medium', 'high', 'xhigh'],
617+
},
618+
verbosity: {
619+
values: ['low', 'medium', 'high'],
620+
},
621+
maxOutputTokens: 128000,
622+
},
623+
contextWindow: 400000,
624+
},
549625
{
550626
id: 'azure/gpt-5.2',
551627
pricing: {

0 commit comments

Comments
 (0)