open-voice-agent / src /agent /runtime /__init__.py
dvalle08's picture
refactor: Restructure agent components and remove unused files
a1d8504
raw
history blame contribute delete
218 Bytes
"""Runtime package for LiveKit agent execution."""
from src.agent.runtime.assistant import Assistant
from src.agent.runtime.session import server, session_handler
__all__ = ["Assistant", "server", "session_handler"]