File size: 263 Bytes
5e1a30c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""
Real-time Analytics Dashboard.

This module provides a Plotly Dash-based dashboard for real-time monitoring
of the advanced retriever system performance and quality metrics.
"""

from .app import create_dashboard_app

__all__ = [
    "create_dashboard_app",
]