1 2 3 4 5 6 7 8 9 10 11
//! OpenRouter provider module //! //! Provides multi-model access with provider routing capabilities. mod client; mod routing; mod types; pub use client::*; pub use routing::*; pub use types::*;