| """ | |
| TextAI v2 UI Module | |
| Gradio-based interface components | |
| """ | |
| from ui.theme import THEME_CSS, get_theme | |
| from ui.chat import build_chat_ui | |
| from ui.models import build_model_manager_ui | |
| __all__ = ['THEME_CSS', 'get_theme', 'build_chat_ui', 'build_model_manager_ui'] | |