Deletes the `owlen-ollama` Cargo.toml and source files, fully removing the Ollama provider from the workspace. This aligns the project with the MCP‑only architecture and eliminates direct provider dependencies.
9 lines
222 B
Rust
9 lines
222 B
Rust
//! 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;
|