Add deprecation stub for google/gemini_live/llm_vertex.py
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
from .file_api import GeminiFileAPI
|
from .file_api import GeminiFileAPI
|
||||||
from .llm import GeminiLiveLLMService
|
from .llm import GeminiLiveLLMService
|
||||||
from .llm_vertex import GeminiLiveVertexLLMService
|
from .vertex.llm import GeminiLiveVertexLLMService
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"GeminiFileAPI",
|
"GeminiFileAPI",
|
||||||
|
|||||||
18
src/pipecat/services/google/gemini_live/llm_vertex.py
Normal file
18
src/pipecat/services/google/gemini_live/llm_vertex.py
Normal 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
|
||||||
Reference in New Issue
Block a user