From 4fa3890cec1706701da12651740d753d5f8a7af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 10 Mar 2026 12:55:16 -0700 Subject: [PATCH] Add deprecation stub for google/llm_openai.py --- src/pipecat/services/google/__init__.py | 2 +- src/pipecat/services/google/llm_openai.py | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 src/pipecat/services/google/llm_openai.py diff --git a/src/pipecat/services/google/__init__.py b/src/pipecat/services/google/__init__.py index 009f71f08..32b12e367 100644 --- a/src/pipecat/services/google/__init__.py +++ b/src/pipecat/services/google/__init__.py @@ -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 * diff --git a/src/pipecat/services/google/llm_openai.py b/src/pipecat/services/google/llm_openai.py new file mode 100644 index 000000000..f9d182e78 --- /dev/null +++ b/src/pipecat/services/google/llm_openai.py @@ -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