Skip to content

How to get access of Meta3.2 Multi-modal models on bedrock.

0

How to get access of Meta3.2 Multi-modal models on bedrock. It seems to be blocked or unavailable everywhere except Cross-region inference and for some reason Cross-region inference is saying Access Denied : You don't have access to the model with the specified model ID.

asked 2 years ago1.1K views

1 Answer
0

Hello.

I was able to use Meta Llama 3.2 with the AWS CLI introduced in the blog below in my AWS account.
The model ID is "us.meta.llama3-2-90b-instruct-v1:0", so cross-region inference is used.
https://aws.amazon.com/jp/blogs/aws/introducing-llama-3-2-models-from-meta-in-amazon-bedrock-a-new-generation-of-multimodal-vision-and-lightweight-models/

aws bedrock-runtime converse --messages '[{ "role": "user", "content": [ { "text": "Tell me the three largest cities in Italy." } ] }]' --model-id us.meta.llama3-2-90b-instruct-v1:0 --query 'output.message.content[*].text' --output text

Is model access enabled in the region used for cross-region inference?
Please double check that model access is enabled correctly.
https://docs.aws.amazon.com/bedrock/latest/userguide/model-access-modify.html

EXPERT

answered 2 years ago

EXPERT

reviewed 2 years ago

  • This is what I got in cloud shell again an access denied

    and this is what It look if I go to model access image here safe link - https://ibb.co/tM5KzM6

    [cloudshell-user@ip-10-134-34-45 ~]$ aws bedrock-runtime converse --messages '[{ "role": "user", "content": [ { "text": "Tell me the three largest cities in Italy." } ] }]' --model-id us.meta.llama3-2-90b-instruct-v1:0 --query 'output.message.content[*].text' --output text
    
    An error occurred (AccessDeniedException) when calling the Converse operation: You don't have access to the model with the specified model ID.
    [cloudshell-user@ip-10-134-34-45 ~]$ 
    

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.