1 2 3 4 5 6 7
//! Backend implementations for invoking AI tools. pub mod copilot; pub mod ollama; pub use copilot::Copilot; pub use ollama::Ollama;