remove print

This commit is contained in:
Andrei Betlen 2023-09-13 21:12:27 -04:00
parent 517f9ed80b
commit 9e345a47a2

View file

@ -333,7 +333,6 @@ class Llama:
self.ctx = llama_cpp.llama_new_context_with_model(self.model, self.params) self.ctx = llama_cpp.llama_new_context_with_model(self.model, self.params)
else: else:
with suppress_stdout_stderr(): with suppress_stdout_stderr():
print("here")
self.ctx = llama_cpp.llama_new_context_with_model( self.ctx = llama_cpp.llama_new_context_with_model(
self.model, self.params self.model, self.params
) )