saya-cli 0.4.1

Database-aware AI agent for the terminal: full-screen TUI, schema discovery, and bounded read-only SQL over PostgreSQL, MySQL, SQLite, DuckDB, and Snowflake.
//! Input editing, autocomplete popup, history recall, and clipboard queueing.

mod clipboard;
mod menu;
mod submit;

// Test-only re-export so the `mod tests` sibling (moved byte-identical via
// `#[path]`) keeps resolving its `use super::*` names.
#[cfg(test)]
pub(crate) use crate::interactive::tui::transcript::BlockKind;

#[cfg(test)]
#[path = "input_actions_tests.rs"]
mod tests;

#[cfg(test)]
#[path = "draft_stash_tests.rs"]
mod draft_stash_tests;

#[cfg(test)]
#[path = "queue_tests.rs"]
mod queue_tests;

#[cfg(test)]
#[path = "revise_tests.rs"]
mod revise_tests;