kova-sdk 0.9.0

Async-first Rust library for building LLM-powered agents with tool calling, streaming, MCP, and multi-agent orchestration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Native Anthropic (Messages API) provider.
//!
//! Speaks `POST /v1/messages` directly: streaming SSE, tool use, extended
//! (adaptive) thinking with signed thinking-block round-trip, and automatic
//! prompt caching (cache read/write tokens surface in `UsageStats`).

mod config;
mod convert;
mod provider;
mod types;

pub use config::AnthropicProviderConfig;
pub use provider::AnthropicProvider;