Add deprecation stub for google/llm_openai.py
This commit is contained in:
@@ -12,7 +12,7 @@ from .frames import *
|
||||
from .gemini_live import *
|
||||
from .image import *
|
||||
from .llm import *
|
||||
from .llm_openai import *
|
||||
from .openai import *
|
||||
from .rtvi import *
|
||||
from .stt import *
|
||||
from .tts import *
|
||||
|
||||
18
src/pipecat/services/google/llm_openai.py
Normal file
18
src/pipecat/services/google/llm_openai.py
Normal file
@@ -0,0 +1,18 @@
|
||||
#
|
||||
# Copyright (c) 2024-2026, Daily
|
||||
#
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
"""Deprecated: use ``pipecat.services.google.openai.llm`` instead."""
|
||||
|
||||
import warnings
|
||||
|
||||
warnings.warn(
|
||||
"Module `pipecat.services.google.llm_openai` is deprecated, "
|
||||
"use `pipecat.services.google.openai.llm` instead.",
|
||||
DeprecationWarning,
|
||||
stacklevel=2,
|
||||
)
|
||||
|
||||
from pipecat.services.google.openai.llm import * # noqa: E402, F401, F403
|
||||
Reference in New Issue
Block a user