From fda905a36a9ab244c89e482d0c84b4c61a8f4f85 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sat, 2 Mar 2024 18:08:45 +0800 Subject: [PATCH] fixed unable to load config --- koboldcpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index c57c927fb..1c180ea33 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -2107,7 +2107,7 @@ def show_new_gui(): if len(dict["sdconfig"]) > 2: sd_threads_var.set(str(dict["sdconfig"][2])) if len(dict["sdconfig"]) > 3: - sd_quant_var.set(str(dict["sdconfig"][3])) + sd_quant_var.set(str(dict["sdconfig"][3])=="quant") def save_config(): file_type = [("KoboldCpp Settings", "*.kcpps")]