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.
@@ -1,8 +1,4 @@
1
- from .api_proto import (
2
- ClientEvents,
3
- LiveAPIModels,
4
- Voice,
5
- )
1
+ from .api_proto import ClientEvents, LiveAPIModels, Voice
6
2
  from .realtime_api import RealtimeModel
7
3
 
8
4
  __all__ = [
@@ -1,16 +1,14 @@
1
1
  from __future__ import annotations
2
2
 
3
- from typing import Literal, Sequence, Union
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,