Metadata-Version: 2.4
Name: agent-framework-bedrock
Version: 1.0.0b260519
Summary: Amazon Bedrock integration for Microsoft Agent Framework.
Project-URL: homepage, https://aka.ms/agent-framework
Project-URL: source, https://github.com/microsoft/agent-framework/tree/main/python
Project-URL: release_notes, https://github.com/microsoft/agent-framework/releases?q=tag%3Apython-1&expanded=true
Project-URL: issues, https://github.com/microsoft/agent-framework/issues
Author-email: Microsoft <af-support@microsoft.com>
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: agent-framework-core<2,>=1.5.0
Requires-Dist: boto3<2.0.0,>=1.35.0
Requires-Dist: botocore<2.0.0,>=1.35.0
Description-Content-Type: text/markdown

# Get Started with Microsoft Agent Framework Bedrock

Install the provider package:

```bash
pip install agent-framework-bedrock --pre
```

## Bedrock Integration

The Bedrock integration enables Microsoft Agent Framework applications to call Amazon Bedrock models with familiar chat abstractions, including tool/function calling when you attach tools through `ChatOptions`.

### Basic Usage Example

See the [Bedrock sample](../../samples/02-agents/providers/amazon/bedrock_chat_client.py) for a runnable end-to-end script that:

- Loads credentials from the `BEDROCK_*` environment variables
- Instantiates `BedrockChatClient`
- Sends a simple conversation turn and prints the response
