Skip to content

Commit 5cf2e4b

Browse files
author
awstools
committed
feat(client-bedrock-agent): Add support of new model types for Bedrock Agents, Adding inference profile support for Flows and Prompt Management, Adding new field to configure additional inference configurations for Flows and Prompt Management
1 parent e45fde3 commit 5cf2e4b

File tree

13 files changed

+119
-24
lines changed

13 files changed

+119
-24
lines changed

clients/client-bedrock-agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AWS SDK for JavaScript BedrockAgent Client for Node.js, Browser and React Native
1010

1111
## Installing
1212

13-
To install the this package, simply type add or install @aws-sdk/client-bedrock-agent
13+
To install this package, simply type add or install @aws-sdk/client-bedrock-agent
1414
using your favorite package manager:
1515

1616
- `npm install @aws-sdk/client-bedrock-agent`

clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
9797
* ],
9898
* },
9999
* },
100+
* additionalModelRequestFields: "DOCUMENT_VALUE",
100101
* },
101102
* },
102103
* },
@@ -226,6 +227,7 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
226227
* // ],
227228
* // },
228229
* // },
230+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
229231
* // },
230232
* // },
231233
* // },

clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ export interface CreateFlowVersionCommandOutput extends CreateFlowVersionRespons
108108
* // ],
109109
* // },
110110
* // },
111+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
111112
* // },
112113
* // },
113114
* // },

clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export interface CreatePromptCommandOutput extends CreatePromptResponse, __Metad
7676
* value: "STRING_VALUE", // required
7777
* },
7878
* ],
79+
* additionalModelRequestFields: "DOCUMENT_VALUE",
7980
* },
8081
* ],
8182
* clientToken: "STRING_VALUE",
@@ -121,6 +122,7 @@ export interface CreatePromptCommandOutput extends CreatePromptResponse, __Metad
121122
* // value: "STRING_VALUE", // required
122123
* // },
123124
* // ],
125+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
124126
* // },
125127
* // ],
126128
* // id: "STRING_VALUE", // required

clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ export interface CreatePromptVersionCommandOutput extends CreatePromptVersionRes
8585
* // value: "STRING_VALUE", // required
8686
* // },
8787
* // ],
88+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
8889
* // },
8990
* // ],
9091
* // id: "STRING_VALUE", // required

clients/client-bedrock-agent/src/commands/GetFlowCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ export interface GetFlowCommandOutput extends GetFlowResponse, __MetadataBearer
103103
* // ],
104104
* // },
105105
* // },
106+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
106107
* // },
107108
* // },
108109
* // },

clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ export interface GetFlowVersionCommandOutput extends GetFlowVersionResponse, __M
107107
* // ],
108108
* // },
109109
* // },
110+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
110111
* // },
111112
* // },
112113
* // },

clients/client-bedrock-agent/src/commands/GetPromptCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export interface GetPromptCommandOutput extends GetPromptResponse, __MetadataBea
7777
* // value: "STRING_VALUE", // required
7878
* // },
7979
* // ],
80+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
8081
* // },
8182
* // ],
8283
* // id: "STRING_VALUE", // required

clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
9797
* ],
9898
* },
9999
* },
100+
* additionalModelRequestFields: "DOCUMENT_VALUE",
100101
* },
101102
* },
102103
* },
@@ -223,6 +224,7 @@ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataB
223224
* // ],
224225
* // },
225226
* // },
227+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
226228
* // },
227229
* // },
228230
* // },

clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export interface UpdatePromptCommandOutput extends UpdatePromptResponse, __Metad
7676
* value: "STRING_VALUE", // required
7777
* },
7878
* ],
79+
* additionalModelRequestFields: "DOCUMENT_VALUE",
7980
* },
8081
* ],
8182
* promptIdentifier: "STRING_VALUE", // required
@@ -118,6 +119,7 @@ export interface UpdatePromptCommandOutput extends UpdatePromptResponse, __Metad
118119
* // value: "STRING_VALUE", // required
119120
* // },
120121
* // ],
122+
* // additionalModelRequestFields: "DOCUMENT_VALUE",
121123
* // },
122124
* // ],
123125
* // id: "STRING_VALUE", // required

0 commit comments

Comments
 (0)