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

TuringPulse SDK integration for DSPy — auto-instrumentation for DSPy programs and modules.

## Installation

```bash
pip install turingpulse-sdk-dspy
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_dspy import instrument_dspy

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

run = instrument_dspy(program, name="my-dspy-workflow")
result = run(question="What is machine learning?")
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- dspy >= 3.1.3
