ollama-sdk 0.4.1

An idiomatic, unofficial Rust client for the Ollama API with support for streaming, tool calling, and custom transports.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains data structures for requests and responses to the Ollama API.
//!
//! This module defines the various types used to interact with the Ollama server,
//! including chat messages, generation requests, model information, and shared utilities.

pub mod chat;
pub mod generate;
mod http;
mod models;
mod shared;

pub use http::*;
pub use models::*;
pub use shared::*;