LifeAdmin-AI / ui /__init__.py
Maheen001's picture
Create ui/__init__.py
377999a verified
raw
history blame
355 Bytes
"""
LifeAdmin AI - UI Module
Gradio interface components:
- manual_dashboard: Visual tool-by-tool interface
- voice_agent_ui: Autonomous voice-controlled agent interface
"""
from .manual_dashboard import create_manual_dashboard
from .voice_agent_ui import create_voice_agent_ui
__all__ = [
'create_manual_dashboard',
'create_voice_agent_ui'
]