Amazon Bedrock model provider for the Daimon agent framework.
Supports the Bedrock Converse API for non-streaming and streaming inference, with optional guardrails, prompt caching, and configurable retries.
Example
use daimon_provider_bedrock::Bedrock;
use daimon_core::Model;
let model = Bedrock::new("us.anthropic.claude-sonnet-4-20250514")
.with_region("us-east-1")
.with_prompt_caching();