Metadata-Version: 2.4
Name: turingpulse-sdk-mistral
Version: 1.5.1
Summary: TuringPulse SDK integration for Mistral AI
Project-URL: Homepage, https://turingpulse.ai
Project-URL: Documentation, https://turingpulse.ai/docs/sdk/mistral
License-Expression: LicenseRef-Proprietary
Requires-Python: >=3.11
Requires-Dist: mistralai>=0.4.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-mistral

TuringPulse SDK integration for Mistral AI — automatic tracing for Mistral Large and Mixtral models.

## Installation

```bash
pip install turingpulse-sdk-mistral
```

## Quick Start

```python
from mistralai import Mistral
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_mistral import patch_mistral

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

client = Mistral(api_key="...")
response = client.chat.complete(
    model="mistral-large-latest",
    messages=[{"role": "user", "content": "Hello!"}]
)
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- mistralai >= 0.4.0
