Commit 578608d3 authored by Remx's avatar Remx
Browse files

fix: format gpt-5.4 mini fallback pricing

parent 42d73118
...@@ -222,10 +222,10 @@ func (s *BillingService) initFallbackPricing() { ...@@ -222,10 +222,10 @@ func (s *BillingService) initFallbackPricing() {
LongContextOutputMultiplier: openAIGPT54LongContextOutputMultiplier, LongContextOutputMultiplier: openAIGPT54LongContextOutputMultiplier,
} }
s.fallbackPrices["gpt-5.4-mini"] = &ModelPricing{ s.fallbackPrices["gpt-5.4-mini"] = &ModelPricing{
InputPricePerToken: 7.5e-7, InputPricePerToken: 7.5e-7,
OutputPricePerToken: 4.5e-6, OutputPricePerToken: 4.5e-6,
CacheReadPricePerToken: 7.5e-8, CacheReadPricePerToken: 7.5e-8,
SupportsCacheBreakdown: false, SupportsCacheBreakdown: false,
} }
s.fallbackPrices["gpt-5.4-nano"] = &ModelPricing{ s.fallbackPrices["gpt-5.4-nano"] = &ModelPricing{
InputPricePerToken: 2e-7, InputPricePerToken: 2e-7,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment