Internal Server Exception to access Bedrock Knowledge Base

0

I wrote a code to access the Amazon Bedrock Knowledge Base and it worked successfully but now I am having the error below. How to fix it?

Exception occurred: An error occurred (InternalServerException) when calling the RetrieveAndGenerate operation (reached max retries: 4): Internal Server Exception

**Code: def askQuestion2(question): session = boto3.Session() bedrock_agent_runtime = session.client('bedrock-agent-runtime') request = { "input": {'text': question}, "retrieveAndGenerateConfiguration": { "type": "KNOWLEDGE_BASE", "knowledgeBaseConfiguration": { "knowledgeBaseId": "xxxxxxxxx", "modelArn": "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-v2" } }, }

1 Answer
0

Hi,

You may want to subscribe to this issue on Github: https://github.com/langchain-ai/langchain/issues/17170

They seem to experience same error as you

Best,

Didier

profile pictureAWS
EXPERT
answered 3 months ago
profile picture
EXPERT
reviewed 10 days ago

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.

Guidelines for Answering Questions