1 2 3 4 5 6 7 8 9 10 11
//! Ollama API client library. //! //! A type-safe, async client for the Ollama REST API. mod client; mod error; mod types; pub use client::{Client, ClientBuilder}; pub use error::{OllamaError, Result}; pub use types::*;