oxi-cli 0.6.17

Terminal-based AI coding assistant — multi-provider, streaming-first, extensible
1
2
3
4
5
6
7
8
9
10
11
//! TUI interactive mode — module structure.
//!
//! Provides a flicker-free terminal chat interface using ratatui.

mod app;
mod handlers;
mod render;
mod slash;
mod welcome;

pub use app::run_tui_interactive;