ai-agent-sdk 0.5.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Service modules for agent functionality.
//!
//! This module provides various services similar to claude code's services:
//! - Retry logic with exponential backoff
//! - Rate limiting
//! - Token estimation
//! - Model cost calculation

pub mod retry;
pub mod rate_limit;
pub mod token_estimation;
pub mod model_cost;