1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! TUI interactive mode — module structure. //! //! Provides a flicker-free terminal chat interface using ratatui. mod app; mod completion; mod handlers; mod overlay; mod render; mod slash; pub mod v2_bridge; mod v2_overlay_adapter; mod v2_render; mod welcome; pub use app::run_tui_interactive; pub use app::run_tui_interactive_with_continue;