From 1708bd75a48e4c63a48ef9b4a546fd09243c07d9 Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 7 Jan 2026 14:30:42 -0600 Subject: [PATCH] Remove SDK version logging on every Gemini call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/app/services/llm_service.py | 4 ---- 1 file changed, 4 deletions(-) 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)