Metadata-Version: 2.4
Name: turingpulse-sdk-bedrock
Version: 1.3.0
Summary: TuringPulse SDK integration for AWS Bedrock
Project-URL: Homepage, https://turingpulse.ai
Project-URL: Documentation, https://turingpulse.ai/docs/sdk/bedrock
License-Expression: LicenseRef-Proprietary
Requires-Python: >=3.11
Requires-Dist: boto3>=1.35.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-bedrock

TuringPulse SDK integration for AWS Bedrock — automatic tracing for Bedrock Converse API calls.

## Installation

```bash
pip install turingpulse-sdk-bedrock
```

## Quick Start

```python
import boto3
from turingpulse_sdk import init, TuringPulseConfig
from turingpulse_sdk_bedrock import patch_bedrock

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

client = boto3.client("bedrock-runtime")
response = client.converse(
    modelId="anthropic.claude-3-sonnet-20240229-v1:0",
    messages=[{"role": "user", "content": [{"text": "Hello!"}]}]
)
```

## Documentation

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

## Requirements

- Python >= 3.11
- turingpulse-sdk >= 1.0.0
- boto3 >= 1.35.0
