1 2 3 4 5 6 7 8 9
//! TUI module for displaying real-time stats dashboard. //! //! This module provides a terminal-based dashboard for monitoring //! LLMSim server statistics in real-time. mod app; mod ui; pub use app::{run_dashboard, DashboardConfig};