Skip to content

Commit

Permalink
feat(client-bedrock-agent): Amazon Bedrock Knowledge Bases now suppor…
Browse files Browse the repository at this point in the history
…ts using inference profiles to increase throughput and improve resilience.
  • Loading branch information
awstools committed Sep 11, 2024
1 parent 76ceacb commit f68727d
Show file tree
Hide file tree
Showing 2 changed files with 13,505 additions and 13,625 deletions.
6 changes: 3 additions & 3 deletions clients/client-bedrock-agent/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3232,12 +3232,12 @@ export interface ParsingPrompt {
}

/**
* <p>Settings for a foundation model used to parse documents for a data source.</p>
* <p>Settings for a foundation model or <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html">inference profile</a> used to parse documents for a data source.</p>
* @public
*/
export interface BedrockFoundationModelConfiguration {
/**
* <p>The model's ARN.</p>
* <p>The ARN of the foundation model or <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html">inference profile</a>.</p>
* @public
*/
modelArn: string | undefined;
Expand Down Expand Up @@ -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.</p>
* <p>To use a model to parse PDF documents, set the parsing strategy to <code>BEDROCK_FOUNDATION_MODEL</code> and
* specify the model to use by ARN. You can also override the default parsing prompt with instructions for how
* specify the model or <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html">inference profile</a> 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.</p>
* <ul>
* <li>
Expand Down
Loading

0 comments on commit f68727d

Please sign in to comment.