From 3edac4342626a6e7e9999fa52314473f909ea241 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sun, 24 Sep 2023 07:13:00 -0700 Subject: [PATCH] Remove print statement --- modules/llamacpp_model.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/llamacpp_model.py b/modules/llamacpp_model.py index 72b04aaf..83d02b7d 100644 --- a/modules/llamacpp_model.py +++ b/modules/llamacpp_model.py @@ -114,7 +114,6 @@ class LlamaCppModel: if fname != self.grammar_file: self.grammar_file = fname p = Path(f'grammars/{fname}') - print(p) if p.exists(): logger.info(f'Loading the following grammar file: {p}') self.grammar = llama_cpp_lib().LlamaGrammar.from_file(str(p))