diff --git a/src/LLM/ServerVideoLVLM.py b/src/LLM/ServerVideoLVLM.py index 7e58372..513e842 100644 --- a/src/LLM/ServerVideoLVLM.py +++ b/src/LLM/ServerVideoLVLM.py @@ -64,6 +64,8 @@ def _execute_ollama_stop(model: str): ["ollama", "stop", model], capture_output=True, text=True, check=True ) output = result.stdout + print("stdout 'ollama stop':") + print(output) except subprocess.CalledProcessError as e: print(f"Error : {e}")