From 9282b00747d80e7ad218cab3a10e05fc8ff3e16e Mon Sep 17 00:00:00 2001
From: Thomas Wolf <thomas_wolf@online.de>
Date: Thu, 27 Mar 2025 11:59:27 +0100
Subject: [PATCH] - forgot removing print for debug

---
 src/models/llms_interface.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/models/llms_interface.py b/src/models/llms_interface.py
index 31ed9fc..74b4117 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:
-- 
GitLab