oxi-tui 0.62.0

Terminal UI widgets and theme system for oxi, built on ratatui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tape component implementations — chat message types as `Component`s.
//!
//! These are the tape engine's production transcript building blocks; oxi-cli
//! composes them into main-screen rows while ratatui remains overlay-only.

pub mod streaming;
pub mod text;
pub mod tool_call;

pub use streaming::StreamingMessage;
pub use text::TextMessage;
pub use tool_call::ToolCallBlock;