Commit 2993ce37 by 1808837298@qq.com

fix: update DeepSeek reasoner model ratio check

parent 56c39ef1
...@@ -405,7 +405,7 @@ func GetCompletionRatio(name string) float64 { ...@@ -405,7 +405,7 @@ func GetCompletionRatio(name string) float64 {
} }
} }
if strings.HasPrefix(name, "deepseek") { if strings.HasPrefix(name, "deepseek") {
if name == "deepseek-reasoner" { if strings.Contains(name, "reasoner") {
return 4 return 4
} }
return 2 return 2
......
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