Update imports to use new google.vertex and google.openai paths

This commit is contained in:
Aleix Conchillo Flaqué
2026-03-10 12:58:04 -07:00
parent 4fa3890cec
commit b23652caa6
5 changed files with 7 additions and 7 deletions

View File

@@ -13,12 +13,12 @@ from pipecat.services import DeprecatedModuleProxy
from .frames import *
from .image import *
from .llm import *
from .llm_openai import *
from .llm_vertex import *
from .openai import *
from .rtvi import *
from .stt import *
from .tts import *
from .vertex import *
sys.modules[__name__] = DeprecatedModuleProxy(
globals(), "google", "google.[frames,image,llm,llm_openai,llm_vertex,rtvi,stt,tts]"
globals(), "google", "google.[frames,image,llm,openai,vertex,rtvi,stt,tts]"
)