livekit-plugins-google 1.0.23__tar.gz → 1.1.0__tar.gz

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.
Files changed (18) hide show
  1. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/.gitignore +3 -0
  2. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/PKG-INFO +2 -2
  3. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/__init__.py +3 -2
  4. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/beta/realtime/realtime_api.py +296 -118
  5. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/llm.py +60 -27
  6. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/stt.py +19 -12
  7. livekit_plugins_google-1.1.0/livekit/plugins/google/tools.py +11 -0
  8. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/tts.py +109 -136
  9. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/utils.py +39 -88
  10. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/version.py +1 -1
  11. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/pyproject.toml +1 -1
  12. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/README.md +0 -0
  13. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/beta/__init__.py +0 -0
  14. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/beta/realtime/__init__.py +0 -0
  15. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/beta/realtime/api_proto.py +0 -0
  16. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/log.py +0 -0
  17. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/models.py +0 -0
  18. {livekit_plugins_google-1.0.23 → livekit_plugins_google-1.1.0}/livekit/plugins/google/py.typed +0 -0
@@ -146,6 +146,9 @@ venv.bak/
146
146
  .dmypy.json
147
147
  dmypy.json
148
148
 
149
+ # trunk
150
+ .trunk/
151
+
149
152
  # Pyre type checker
150
153
  .pyre/
151
154
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-google
3
- Version: 1.0.23
3
+ Version: 1.1.0
4
4
  Summary: Agent Framework plugin for services from Google Cloud
5
5
  Project-URL: Documentation, https://docs.livekit.io
6
6
  Project-URL: Website, https://livekit.io/
@@ -22,7 +22,7 @@ Requires-Dist: google-auth<3,>=2
22
22
  Requires-Dist: google-cloud-speech<3,>=2
23
23
  Requires-Dist: google-cloud-texttospeech<3,>=2.24
24
24
  Requires-Dist: google-genai>=v1.16.1
25
- Requires-Dist: livekit-agents>=1.0.23
25
+ Requires-Dist: livekit-agents>=1.1.0
26
26
  Description-Content-Type: text/markdown
27
27
 
28
28
  # Google AI plugin for LiveKit Agents
@@ -22,17 +22,18 @@ See https://docs.livekit.io/agents/integrations/stt/google/ for more information
22
22
  from . import beta
23
23
  from .llm import LLM
24
24
  from .stt import STT, SpeechStream
25
+ from .tools import _LLMTool
25
26
  from .tts import TTS
26
27
  from .version import __version__
27
28
 
28
- __all__ = ["STT", "TTS", "SpeechStream", "__version__", "beta", "LLM"]
29
+ __all__ = ["STT", "TTS", "SpeechStream", "__version__", "beta", "LLM", "_LLMTool"]
29
30
  from livekit.agents import Plugin
30
31
 
31
32
  from .log import logger
32
33
 
33
34
 
34
35
  class GooglePlugin(Plugin):
35
- def __init__(self):
36
+ def __init__(self) -> None:
36
37
  super().__init__(__name__, __version__, __package__, logger)
37
38
 
38
39