Remove SDK version logging on every Gemini call

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
michael 2026-01-07 14:30:42 -06:00
parent 7f4f659501
commit 1708bd75a4

View file

@ -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)