mindfork 0.11.0

A terminal AI chat written in Rust: local models via llama.cpp or OpenAI, Anthropic, Gemini and Grok in the cloud, with persistent memory, notes, RAG and tools.
1
2
3
4
5
6
7
8
9
//! Anthropic (Claude) inference backend — a separate Messages API protocol
//! (`/v1/messages`). Implements [`EngineBackend`](super::contract::EngineBackend)
//! via [`AnthropicClient`]. See ADR 0004, Phase 2.

pub mod client;
mod wire;

pub(crate) use client::ANTHROPIC_VERSION;
pub use client::AnthropicClient;