Metadata-Version: 2.4
Name: turingpulse-sdk-crewai
Version: 1.2.0
Summary: TuringPulse SDK integration for CrewAI
Project-URL: Homepage, https://turingpulse.ai
Project-URL: Documentation, https://turingpulse.ai/docs/sdk/crewai
License-Expression: LicenseRef-Proprietary
Requires-Python: >=3.11
Requires-Dist: crewai>=1.9.3
Requires-Dist: turingpulse-sdk>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# turingpulse-sdk-crewai

TuringPulse SDK integration for CrewAI — auto-instrumentation for multi-agent crews and tasks.

## Installation

```bash
pip install turingpulse-sdk-crewai
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_crewai import instrument_crewai

init(TuringPulseConfig(api_key="sk_live_...", workflow_name="my-project"))

run = instrument_crewai(crew, name="my-crewai-workflow")
result = run("Research AI trends")
```

## Documentation

Full documentation: [turingpulse.ai/docs/sdk/crewai](https://turingpulse.ai/docs/sdk/crewai)

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- crewai >= 0.28.0
