//! Built-in LLM provider implementations. //! //! Each provider integration lives in its own module so that maintenance //! stays focused and configuration remains clear. pub mod ollama; pub use ollama::OllamaProvider;