agentik-sdk 0.2.0

Comprehensive, type-safe Rust SDK for the Anthropic API with streaming, tools, vision, files, and batch processing support.
Documentation
# agentik-sdk

Comprehensive, type-safe Rust SDK for the Anthropic API.

## Features

- Streaming responses (SSE)
- Tool use / function calling
- Vision / image input
- File uploads
- Batch processing
- Async/await based

## Usage

```toml
[dependencies]
agentik-sdk = "0.1"
```

```rust
use agentik_sdk::Anthropic;

let client = Anthropic::new("your-api-key")?;
let response = client.messages().create(&request).await?;
```