diff --git a/dependency/llama.cpp b/dependency/llama.cpp index 5f2d9584..bb33473f 160000 --- a/dependency/llama.cpp +++ b/dependency/llama.cpp @@ -1 +1 @@ -Subproject commit 5f2d95849269f4b847afc9563de763ff5daf2afe +Subproject commit bb33473f08db604e1f30334366032f0904e2a722 diff --git a/nexa/__init__.py b/nexa/__init__.py index 5e8c630d..b53e36d3 100644 --- a/nexa/__init__.py +++ b/nexa/__init__.py @@ -1 +1 @@ -__version__ = "0.0.9.1" +__version__ = "0.0.9.2" diff --git a/nexa/gguf/nexa_inference_audio_lm.py b/nexa/gguf/nexa_inference_audio_lm.py index 471e813e..5594c684 100644 --- a/nexa/gguf/nexa_inference_audio_lm.py +++ b/nexa/gguf/nexa_inference_audio_lm.py @@ -151,8 +151,8 @@ def run(self): while True: audio_path = self._get_valid_audio_path() user_input = nexa_prompt("Enter text (leave empty if no prompt): ") - - response = self.inference(audio_path, user_input) + with suppress_stdout_stderr(): + response = self.inference(audio_path, user_input) print(response) except KeyboardInterrupt: