1 2 3 4 5 6 7 8 9
//! Interactive CLI for `flarer`. Gated behind the `cli` feature. pub mod args; pub mod interactive; pub mod schema_builder; pub use args::{Args, OutputMode}; pub use interactive::{InteractiveConfig, interactive_init, interactive_prompt}; pub use schema_builder::build_response_format_interactive;