mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
aab621f5eb
* Fix tool normalization and provider samples - restore callable/single-tool normalization paths and unset tool-choice behavior\n- consolidate and expand chat/provider samples (OpenAI/Azure/Anthropic/Ollama/Bedrock)\n- migrate Bedrock lazy import surface to agent_framework.amazon and move provider samples Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * small fix in sample * Finalize provider, samples, and core cleanup Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fix CopilotTool passthrough in agent Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix link --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
aab621f5eb
ยท
2026-02-16 16:30:38 +00:00
History
Bedrock Examples
This folder contains examples demonstrating how to use AWS Bedrock models with the Agent Framework. The sample
uses BEDROCK_CHAT_MODEL_ID, BEDROCK_REGION, and AWS credentials (AWS_ACCESS_KEY_ID,
AWS_SECRET_ACCESS_KEY, optional AWS_SESSION_TOKEN).
Examples
| File | Description |
|---|---|
bedrock_chat_client.py |
Uses BedrockChatClient with a simple tool-enabled Agent to demonstrate direct Bedrock chat integration. |
Environment Variables
BEDROCK_CHAT_MODEL_ID: Bedrock model ID (for example,anthropic.claude-3-5-sonnet-20240620-v1:0)BEDROCK_REGION: AWS region (defaults tous-east-1if unset)- AWS credentials via standard variables (
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY, optionalAWS_SESSION_TOKEN)