Skip to main content

Crate daimon_provider_bedrock

Crate daimon_provider_bedrock 

Source
Expand description

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();

Structs§

Bedrock
Amazon Bedrock model provider using the Converse API.
BedrockEmbedding
Amazon Bedrock embedding model (Titan Embeddings).