- Newest
- Most votes
- Most comments
Hello.
How about trying to execute the following command?
https://repost.aws/knowledge-center/bedrock-resolve-marketplace-permission
aws bedrock list-foundation-model-agreement-offers --model-id anthropic.claude-3-5-haiku-20241022-v1:0
aws bedrock create-foundation-model-agreement \
--model-id anthropic.claude-3-5-haiku-20241022-v1:0 \
--offer-token example-offer-token
By the way, if the version of AWS CLI installed on your PC is outdated, I recommend either upgrading it or using AWS CloudShell to run the command.
https://docs.aws.amazon.com/cloudshell/latest/userguide/welcome.html
The error you're encountering indicates that Claude 3.5 Haiku has been marked as "Legacy" by the provider and requires reactivation since it hasn't been actively used in your account within the last 30 days.
Regarding the CLI commands mentioned by support, the model agreement commands (list-foundation-model-agreement-offers and create-foundation-model-agreement) are part of the Amazon Bedrock service API, not the bedrock-runtime API. You'll need to ensure you're using the latest version of the AWS CLI and looking under the correct service namespace.
To reactivate model access, you should:
- Update your AWS CLI to the latest version to ensure you have access to all current Bedrock commands
- Use the correct service namespace: The model access management commands are under
aws bedrock(notaws bedrock-runtime) - Check the Model Access page: While you mentioned it's been retired, model access management in Amazon Bedrock is typically handled through the AWS Console under the Bedrock service. Navigate to the Amazon Bedrock console and look for model access or model management options to request or reactivate access to Claude 3.5 Haiku
For the specific model ID anthropic.claude-3-5-haiku-20241022-v1:0, this model is supported in us-west-2 according to the available model listings. Once you've reactivated access through the proper channels, you should be able to invoke it using either the single-region model ID or the cross-region inference profile.
If the console interface has changed and you cannot locate the model access management page, I recommend adding correspondence to your existing support case through the AWS Support Center (https://console.aws.amazon.com/support/) to get specific guidance on the current process for reactivating legacy models in your account.
Sources
Optimize a prompt - Amazon Bedrock
Prerequisites for inference profiles - Amazon Bedrock
Relevant content
asked 2 years ago
- AWS OFFICIALUpdated a year ago
