livekit-plugins-google 1.0.23__py3-none-any.whl → 1.1.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/__init__.py +3 -2
- livekit/plugins/google/beta/realtime/realtime_api.py +296 -118
- livekit/plugins/google/llm.py +60 -27
- livekit/plugins/google/stt.py +19 -12
- livekit/plugins/google/tools.py +11 -0
- livekit/plugins/google/tts.py +109 -136
- livekit/plugins/google/utils.py +39 -88
- livekit/plugins/google/version.py +1 -1
- {livekit_plugins_google-1.0.23.dist-info → livekit_plugins_google-1.1.0.dist-info}/METADATA +2 -2
- livekit_plugins_google-1.1.0.dist-info/RECORD +17 -0
- livekit_plugins_google-1.0.23.dist-info/RECORD +0 -16
- {livekit_plugins_google-1.0.23.dist-info → livekit_plugins_google-1.1.0.dist-info}/WHEEL +0 -0
@@ -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
|
|