Metadata-Version: 2.4
Name: agentbeam
Version: 0.1.0
Summary: Monitor, debug, and manage the cost of AI agents in production
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
Provides-Extra: openai
Requires-Dist: openai>=1.0.0; extra == "openai"
Provides-Extra: all
Requires-Dist: anthropic>=0.20.0; extra == "all"
Requires-Dist: openai>=1.0.0; extra == "all"

# AgentBeam Python SDK

Monitor, debug, and manage the cost of AI agents in production.

## Quick Start

```bash
pip install agentbeam
```

```python
import agentbeam
agentbeam.init(api_key="ab_your_key_here")

# All Anthropic/OpenAI calls are now automatically traced.
# View traces and costs at https://agentbeam.dev
```
