Commit a102bed2 by CaIon

fix(model_ratio): update return value logic for gemini-2.5-flash-lite

parent 8004b4ff
...@@ -541,7 +541,7 @@ func getHardcodedCompletionModelRatio(name string) (float64, bool) { ...@@ -541,7 +541,7 @@ func getHardcodedCompletionModelRatio(name string) (float64, bool) {
if strings.HasPrefix(name, "gemini-2.5-flash-lite") { if strings.HasPrefix(name, "gemini-2.5-flash-lite") {
return 4, false return 4, false
} }
return 2.5 / 0.3, true return 2.5 / 0.3, false
} }
return 4, false return 4, 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 sign in to comment