79592246

Date: 2025-04-25 09:47:59
Score: 1
Natty:
Report link

I managed to work around the issue by passing the below config parameters to the boto3 client:

import boto3
from botocore.config import Config

bedrock_client = boto3.client(
            'bedrock-runtime',
            config=Config(retries={'max_attempts': 5, 'mode': 'adaptive'})
        )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pascal Wyler