google: rename google.gemini_live.gemini to google.gemini_live.llm

This commit is contained in:
Aleix Conchillo Flaqué
2025-10-09 21:56:54 -07:00
parent 86127167fb
commit 7cec013666
16 changed files with 20 additions and 27 deletions

View File

@@ -18,10 +18,10 @@ voice transcription, streaming responses, and tool usage.
import warnings
from pipecat.services.google.gemini_live.gemini import (
from pipecat.services.google.gemini_live.llm import (
ContextWindowCompressionParams as _ContextWindowCompressionParams,
)
from pipecat.services.google.gemini_live.gemini import (
from pipecat.services.google.gemini_live.llm import (
GeminiLiveAssistantContextAggregator,
GeminiLiveContext,
GeminiLiveContextAggregatorPair,
@@ -29,11 +29,9 @@ from pipecat.services.google.gemini_live.gemini import (
GeminiLiveUserContextAggregator,
GeminiModalities,
)
from pipecat.services.google.gemini_live.gemini import (
GeminiMediaResolution as _GeminiMediaResolution,
)
from pipecat.services.google.gemini_live.gemini import GeminiVADParams as _GeminiVADParams
from pipecat.services.google.gemini_live.gemini import InputParams as _InputParams
from pipecat.services.google.gemini_live.llm import GeminiMediaResolution as _GeminiMediaResolution
from pipecat.services.google.gemini_live.llm import GeminiVADParams as _GeminiVADParams
from pipecat.services.google.gemini_live.llm import InputParams as _InputParams
with warnings.catch_warnings():
warnings.simplefilter("always")