From 5ca267dc9c4eb7cdd0163ad57e9e29a4d2b49389 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sat, 4 May 2024 23:28:21 +0800 Subject: [PATCH] remove unnecessary prints --- koboldcpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index edf732bc3..265228dc2 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -3069,7 +3069,7 @@ def main(launch_args,start_server=True): print(args) # Flush stdout for win32 issue with regards to piping in terminals, # especially before handing over to C++ context. - print(f"==========\nLoading model: {modelname} \n[Threads: {args.threads}, BlasThreads: {args.blasthreads}, SmartContext: {args.smartcontext}, ContextShift: {not (args.noshift)}]", flush=True) + print(f"==========\nLoading model: {modelname}", flush=True) loadok = load_model(modelname) print("Load Text Model OK: " + str(loadok))