siumai 0.10.3

A unified LLM interface library for Rust
Documentation
//! Anthropic Provider Module
//!
//! Modular implementation of Anthropic Claude API client with capability separation.

pub mod builder;
pub mod cache;
pub mod chat;
pub mod client;
pub mod model_constants;
pub mod models;
pub mod request;
pub mod streaming;
pub mod thinking;
pub mod types;
pub mod utils;

// Re-export main types for backward compatibility
pub use builder::AnthropicBuilder;
pub use client::AnthropicClient;
pub use types::*;

// Re-export capability implementations
pub use chat::AnthropicChatCapability;
pub use models::AnthropicModels;