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
//! Provider-neutral LLM infrastructure.
//!
//! This module hosts low-level clients/adapters for LLM backends that may not fit
//! the OpenAI-compatible `/chat/completions` shape.
//!
//! Current submodules:
//! - `ollama` - Minimal client for Ollama `/api/chat` (supports Ollama Cloud via local server)

pub mod ollama;