Skip to content

Commit 8a15483

Browse files
authored
Adjust token costs for Groq GPT models
Adjusted pricing inline with https://groq.com/pricing
1 parent d7d8b4b commit 8a15483

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cost/providers/groq/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ export const costs: ModelRow[] = [
195195
value: "openai/gpt-oss-20b",
196196
},
197197
cost: {
198-
prompt_token: 0.0000001,
199-
completion_token: 0.0000005,
198+
prompt_token: 0.00000075,
199+
completion_token: 0.0000003,
200200
},
201201
},
202202
{
@@ -206,7 +206,7 @@ export const costs: ModelRow[] = [
206206
},
207207
cost: {
208208
prompt_token: 0.00000015,
209-
completion_token: 0.00000075,
209+
completion_token: 0.0000006,
210210
},
211211
},
212212
];

0 commit comments

Comments
 (0)