We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6999d6e commit 9db43c2Copy full SHA for 9db43c2
1 file changed
src/models.rs
@@ -598,21 +598,10 @@ fn populate_defaults(
598
599
add_model!(
600
"gpt-5.5-pro",
601
- PricingStructure::Tiered(TieredPricing {
602
- tiers: vec![
603
- PricingTier {
604
- max_tokens: Some(272_000),
605
- input_per_1m: 30.0,
606
- output_per_1m: 180.0
607
- },
608
609
- max_tokens: None,
610
- input_per_1m: 60.0,
611
- output_per_1m: 270.0
612
613
- ],
614
- bracket_pricing: false,
615
- }),
+ PricingStructure::Flat {
+ input_per_1m: 30.0,
+ output_per_1m: 180.0
+ },
616
CachingSupport::None,
617
false
618
);
0 commit comments