BeatDebate / src /ui /__init__.py
SulmanK's picture
Phase 3 Frontend Implementation Complete
565ca46
Raw
History Blame Contribute Delete
428 Bytes
"""
UI Module for BeatDebate
This module contains the user interface components for the BeatDebate
music recommendation system.
"""
from .chat_interface import BeatDebateChatInterface, create_chat_interface
from .response_formatter import ResponseFormatter
from .planning_display import PlanningDisplay
__all__ = [
"BeatDebateChatInterface",
"create_chat_interface",
"ResponseFormatter",
"PlanningDisplay"
]