From ceb548f407a754852b6333ab5d092a1e89eda24a Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Thu, 5 Feb 2026 22:08:59 +0800 Subject: [PATCH] update text (+1 squashed commits) Squashed commits: [2a1532783] update text --- koboldcpp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koboldcpp.py b/koboldcpp.py index 1430a7ba6..774724e86 100755 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -6969,7 +6969,7 @@ def show_gui(): noobmodels.append(entry[:-6]) for m in resp["siblings"]: entry = m["rfilename"] - if entry.endswith(".kcppt") and "MedSpec" in entry: + if entry.endswith(".kcppt") and "MidSpec" in entry: noobmodels.append(entry[:-6]) for m in resp["siblings"]: entry = m["rfilename"] @@ -6992,7 +6992,7 @@ def show_gui(): noobbox = ctk.CTkComboBox(popup, values=[], width=280, variable=noobbox_var, state="readonly") noobbox.pack(pady=5) ctk.CTkButton(popup, text="Load Template", command=load_noob_template).pack(pady=5) - ctk.CTkLabel(popup, text="LowSpec = 6GB+ VRAM\nMidSpec = 12GB+ VRAM\nHighSpec = 24GB+ VRAM").pack(pady=(10, 0)) + ctk.CTkLabel(popup, text="LowSpec = Recommend 6GB VRAM\nMidSpec = Recommend 12GB VRAM\nHighSpec = Recommend 24GB VRAM").pack(pady=(10, 0)) ctk.CTkLabel(popup, text="Everything = All Features Text = Text Generation\nImages = Image Generation Vision = Image Recognition\nVoice = Speech Generation Audio = Speech Recognition").pack(pady=(10, 0)) fetch_noob_templates() popup.transient(root)