Skip to content

Commit

Permalink
feat(client-bedrock-agent-runtime): Lifting the maximum length on Bed…
Browse files Browse the repository at this point in the history
…rock KnowledgeBase RetrievalFilter array
  • Loading branch information
awstools committed Aug 29, 2024
1 parent 238987e commit aec4d2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ export interface ByteContentFile {
mediaType: string | undefined;

/**
* <p>The byte value of the file to attach, encoded as Base-64 string. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files. </p>
* <p>The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files. </p>
* @public
*/
data: Uint8Array | undefined;
Expand Down
5 changes: 2 additions & 3 deletions codegen/sdk-codegen/aws-models/bedrock-agent-runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@
"data": {
"target": "com.amazonaws.bedrockagentruntime#ByteContentBlob",
"traits": {
"smithy.api#documentation": "<p>The byte value of the file to attach, encoded as Base-64 string. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files. </p>",
"smithy.api#documentation": "<p>The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files. </p>",
"smithy.api#required": {}
}
}
Expand Down Expand Up @@ -4736,8 +4736,7 @@
},
"traits": {
"smithy.api#length": {
"min": 2,
"max": 5
"min": 2
}
}
},
Expand Down

0 comments on commit aec4d2b

Please sign in to comment.