feat: 更新模型和模型倍率

This commit is contained in:
HynoR
2025-01-21 00:53:10 +08:00
parent 5387d7f4f7
commit 6e2c871015
2 changed files with 5 additions and 2 deletions

View File

@@ -401,10 +401,13 @@ func GetCompletionRatio(name string) float64 {
case "command-r-plus-08-2024":
return 4
default:
return 2
return 4
}
}
if strings.HasPrefix(name, "deepseek") {
if name == "deepseek-reasoner" {
return 4
}
return 2
}
if strings.HasPrefix(name, "ERNIE-Speed-") {

View File

@@ -1,7 +1,7 @@
package deepseek
var ModelList = []string{
"deepseek-chat", "deepseek-coder",
"deepseek-chat", "deepseek-reasoner",
}
var ChannelName = "deepseek"