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

TuringPulse SDK integration for Haystack — auto-instrumentation for Haystack pipelines.

## Installation

```bash
pip install turingpulse-sdk-haystack
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_haystack import instrument_haystack

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

run = instrument_haystack(pipeline, name="my-haystack-pipeline")
result = run({"query": "What is the revenue?"})
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- haystack-ai >= 2.24.1
