Remove debug logging from _send_user_text method in Gemini multimodal service

This commit is contained in:
Pete
2025-07-20 18:04:57 -04:00
parent bd7a0f27cc
commit 1d69cd1a5e

View File

@@ -968,7 +968,6 @@ class GeminiMultimodalLiveLLMService(LLMService):
async def _send_user_text(self, text: str):
"""Send user text to Gemini Live API."""
logger.debug(f"Sending text to Gemini: {text}")
evt = events.TextInputMessage.from_text(text)
await self.send_client_event(evt)
# After sending text, we need to signal that the turn is complete.