reasonkit-core 0.1.8

The Reasoning Engine — Auditable Reasoning for Production AI | Rust-Native | Turn Prompts into Protocols
1
2
3
4
5
6
7
8
9
10
//! Ollama client (provider-neutral).
//!
//! This is a minimal, non-streaming (`stream:false`) client for Ollama's `/api/chat`.
//! It is intended to support **Ollama Cloud** via a locally running Ollama server
//! without downloading local model weights.

pub mod client;
pub mod types;

pub use client::{OllamaClient, OllamaClientError};