Metadata-Version: 2.4
Name: autogen-bedrock-converse
Version: 0.1.4
Summary: Custom AutoGen ChatCompletionClient adapter using the AWS Bedrock Converse API
Author-email: SimpleCRM Developer <developer@simplecrm.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: boto3>=1.34.0
Requires-Dist: autogen-core>=0.4.0
Requires-Dist: opentelemetry-api>=1.0.0

# autogen-bedrock-converse

A standalone custom `ChatCompletionClient` adapter for AutoGen using the AWS Bedrock Converse API.

## Installation

```bash
pip install autogen-bedrock-converse
```

## Usage

```python
from autogen_bedrock_converse import BedrockChatCompletionClient

client = BedrockChatCompletionClient(
    model="openai.gpt-oss-120b-1:0",
    aws_access_key="YOUR_AWS_ACCESS_KEY",
    aws_secret_key="YOUR_AWS_SECRET_KEY",
    aws_region="ap-south-1"
)
```
