14 lines
271 B
Python
14 lines
271 B
Python
from .. import realtime
|
|
from .gemini_tts import TTS as GeminiTTS
|
|
|
|
__all__ = ["GeminiTTS", "realtime"]
|
|
|
|
# Cleanup docs of unexported modules
|
|
_module = dir()
|
|
NOT_IN_ALL = [m for m in _module if m not in __all__]
|
|
|
|
__pdoc__ = {}
|
|
|
|
for n in NOT_IN_ALL:
|
|
__pdoc__[n] = False
|