From f68727d96fae13e666942e6c01d72eddc65f62f9 Mon Sep 17 00:00:00 2001 From: awstools Date: Wed, 11 Sep 2024 18:22:48 +0000 Subject: [PATCH] feat(client-bedrock-agent): Amazon Bedrock Knowledge Bases now supports using inference profiles to increase throughput and improve resilience. --- .../src/models/models_0.ts | 6 +- .../sdk-codegen/aws-models/bedrock-agent.json | 27124 ++++++++-------- 2 files changed, 13505 insertions(+), 13625 deletions(-) diff --git a/clients/client-bedrock-agent/src/models/models_0.ts b/clients/client-bedrock-agent/src/models/models_0.ts index 4eb399d4b9b1..63a61abf93b5 100644 --- a/clients/client-bedrock-agent/src/models/models_0.ts +++ b/clients/client-bedrock-agent/src/models/models_0.ts @@ -3232,12 +3232,12 @@ export interface ParsingPrompt { } /** - *

Settings for a foundation model used to parse documents for a data source.

+ *

Settings for a foundation model or inference profile used to parse documents for a data source.

* @public */ export interface BedrockFoundationModelConfiguration { /** - *

The model's ARN.

+ *

The ARN of the foundation model or inference profile.

* @public */ modelArn: string | undefined; @@ -3268,7 +3268,7 @@ export type ParsingStrategy = (typeof ParsingStrategy)[keyof typeof ParsingStrat * you can configure the data source to convert the pages of text into images and use a model to describe the * contents of each page.

*

To use a model to parse PDF documents, set the parsing strategy to BEDROCK_FOUNDATION_MODEL and - * specify the model to use by ARN. You can also override the default parsing prompt with instructions for how + * specify the model or inference profile to use by ARN. You can also override the default parsing prompt with instructions for how * to interpret images and tables in your documents. The following models are supported.

*