chore: set the fallback model ratio to 30

This commit is contained in:
JustSong
2023-06-18 22:28:28 +08:00
parent f1e77d6244
commit 23e901fd6a
+1 -1
View File
@@ -54,7 +54,7 @@ func GetModelRatio(name string) float64 {
ratio, ok := ModelRatio[name] ratio, ok := ModelRatio[name]
if !ok { if !ok {
SysError("Model ratio not found: " + name) SysError("Model ratio not found: " + name)
return 1 return 30
} }
return ratio return ratio
} }