Metadata-Version: 2.4
Name: turingpulse-sdk-strands
Version: 1.4.0
Summary: TuringPulse SDK integration for Strands Agents
Project-URL: Homepage, https://turingpulse.ai
Project-URL: Documentation, https://turingpulse.ai/docs/sdk/strands
License-Expression: LicenseRef-Proprietary
Requires-Python: >=3.11
Requires-Dist: strands-agents>=1.27.0
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-strands

TuringPulse SDK integration for Strands Agents.

## Installation

```bash
pip install turingpulse-sdk-strands
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_strands import instrument_strands

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

run = instrument_strands(agent, name="my-strands-workflow")
result = run("Execute task")
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- strands-agents >= 1.27.0
