A company has purchased provisioned throughput for the Anthropic Claude v2 model in Amazon Bedrock to ensure consistent performance during business hours. The application uses the InvokeModel API with the following code snippet: ```python response = bedrock_client.invoke_model( modelId="anthropic.claude-v2", body=json.dumps({ "prompt": prompt, "max_tokens_to_sample": 300 }) ) ``` During peak hours, the application experiences throttling. CloudWatch metrics show that the provisioned throughput capacity is not being utilized. Which change should be made to ensure the application uses the purchased provisioned throughput? | AWS Certified Generative AI Developer - Professional Quiz - LeetQuiz