agentik-sdk 0.2.0

Comprehensive, type-safe Rust SDK for the Anthropic API with streaming, tools, vision, files, and batch processing support.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod client;
pub mod auth;
pub mod streaming;
pub mod retry;

// Re-exports for convenience
pub use client::HttpClient;
pub use auth::AuthHandler;
pub use streaming::{HttpStreamClient, StreamRequestBuilder, StreamConfig};
pub use retry::{RetryPolicy, RetryCondition, RetryExecutor, RetryResult, default_retry, api_retry};