Remove debug logging from _send_user_text method in Gemini multimodal service
This commit is contained in:
@@ -968,7 +968,6 @@ class GeminiMultimodalLiveLLMService(LLMService):
|
|||||||
|
|
||||||
async def _send_user_text(self, text: str):
|
async def _send_user_text(self, text: str):
|
||||||
"""Send user text to Gemini Live API."""
|
"""Send user text to Gemini Live API."""
|
||||||
logger.debug(f"Sending text to Gemini: {text}")
|
|
||||||
evt = events.TextInputMessage.from_text(text)
|
evt = events.TextInputMessage.from_text(text)
|
||||||
await self.send_client_event(evt)
|
await self.send_client_event(evt)
|
||||||
# After sending text, we need to signal that the turn is complete.
|
# After sending text, we need to signal that the turn is complete.
|
||||||
|
|||||||
Reference in New Issue
Block a user