Stephen
Stephen
Could I please clarify if I have an arm64 docker image am I able today to run this on ECS Graviton2 in any way whatsoever? Even if I manually specify...
Thanks for the note @virtualgill ! Have fixed in #23
@samuelcolvin - a couple of points to add... The [Anthropic SDK currently supports Amazon Bedrock](https://github.com/anthropics/anthropic-sdk-python/blob/main/src/anthropic/lib/bedrock/_client.py) though the [InvokeModel API](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_InvokeModel.html) with a HTTPX client and boto3 for auth. Amazon Bedrock also...
Spot on @dmenini. As a workaround we can install `boto3` and pass an instance of `AsyncAnthropicBedrock` to the `AnthropicModel` like this ``` from anthropic import AsyncAnthropicBedrock from pydantic_ai.models.anthropic import AnthropicModel...
> > To call models through aws bedrock, some models can be invoked through [invoke_model](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_InvokeModel.html) and others with [converse](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html) (for example anthropic/sonnet can only be called with converse). That is...
> I had that problem recently on a project with AWS Bedrock and had to use the converse API instead of the invoke API for anthropic models. > > ...