diff --git a/src/models/llms_interface.py b/src/models/llms_interface.py index 31ed9fc5c5373a96f477c2fcd84cc7dd3ef00a59..74b411708fc36cc1469250de788f37e15dd875b0 100644 --- a/src/models/llms_interface.py +++ b/src/models/llms_interface.py @@ -28,8 +28,6 @@ def ensure_model_installed(model_name): if model_name not in installed_model_names: print(f"Model '{model_name}' not found. Installing...") ollama.pull(model_name) - else: - print(f"Model '{model_name}' is already installed.") class LLM: