agent-code-lib 0.16.1

Agent engine library: LLM providers, tools, query loop, memory
Documentation
//! LLM client layer.
//!
//! Handles all communication with LLM APIs. Supports OpenAI-compatible
//! and Anthropic-native APIs with streaming via Server-Sent Events (SSE).
//!
//! # Architecture
//!
//! - `client` — HTTP client with retry logic and streaming
//! - `message` — Message types for the conversation protocol
//! - `stream` — SSE parser that yields `StreamEvent` values

pub mod anthropic;
pub mod azure_openai;
pub mod client;
pub mod message;
pub mod normalize;
pub mod openai;
pub mod provider;
pub mod retry;
pub mod stream;