21 lines
616 B
Python
21 lines
616 B
Python
"""
|
|
UI components for the Evalscope dashboard.
|
|
"""
|
|
from .app_ui import create_app_ui
|
|
from .multi_model import MultiModelComponents, create_multi_model_tab
|
|
from .sidebar import SidebarComponents, create_sidebar
|
|
from .single_model import SingleModelComponents, create_single_model_tab
|
|
from .visualization import VisualizationComponents, create_visualization
|
|
|
|
__all__ = [
|
|
'create_app_ui',
|
|
'SidebarComponents',
|
|
'create_sidebar',
|
|
'VisualizationComponents',
|
|
'create_visualization',
|
|
'SingleModelComponents',
|
|
'create_single_model_tab',
|
|
'MultiModelComponents',
|
|
'create_multi_model_tab',
|
|
]
|