1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! Codestral Provider //! //! Mistral's specialized code generation model API. //! Supports fill-in-the-middle (FIM) completion for code. mod config; mod error; mod model_info; mod provider; #[cfg(test)] mod tests; pub use config::CodestralConfig; pub use error::CodestralError; pub use model_info::get_model_info; pub use provider::CodestralProvider;