Skip to content

Commit 578608d

Browse files
committed
fix: format gpt-5.4 mini fallback pricing
1 parent 42d7311 commit 578608d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

backend/internal/service/billing_service.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,10 +222,10 @@ func (s *BillingService) initFallbackPricing() {
222222
LongContextOutputMultiplier: openAIGPT54LongContextOutputMultiplier,
223223
}
224224
s.fallbackPrices["gpt-5.4-mini"] = &ModelPricing{
225-
InputPricePerToken: 7.5e-7,
226-
OutputPricePerToken: 4.5e-6,
227-
CacheReadPricePerToken: 7.5e-8,
228-
SupportsCacheBreakdown: false,
225+
InputPricePerToken: 7.5e-7,
226+
OutputPricePerToken: 4.5e-6,
227+
CacheReadPricePerToken: 7.5e-8,
228+
SupportsCacheBreakdown: false,
229229
}
230230
s.fallbackPrices["gpt-5.4-nano"] = &ModelPricing{
231231
InputPricePerToken: 2e-7,

0 commit comments

Comments
 (0)