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

TuringPulse SDK integration for LlamaIndex — auto-instrumentation for query engines, chat engines, and agents.

## Installation

```bash
pip install turingpulse-sdk-llamaindex
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_llamaindex import instrument_llamaindex

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

instrumented = instrument_llamaindex(query_engine, name="my-llamaindex-workflow")
result = instrumented.query("What is the revenue?")
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- llama-index >= 0.14.15
