Commit 58f21e4b authored by erio's avatar erio
Browse files

fix: correct gofmt alignment in gemini-3.1-pro fallback pricing

parent 5bd7408b
...@@ -139,9 +139,9 @@ func (s *BillingService) initFallbackPricing() { ...@@ -139,9 +139,9 @@ func (s *BillingService) initFallbackPricing() {
// Gemini 3.1 Pro // Gemini 3.1 Pro
s.fallbackPrices["gemini-3.1-pro"] = &ModelPricing{ s.fallbackPrices["gemini-3.1-pro"] = &ModelPricing{
InputPricePerToken: 2e-6, // $2 per MTok InputPricePerToken: 2e-6, // $2 per MTok
OutputPricePerToken: 12e-6, // $12 per MTok OutputPricePerToken: 12e-6, // $12 per MTok
CacheCreationPricePerToken: 2e-6, // $2 per MTok CacheCreationPricePerToken: 2e-6, // $2 per MTok
CacheReadPricePerToken: 0.2e-6, // $0.20 per MTok CacheReadPricePerToken: 0.2e-6, // $0.20 per MTok
SupportsCacheBreakdown: false, SupportsCacheBreakdown: false,
} }
......
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