From 61ca3a0d30d77f667febf2818d61b5f9d397b769 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sat, 27 Jan 2024 17:05:33 +0800 Subject: [PATCH] show total of 8 backends --- koboldcpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index 3a59f7889..101e9abf8 100755 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -1455,7 +1455,7 @@ def show_new_gui(): # backend count label with the tooltip function nl = '\n' tooltxt = f"Number of backends you have built and available." + (f"\n\nMissing Backends: \n\n{nl.join(antirunopts)}" if len(runopts) != 6 else "") - num_backends_built = makelabel(parent, str(len(runopts)) + f"/7", 5, 2,tooltxt) + num_backends_built = makelabel(parent, str(len(runopts)) + f"/8", 5, 2,tooltxt) num_backends_built.grid(row=1, column=1, padx=195, pady=0) num_backends_built.configure(text_color="#00ff00")