anthropic-rust-sdk 0.1.0

Anthropic Claude API client for Rust, synced from anthropic-sdk-typescript
Documentation
//! Anthropic Claude API Rust SDK。
//!
//! 由 [anthropic-sdk-typescript](https://github.com/anthropics/anthropic-sdk-typescript) 同步而来。

pub mod client;
pub mod core;
pub mod helpers;
pub mod internal;
pub mod runtime;
pub mod resources;

pub use client::{Anthropic, ClientOptions, AI_PROMPT, HUMAN_PROMPT};
pub use core::error::*;
pub use core::middleware::*;
pub use core::pagination::*;
pub use core::streaming::*;
pub use helpers::*;
pub use runtime::*;
pub use resources::*;