lib_client_ollama/
lib.rs

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