reframe / ui_components /__init__.py
macayaven's picture
feat: initial implementation of the re-frame Cognitive Reframing Assistant, including core functionality, UI components, and localization support. Added .gitignore, configuration files, and initial tests.
27fd523
Raw
History Blame
177 Bytes
"""
UI Components for re-frame Gradio app
"""
from .landing import create_landing_tab
from .learn import create_learn_tab
__all__ = ['create_landing_tab', 'create_learn_tab']