Metadata-Version: 2.4
Name: turingpulse-sdk-semantic-kernel
Version: 1.3.0
Summary: TuringPulse SDK integration for Microsoft Semantic Kernel
Project-URL: Homepage, https://turingpulse.ai
Project-URL: Documentation, https://turingpulse.ai/docs/sdk/semantic-kernel
License-Expression: LicenseRef-Proprietary
Requires-Python: >=3.11
Requires-Dist: semantic-kernel>=1.1.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-semantic-kernel

TuringPulse SDK integration for Microsoft Semantic Kernel.

## Installation

```bash
pip install turingpulse-sdk-semantic-kernel
```

## Quick Start

```python
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_semantic_kernel import instrument_semantic_kernel

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

run = instrument_semantic_kernel(kernel, name="my-sk-workflow")
result = await run("Summarize this document")
```

## Documentation

Full documentation: [turingpulse.ai/docs/sdk/semantic-kernel](https://turingpulse.ai/docs/sdk/semantic-kernel)

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- semantic-kernel >= 1.1.1
