Add deprecation stub for google/gemini_live/llm_vertex.py

This commit is contained in:
Aleix Conchillo Flaqué
2026-03-10 13:00:02 -07:00
parent d086b9f138
commit ea09586db6
2 changed files with 19 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
from .file_api import GeminiFileAPI
from .llm import GeminiLiveLLMService
from .llm_vertex import GeminiLiveVertexLLMService
from .vertex.llm import GeminiLiveVertexLLMService
__all__ = [
"GeminiFileAPI",

View File

@@ -0,0 +1,18 @@
#
# Copyright (c) 2024-2026, Daily
#
# SPDX-License-Identifier: BSD 2-Clause License
#
"""Deprecated: use ``pipecat.services.google.gemini_live.vertex.llm`` instead."""
import warnings
warnings.warn(
"Module `pipecat.services.google.gemini_live.llm_vertex` is deprecated, "
"use `pipecat.services.google.gemini_live.vertex.llm` instead.",
DeprecationWarning,
stacklevel=2,
)
from pipecat.services.google.gemini_live.vertex.llm import * # noqa: E402, F401, F403