Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/pages/[platform]/ai/concepts/models/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,24 @@ The Amplify AI Kit uses Bedrock's [Converse API](https://docs.aws.amazon.com/bed
<TableCell>✅</TableCell>
<TableCell>✅</TableCell>
</TableRow>
<TableRow>
<TableCell><strong><a href="https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-claude.html">Anthropic</a></strong></TableCell>
<TableCell>Claude 4.5 Haiku</TableCell>
<TableCell>✅</TableCell>
<TableCell>✅</TableCell>
</TableRow>
<TableRow>
<TableCell><strong><a href="https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-claude.html">Anthropic</a></strong></TableCell>
<TableCell>Claude 4.5 Sonnet</TableCell>
<TableCell>✅</TableCell>
<TableCell>✅</TableCell>
</TableRow>
<TableRow>
<TableCell><strong><a href="https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-claude.html">Anthropic</a></strong></TableCell>
<TableCell>Claude 4.5 Opus</TableCell>
<TableCell>✅</TableCell>
<TableCell>✅</TableCell>
</TableRow>
<TableRow style={{ borderTop: '1.5px solid' }}>
<TableCell><strong><a href="https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-cohere.html">Cohere</a></strong></TableCell>
<TableCell>Command R</TableCell>
Expand Down Expand Up @@ -171,6 +189,10 @@ The Amplify AI Kit uses Bedrock's [Converse API](https://docs.aws.amazon.com/bed
</TableBody>
</Table>

<Callout type="info">
Claude 4.5 models (Haiku, Sonnet, and Opus) use [AWS Bedrock global inference profiles](https://docs.aws.amazon.com/bedrock/latest/userguide/global-cross-region-inference.html) for improved availability and performance through automatic cross-region routing. These models are accessed via global inference profile model IDs that enable cross-region failover and load balancing.
</Callout>

Amplify AI Kit makes use of ["tools"](/[platform]/ai/concepts/tools) for both generation and conversation routes. [The models used must support tool use in the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/conversation-inference-supported-models-features.html).

Most models have different structures to how they best work with input and how they format their output. Using the Converse API makes it easy to swap different models without having to drastically change how you interact with them.
Expand Down
Loading