diff --git a/koboldcpp.py b/koboldcpp.py index 71762367145..2024c97d27a 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -1871,7 +1871,7 @@ def show_gui(): ctk.set_appearance_mode("dark") root = ctk.CTk() root.geometry(str(windowwidth) + "x" + str(windowheight)) - root.title("KoboldCpp v"+KcppVersion) + root.title(f"KoboldCpp v{KcppVersion}") gtooltip_box = None gtooltip_label = None @@ -3883,7 +3883,7 @@ def range_checker(arg: str): return f return range_checker - print("***\nWelcome to KoboldCpp - Version " + KcppVersion) # just update version manually + print(f"***\nWelcome to KoboldCpp - Version {KcppVersion}") # just update version manually # print("Python version: " + sys.version) parser = argparse.ArgumentParser(description='KoboldCpp Server') modelgroup = parser.add_mutually_exclusive_group() #we want to be backwards compatible with the unnamed positional args