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

TuringPulse SDK integration for Microsoft AutoGen — auto-instrumentation for multi-agent conversations.

## Installation

```bash
pip install turingpulse-sdk-autogen
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_autogen import instrument_autogen

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

run = instrument_autogen(group_chat_manager, name="my-autogen-workflow")
result = run("Discuss market strategy")
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- pyautogen >= 0.2.0
