diff --git a/backend/app/services/llm_service.py b/backend/app/services/llm_service.py index 5e04b842..f16e6e3c 100755 --- a/backend/app/services/llm_service.py +++ b/backend/app/services/llm_service.py @@ -31,10 +31,6 @@ def get_gemini_client(): when caching clients in ASGI environments where requests may come on different event loops. The overhead is minimal compared to the LLM API call. """ - # Log SDK version on first call for debugging - import google.genai as genai_pkg - if hasattr(genai_pkg, '__version__'): - print(f"google-genai SDK version: {genai_pkg.__version__}") return genai.Client(api_key=GEMINI_API_KEY)