Skip to content

Commit e810da3

Browse files
committed
added azure gpt-5
1 parent 5677f37 commit e810da3

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

apps/sim/providers/models.ts

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,58 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
227227
toolUsageControl: true,
228228
},
229229
},
230+
{
231+
id: 'azure/gpt-5',
232+
pricing: {
233+
input: 10.0,
234+
cachedInput: 5.0,
235+
output: 40.0,
236+
updatedAt: '2025-08-07',
237+
},
238+
capabilities: {
239+
temperature: { min: 0, max: 2 },
240+
toolUsageControl: true,
241+
},
242+
},
243+
{
244+
id: 'azure/gpt-5-mini',
245+
pricing: {
246+
input: 1.0,
247+
cachedInput: 0.5,
248+
output: 4.0,
249+
updatedAt: '2025-08-07',
250+
},
251+
capabilities: {
252+
temperature: { min: 0, max: 2 },
253+
toolUsageControl: true,
254+
},
255+
},
256+
{
257+
id: 'azure/gpt-5-nano',
258+
pricing: {
259+
input: 0.2,
260+
cachedInput: 0.1,
261+
output: 0.8,
262+
updatedAt: '2025-08-07',
263+
},
264+
capabilities: {
265+
temperature: { min: 0, max: 2 },
266+
toolUsageControl: true,
267+
},
268+
},
269+
{
270+
id: 'azure/gpt-5-chat-latest',
271+
pricing: {
272+
input: 10.0,
273+
cachedInput: 5.0,
274+
output: 40.0,
275+
updatedAt: '2025-08-07',
276+
},
277+
capabilities: {
278+
temperature: { min: 0, max: 2 },
279+
toolUsageControl: true,
280+
},
281+
},
230282
{
231283
id: 'azure/o3',
232284
pricing: {

0 commit comments

Comments
 (0)