We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e81c96 commit 9a6e5f3Copy full SHA for 9a6e5f3
1 file changed
src/ui/mod.rs
@@ -625,10 +625,11 @@ impl UI {
625
// Prices per million tokens in USD
626
let (input_price, output_price) = match model {
627
"claude-sonnet-4-6" => (3.0, 15.0),
628
- "claude-opus-4-6" => (5.0, 25.0),
+ "claude-opus-4-6" | "claude-opus-4-7" => (5.0, 25.0),
629
"claude-haiku-4-5" => (1.0, 5.0),
630
- "gpt-5.1-codex-max" | "gpt-5.1-codex" | "gpt-5-codex" => (1.25, 10.0),
631
- "gpt-5.2" => (1.75, 14.0),
+ "gpt-5.3-codex" => (1.75, 14.0),
+ "gpt-5.4" => (2.5, 15.0),
632
+ "gpt-5.5" => (5.0, 30.0),
633
// Default fallback (use Sonnet 4.5 pricing)
634
_ => (3.0, 15.0),
635
};
0 commit comments