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.
@@ -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