From 1489e447404f4e59d67603e84e637a58ba5a14a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 27 Jan 2025 13:46:18 -0800 Subject: [PATCH] gemini(multimodal live): fix model audio queue variable --- src/pipecat/services/gemini_multimodal_live/gemini.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/gemini_multimodal_live/gemini.py b/src/pipecat/services/gemini_multimodal_live/gemini.py index 5fee17478..9f355d1ba 100644 --- a/src/pipecat/services/gemini_multimodal_live/gemini.py +++ b/src/pipecat/services/gemini_multimodal_live/gemini.py @@ -692,7 +692,7 @@ class GeminiMultimodalLiveLLMService(LLMService): self._bot_text_buffer = "" if audio and self._transcribe_model_audio and self._context: - await self._transcribe_model_audio.put(audio) + await self._transcribe_model_audio_queue.put(audio) elif text: await self.push_frame(LLMFullResponseEndFrame())