From 4bcc536fd2d93d3c70dcbe088f7e4e278926bd1f Mon Sep 17 00:00:00 2001 From: Yousif Astarabadi <6870090+yousifa@users.noreply.github.com> Date: Wed, 2 Jul 2025 00:03:27 -0700 Subject: [PATCH] added arg description in docstring for gemini live init --- src/pipecat/services/gemini_multimodal_live/gemini.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pipecat/services/gemini_multimodal_live/gemini.py b/src/pipecat/services/gemini_multimodal_live/gemini.py index 1fd6e7bbf..f873e9d84 100644 --- a/src/pipecat/services/gemini_multimodal_live/gemini.py +++ b/src/pipecat/services/gemini_multimodal_live/gemini.py @@ -499,6 +499,7 @@ class GeminiMultimodalLiveLLMService(LLMService): params: Configuration parameters for the model. Defaults to InputParams(). inference_on_context_initialization: Whether to generate a response when context is first set. Defaults to True. + file_api_base_url: Base URL for the file API. Defaults to the official Gemini Live endpoint. **kwargs: Additional arguments passed to parent LLMService. """ super().__init__(base_url=base_url, **kwargs)