From 24a4b323eb4e636a64f4425ce59cab49647622f1 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sun, 18 Jun 2023 22:28:28 +0800 Subject: [PATCH] chore: set the fallback model ratio to 30 --- common/model-ratio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/model-ratio.go b/common/model-ratio.go index 5aa8f2d8..d6160c90 100644 --- a/common/model-ratio.go +++ b/common/model-ratio.go @@ -54,7 +54,7 @@ func GetModelRatio(name string) float64 { ratio, ok := ModelRatio[name] if !ok { SysError("Model ratio not found: " + name) - return 1 + return 30 } return ratio }