livekit-plugins-google 0.11.3__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- livekit/plugins/google/beta/realtime/__init__.py +1 -5
- livekit/plugins/google/beta/realtime/api_proto.py +2 -4
- livekit/plugins/google/beta/realtime/realtime_api.py +407 -449
- livekit/plugins/google/llm.py +158 -220
- livekit/plugins/google/stt.py +80 -115
- livekit/plugins/google/tts.py +40 -56
- livekit/plugins/google/utils.py +251 -0
- livekit/plugins/google/version.py +1 -1
- {livekit_plugins_google-0.11.3.dist-info → livekit_plugins_google-1.0.0.dist-info}/METADATA +11 -21
- livekit_plugins_google-1.0.0.dist-info/RECORD +16 -0
- {livekit_plugins_google-0.11.3.dist-info → livekit_plugins_google-1.0.0.dist-info}/WHEEL +1 -2
- livekit/plugins/google/_utils.py +0 -199
- livekit/plugins/google/beta/realtime/transcriber.py +0 -270
- livekit_plugins_google-0.11.3.dist-info/RECORD +0 -18
- livekit_plugins_google-0.11.3.dist-info/top_level.txt +0 -1
@@ -1,16 +1,14 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
|
-
from
|
3
|
+
from collections.abc import Sequence
|
4
|
+
from typing import Literal, Union
|
4
5
|
|
5
6
|
from google.genai import types
|
6
7
|
|
7
|
-
from ..._utils import _build_gemini_ctx, _build_tools
|
8
|
-
|
9
8
|
LiveAPIModels = Literal["gemini-2.0-flash-exp"]
|
10
9
|
|
11
10
|
Voice = Literal["Puck", "Charon", "Kore", "Fenrir", "Aoede"]
|
12
11
|
|
13
|
-
__all__ = ["_build_tools", "ClientEvents", "_build_gemini_ctx"]
|
14
12
|
|
15
13
|
ClientEvents = Union[
|
16
14
|
types.ContentListUnion,
|