From 8ee28b37cdd31811294ed077c0947a081004fcbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Fri, 10 Oct 2025 06:41:19 -0700 Subject: [PATCH] google: rename google.gemini_live.vertext to google.gemini_live.llm_vertex --- examples/foundational/26h-gemini-multimodal-live-vertex.py | 2 +- src/pipecat/services/google/gemini_live/__init__.py | 2 +- .../services/google/gemini_live/{vertex.py => llm_vertex.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/pipecat/services/google/gemini_live/{vertex.py => llm_vertex.py} (100%) diff --git a/examples/foundational/26h-gemini-multimodal-live-vertex.py b/examples/foundational/26h-gemini-multimodal-live-vertex.py index 97ebbbbde..79bfac531 100644 --- a/examples/foundational/26h-gemini-multimodal-live-vertex.py +++ b/examples/foundational/26h-gemini-multimodal-live-vertex.py @@ -17,7 +17,7 @@ from pipecat.pipeline.runner import PipelineRunner from pipecat.pipeline.task import PipelineParams, PipelineTask from pipecat.runner.types import RunnerArguments from pipecat.runner.utils import create_transport -from pipecat.services.google.gemini_live.vertex import GeminiLiveVertexLLMService +from pipecat.services.google.gemini_live.llm_vertex import GeminiLiveVertexLLMService from pipecat.transports.base_transport import BaseTransport, TransportParams from pipecat.transports.daily.transport import DailyParams from pipecat.transports.websocket.fastapi import FastAPIWebsocketParams diff --git a/src/pipecat/services/google/gemini_live/__init__.py b/src/pipecat/services/google/gemini_live/__init__.py index 1ab28050e..142ca2a83 100644 --- a/src/pipecat/services/google/gemini_live/__init__.py +++ b/src/pipecat/services/google/gemini_live/__init__.py @@ -1,3 +1,3 @@ from .file_api import GeminiFileAPI from .llm import GeminiLiveLLMService -from .vertex import GeminiLiveVertexLLMService +from .llm_vertex import GeminiLiveVertexLLMService diff --git a/src/pipecat/services/google/gemini_live/vertex.py b/src/pipecat/services/google/gemini_live/llm_vertex.py similarity index 100% rename from src/pipecat/services/google/gemini_live/vertex.py rename to src/pipecat/services/google/gemini_live/llm_vertex.py