16 lines
287 B
Python
16 lines
287 B
Python
from .realtime_model import RealtimeModel, RealtimeSession
|
|
|
|
__all__ = [
|
|
"RealtimeSession",
|
|
"RealtimeModel",
|
|
]
|
|
|
|
# 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
|