oli-tui 0.1.3

A simple, blazingly fast TUI based AI coding assistant
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod agent;
pub mod apis;
pub mod app;
mod errors;
mod models;
mod prompts;
pub mod tools;
mod ui;

// Re-export App and UI for the main application
pub use app::state::App;
pub use app::state::AppState;
pub use ui::run_app;