Skip to content

Commit ed7d7a7

Browse files
authored
fix(gpt-5): updated pricing (#897)
1 parent d5c13b7 commit ed7d7a7

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

apps/sim/providers/models.ts

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
8080
{
8181
id: 'gpt-5',
8282
pricing: {
83-
input: 10.0,
84-
cachedInput: 5.0,
85-
output: 40.0,
83+
input: 1.25,
84+
cachedInput: 0.125,
85+
output: 10.0,
8686
updatedAt: '2025-08-07',
8787
},
8888
capabilities: {
@@ -93,9 +93,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
9393
{
9494
id: 'gpt-5-mini',
9595
pricing: {
96-
input: 1.0,
97-
cachedInput: 0.5,
98-
output: 4.0,
96+
input: 0.25,
97+
cachedInput: 0.025,
98+
output: 2.0,
9999
updatedAt: '2025-08-07',
100100
},
101101
capabilities: {
@@ -106,9 +106,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
106106
{
107107
id: 'gpt-5-nano',
108108
pricing: {
109-
input: 0.2,
110-
cachedInput: 0.1,
111-
output: 0.8,
109+
input: 0.05,
110+
cachedInput: 0.005,
111+
output: 0.4,
112112
updatedAt: '2025-08-07',
113113
},
114114
capabilities: {
@@ -119,9 +119,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
119119
{
120120
id: 'gpt-5-chat-latest',
121121
pricing: {
122-
input: 10.0,
123-
cachedInput: 5.0,
124-
output: 40.0,
122+
input: 1.25,
123+
cachedInput: 0.125,
124+
output: 10.0,
125125
updatedAt: '2025-08-07',
126126
},
127127
capabilities: {
@@ -230,9 +230,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
230230
{
231231
id: 'azure/gpt-5',
232232
pricing: {
233-
input: 10.0,
234-
cachedInput: 5.0,
235-
output: 40.0,
233+
input: 1.25,
234+
cachedInput: 0.125,
235+
output: 10.0,
236236
updatedAt: '2025-08-07',
237237
},
238238
capabilities: {
@@ -243,9 +243,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
243243
{
244244
id: 'azure/gpt-5-mini',
245245
pricing: {
246-
input: 1.0,
247-
cachedInput: 0.5,
248-
output: 4.0,
246+
input: 0.25,
247+
cachedInput: 0.025,
248+
output: 2.0,
249249
updatedAt: '2025-08-07',
250250
},
251251
capabilities: {
@@ -256,9 +256,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
256256
{
257257
id: 'azure/gpt-5-nano',
258258
pricing: {
259-
input: 0.2,
260-
cachedInput: 0.1,
261-
output: 0.8,
259+
input: 0.05,
260+
cachedInput: 0.005,
261+
output: 0.4,
262262
updatedAt: '2025-08-07',
263263
},
264264
capabilities: {
@@ -269,9 +269,9 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
269269
{
270270
id: 'azure/gpt-5-chat-latest',
271271
pricing: {
272-
input: 10.0,
273-
cachedInput: 5.0,
274-
output: 40.0,
272+
input: 1.25,
273+
cachedInput: 0.125,
274+
output: 10.0,
275275
updatedAt: '2025-08-07',
276276
},
277277
capabilities: {

0 commit comments

Comments
 (0)