Bedrock Base Models Error: You don't have access to the model with the specified model ID

0

Hello, I am trying a tutorial with a Lambda function which employs Bedrock base models and getting the following error: [ERROR] ValueError: Error raised by bedrock service: An error occurred (AccessDeniedException) when calling the InvokeModel operation: You don't have access to the model with the specified model ID. Having read the responses from others facing the same issue, I have allowed access to third-party model subscriptions for my user according to https://docs.aws.amazon.com/bedrock/latest/userguide/model-access.html#add-model-access However the error persists. What else can I try? Thank you.

Stratos
gefragt vor einem Monat1109 Aufrufe
3 Antworten
0
Akzeptierte Antwort

Hello.

Is the model enabled in the correct region?
This error can occur when running in a region that does not have model access enabled.
Try creating a client while specifying the region where the model is enabled as shown below.

bedrock_runtime = boto3.client(service_name='bedrock-runtime', region_name='us-east-1')
profile picture
EXPERTE
beantwortet vor einem Monat
  • In what region did you enable the model? Also, what region are you running Lambda in? Could you also share the code you are running?

  • The problem was that the lambda function was not using the basic model my account had access to. I corrected the code and it works as expected now. Thank you because you made me check the lambda function code.

0

The model is enabled in the correct region, I have checked it.

Stratos
beantwortet vor einem Monat
0

Are you specifying correctly (maybe typo?) the model id? https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html

profile picture
EXPERTE
beantwortet vor einem Monat

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen