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