Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 678 Bytes

File metadata and controls

25 lines (17 loc) · 678 Bytes

Bedrock Package (agent-framework-bedrock)

Integration with AWS Bedrock for LLM inference.

Main Classes

  • BedrockChatClient - Chat client for AWS Bedrock models
  • BedrockChatOptions - Options TypedDict for Bedrock-specific parameters
  • BedrockGuardrailConfig - Configuration for Bedrock guardrails
  • BedrockSettings - Pydantic settings for Bedrock configuration

Usage

from agent_framework.amazon import BedrockChatClient

client = BedrockChatClient(model="anthropic.claude-3-sonnet-20240229-v1:0")
response = await client.get_response("Hello")

Import Path

from agent_framework.amazon import BedrockChatClient