Spaces:
Build error
Build error
| """ | |
| 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" | |
| ] | |