Skip to content

Commit eaa8c10

Browse files
authored
chore: update gpt-5.5 family pricing (#757)
1 parent d4275a6 commit eaa8c10

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

web/src/llm-api/openai.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ const INPUT_TOKEN_COSTS: Record<string, number> = {
3131
'gpt-5.3-codex': 1.75,
3232
'gpt-5.4': 2.50,
3333
'gpt-5.4-codex': 1.25,
34+
'gpt-5.5': 5,
35+
'gpt-5.5-pro': 30,
3436
'gpt-4o-2024-11-20': 2.50,
3537
'gpt-4o-mini-2024-07-18': 0.15,
3638
}
@@ -44,6 +46,8 @@ const CACHED_INPUT_TOKEN_COSTS: Record<string, number> = {
4446
'gpt-5.3-codex': 0.175,
4547
'gpt-5.4': 0.25,
4648
'gpt-5.4-codex': 0.125,
49+
'gpt-5.5': 0.5,
50+
'gpt-5.5-pro': 0.0,
4751
'gpt-4o-2024-11-20': 1.25,
4852
'gpt-4o-mini-2024-07-18': 0.075,
4953
}
@@ -57,6 +61,8 @@ const OUTPUT_TOKEN_COSTS: Record<string, number> = {
5761
'gpt-5.3-codex': 14,
5862
'gpt-5.4': 15,
5963
'gpt-5.4-codex': 10,
64+
'gpt-5.5': 30,
65+
'gpt-5.5-pro': 180,
6066
'gpt-4o-2024-11-20': 10,
6167
'gpt-4o-mini-2024-07-18': 0.60,
6268
}

0 commit comments

Comments
 (0)