From 99f008e9279b9565c21fc9585d4aaabf0aa7991b Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Mon, 6 Oct 2025 15:54:56 -0400 Subject: [PATCH] Make a note in our examples that there's an issue with Gemini Live + Vertex around specifying a modality other than AUDIO --- examples/foundational/26d-gemini-multimodal-live-text.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/foundational/26d-gemini-multimodal-live-text.py b/examples/foundational/26d-gemini-multimodal-live-text.py index 667887b03..dd3e0d65b 100644 --- a/examples/foundational/26d-gemini-multimodal-live-text.py +++ b/examples/foundational/26d-gemini-multimodal-live-text.py @@ -80,6 +80,8 @@ transport_params = { async def run_bot(transport: BaseTransport, runner_args: RunnerArguments): logger.info(f"Starting bot") + # KNOWN ISSUE: If using GeminiVertexMultimodalLiveLLMService, it appears + # you cannot specify a modality other than AUDIO. llm = GeminiMultimodalLiveLLMService( api_key=os.getenv("GOOGLE_API_KEY"), system_instruction=SYSTEM_INSTRUCTION,