Add deprecation stub for google/llm_openai.py

This commit is contained in:
Aleix Conchillo Flaqué
2026-03-10 12:55:16 -07:00
parent 8ea006739c
commit 4fa3890cec
2 changed files with 19 additions and 1 deletions

View File

@@ -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 *

View 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