@aws-sdk/client-bedrock-agent-runtime 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1155 -804
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateInvocationCommand.js +2 -2
- package/dist-es/commands/CreateSessionCommand.js +2 -2
- package/dist-es/commands/DeleteAgentMemoryCommand.js +2 -2
- package/dist-es/commands/DeleteSessionCommand.js +2 -2
- package/dist-es/commands/EndSessionCommand.js +2 -2
- package/dist-es/commands/GenerateQueryCommand.js +2 -2
- package/dist-es/commands/GetAgentMemoryCommand.js +2 -2
- package/dist-es/commands/GetExecutionFlowSnapshotCommand.js +2 -2
- package/dist-es/commands/GetFlowExecutionCommand.js +2 -2
- package/dist-es/commands/GetInvocationStepCommand.js +2 -2
- package/dist-es/commands/GetSessionCommand.js +2 -2
- package/dist-es/commands/InvokeAgentCommand.js +2 -2
- package/dist-es/commands/InvokeFlowCommand.js +2 -2
- package/dist-es/commands/InvokeInlineAgentCommand.js +2 -2
- package/dist-es/commands/ListFlowExecutionEventsCommand.js +2 -2
- package/dist-es/commands/ListFlowExecutionsCommand.js +2 -2
- package/dist-es/commands/ListInvocationStepsCommand.js +2 -2
- package/dist-es/commands/ListInvocationsCommand.js +2 -2
- package/dist-es/commands/ListSessionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/OptimizePromptCommand.js +2 -2
- package/dist-es/commands/PutInvocationStepCommand.js +2 -2
- package/dist-es/commands/RerankCommand.js +2 -2
- package/dist-es/commands/RetrieveAndGenerateCommand.js +2 -2
- package/dist-es/commands/RetrieveAndGenerateStreamCommand.js +2 -2
- package/dist-es/commands/RetrieveCommand.js +2 -2
- package/dist-es/commands/StartFlowExecutionCommand.js +2 -2
- package/dist-es/commands/StopFlowExecutionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateSessionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +791 -783
- package/dist-types/BedrockAgentRuntimeClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +344 -447
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +343 -449
- package/package.json +37 -37
package/dist-cjs/index.js
CHANGED
|
@@ -112,14 +112,14 @@ class BedrockAgentRuntimeClient extends smithyClient.Client {
|
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
class BedrockAgentRuntimeServiceException extends smithyClient.ServiceException {
|
|
116
116
|
constructor(options) {
|
|
117
117
|
super(options);
|
|
118
118
|
Object.setPrototypeOf(this, BedrockAgentRuntimeServiceException.prototype);
|
|
119
119
|
}
|
|
120
|
-
}
|
|
120
|
+
}
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
class AccessDeniedException extends BedrockAgentRuntimeServiceException {
|
|
123
123
|
name = "AccessDeniedException";
|
|
124
124
|
$fault = "client";
|
|
125
125
|
constructor(opts) {
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BedrockAgentRu
|
|
|
130
130
|
});
|
|
131
131
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class InternalServerException extends BedrockAgentRuntimeServiceException {
|
|
135
135
|
name = "InternalServerException";
|
|
136
136
|
$fault = "server";
|
|
137
137
|
reason;
|
|
@@ -144,8 +144,8 @@ let InternalServerException$1 = class InternalServerException extends BedrockAge
|
|
|
144
144
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
145
145
|
this.reason = opts.reason;
|
|
146
146
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
147
|
+
}
|
|
148
|
+
class ResourceNotFoundException extends BedrockAgentRuntimeServiceException {
|
|
149
149
|
name = "ResourceNotFoundException";
|
|
150
150
|
$fault = "client";
|
|
151
151
|
constructor(opts) {
|
|
@@ -156,8 +156,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Bedroc
|
|
|
156
156
|
});
|
|
157
157
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
158
158
|
}
|
|
159
|
-
}
|
|
160
|
-
|
|
159
|
+
}
|
|
160
|
+
class ThrottlingException extends BedrockAgentRuntimeServiceException {
|
|
161
161
|
name = "ThrottlingException";
|
|
162
162
|
$fault = "client";
|
|
163
163
|
constructor(opts) {
|
|
@@ -168,8 +168,8 @@ let ThrottlingException$1 = class ThrottlingException extends BedrockAgentRuntim
|
|
|
168
168
|
});
|
|
169
169
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
170
170
|
}
|
|
171
|
-
}
|
|
172
|
-
|
|
171
|
+
}
|
|
172
|
+
class ValidationException extends BedrockAgentRuntimeServiceException {
|
|
173
173
|
name = "ValidationException";
|
|
174
174
|
$fault = "client";
|
|
175
175
|
constructor(opts) {
|
|
@@ -180,8 +180,8 @@ let ValidationException$1 = class ValidationException extends BedrockAgentRuntim
|
|
|
180
180
|
});
|
|
181
181
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
182
182
|
}
|
|
183
|
-
}
|
|
184
|
-
|
|
183
|
+
}
|
|
184
|
+
class BadGatewayException extends BedrockAgentRuntimeServiceException {
|
|
185
185
|
name = "BadGatewayException";
|
|
186
186
|
$fault = "server";
|
|
187
187
|
resourceName;
|
|
@@ -194,8 +194,8 @@ let BadGatewayException$1 = class BadGatewayException extends BedrockAgentRuntim
|
|
|
194
194
|
Object.setPrototypeOf(this, BadGatewayException.prototype);
|
|
195
195
|
this.resourceName = opts.resourceName;
|
|
196
196
|
}
|
|
197
|
-
}
|
|
198
|
-
|
|
197
|
+
}
|
|
198
|
+
class ConflictException extends BedrockAgentRuntimeServiceException {
|
|
199
199
|
name = "ConflictException";
|
|
200
200
|
$fault = "client";
|
|
201
201
|
constructor(opts) {
|
|
@@ -206,8 +206,8 @@ let ConflictException$1 = class ConflictException extends BedrockAgentRuntimeSer
|
|
|
206
206
|
});
|
|
207
207
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
208
208
|
}
|
|
209
|
-
}
|
|
210
|
-
|
|
209
|
+
}
|
|
210
|
+
class DependencyFailedException extends BedrockAgentRuntimeServiceException {
|
|
211
211
|
name = "DependencyFailedException";
|
|
212
212
|
$fault = "client";
|
|
213
213
|
resourceName;
|
|
@@ -220,8 +220,8 @@ let DependencyFailedException$1 = class DependencyFailedException extends Bedroc
|
|
|
220
220
|
Object.setPrototypeOf(this, DependencyFailedException.prototype);
|
|
221
221
|
this.resourceName = opts.resourceName;
|
|
222
222
|
}
|
|
223
|
-
}
|
|
224
|
-
|
|
223
|
+
}
|
|
224
|
+
class ServiceQuotaExceededException extends BedrockAgentRuntimeServiceException {
|
|
225
225
|
name = "ServiceQuotaExceededException";
|
|
226
226
|
$fault = "client";
|
|
227
227
|
constructor(opts) {
|
|
@@ -232,8 +232,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
232
232
|
});
|
|
233
233
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
234
234
|
}
|
|
235
|
-
}
|
|
236
|
-
|
|
235
|
+
}
|
|
236
|
+
class ModelNotReadyException extends BedrockAgentRuntimeServiceException {
|
|
237
237
|
name = "ModelNotReadyException";
|
|
238
238
|
$fault = "client";
|
|
239
239
|
constructor(opts) {
|
|
@@ -244,7 +244,7 @@ let ModelNotReadyException$1 = class ModelNotReadyException extends BedrockAgent
|
|
|
244
244
|
});
|
|
245
245
|
Object.setPrototypeOf(this, ModelNotReadyException.prototype);
|
|
246
246
|
}
|
|
247
|
-
}
|
|
247
|
+
}
|
|
248
248
|
|
|
249
249
|
const _A = "Attribution";
|
|
250
250
|
const _AAG = "AgentActionGroup";
|
|
@@ -1122,9 +1122,9 @@ var Source$1 = [0, n0, _S, 8, 0];
|
|
|
1122
1122
|
var TextPromptTemplate = [0, n0, _TPT, 8, 0];
|
|
1123
1123
|
var TraceKnowledgeBaseId = [0, n0, _TKBI, 8, 0];
|
|
1124
1124
|
var Verb = [0, n0, _V, 8, 0];
|
|
1125
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
1126
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
1127
|
-
var ActionGroupInvocationInput = [
|
|
1125
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
1126
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
1127
|
+
var ActionGroupInvocationInput$ = [
|
|
1128
1128
|
3,
|
|
1129
1129
|
n0,
|
|
1130
1130
|
_AGII,
|
|
@@ -1135,13 +1135,13 @@ var ActionGroupInvocationInput = [
|
|
|
1135
1135
|
[() => Verb, 0],
|
|
1136
1136
|
[() => ApiPath, 0],
|
|
1137
1137
|
() => _Parameters,
|
|
1138
|
-
() => RequestBody
|
|
1138
|
+
() => RequestBody$,
|
|
1139
1139
|
[() => Function, 0],
|
|
1140
1140
|
0,
|
|
1141
1141
|
0,
|
|
1142
1142
|
],
|
|
1143
1143
|
];
|
|
1144
|
-
var ActionGroupInvocationOutput = [
|
|
1144
|
+
var ActionGroupInvocationOutput$ = [
|
|
1145
1145
|
3,
|
|
1146
1146
|
n0,
|
|
1147
1147
|
_AGIO,
|
|
@@ -1149,10 +1149,10 @@ var ActionGroupInvocationOutput = [
|
|
|
1149
1149
|
[_t, _me],
|
|
1150
1150
|
[
|
|
1151
1151
|
[() => ActionGroupOutputString, 0],
|
|
1152
|
-
[() => Metadata
|
|
1152
|
+
[() => Metadata$, 0],
|
|
1153
1153
|
],
|
|
1154
1154
|
];
|
|
1155
|
-
var AgentActionGroup = [
|
|
1155
|
+
var AgentActionGroup$ = [
|
|
1156
1156
|
3,
|
|
1157
1157
|
n0,
|
|
1158
1158
|
_AAG,
|
|
@@ -1162,56 +1162,56 @@ var AgentActionGroup = [
|
|
|
1162
1162
|
[() => ResourceName, 0],
|
|
1163
1163
|
[() => ResourceDescription, 0],
|
|
1164
1164
|
0,
|
|
1165
|
-
() => ActionGroupExecutor
|
|
1166
|
-
[() => APISchema
|
|
1167
|
-
[() => FunctionSchema
|
|
1165
|
+
() => ActionGroupExecutor$,
|
|
1166
|
+
[() => APISchema$, 0],
|
|
1167
|
+
[() => FunctionSchema$, 0],
|
|
1168
1168
|
128 | 0,
|
|
1169
1169
|
],
|
|
1170
1170
|
];
|
|
1171
|
-
var AgentCollaboratorInputPayload = [
|
|
1171
|
+
var AgentCollaboratorInputPayload$ = [
|
|
1172
1172
|
3,
|
|
1173
1173
|
n0,
|
|
1174
1174
|
_ACIP,
|
|
1175
1175
|
0,
|
|
1176
1176
|
[_ty, _t, _rCR],
|
|
1177
|
-
[0, [() => AgentCollaboratorPayloadString, 0], [() => ReturnControlResults
|
|
1177
|
+
[0, [() => AgentCollaboratorPayloadString, 0], [() => ReturnControlResults$, 0]],
|
|
1178
1178
|
];
|
|
1179
|
-
var AgentCollaboratorInvocationInput = [
|
|
1179
|
+
var AgentCollaboratorInvocationInput$ = [
|
|
1180
1180
|
3,
|
|
1181
1181
|
n0,
|
|
1182
1182
|
_ACII,
|
|
1183
1183
|
0,
|
|
1184
1184
|
[_aCN, _aCAA, _i],
|
|
1185
|
-
[0, 0, [() => AgentCollaboratorInputPayload
|
|
1185
|
+
[0, 0, [() => AgentCollaboratorInputPayload$, 0]],
|
|
1186
1186
|
];
|
|
1187
|
-
var AgentCollaboratorInvocationOutput = [
|
|
1187
|
+
var AgentCollaboratorInvocationOutput$ = [
|
|
1188
1188
|
3,
|
|
1189
1189
|
n0,
|
|
1190
1190
|
_ACIO,
|
|
1191
1191
|
0,
|
|
1192
1192
|
[_aCN, _aCAA, _o, _me],
|
|
1193
|
-
[0, 0, [() => AgentCollaboratorOutputPayload
|
|
1193
|
+
[0, 0, [() => AgentCollaboratorOutputPayload$, 0], [() => Metadata$, 0]],
|
|
1194
1194
|
];
|
|
1195
|
-
var AgentCollaboratorOutputPayload = [
|
|
1195
|
+
var AgentCollaboratorOutputPayload$ = [
|
|
1196
1196
|
3,
|
|
1197
1197
|
n0,
|
|
1198
1198
|
_ACOP,
|
|
1199
1199
|
0,
|
|
1200
1200
|
[_ty, _t, _rCP],
|
|
1201
|
-
[0, [() => AgentCollaboratorPayloadString, 0], [() => ReturnControlPayload
|
|
1201
|
+
[0, [() => AgentCollaboratorPayloadString, 0], [() => ReturnControlPayload$, 0]],
|
|
1202
1202
|
];
|
|
1203
|
-
var AnalyzePromptEvent = [3, n0, _APE, 8, [_m], [0]];
|
|
1204
|
-
var ApiInvocationInput = [
|
|
1203
|
+
var AnalyzePromptEvent$ = [3, n0, _APE, 8, [_m], [0]];
|
|
1204
|
+
var ApiInvocationInput$ = [
|
|
1205
1205
|
3,
|
|
1206
1206
|
n0,
|
|
1207
1207
|
_AII,
|
|
1208
1208
|
0,
|
|
1209
1209
|
[_aG, _hM, _aP, _p, _rB, _aIT, _aI, _cN],
|
|
1210
|
-
[0, 0, [() => ApiPath, 0], () => ApiParameters, () => ApiRequestBody
|
|
1210
|
+
[0, 0, [() => ApiPath, 0], () => ApiParameters, () => ApiRequestBody$, 0, 0, [() => Name, 0]],
|
|
1211
1211
|
];
|
|
1212
|
-
var ApiParameter = [3, n0, _APp, 0, [_n, _ty, _va], [0, 0, 0]];
|
|
1213
|
-
var ApiRequestBody = [3, n0, _ARB, 0, [_co], [() => ApiContentMap]];
|
|
1214
|
-
var ApiResult = [
|
|
1212
|
+
var ApiParameter$ = [3, n0, _APp, 0, [_n, _ty, _va], [0, 0, 0]];
|
|
1213
|
+
var ApiRequestBody$ = [3, n0, _ARB, 0, [_co], [() => ApiContentMap]];
|
|
1214
|
+
var ApiResult$ = [
|
|
1215
1215
|
3,
|
|
1216
1216
|
n0,
|
|
1217
1217
|
_AR,
|
|
@@ -1219,28 +1219,28 @@ var ApiResult = [
|
|
|
1219
1219
|
[_aG, _hM, _aP, _cS, _rS, _hSC, _rBe, _aI],
|
|
1220
1220
|
[0, 0, [() => ApiPath, 0], 0, 0, 1, () => ResponseBody, 0],
|
|
1221
1221
|
];
|
|
1222
|
-
var Attribution = [3, n0, _A, 0, [_ci], [[() => Citations, 0]]];
|
|
1223
|
-
var AudioSegment = [3, n0, _AS, 0, [_sU, _tr], [0, 0]];
|
|
1224
|
-
var BadGatewayException = [-3, n0, _BGE, { [_e]: _s, [_hE]: 502 }, [_m, _rN], [0, 0]];
|
|
1225
|
-
schema.TypeRegistry.for(n0).registerError(BadGatewayException
|
|
1226
|
-
var BedrockModelConfigurations = [
|
|
1222
|
+
var Attribution$ = [3, n0, _A, 0, [_ci], [[() => Citations, 0]]];
|
|
1223
|
+
var AudioSegment$ = [3, n0, _AS, 0, [_sU, _tr], [0, 0]];
|
|
1224
|
+
var BadGatewayException$ = [-3, n0, _BGE, { [_e]: _s, [_hE]: 502 }, [_m, _rN], [0, 0]];
|
|
1225
|
+
schema.TypeRegistry.for(n0).registerError(BadGatewayException$, BadGatewayException);
|
|
1226
|
+
var BedrockModelConfigurations$ = [
|
|
1227
1227
|
3,
|
|
1228
1228
|
n0,
|
|
1229
1229
|
_BMC,
|
|
1230
1230
|
0,
|
|
1231
1231
|
[_pC],
|
|
1232
|
-
[() => PerformanceConfiguration],
|
|
1232
|
+
[() => PerformanceConfiguration$],
|
|
1233
1233
|
];
|
|
1234
|
-
var BedrockRerankingConfiguration = [
|
|
1234
|
+
var BedrockRerankingConfiguration$ = [
|
|
1235
1235
|
3,
|
|
1236
1236
|
n0,
|
|
1237
1237
|
_BRC,
|
|
1238
1238
|
0,
|
|
1239
1239
|
[_nOR, _mC],
|
|
1240
|
-
[1, () => BedrockRerankingModelConfiguration],
|
|
1240
|
+
[1, () => BedrockRerankingModelConfiguration$],
|
|
1241
1241
|
];
|
|
1242
|
-
var BedrockRerankingModelConfiguration = [3, n0, _BRMC, 0, [_mA, _aMRF], [0, 128 | 15]];
|
|
1243
|
-
var ByteContentDoc = [
|
|
1242
|
+
var BedrockRerankingModelConfiguration$ = [3, n0, _BRMC, 0, [_mA, _aMRF], [0, 128 | 15]];
|
|
1243
|
+
var ByteContentDoc$ = [
|
|
1244
1244
|
3,
|
|
1245
1245
|
n0,
|
|
1246
1246
|
_BCD,
|
|
@@ -1248,40 +1248,40 @@ var ByteContentDoc = [
|
|
|
1248
1248
|
[_id, _cT, _da],
|
|
1249
1249
|
[[() => Identifier, 0], 0, [() => ByteContentBlob, 0]],
|
|
1250
1250
|
];
|
|
1251
|
-
var ByteContentFile = [3, n0, _BCF, 0, [_mT, _da], [0, [() => ByteContentBlob, 0]]];
|
|
1252
|
-
var Citation = [
|
|
1251
|
+
var ByteContentFile$ = [3, n0, _BCF, 0, [_mT, _da], [0, [() => ByteContentBlob, 0]]];
|
|
1252
|
+
var Citation$ = [
|
|
1253
1253
|
3,
|
|
1254
1254
|
n0,
|
|
1255
1255
|
_C,
|
|
1256
1256
|
0,
|
|
1257
1257
|
[_gRP, _rR],
|
|
1258
1258
|
[
|
|
1259
|
-
[() => GeneratedResponsePart
|
|
1259
|
+
[() => GeneratedResponsePart$, 0],
|
|
1260
1260
|
[() => RetrievedReferences, 0],
|
|
1261
1261
|
],
|
|
1262
1262
|
];
|
|
1263
|
-
var CitationEvent = [
|
|
1263
|
+
var CitationEvent$ = [
|
|
1264
1264
|
3,
|
|
1265
1265
|
n0,
|
|
1266
1266
|
_CE,
|
|
1267
1267
|
0,
|
|
1268
1268
|
[_cit, _gRP, _rR],
|
|
1269
1269
|
[
|
|
1270
|
-
[() => Citation
|
|
1271
|
-
[() => GeneratedResponsePart
|
|
1270
|
+
[() => Citation$, 0],
|
|
1271
|
+
[() => GeneratedResponsePart$, 0],
|
|
1272
1272
|
[() => RetrievedReferences, 0],
|
|
1273
1273
|
],
|
|
1274
1274
|
];
|
|
1275
|
-
var CodeInterpreterInvocationInput = [3, n0, _CIII, 0, [_cod, _fi], [0, 64 | 0]];
|
|
1276
|
-
var CodeInterpreterInvocationOutput = [
|
|
1275
|
+
var CodeInterpreterInvocationInput$ = [3, n0, _CIII, 0, [_cod, _fi], [0, 64 | 0]];
|
|
1276
|
+
var CodeInterpreterInvocationOutput$ = [
|
|
1277
1277
|
3,
|
|
1278
1278
|
n0,
|
|
1279
1279
|
_CIIO,
|
|
1280
1280
|
0,
|
|
1281
1281
|
[_eO, _eE, _fi, _eTx, _me],
|
|
1282
|
-
[0, 0, 64 | 0, 2, [() => Metadata
|
|
1282
|
+
[0, 0, 64 | 0, 2, [() => Metadata$, 0]],
|
|
1283
1283
|
];
|
|
1284
|
-
var Collaborator = [
|
|
1284
|
+
var Collaborator$ = [
|
|
1285
1285
|
3,
|
|
1286
1286
|
n0,
|
|
1287
1287
|
_Co,
|
|
@@ -1294,14 +1294,14 @@ var Collaborator = [
|
|
|
1294
1294
|
1,
|
|
1295
1295
|
[() => AgentActionGroups, 0],
|
|
1296
1296
|
[() => KnowledgeBases, 0],
|
|
1297
|
-
() => GuardrailConfigurationWithArn
|
|
1298
|
-
[() => PromptOverrideConfiguration
|
|
1297
|
+
() => GuardrailConfigurationWithArn$,
|
|
1298
|
+
[() => PromptOverrideConfiguration$, 0],
|
|
1299
1299
|
0,
|
|
1300
1300
|
[() => CollaboratorConfigurations, 0],
|
|
1301
1301
|
[() => Name, 0],
|
|
1302
1302
|
],
|
|
1303
1303
|
];
|
|
1304
|
-
var CollaboratorConfiguration = [
|
|
1304
|
+
var CollaboratorConfiguration$ = [
|
|
1305
1305
|
3,
|
|
1306
1306
|
n0,
|
|
1307
1307
|
_CC,
|
|
@@ -1309,7 +1309,7 @@ var CollaboratorConfiguration = [
|
|
|
1309
1309
|
[_cN, _cI, _aAA, _rCH],
|
|
1310
1310
|
[[() => Name, 0], [() => CollaborationInstruction, 0], 0, 0],
|
|
1311
1311
|
];
|
|
1312
|
-
var ConditionResultEvent = [
|
|
1312
|
+
var ConditionResultEvent$ = [
|
|
1313
1313
|
3,
|
|
1314
1314
|
n0,
|
|
1315
1315
|
_CRE,
|
|
@@ -1317,25 +1317,25 @@ var ConditionResultEvent = [
|
|
|
1317
1317
|
[_nN, _ti, _sC],
|
|
1318
1318
|
[0, 5, [() => SatisfiedConditions, 0]],
|
|
1319
1319
|
];
|
|
1320
|
-
var ConflictException = [-3, n0, _CEo, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
1321
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
1322
|
-
var ContentBody = [3, n0, _CB, 0, [_b, _im], [0, () => ImageInputs]];
|
|
1323
|
-
var ConversationHistory = [3, n0, _CH, 0, [_mes], [[() => Messages, 0]]];
|
|
1324
|
-
var CreateInvocationRequest = [3, n0, _CIR, 0, [_iI, _d, _sI], [0, 0, [0, 1]]];
|
|
1325
|
-
var CreateInvocationResponse = [3, n0, _CIRr, 0, [_sIe, _iI, _cA], [0, 0, 5]];
|
|
1326
|
-
var CreateSessionRequest = [3, n0, _CSR, 0, [_sM, _eKA, _ta], [128 | 0, 0, 128 | 0]];
|
|
1327
|
-
var CreateSessionResponse = [3, n0, _CSRr, 0, [_sIe, _sA, _sS, _cA], [0, 0, 0, 5]];
|
|
1328
|
-
var CustomOrchestration = [3, n0, _CO, 0, [_ex], [() => OrchestrationExecutor]];
|
|
1329
|
-
var CustomOrchestrationTrace = [
|
|
1320
|
+
var ConflictException$ = [-3, n0, _CEo, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
1321
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1322
|
+
var ContentBody$ = [3, n0, _CB, 0, [_b, _im], [0, () => ImageInputs]];
|
|
1323
|
+
var ConversationHistory$ = [3, n0, _CH, 0, [_mes], [[() => Messages, 0]]];
|
|
1324
|
+
var CreateInvocationRequest$ = [3, n0, _CIR, 0, [_iI, _d, _sI], [0, 0, [0, 1]]];
|
|
1325
|
+
var CreateInvocationResponse$ = [3, n0, _CIRr, 0, [_sIe, _iI, _cA], [0, 0, 5]];
|
|
1326
|
+
var CreateSessionRequest$ = [3, n0, _CSR, 0, [_sM, _eKA, _ta], [128 | 0, 0, 128 | 0]];
|
|
1327
|
+
var CreateSessionResponse$ = [3, n0, _CSRr, 0, [_sIe, _sA, _sS, _cA], [0, 0, 0, 5]];
|
|
1328
|
+
var CustomOrchestration$ = [3, n0, _CO, 0, [_ex], [() => OrchestrationExecutor$]];
|
|
1329
|
+
var CustomOrchestrationTrace$ = [
|
|
1330
1330
|
3,
|
|
1331
1331
|
n0,
|
|
1332
1332
|
_COT,
|
|
1333
1333
|
8,
|
|
1334
1334
|
[_tI, _ev],
|
|
1335
|
-
[0, [() => CustomOrchestrationTraceEvent
|
|
1335
|
+
[0, [() => CustomOrchestrationTraceEvent$, 0]],
|
|
1336
1336
|
];
|
|
1337
|
-
var CustomOrchestrationTraceEvent = [3, n0, _COTE, 8, [_t], [0]];
|
|
1338
|
-
var DeleteAgentMemoryRequest = [
|
|
1337
|
+
var CustomOrchestrationTraceEvent$ = [3, n0, _COTE, 8, [_t], [0]];
|
|
1338
|
+
var DeleteAgentMemoryRequest$ = [
|
|
1339
1339
|
3,
|
|
1340
1340
|
n0,
|
|
1341
1341
|
_DAMR,
|
|
@@ -1348,63 +1348,63 @@ var DeleteAgentMemoryRequest = [
|
|
|
1348
1348
|
[0, { [_hQ]: _sIe }],
|
|
1349
1349
|
],
|
|
1350
1350
|
];
|
|
1351
|
-
var DeleteAgentMemoryResponse = [3, n0, _DAMRe, 0, [], []];
|
|
1352
|
-
var DeleteSessionRequest = [3, n0, _DSR, 0, [_sI], [[0, 1]]];
|
|
1353
|
-
var DeleteSessionResponse = [3, n0, _DSRe, 0, [], []];
|
|
1354
|
-
var DependencyFailedException = [-3, n0, _DFE, { [_e]: _c, [_hE]: 424 }, [_m, _rN], [0, 0]];
|
|
1355
|
-
schema.TypeRegistry.for(n0).registerError(DependencyFailedException
|
|
1356
|
-
var EndSessionRequest = [3, n0, _ESR, 0, [_sI], [[0, 1]]];
|
|
1357
|
-
var EndSessionResponse = [3, n0, _ESRn, 0, [_sIe, _sA, _sS], [0, 0, 0]];
|
|
1358
|
-
var ExternalSource = [
|
|
1351
|
+
var DeleteAgentMemoryResponse$ = [3, n0, _DAMRe, 0, [], []];
|
|
1352
|
+
var DeleteSessionRequest$ = [3, n0, _DSR, 0, [_sI], [[0, 1]]];
|
|
1353
|
+
var DeleteSessionResponse$ = [3, n0, _DSRe, 0, [], []];
|
|
1354
|
+
var DependencyFailedException$ = [-3, n0, _DFE, { [_e]: _c, [_hE]: 424 }, [_m, _rN], [0, 0]];
|
|
1355
|
+
schema.TypeRegistry.for(n0).registerError(DependencyFailedException$, DependencyFailedException);
|
|
1356
|
+
var EndSessionRequest$ = [3, n0, _ESR, 0, [_sI], [[0, 1]]];
|
|
1357
|
+
var EndSessionResponse$ = [3, n0, _ESRn, 0, [_sIe, _sA, _sS], [0, 0, 0]];
|
|
1358
|
+
var ExternalSource$ = [
|
|
1359
1359
|
3,
|
|
1360
1360
|
n0,
|
|
1361
1361
|
_ES,
|
|
1362
1362
|
0,
|
|
1363
1363
|
[_sT, _sL, _bC],
|
|
1364
|
-
[0, () => S3ObjectDoc
|
|
1364
|
+
[0, () => S3ObjectDoc$, [() => ByteContentDoc$, 0]],
|
|
1365
1365
|
];
|
|
1366
|
-
var ExternalSourcesGenerationConfiguration = [
|
|
1366
|
+
var ExternalSourcesGenerationConfiguration$ = [
|
|
1367
1367
|
3,
|
|
1368
1368
|
n0,
|
|
1369
1369
|
_ESGC,
|
|
1370
1370
|
0,
|
|
1371
1371
|
[_pT, _gC, _iC, _aMRF, _pC],
|
|
1372
1372
|
[
|
|
1373
|
-
[() => PromptTemplate
|
|
1374
|
-
() => GuardrailConfiguration
|
|
1375
|
-
() => InferenceConfig
|
|
1373
|
+
[() => PromptTemplate$, 0],
|
|
1374
|
+
() => GuardrailConfiguration$,
|
|
1375
|
+
() => InferenceConfig$,
|
|
1376
1376
|
128 | 15,
|
|
1377
|
-
() => PerformanceConfiguration
|
|
1377
|
+
() => PerformanceConfiguration$,
|
|
1378
1378
|
],
|
|
1379
1379
|
];
|
|
1380
|
-
var ExternalSourcesRetrieveAndGenerateConfiguration = [
|
|
1380
|
+
var ExternalSourcesRetrieveAndGenerateConfiguration$ = [
|
|
1381
1381
|
3,
|
|
1382
1382
|
n0,
|
|
1383
1383
|
_ESRAGC,
|
|
1384
1384
|
0,
|
|
1385
1385
|
[_mA, _so, _gCe],
|
|
1386
|
-
[0, [() => ExternalSources, 0], [() => ExternalSourcesGenerationConfiguration
|
|
1386
|
+
[0, [() => ExternalSources, 0], [() => ExternalSourcesGenerationConfiguration$, 0]],
|
|
1387
1387
|
];
|
|
1388
|
-
var FailureTrace = [
|
|
1388
|
+
var FailureTrace$ = [
|
|
1389
1389
|
3,
|
|
1390
1390
|
n0,
|
|
1391
1391
|
_FT,
|
|
1392
1392
|
8,
|
|
1393
1393
|
[_tI, _fR, _fC, _me],
|
|
1394
|
-
[0, [() => FailureReasonString, 0], 1, [() => Metadata
|
|
1394
|
+
[0, [() => FailureReasonString, 0], 1, [() => Metadata$, 0]],
|
|
1395
1395
|
];
|
|
1396
|
-
var FieldForReranking = [3, n0, _FFR, 0, [_fN], [0]];
|
|
1397
|
-
var FilePart = [3, n0, _FP, 0, [_fi], [[() => OutputFiles, 0]]];
|
|
1398
|
-
var FileSource = [
|
|
1396
|
+
var FieldForReranking$ = [3, n0, _FFR, 0, [_fN], [0]];
|
|
1397
|
+
var FilePart$ = [3, n0, _FP, 0, [_fi], [[() => OutputFiles, 0]]];
|
|
1398
|
+
var FileSource$ = [
|
|
1399
1399
|
3,
|
|
1400
1400
|
n0,
|
|
1401
1401
|
_FS,
|
|
1402
1402
|
0,
|
|
1403
1403
|
[_sT, _sL, _bC],
|
|
1404
|
-
[0, () => S3ObjectFile
|
|
1404
|
+
[0, () => S3ObjectFile$, [() => ByteContentFile$, 0]],
|
|
1405
1405
|
];
|
|
1406
|
-
var FilterAttribute = [3, n0, _FA, 0, [_k, _va], [0, 15]];
|
|
1407
|
-
var FinalResponse = [
|
|
1406
|
+
var FilterAttribute$ = [3, n0, _FA, 0, [_k, _va], [0, 15]];
|
|
1407
|
+
var FinalResponse$ = [
|
|
1408
1408
|
3,
|
|
1409
1409
|
n0,
|
|
1410
1410
|
_FR,
|
|
@@ -1412,12 +1412,12 @@ var FinalResponse = [
|
|
|
1412
1412
|
[_t, _me],
|
|
1413
1413
|
[
|
|
1414
1414
|
[() => FinalResponseString, 0],
|
|
1415
|
-
[() => Metadata
|
|
1415
|
+
[() => Metadata$, 0],
|
|
1416
1416
|
],
|
|
1417
1417
|
];
|
|
1418
|
-
var FlowCompletionEvent = [3, n0, _FCE, 8, [_cR], [0]];
|
|
1419
|
-
var FlowExecutionError = [3, n0, _FEE, 0, [_nN, _e, _m], [0, 0, 0]];
|
|
1420
|
-
var FlowExecutionInputEvent = [
|
|
1418
|
+
var FlowCompletionEvent$ = [3, n0, _FCE, 8, [_cR], [0]];
|
|
1419
|
+
var FlowExecutionError$ = [3, n0, _FEE, 0, [_nN, _e, _m], [0, 0, 0]];
|
|
1420
|
+
var FlowExecutionInputEvent$ = [
|
|
1421
1421
|
3,
|
|
1422
1422
|
n0,
|
|
1423
1423
|
_FEIE,
|
|
@@ -1425,7 +1425,7 @@ var FlowExecutionInputEvent = [
|
|
|
1425
1425
|
[_nN, _ti, _fie],
|
|
1426
1426
|
[0, 5, [() => FlowInputFields, 0]],
|
|
1427
1427
|
];
|
|
1428
|
-
var FlowExecutionOutputEvent = [
|
|
1428
|
+
var FlowExecutionOutputEvent$ = [
|
|
1429
1429
|
3,
|
|
1430
1430
|
n0,
|
|
1431
1431
|
_FEOE,
|
|
@@ -1433,7 +1433,7 @@ var FlowExecutionOutputEvent = [
|
|
|
1433
1433
|
[_nN, _ti, _fie],
|
|
1434
1434
|
[0, 5, [() => FlowOutputFields, 0]],
|
|
1435
1435
|
];
|
|
1436
|
-
var FlowExecutionSummary = [
|
|
1436
|
+
var FlowExecutionSummary$ = [
|
|
1437
1437
|
3,
|
|
1438
1438
|
n0,
|
|
1439
1439
|
_FES,
|
|
@@ -1441,28 +1441,35 @@ var FlowExecutionSummary = [
|
|
|
1441
1441
|
[_eA, _fAI, _fI, _fV, _st, _cA, _eAn],
|
|
1442
1442
|
[0, 0, 0, 0, 0, 5, 5],
|
|
1443
1443
|
];
|
|
1444
|
-
var FlowFailureEvent = [3, n0, _FFE, 8, [_ti, _eC, _eM], [5, 0, 0]];
|
|
1445
|
-
var FlowInput = [
|
|
1444
|
+
var FlowFailureEvent$ = [3, n0, _FFE, 8, [_ti, _eC, _eM], [5, 0, 0]];
|
|
1445
|
+
var FlowInput$ = [
|
|
1446
1446
|
3,
|
|
1447
1447
|
n0,
|
|
1448
1448
|
_FI,
|
|
1449
1449
|
0,
|
|
1450
1450
|
[_nN, _nON, _co, _nIN],
|
|
1451
|
-
[0, 0, [() => FlowInputContent
|
|
1451
|
+
[0, 0, [() => FlowInputContent$, 0], 0],
|
|
1452
1452
|
];
|
|
1453
|
-
var FlowInputField = [3, n0, _FIF, 8, [_n, _co], [0, [() => FlowExecutionContent
|
|
1454
|
-
var FlowMultiTurnInputRequestEvent = [
|
|
1453
|
+
var FlowInputField$ = [3, n0, _FIF, 8, [_n, _co], [0, [() => FlowExecutionContent$, 0]]];
|
|
1454
|
+
var FlowMultiTurnInputRequestEvent$ = [
|
|
1455
1455
|
3,
|
|
1456
1456
|
n0,
|
|
1457
1457
|
_FMTIRE,
|
|
1458
1458
|
8,
|
|
1459
1459
|
[_nN, _nT, _co],
|
|
1460
|
-
[0, 0, () => FlowMultiTurnInputContent],
|
|
1460
|
+
[0, 0, () => FlowMultiTurnInputContent$],
|
|
1461
1461
|
];
|
|
1462
|
-
var FlowOutputEvent = [
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1462
|
+
var FlowOutputEvent$ = [
|
|
1463
|
+
3,
|
|
1464
|
+
n0,
|
|
1465
|
+
_FOE,
|
|
1466
|
+
8,
|
|
1467
|
+
[_nN, _nT, _co],
|
|
1468
|
+
[0, 0, () => FlowOutputContent$],
|
|
1469
|
+
];
|
|
1470
|
+
var FlowOutputField$ = [3, n0, _FOF, 8, [_n, _co], [0, [() => FlowExecutionContent$, 0]]];
|
|
1471
|
+
var FlowTraceCondition$ = [3, n0, _FTC, 8, [_cNo], [0]];
|
|
1472
|
+
var FlowTraceConditionNodeResultEvent$ = [
|
|
1466
1473
|
3,
|
|
1467
1474
|
n0,
|
|
1468
1475
|
_FTCNRE,
|
|
@@ -1470,16 +1477,16 @@ var FlowTraceConditionNodeResultEvent = [
|
|
|
1470
1477
|
[_nN, _ti, _sC],
|
|
1471
1478
|
[0, 5, [() => FlowTraceConditions, 0]],
|
|
1472
1479
|
];
|
|
1473
|
-
var FlowTraceDependencyEvent = [
|
|
1480
|
+
var FlowTraceDependencyEvent$ = [
|
|
1474
1481
|
3,
|
|
1475
1482
|
n0,
|
|
1476
1483
|
_FTDE,
|
|
1477
1484
|
8,
|
|
1478
1485
|
[_nN, _ti, _tE],
|
|
1479
|
-
[0, 5, [() => TraceElements
|
|
1486
|
+
[0, 5, [() => TraceElements$, 0]],
|
|
1480
1487
|
];
|
|
1481
|
-
var FlowTraceEvent = [3, n0, _FTE, 0, [_tra], [[() => FlowTrace
|
|
1482
|
-
var FlowTraceNodeActionEvent = [
|
|
1488
|
+
var FlowTraceEvent$ = [3, n0, _FTE, 0, [_tra], [[() => FlowTrace$, 0]]];
|
|
1489
|
+
var FlowTraceNodeActionEvent$ = [
|
|
1483
1490
|
3,
|
|
1484
1491
|
n0,
|
|
1485
1492
|
_FTNAE,
|
|
@@ -1487,7 +1494,7 @@ var FlowTraceNodeActionEvent = [
|
|
|
1487
1494
|
[_nN, _ti, _rI, _sN, _oN, _oR, _oRp],
|
|
1488
1495
|
[0, 5, 0, 0, 0, 15, 15],
|
|
1489
1496
|
];
|
|
1490
|
-
var FlowTraceNodeInputEvent = [
|
|
1497
|
+
var FlowTraceNodeInputEvent$ = [
|
|
1491
1498
|
3,
|
|
1492
1499
|
n0,
|
|
1493
1500
|
_FTNIE,
|
|
@@ -1495,7 +1502,7 @@ var FlowTraceNodeInputEvent = [
|
|
|
1495
1502
|
[_nN, _ti, _fie],
|
|
1496
1503
|
[0, 5, [() => FlowTraceNodeInputFields, 0]],
|
|
1497
1504
|
];
|
|
1498
|
-
var FlowTraceNodeInputExecutionChainItem = [
|
|
1505
|
+
var FlowTraceNodeInputExecutionChainItem$ = [
|
|
1499
1506
|
3,
|
|
1500
1507
|
n0,
|
|
1501
1508
|
_FTNIECI,
|
|
@@ -1503,7 +1510,7 @@ var FlowTraceNodeInputExecutionChainItem = [
|
|
|
1503
1510
|
[_nN, _ind, _ty],
|
|
1504
1511
|
[0, 1, 0],
|
|
1505
1512
|
];
|
|
1506
|
-
var FlowTraceNodeInputField = [
|
|
1513
|
+
var FlowTraceNodeInputField$ = [
|
|
1507
1514
|
3,
|
|
1508
1515
|
n0,
|
|
1509
1516
|
_FTNIF,
|
|
@@ -1511,14 +1518,14 @@ var FlowTraceNodeInputField = [
|
|
|
1511
1518
|
[_nIN, _co, _sou, _ty, _ca, _eCx],
|
|
1512
1519
|
[
|
|
1513
1520
|
0,
|
|
1514
|
-
[() => FlowTraceNodeInputContent
|
|
1515
|
-
[() => FlowTraceNodeInputSource
|
|
1521
|
+
[() => FlowTraceNodeInputContent$, 0],
|
|
1522
|
+
[() => FlowTraceNodeInputSource$, 0],
|
|
1516
1523
|
0,
|
|
1517
1524
|
0,
|
|
1518
1525
|
[() => FlowTraceNodeInputExecutionChain, 0],
|
|
1519
1526
|
],
|
|
1520
1527
|
];
|
|
1521
|
-
var FlowTraceNodeInputSource = [
|
|
1528
|
+
var FlowTraceNodeInputSource$ = [
|
|
1522
1529
|
3,
|
|
1523
1530
|
n0,
|
|
1524
1531
|
_FTNIS,
|
|
@@ -1526,7 +1533,7 @@ var FlowTraceNodeInputSource = [
|
|
|
1526
1533
|
[_nN, _oFN, _exp],
|
|
1527
1534
|
[0, 0, [() => FlowNodeInputExpression, 0]],
|
|
1528
1535
|
];
|
|
1529
|
-
var FlowTraceNodeOutputEvent = [
|
|
1536
|
+
var FlowTraceNodeOutputEvent$ = [
|
|
1530
1537
|
3,
|
|
1531
1538
|
n0,
|
|
1532
1539
|
_FTNOE,
|
|
@@ -1534,16 +1541,16 @@ var FlowTraceNodeOutputEvent = [
|
|
|
1534
1541
|
[_nN, _ti, _fie],
|
|
1535
1542
|
[0, 5, [() => FlowTraceNodeOutputFields, 0]],
|
|
1536
1543
|
];
|
|
1537
|
-
var FlowTraceNodeOutputField = [
|
|
1544
|
+
var FlowTraceNodeOutputField$ = [
|
|
1538
1545
|
3,
|
|
1539
1546
|
n0,
|
|
1540
1547
|
_FTNOF,
|
|
1541
1548
|
8,
|
|
1542
1549
|
[_nON, _co, _ne, _ty],
|
|
1543
|
-
[0, () => FlowTraceNodeOutputContent
|
|
1550
|
+
[0, () => FlowTraceNodeOutputContent$, [() => FlowTraceNodeOutputNextList, 0], 0],
|
|
1544
1551
|
];
|
|
1545
|
-
var FlowTraceNodeOutputNext = [3, n0, _FTNON, 8, [_nN, _iFN], [0, 0]];
|
|
1546
|
-
var FunctionDefinition = [
|
|
1552
|
+
var FlowTraceNodeOutputNext$ = [3, n0, _FTNON, 8, [_nN, _iFN], [0, 0]];
|
|
1553
|
+
var FunctionDefinition$ = [
|
|
1547
1554
|
3,
|
|
1548
1555
|
n0,
|
|
1549
1556
|
_FD,
|
|
@@ -1551,7 +1558,7 @@ var FunctionDefinition = [
|
|
|
1551
1558
|
[_n, _d, _p, _rC],
|
|
1552
1559
|
[[() => ResourceName, 0], 0, () => ParameterMap, 0],
|
|
1553
1560
|
];
|
|
1554
|
-
var FunctionInvocationInput = [
|
|
1561
|
+
var FunctionInvocationInput$ = [
|
|
1555
1562
|
3,
|
|
1556
1563
|
n0,
|
|
1557
1564
|
_FII,
|
|
@@ -1559,8 +1566,8 @@ var FunctionInvocationInput = [
|
|
|
1559
1566
|
[_aG, _p, _f, _aIT, _aI, _cN],
|
|
1560
1567
|
[0, () => FunctionParameters, 0, 0, 0, [() => Name, 0]],
|
|
1561
1568
|
];
|
|
1562
|
-
var FunctionParameter = [3, n0, _FPu, 0, [_n, _ty, _va], [0, 0, 0]];
|
|
1563
|
-
var FunctionResult = [
|
|
1569
|
+
var FunctionParameter$ = [3, n0, _FPu, 0, [_n, _ty, _va], [0, 0, 0]];
|
|
1570
|
+
var FunctionResult$ = [
|
|
1564
1571
|
3,
|
|
1565
1572
|
n0,
|
|
1566
1573
|
_FRu,
|
|
@@ -1568,32 +1575,32 @@ var FunctionResult = [
|
|
|
1568
1575
|
[_aG, _cS, _f, _rBe, _rS, _aI],
|
|
1569
1576
|
[0, 0, 0, () => ResponseBody, 0, 0],
|
|
1570
1577
|
];
|
|
1571
|
-
var GeneratedQuery = [3, n0, _GQ, 8, [_ty, _sq], [0, 0]];
|
|
1572
|
-
var GeneratedResponsePart = [3, n0, _GRP, 0, [_tRP], [[() => TextResponsePart
|
|
1573
|
-
var GenerateQueryRequest = [
|
|
1578
|
+
var GeneratedQuery$ = [3, n0, _GQ, 8, [_ty, _sq], [0, 0]];
|
|
1579
|
+
var GeneratedResponsePart$ = [3, n0, _GRP, 0, [_tRP], [[() => TextResponsePart$, 0]]];
|
|
1580
|
+
var GenerateQueryRequest$ = [
|
|
1574
1581
|
3,
|
|
1575
1582
|
n0,
|
|
1576
1583
|
_GQR,
|
|
1577
1584
|
0,
|
|
1578
1585
|
[_qGI, _tC],
|
|
1579
|
-
[[() => QueryGenerationInput
|
|
1586
|
+
[[() => QueryGenerationInput$, 0], () => TransformationConfiguration$],
|
|
1580
1587
|
];
|
|
1581
|
-
var GenerateQueryResponse = [3, n0, _GQRe, 0, [_q], [[() => GeneratedQueries, 0]]];
|
|
1582
|
-
var GenerationConfiguration = [
|
|
1588
|
+
var GenerateQueryResponse$ = [3, n0, _GQRe, 0, [_q], [[() => GeneratedQueries, 0]]];
|
|
1589
|
+
var GenerationConfiguration$ = [
|
|
1583
1590
|
3,
|
|
1584
1591
|
n0,
|
|
1585
1592
|
_GC,
|
|
1586
1593
|
0,
|
|
1587
1594
|
[_pT, _gC, _iC, _aMRF, _pC],
|
|
1588
1595
|
[
|
|
1589
|
-
[() => PromptTemplate
|
|
1590
|
-
() => GuardrailConfiguration
|
|
1591
|
-
() => InferenceConfig
|
|
1596
|
+
[() => PromptTemplate$, 0],
|
|
1597
|
+
() => GuardrailConfiguration$,
|
|
1598
|
+
() => InferenceConfig$,
|
|
1592
1599
|
128 | 15,
|
|
1593
|
-
() => PerformanceConfiguration
|
|
1600
|
+
() => PerformanceConfiguration$,
|
|
1594
1601
|
],
|
|
1595
1602
|
];
|
|
1596
|
-
var GetAgentMemoryRequest = [
|
|
1603
|
+
var GetAgentMemoryRequest$ = [
|
|
1597
1604
|
3,
|
|
1598
1605
|
n0,
|
|
1599
1606
|
_GAMR,
|
|
@@ -1608,8 +1615,8 @@ var GetAgentMemoryRequest = [
|
|
|
1608
1615
|
[0, { [_hQ]: _mI }],
|
|
1609
1616
|
],
|
|
1610
1617
|
];
|
|
1611
|
-
var GetAgentMemoryResponse = [3, n0, _GAMRe, 0, [_nTe, _mCe], [0, () => Memories]];
|
|
1612
|
-
var GetExecutionFlowSnapshotRequest = [
|
|
1618
|
+
var GetAgentMemoryResponse$ = [3, n0, _GAMRe, 0, [_nTe, _mCe], [0, () => Memories]];
|
|
1619
|
+
var GetExecutionFlowSnapshotRequest$ = [
|
|
1613
1620
|
3,
|
|
1614
1621
|
n0,
|
|
1615
1622
|
_GEFSR,
|
|
@@ -1621,7 +1628,7 @@ var GetExecutionFlowSnapshotRequest = [
|
|
|
1621
1628
|
[0, 1],
|
|
1622
1629
|
],
|
|
1623
1630
|
];
|
|
1624
|
-
var GetExecutionFlowSnapshotResponse = [
|
|
1631
|
+
var GetExecutionFlowSnapshotResponse$ = [
|
|
1625
1632
|
3,
|
|
1626
1633
|
n0,
|
|
1627
1634
|
_GEFSRe,
|
|
@@ -1629,7 +1636,7 @@ var GetExecutionFlowSnapshotResponse = [
|
|
|
1629
1636
|
[_fI, _fAI, _fV, _eRA, _de, _cEKA],
|
|
1630
1637
|
[0, 0, 0, 0, 0, 0],
|
|
1631
1638
|
];
|
|
1632
|
-
var GetFlowExecutionRequest = [
|
|
1639
|
+
var GetFlowExecutionRequest$ = [
|
|
1633
1640
|
3,
|
|
1634
1641
|
n0,
|
|
1635
1642
|
_GFER,
|
|
@@ -1641,7 +1648,7 @@ var GetFlowExecutionRequest = [
|
|
|
1641
1648
|
[0, 1],
|
|
1642
1649
|
],
|
|
1643
1650
|
];
|
|
1644
|
-
var GetFlowExecutionResponse = [
|
|
1651
|
+
var GetFlowExecutionResponse$ = [
|
|
1645
1652
|
3,
|
|
1646
1653
|
n0,
|
|
1647
1654
|
_GFERe,
|
|
@@ -1649,10 +1656,10 @@ var GetFlowExecutionResponse = [
|
|
|
1649
1656
|
[_eA, _st, _sAt, _eAn, _er, _fAI, _fI, _fV],
|
|
1650
1657
|
[0, 0, 5, 5, () => FlowExecutionErrors, 0, 0, 0],
|
|
1651
1658
|
];
|
|
1652
|
-
var GetInvocationStepRequest = [3, n0, _GISR, 0, [_iIn, _iSI, _sI], [0, [0, 1], [0, 1]]];
|
|
1653
|
-
var GetInvocationStepResponse = [3, n0, _GISRe, 0, [_iS], [[() => InvocationStep
|
|
1654
|
-
var GetSessionRequest = [3, n0, _GSR, 0, [_sI], [[0, 1]]];
|
|
1655
|
-
var GetSessionResponse = [
|
|
1659
|
+
var GetInvocationStepRequest$ = [3, n0, _GISR, 0, [_iIn, _iSI, _sI], [0, [0, 1], [0, 1]]];
|
|
1660
|
+
var GetInvocationStepResponse$ = [3, n0, _GISRe, 0, [_iS], [[() => InvocationStep$, 0]]];
|
|
1661
|
+
var GetSessionRequest$ = [3, n0, _GSR, 0, [_sI], [[0, 1]]];
|
|
1662
|
+
var GetSessionResponse$ = [
|
|
1656
1663
|
3,
|
|
1657
1664
|
n0,
|
|
1658
1665
|
_GSRe,
|
|
@@ -1660,23 +1667,23 @@ var GetSessionResponse = [
|
|
|
1660
1667
|
[_sIe, _sA, _sS, _cA, _lUA, _sM, _eKA],
|
|
1661
1668
|
[0, 0, 0, 5, 5, 128 | 0, 0],
|
|
1662
1669
|
];
|
|
1663
|
-
var GuardrailAssessment = [
|
|
1670
|
+
var GuardrailAssessment$ = [
|
|
1664
1671
|
3,
|
|
1665
1672
|
n0,
|
|
1666
1673
|
_GA,
|
|
1667
1674
|
8,
|
|
1668
1675
|
[_tP, _cP, _wP, _sIP],
|
|
1669
1676
|
[
|
|
1670
|
-
[() => GuardrailTopicPolicyAssessment
|
|
1671
|
-
[() => GuardrailContentPolicyAssessment
|
|
1672
|
-
[() => GuardrailWordPolicyAssessment
|
|
1673
|
-
[() => GuardrailSensitiveInformationPolicyAssessment
|
|
1677
|
+
[() => GuardrailTopicPolicyAssessment$, 0],
|
|
1678
|
+
[() => GuardrailContentPolicyAssessment$, 0],
|
|
1679
|
+
[() => GuardrailWordPolicyAssessment$, 0],
|
|
1680
|
+
[() => GuardrailSensitiveInformationPolicyAssessment$, 0],
|
|
1674
1681
|
],
|
|
1675
1682
|
];
|
|
1676
|
-
var GuardrailConfiguration = [3, n0, _GCu, 0, [_gI, _gV], [0, 0]];
|
|
1677
|
-
var GuardrailConfigurationWithArn = [3, n0, _GCWA, 0, [_gIu, _gV], [0, 0]];
|
|
1678
|
-
var GuardrailContentFilter = [3, n0, _GCF, 8, [_ty, _con, _a], [0, 0, 0]];
|
|
1679
|
-
var GuardrailContentPolicyAssessment = [
|
|
1683
|
+
var GuardrailConfiguration$ = [3, n0, _GCu, 0, [_gI, _gV], [0, 0]];
|
|
1684
|
+
var GuardrailConfigurationWithArn$ = [3, n0, _GCWA, 0, [_gIu, _gV], [0, 0]];
|
|
1685
|
+
var GuardrailContentFilter$ = [3, n0, _GCF, 8, [_ty, _con, _a], [0, 0, 0]];
|
|
1686
|
+
var GuardrailContentPolicyAssessment$ = [
|
|
1680
1687
|
3,
|
|
1681
1688
|
n0,
|
|
1682
1689
|
_GCPA,
|
|
@@ -1684,12 +1691,12 @@ var GuardrailContentPolicyAssessment = [
|
|
|
1684
1691
|
[_fil],
|
|
1685
1692
|
[[() => GuardrailContentFilterList, 0]],
|
|
1686
1693
|
];
|
|
1687
|
-
var GuardrailCustomWord = [3, n0, _GCW, 8, [_ma, _a], [0, 0]];
|
|
1688
|
-
var GuardrailEvent = [3, n0, _GE, 0, [_a], [0]];
|
|
1689
|
-
var GuardrailManagedWord = [3, n0, _GMW, 8, [_ma, _ty, _a], [0, 0, 0]];
|
|
1690
|
-
var GuardrailPiiEntityFilter = [3, n0, _GPEF, 8, [_ty, _ma, _a], [0, 0, 0]];
|
|
1691
|
-
var GuardrailRegexFilter = [3, n0, _GRF, 8, [_n, _r, _ma, _a], [0, 0, 0, 0]];
|
|
1692
|
-
var GuardrailSensitiveInformationPolicyAssessment = [
|
|
1694
|
+
var GuardrailCustomWord$ = [3, n0, _GCW, 8, [_ma, _a], [0, 0]];
|
|
1695
|
+
var GuardrailEvent$ = [3, n0, _GE, 0, [_a], [0]];
|
|
1696
|
+
var GuardrailManagedWord$ = [3, n0, _GMW, 8, [_ma, _ty, _a], [0, 0, 0]];
|
|
1697
|
+
var GuardrailPiiEntityFilter$ = [3, n0, _GPEF, 8, [_ty, _ma, _a], [0, 0, 0]];
|
|
1698
|
+
var GuardrailRegexFilter$ = [3, n0, _GRF, 8, [_n, _r, _ma, _a], [0, 0, 0, 0]];
|
|
1699
|
+
var GuardrailSensitiveInformationPolicyAssessment$ = [
|
|
1693
1700
|
3,
|
|
1694
1701
|
n0,
|
|
1695
1702
|
_GSIPA,
|
|
@@ -1700,8 +1707,8 @@ var GuardrailSensitiveInformationPolicyAssessment = [
|
|
|
1700
1707
|
[() => GuardrailRegexFilterList, 0],
|
|
1701
1708
|
],
|
|
1702
1709
|
];
|
|
1703
|
-
var GuardrailTopic = [3, n0, _GT, 8, [_n, _ty, _a], [0, 0, 0]];
|
|
1704
|
-
var GuardrailTopicPolicyAssessment = [
|
|
1710
|
+
var GuardrailTopic$ = [3, n0, _GT, 8, [_n, _ty, _a], [0, 0, 0]];
|
|
1711
|
+
var GuardrailTopicPolicyAssessment$ = [
|
|
1705
1712
|
3,
|
|
1706
1713
|
n0,
|
|
1707
1714
|
_GTPA,
|
|
@@ -1709,15 +1716,15 @@ var GuardrailTopicPolicyAssessment = [
|
|
|
1709
1716
|
[_to],
|
|
1710
1717
|
[[() => GuardrailTopicList, 0]],
|
|
1711
1718
|
];
|
|
1712
|
-
var GuardrailTrace = [
|
|
1719
|
+
var GuardrailTrace$ = [
|
|
1713
1720
|
3,
|
|
1714
1721
|
n0,
|
|
1715
1722
|
_GTu,
|
|
1716
1723
|
8,
|
|
1717
1724
|
[_a, _tI, _iA, _oA, _me],
|
|
1718
|
-
[0, 0, [() => GuardrailAssessmentList, 0], [() => GuardrailAssessmentList, 0], [() => Metadata
|
|
1725
|
+
[0, 0, [() => GuardrailAssessmentList, 0], [() => GuardrailAssessmentList, 0], [() => Metadata$, 0]],
|
|
1719
1726
|
];
|
|
1720
|
-
var GuardrailWordPolicyAssessment = [
|
|
1727
|
+
var GuardrailWordPolicyAssessment$ = [
|
|
1721
1728
|
3,
|
|
1722
1729
|
n0,
|
|
1723
1730
|
_GWPA,
|
|
@@ -1728,9 +1735,9 @@ var GuardrailWordPolicyAssessment = [
|
|
|
1728
1735
|
[() => GuardrailManagedWordList, 0],
|
|
1729
1736
|
],
|
|
1730
1737
|
];
|
|
1731
|
-
var ImageBlock = [3, n0, _IB, 0, [_fo, _sou], [0, () => ImageSource]];
|
|
1732
|
-
var ImageInput = [3, n0, _II, 0, [_fo, _sou], [0, () => ImageInputSource]];
|
|
1733
|
-
var ImplicitFilterConfiguration = [
|
|
1738
|
+
var ImageBlock$ = [3, n0, _IB, 0, [_fo, _sou], [0, () => ImageSource$]];
|
|
1739
|
+
var ImageInput$ = [3, n0, _II, 0, [_fo, _sou], [0, () => ImageInputSource$]];
|
|
1740
|
+
var ImplicitFilterConfiguration$ = [
|
|
1734
1741
|
3,
|
|
1735
1742
|
n0,
|
|
1736
1743
|
_IFC,
|
|
@@ -1738,8 +1745,8 @@ var ImplicitFilterConfiguration = [
|
|
|
1738
1745
|
[_mAe, _mA],
|
|
1739
1746
|
[[() => MetadataAttributeSchemaList, 0], 0],
|
|
1740
1747
|
];
|
|
1741
|
-
var InferenceConfig = [3, n0, _IC, 0, [_tIC], [() => TextInferenceConfig]];
|
|
1742
|
-
var InferenceConfiguration = [
|
|
1748
|
+
var InferenceConfig$ = [3, n0, _IC, 0, [_tIC], [() => TextInferenceConfig$]];
|
|
1749
|
+
var InferenceConfiguration$ = [
|
|
1743
1750
|
3,
|
|
1744
1751
|
n0,
|
|
1745
1752
|
_ICn,
|
|
@@ -1747,8 +1754,8 @@ var InferenceConfiguration = [
|
|
|
1747
1754
|
[_te, _tPo, _tK, _mL, _sSt],
|
|
1748
1755
|
[1, 1, 1, 1, 64 | 0],
|
|
1749
1756
|
];
|
|
1750
|
-
var InlineAgentFilePart = [3, n0, _IAFP, 0, [_fi], [[() => OutputFiles, 0]]];
|
|
1751
|
-
var InlineAgentPayloadPart = [
|
|
1757
|
+
var InlineAgentFilePart$ = [3, n0, _IAFP, 0, [_fi], [[() => OutputFiles, 0]]];
|
|
1758
|
+
var InlineAgentPayloadPart$ = [
|
|
1752
1759
|
3,
|
|
1753
1760
|
n0,
|
|
1754
1761
|
_IAPP,
|
|
@@ -1756,10 +1763,10 @@ var InlineAgentPayloadPart = [
|
|
|
1756
1763
|
[_by, _at],
|
|
1757
1764
|
[
|
|
1758
1765
|
[() => PartBody, 0],
|
|
1759
|
-
[() => Attribution
|
|
1766
|
+
[() => Attribution$, 0],
|
|
1760
1767
|
],
|
|
1761
1768
|
];
|
|
1762
|
-
var InlineAgentReturnControlPayload = [
|
|
1769
|
+
var InlineAgentReturnControlPayload$ = [
|
|
1763
1770
|
3,
|
|
1764
1771
|
n0,
|
|
1765
1772
|
_IARCP,
|
|
@@ -1767,23 +1774,23 @@ var InlineAgentReturnControlPayload = [
|
|
|
1767
1774
|
[_iInv, _iI],
|
|
1768
1775
|
[[() => InvocationInputs, 0], 0],
|
|
1769
1776
|
];
|
|
1770
|
-
var InlineAgentTracePart = [
|
|
1777
|
+
var InlineAgentTracePart$ = [
|
|
1771
1778
|
3,
|
|
1772
1779
|
n0,
|
|
1773
1780
|
_IATP,
|
|
1774
1781
|
8,
|
|
1775
1782
|
[_sIe, _tra, _cCa, _eTv, _cN],
|
|
1776
|
-
[0, [() => Trace
|
|
1783
|
+
[0, [() => Trace$, 0], () => CallerChain, 5, [() => Name, 0]],
|
|
1777
1784
|
];
|
|
1778
|
-
var InlineBedrockModelConfigurations = [
|
|
1785
|
+
var InlineBedrockModelConfigurations$ = [
|
|
1779
1786
|
3,
|
|
1780
1787
|
n0,
|
|
1781
1788
|
_IBMC,
|
|
1782
1789
|
0,
|
|
1783
1790
|
[_pC],
|
|
1784
|
-
[() => PerformanceConfiguration],
|
|
1791
|
+
[() => PerformanceConfiguration$],
|
|
1785
1792
|
];
|
|
1786
|
-
var InlineSessionState = [
|
|
1793
|
+
var InlineSessionState$ = [
|
|
1787
1794
|
3,
|
|
1788
1795
|
n0,
|
|
1789
1796
|
_ISS,
|
|
@@ -1795,14 +1802,14 @@ var InlineSessionState = [
|
|
|
1795
1802
|
[() => ReturnControlInvocationResults, 0],
|
|
1796
1803
|
0,
|
|
1797
1804
|
[() => InputFiles, 0],
|
|
1798
|
-
[() => ConversationHistory
|
|
1805
|
+
[() => ConversationHistory$, 0],
|
|
1799
1806
|
],
|
|
1800
1807
|
];
|
|
1801
|
-
var InputFile = [3, n0, _IF, 0, [_n, _sou, _uC], [0, [() => FileSource
|
|
1802
|
-
var InputImage = [3, n0, _IIn, 0, [_fo, _iCn], [0, [() => ByteContentBlob, 0]]];
|
|
1803
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m, _rea], [0, 0]];
|
|
1804
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
1805
|
-
var InvocationInput = [
|
|
1808
|
+
var InputFile$ = [3, n0, _IF, 0, [_n, _sou, _uC], [0, [() => FileSource$, 0], 0]];
|
|
1809
|
+
var InputImage$ = [3, n0, _IIn, 0, [_fo, _iCn], [0, [() => ByteContentBlob, 0]]];
|
|
1810
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m, _rea], [0, 0]];
|
|
1811
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1812
|
+
var InvocationInput$ = [
|
|
1806
1813
|
3,
|
|
1807
1814
|
n0,
|
|
1808
1815
|
_IInv,
|
|
@@ -1811,30 +1818,30 @@ var InvocationInput = [
|
|
|
1811
1818
|
[
|
|
1812
1819
|
0,
|
|
1813
1820
|
0,
|
|
1814
|
-
[() => ActionGroupInvocationInput
|
|
1815
|
-
[() => KnowledgeBaseLookupInput
|
|
1816
|
-
() => CodeInterpreterInvocationInput
|
|
1817
|
-
[() => AgentCollaboratorInvocationInput
|
|
1821
|
+
[() => ActionGroupInvocationInput$, 0],
|
|
1822
|
+
[() => KnowledgeBaseLookupInput$, 0],
|
|
1823
|
+
() => CodeInterpreterInvocationInput$,
|
|
1824
|
+
[() => AgentCollaboratorInvocationInput$, 0],
|
|
1818
1825
|
],
|
|
1819
1826
|
];
|
|
1820
|
-
var InvocationStep = [
|
|
1827
|
+
var InvocationStep$ = [
|
|
1821
1828
|
3,
|
|
1822
1829
|
n0,
|
|
1823
1830
|
_IS,
|
|
1824
1831
|
0,
|
|
1825
1832
|
[_sIe, _iI, _iSI, _iST, _pa],
|
|
1826
|
-
[0, 0, 0, 5, [() => InvocationStepPayload
|
|
1833
|
+
[0, 0, 0, 5, [() => InvocationStepPayload$, 0]],
|
|
1827
1834
|
];
|
|
1828
|
-
var InvocationStepSummary = [3, n0, _ISSn, 0, [_sIe, _iI, _iSI, _iST], [0, 0, 0, 5]];
|
|
1829
|
-
var InvocationSummary = [3, n0, _ISn, 0, [_sIe, _iI, _cA], [0, 0, 5]];
|
|
1830
|
-
var InvokeAgentRequest = [
|
|
1835
|
+
var InvocationStepSummary$ = [3, n0, _ISSn, 0, [_sIe, _iI, _iSI, _iST], [0, 0, 0, 5]];
|
|
1836
|
+
var InvocationSummary$ = [3, n0, _ISn, 0, [_sIe, _iI, _cA], [0, 0, 5]];
|
|
1837
|
+
var InvokeAgentRequest$ = [
|
|
1831
1838
|
3,
|
|
1832
1839
|
n0,
|
|
1833
1840
|
_IAR,
|
|
1834
1841
|
0,
|
|
1835
1842
|
[_sSe, _aI, _aAI, _sIe, _eS, _eTn, _iTn, _mI, _bMC, _sCt, _pCC, _sAo],
|
|
1836
1843
|
[
|
|
1837
|
-
[() => SessionState
|
|
1844
|
+
[() => SessionState$, 0],
|
|
1838
1845
|
[0, 1],
|
|
1839
1846
|
[0, 1],
|
|
1840
1847
|
[0, 1],
|
|
@@ -1842,45 +1849,45 @@ var InvokeAgentRequest = [
|
|
|
1842
1849
|
2,
|
|
1843
1850
|
[() => InputText, 0],
|
|
1844
1851
|
0,
|
|
1845
|
-
() => BedrockModelConfigurations
|
|
1846
|
-
() => StreamingConfigurations
|
|
1847
|
-
() => PromptCreationConfigurations
|
|
1852
|
+
() => BedrockModelConfigurations$,
|
|
1853
|
+
() => StreamingConfigurations$,
|
|
1854
|
+
() => PromptCreationConfigurations$,
|
|
1848
1855
|
[0, { [_hH]: _xasa }],
|
|
1849
1856
|
],
|
|
1850
1857
|
];
|
|
1851
|
-
var InvokeAgentResponse = [
|
|
1858
|
+
var InvokeAgentResponse$ = [
|
|
1852
1859
|
3,
|
|
1853
1860
|
n0,
|
|
1854
1861
|
_IARn,
|
|
1855
1862
|
0,
|
|
1856
1863
|
[_com, _cT, _sIe, _mI],
|
|
1857
1864
|
[
|
|
1858
|
-
[() => ResponseStream
|
|
1865
|
+
[() => ResponseStream$, 16],
|
|
1859
1866
|
[0, { [_hH]: _xabact }],
|
|
1860
1867
|
[0, { [_hH]: _xabasi }],
|
|
1861
1868
|
[0, { [_hH]: _xabami }],
|
|
1862
1869
|
],
|
|
1863
1870
|
];
|
|
1864
|
-
var InvokeFlowRequest = [
|
|
1871
|
+
var InvokeFlowRequest$ = [
|
|
1865
1872
|
3,
|
|
1866
1873
|
n0,
|
|
1867
1874
|
_IFR,
|
|
1868
1875
|
0,
|
|
1869
1876
|
[_fI, _fAI, _inp, _eTn, _mPC, _eIx],
|
|
1870
|
-
[[0, 1], [0, 1], [() => FlowInputs, 0], 2, () => ModelPerformanceConfiguration
|
|
1877
|
+
[[0, 1], [0, 1], [() => FlowInputs, 0], 2, () => ModelPerformanceConfiguration$, 0],
|
|
1871
1878
|
];
|
|
1872
|
-
var InvokeFlowResponse = [
|
|
1879
|
+
var InvokeFlowResponse$ = [
|
|
1873
1880
|
3,
|
|
1874
1881
|
n0,
|
|
1875
1882
|
_IFRn,
|
|
1876
1883
|
0,
|
|
1877
1884
|
[_rSe, _eIx],
|
|
1878
1885
|
[
|
|
1879
|
-
[() => FlowResponseStream
|
|
1886
|
+
[() => FlowResponseStream$, 16],
|
|
1880
1887
|
[0, { [_hH]: _xabfei }],
|
|
1881
1888
|
],
|
|
1882
1889
|
];
|
|
1883
|
-
var InvokeInlineAgentRequest = [
|
|
1890
|
+
var InvokeInlineAgentRequest$ = [
|
|
1884
1891
|
3,
|
|
1885
1892
|
n0,
|
|
1886
1893
|
_IIAR,
|
|
@@ -1916,8 +1923,8 @@ var InvokeInlineAgentRequest = [
|
|
|
1916
1923
|
1,
|
|
1917
1924
|
[() => AgentActionGroups, 0],
|
|
1918
1925
|
[() => KnowledgeBases, 0],
|
|
1919
|
-
() => GuardrailConfigurationWithArn
|
|
1920
|
-
[() => PromptOverrideConfiguration
|
|
1926
|
+
() => GuardrailConfigurationWithArn$,
|
|
1927
|
+
[() => PromptOverrideConfiguration$, 0],
|
|
1921
1928
|
0,
|
|
1922
1929
|
[() => CollaboratorConfigurations, 0],
|
|
1923
1930
|
[() => Name, 0],
|
|
@@ -1925,44 +1932,44 @@ var InvokeInlineAgentRequest = [
|
|
|
1925
1932
|
2,
|
|
1926
1933
|
2,
|
|
1927
1934
|
[() => InputText, 0],
|
|
1928
|
-
() => StreamingConfigurations
|
|
1929
|
-
() => PromptCreationConfigurations
|
|
1930
|
-
[() => InlineSessionState
|
|
1935
|
+
() => StreamingConfigurations$,
|
|
1936
|
+
() => PromptCreationConfigurations$,
|
|
1937
|
+
[() => InlineSessionState$, 0],
|
|
1931
1938
|
[() => Collaborators, 0],
|
|
1932
|
-
() => InlineBedrockModelConfigurations
|
|
1939
|
+
() => InlineBedrockModelConfigurations$,
|
|
1933
1940
|
0,
|
|
1934
|
-
() => CustomOrchestration
|
|
1941
|
+
() => CustomOrchestration$,
|
|
1935
1942
|
],
|
|
1936
1943
|
];
|
|
1937
|
-
var InvokeInlineAgentResponse = [
|
|
1944
|
+
var InvokeInlineAgentResponse$ = [
|
|
1938
1945
|
3,
|
|
1939
1946
|
n0,
|
|
1940
1947
|
_IIARn,
|
|
1941
1948
|
0,
|
|
1942
1949
|
[_com, _cT, _sIe],
|
|
1943
1950
|
[
|
|
1944
|
-
[() => InlineAgentResponseStream
|
|
1951
|
+
[() => InlineAgentResponseStream$, 16],
|
|
1945
1952
|
[0, { [_hH]: _xabact }],
|
|
1946
1953
|
[0, { [_hH]: _xabasi }],
|
|
1947
1954
|
],
|
|
1948
1955
|
];
|
|
1949
|
-
var KnowledgeBase = [
|
|
1956
|
+
var KnowledgeBase$ = [
|
|
1950
1957
|
3,
|
|
1951
1958
|
n0,
|
|
1952
1959
|
_KB,
|
|
1953
1960
|
0,
|
|
1954
1961
|
[_kBI, _d, _rCe],
|
|
1955
|
-
[0, [() => ResourceDescription, 0], [() => KnowledgeBaseRetrievalConfiguration
|
|
1962
|
+
[0, [() => ResourceDescription, 0], [() => KnowledgeBaseRetrievalConfiguration$, 0]],
|
|
1956
1963
|
];
|
|
1957
|
-
var KnowledgeBaseConfiguration = [
|
|
1964
|
+
var KnowledgeBaseConfiguration$ = [
|
|
1958
1965
|
3,
|
|
1959
1966
|
n0,
|
|
1960
1967
|
_KBC,
|
|
1961
1968
|
0,
|
|
1962
1969
|
[_kBI, _rCe],
|
|
1963
|
-
[0, [() => KnowledgeBaseRetrievalConfiguration
|
|
1970
|
+
[0, [() => KnowledgeBaseRetrievalConfiguration$, 0]],
|
|
1964
1971
|
];
|
|
1965
|
-
var KnowledgeBaseLookupInput = [
|
|
1972
|
+
var KnowledgeBaseLookupInput$ = [
|
|
1966
1973
|
3,
|
|
1967
1974
|
n0,
|
|
1968
1975
|
_KBLI,
|
|
@@ -1973,7 +1980,7 @@ var KnowledgeBaseLookupInput = [
|
|
|
1973
1980
|
[() => TraceKnowledgeBaseId, 0],
|
|
1974
1981
|
],
|
|
1975
1982
|
];
|
|
1976
|
-
var KnowledgeBaseLookupOutput = [
|
|
1983
|
+
var KnowledgeBaseLookupOutput$ = [
|
|
1977
1984
|
3,
|
|
1978
1985
|
n0,
|
|
1979
1986
|
_KBLO,
|
|
@@ -1981,27 +1988,34 @@ var KnowledgeBaseLookupOutput = [
|
|
|
1981
1988
|
[_rR, _me],
|
|
1982
1989
|
[
|
|
1983
1990
|
[() => RetrievedReferences, 0],
|
|
1984
|
-
[() => Metadata
|
|
1991
|
+
[() => Metadata$, 0],
|
|
1985
1992
|
],
|
|
1986
1993
|
];
|
|
1987
|
-
var KnowledgeBaseQuery = [
|
|
1988
|
-
|
|
1994
|
+
var KnowledgeBaseQuery$ = [
|
|
1995
|
+
3,
|
|
1996
|
+
n0,
|
|
1997
|
+
_KBQ,
|
|
1998
|
+
8,
|
|
1999
|
+
[_ty, _t, _ima],
|
|
2000
|
+
[0, 0, [() => InputImage$, 0]],
|
|
2001
|
+
];
|
|
2002
|
+
var KnowledgeBaseRetrievalConfiguration$ = [
|
|
1989
2003
|
3,
|
|
1990
2004
|
n0,
|
|
1991
2005
|
_KBRC,
|
|
1992
2006
|
0,
|
|
1993
2007
|
[_vSC],
|
|
1994
|
-
[[() => KnowledgeBaseVectorSearchConfiguration
|
|
2008
|
+
[[() => KnowledgeBaseVectorSearchConfiguration$, 0]],
|
|
1995
2009
|
];
|
|
1996
|
-
var KnowledgeBaseRetrievalResult = [
|
|
2010
|
+
var KnowledgeBaseRetrievalResult$ = [
|
|
1997
2011
|
3,
|
|
1998
2012
|
n0,
|
|
1999
2013
|
_KBRR,
|
|
2000
2014
|
0,
|
|
2001
2015
|
[_co, _l, _sc, _me],
|
|
2002
|
-
[[() => RetrievalResultContent
|
|
2016
|
+
[[() => RetrievalResultContent$, 0], [() => RetrievalResultLocation$, 0], 1, [() => RetrievalResultMetadata, 0]],
|
|
2003
2017
|
];
|
|
2004
|
-
var KnowledgeBaseRetrieveAndGenerateConfiguration = [
|
|
2018
|
+
var KnowledgeBaseRetrieveAndGenerateConfiguration$ = [
|
|
2005
2019
|
3,
|
|
2006
2020
|
n0,
|
|
2007
2021
|
_KBRAGC,
|
|
@@ -2010,12 +2024,12 @@ var KnowledgeBaseRetrieveAndGenerateConfiguration = [
|
|
|
2010
2024
|
[
|
|
2011
2025
|
0,
|
|
2012
2026
|
0,
|
|
2013
|
-
[() => KnowledgeBaseRetrievalConfiguration
|
|
2014
|
-
[() => GenerationConfiguration
|
|
2015
|
-
[() => OrchestrationConfiguration
|
|
2027
|
+
[() => KnowledgeBaseRetrievalConfiguration$, 0],
|
|
2028
|
+
[() => GenerationConfiguration$, 0],
|
|
2029
|
+
[() => OrchestrationConfiguration$, 0],
|
|
2016
2030
|
],
|
|
2017
2031
|
];
|
|
2018
|
-
var KnowledgeBaseVectorSearchConfiguration = [
|
|
2032
|
+
var KnowledgeBaseVectorSearchConfiguration$ = [
|
|
2019
2033
|
3,
|
|
2020
2034
|
n0,
|
|
2021
2035
|
_KBVSC,
|
|
@@ -2024,12 +2038,12 @@ var KnowledgeBaseVectorSearchConfiguration = [
|
|
|
2024
2038
|
[
|
|
2025
2039
|
1,
|
|
2026
2040
|
0,
|
|
2027
|
-
[() => RetrievalFilter
|
|
2028
|
-
[() => VectorSearchRerankingConfiguration
|
|
2029
|
-
[() => ImplicitFilterConfiguration
|
|
2041
|
+
[() => RetrievalFilter$, 0],
|
|
2042
|
+
[() => VectorSearchRerankingConfiguration$, 0],
|
|
2043
|
+
[() => ImplicitFilterConfiguration$, 0],
|
|
2030
2044
|
],
|
|
2031
2045
|
];
|
|
2032
|
-
var ListFlowExecutionEventsRequest = [
|
|
2046
|
+
var ListFlowExecutionEventsRequest$ = [
|
|
2033
2047
|
3,
|
|
2034
2048
|
n0,
|
|
2035
2049
|
_LFEER,
|
|
@@ -2044,7 +2058,7 @@ var ListFlowExecutionEventsRequest = [
|
|
|
2044
2058
|
[0, { [_hQ]: _eTve }],
|
|
2045
2059
|
],
|
|
2046
2060
|
];
|
|
2047
|
-
var ListFlowExecutionEventsResponse = [
|
|
2061
|
+
var ListFlowExecutionEventsResponse$ = [
|
|
2048
2062
|
3,
|
|
2049
2063
|
n0,
|
|
2050
2064
|
_LFEERi,
|
|
@@ -2052,7 +2066,7 @@ var ListFlowExecutionEventsResponse = [
|
|
|
2052
2066
|
[_fEE, _nTe],
|
|
2053
2067
|
[[() => FlowExecutionEvents, 0], 0],
|
|
2054
2068
|
];
|
|
2055
|
-
var ListFlowExecutionsRequest = [
|
|
2069
|
+
var ListFlowExecutionsRequest$ = [
|
|
2056
2070
|
3,
|
|
2057
2071
|
n0,
|
|
2058
2072
|
_LFER,
|
|
@@ -2065,7 +2079,7 @@ var ListFlowExecutionsRequest = [
|
|
|
2065
2079
|
[0, { [_hQ]: _nTe }],
|
|
2066
2080
|
],
|
|
2067
2081
|
];
|
|
2068
|
-
var ListFlowExecutionsResponse = [
|
|
2082
|
+
var ListFlowExecutionsResponse$ = [
|
|
2069
2083
|
3,
|
|
2070
2084
|
n0,
|
|
2071
2085
|
_LFERi,
|
|
@@ -2073,7 +2087,7 @@ var ListFlowExecutionsResponse = [
|
|
|
2073
2087
|
[_fES, _nTe],
|
|
2074
2088
|
[() => FlowExecutionSummaries, 0],
|
|
2075
2089
|
];
|
|
2076
|
-
var ListInvocationsRequest = [
|
|
2090
|
+
var ListInvocationsRequest$ = [
|
|
2077
2091
|
3,
|
|
2078
2092
|
n0,
|
|
2079
2093
|
_LIR,
|
|
@@ -2085,7 +2099,7 @@ var ListInvocationsRequest = [
|
|
|
2085
2099
|
[0, 1],
|
|
2086
2100
|
],
|
|
2087
2101
|
];
|
|
2088
|
-
var ListInvocationsResponse = [
|
|
2102
|
+
var ListInvocationsResponse$ = [
|
|
2089
2103
|
3,
|
|
2090
2104
|
n0,
|
|
2091
2105
|
_LIRi,
|
|
@@ -2093,7 +2107,7 @@ var ListInvocationsResponse = [
|
|
|
2093
2107
|
[_iSn, _nTe],
|
|
2094
2108
|
[() => InvocationSummaries, 0],
|
|
2095
2109
|
];
|
|
2096
|
-
var ListInvocationStepsRequest = [
|
|
2110
|
+
var ListInvocationStepsRequest$ = [
|
|
2097
2111
|
3,
|
|
2098
2112
|
n0,
|
|
2099
2113
|
_LISR,
|
|
@@ -2101,7 +2115,7 @@ var ListInvocationStepsRequest = [
|
|
|
2101
2115
|
[_iIn, _nTe, _mR, _sI],
|
|
2102
2116
|
[0, [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }], [0, 1]],
|
|
2103
2117
|
];
|
|
2104
|
-
var ListInvocationStepsResponse = [
|
|
2118
|
+
var ListInvocationStepsResponse$ = [
|
|
2105
2119
|
3,
|
|
2106
2120
|
n0,
|
|
2107
2121
|
_LISRi,
|
|
@@ -2109,7 +2123,7 @@ var ListInvocationStepsResponse = [
|
|
|
2109
2123
|
[_iSSn, _nTe],
|
|
2110
2124
|
[() => InvocationStepSummaries, 0],
|
|
2111
2125
|
];
|
|
2112
|
-
var ListSessionsRequest = [
|
|
2126
|
+
var ListSessionsRequest$ = [
|
|
2113
2127
|
3,
|
|
2114
2128
|
n0,
|
|
2115
2129
|
_LSR,
|
|
@@ -2120,10 +2134,10 @@ var ListSessionsRequest = [
|
|
|
2120
2134
|
[0, { [_hQ]: _nTe }],
|
|
2121
2135
|
],
|
|
2122
2136
|
];
|
|
2123
|
-
var ListSessionsResponse = [3, n0, _LSRi, 0, [_sSes, _nTe], [() => SessionSummaries, 0]];
|
|
2124
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
2125
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
2126
|
-
var MemorySessionSummary = [
|
|
2137
|
+
var ListSessionsResponse$ = [3, n0, _LSRi, 0, [_sSes, _nTe], [() => SessionSummaries, 0]];
|
|
2138
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
2139
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
2140
|
+
var MemorySessionSummary$ = [
|
|
2127
2141
|
3,
|
|
2128
2142
|
n0,
|
|
2129
2143
|
_MSS,
|
|
@@ -2131,43 +2145,43 @@ var MemorySessionSummary = [
|
|
|
2131
2145
|
[_mI, _sIe, _sST, _sET, _sTu],
|
|
2132
2146
|
[0, 0, 5, 5, 0],
|
|
2133
2147
|
];
|
|
2134
|
-
var Message = [3, n0, _M, 0, [_ro, _co], [0, [() => ContentBlocks, 0]]];
|
|
2135
|
-
var Metadata = [
|
|
2148
|
+
var Message$ = [3, n0, _M, 0, [_ro, _co], [0, [() => ContentBlocks, 0]]];
|
|
2149
|
+
var Metadata$ = [
|
|
2136
2150
|
3,
|
|
2137
2151
|
n0,
|
|
2138
2152
|
_Me,
|
|
2139
2153
|
8,
|
|
2140
2154
|
[_sTt, _eTnd, _tTM, _oTTM, _cRI, _u],
|
|
2141
|
-
[5, 5, 1, 1, 0, [() => Usage
|
|
2155
|
+
[5, 5, 1, 1, 0, [() => Usage$, 0]],
|
|
2142
2156
|
];
|
|
2143
|
-
var MetadataAttributeSchema = [3, n0, _MAS, 8, [_k, _ty, _d], [0, 0, 0]];
|
|
2144
|
-
var MetadataConfigurationForReranking = [
|
|
2157
|
+
var MetadataAttributeSchema$ = [3, n0, _MAS, 8, [_k, _ty, _d], [0, 0, 0]];
|
|
2158
|
+
var MetadataConfigurationForReranking$ = [
|
|
2145
2159
|
3,
|
|
2146
2160
|
n0,
|
|
2147
2161
|
_MCFR,
|
|
2148
2162
|
0,
|
|
2149
2163
|
[_sMe, _sMC],
|
|
2150
|
-
[0, [() => RerankingMetadataSelectiveModeConfiguration
|
|
2164
|
+
[0, [() => RerankingMetadataSelectiveModeConfiguration$, 0]],
|
|
2151
2165
|
];
|
|
2152
|
-
var ModelInvocationInput = [
|
|
2166
|
+
var ModelInvocationInput$ = [
|
|
2153
2167
|
3,
|
|
2154
2168
|
n0,
|
|
2155
2169
|
_MII,
|
|
2156
2170
|
8,
|
|
2157
2171
|
[_tI, _t, _ty, _oL, _pCM, _iCnf, _pM, _fM],
|
|
2158
|
-
[0, [() => PromptText, 0], 0, 0, 0, () => InferenceConfiguration
|
|
2172
|
+
[0, [() => PromptText, 0], 0, 0, 0, () => InferenceConfiguration$, 0, 0],
|
|
2159
2173
|
];
|
|
2160
|
-
var ModelNotReadyException = [-3, n0, _MNRE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
|
|
2161
|
-
schema.TypeRegistry.for(n0).registerError(ModelNotReadyException
|
|
2162
|
-
var ModelPerformanceConfiguration = [
|
|
2174
|
+
var ModelNotReadyException$ = [-3, n0, _MNRE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
|
|
2175
|
+
schema.TypeRegistry.for(n0).registerError(ModelNotReadyException$, ModelNotReadyException);
|
|
2176
|
+
var ModelPerformanceConfiguration$ = [
|
|
2163
2177
|
3,
|
|
2164
2178
|
n0,
|
|
2165
2179
|
_MPC,
|
|
2166
2180
|
0,
|
|
2167
2181
|
[_pC],
|
|
2168
|
-
[() => PerformanceConfiguration],
|
|
2182
|
+
[() => PerformanceConfiguration$],
|
|
2169
2183
|
];
|
|
2170
|
-
var NodeActionEvent = [
|
|
2184
|
+
var NodeActionEvent$ = [
|
|
2171
2185
|
3,
|
|
2172
2186
|
n0,
|
|
2173
2187
|
_NAE,
|
|
@@ -2175,16 +2189,16 @@ var NodeActionEvent = [
|
|
|
2175
2189
|
[_nN, _ti, _rI, _sN, _oN, _oR, _oRp],
|
|
2176
2190
|
[0, 5, 0, 0, 0, 15, 15],
|
|
2177
2191
|
];
|
|
2178
|
-
var NodeDependencyEvent = [
|
|
2192
|
+
var NodeDependencyEvent$ = [
|
|
2179
2193
|
3,
|
|
2180
2194
|
n0,
|
|
2181
2195
|
_NDE,
|
|
2182
2196
|
8,
|
|
2183
2197
|
[_nN, _ti, _tE],
|
|
2184
|
-
[0, 5, [() => NodeTraceElements
|
|
2198
|
+
[0, 5, [() => NodeTraceElements$, 0]],
|
|
2185
2199
|
];
|
|
2186
|
-
var NodeFailureEvent = [3, n0, _NFE, 8, [_nN, _ti, _eC, _eM], [0, 5, 0, 0]];
|
|
2187
|
-
var NodeInputEvent = [
|
|
2200
|
+
var NodeFailureEvent$ = [3, n0, _NFE, 8, [_nN, _ti, _eC, _eM], [0, 5, 0, 0]];
|
|
2201
|
+
var NodeInputEvent$ = [
|
|
2188
2202
|
3,
|
|
2189
2203
|
n0,
|
|
2190
2204
|
_NIE,
|
|
@@ -2192,16 +2206,16 @@ var NodeInputEvent = [
|
|
|
2192
2206
|
[_nN, _ti, _fie],
|
|
2193
2207
|
[0, 5, [() => NodeInputFields, 0]],
|
|
2194
2208
|
];
|
|
2195
|
-
var NodeInputExecutionChainItem = [3, n0, _NIECI, 0, [_nN, _ind, _ty], [0, 1, 0]];
|
|
2196
|
-
var NodeInputField = [
|
|
2209
|
+
var NodeInputExecutionChainItem$ = [3, n0, _NIECI, 0, [_nN, _ind, _ty], [0, 1, 0]];
|
|
2210
|
+
var NodeInputField$ = [
|
|
2197
2211
|
3,
|
|
2198
2212
|
n0,
|
|
2199
2213
|
_NIF,
|
|
2200
2214
|
8,
|
|
2201
2215
|
[_n, _co, _sou, _ty, _ca, _eCx],
|
|
2202
|
-
[0, [() => NodeExecutionContent
|
|
2216
|
+
[0, [() => NodeExecutionContent$, 0], [() => NodeInputSource$, 0], 0, 0, () => NodeInputExecutionChain],
|
|
2203
2217
|
];
|
|
2204
|
-
var NodeInputSource = [
|
|
2218
|
+
var NodeInputSource$ = [
|
|
2205
2219
|
3,
|
|
2206
2220
|
n0,
|
|
2207
2221
|
_NIS,
|
|
@@ -2209,7 +2223,7 @@ var NodeInputSource = [
|
|
|
2209
2223
|
[_nN, _oFN, _exp],
|
|
2210
2224
|
[0, 0, [() => FlowNodeInputExpression, 0]],
|
|
2211
2225
|
];
|
|
2212
|
-
var NodeOutputEvent = [
|
|
2226
|
+
var NodeOutputEvent$ = [
|
|
2213
2227
|
3,
|
|
2214
2228
|
n0,
|
|
2215
2229
|
_NOE,
|
|
@@ -2217,16 +2231,16 @@ var NodeOutputEvent = [
|
|
|
2217
2231
|
[_nN, _ti, _fie],
|
|
2218
2232
|
[0, 5, [() => NodeOutputFields, 0]],
|
|
2219
2233
|
];
|
|
2220
|
-
var NodeOutputField = [
|
|
2234
|
+
var NodeOutputField$ = [
|
|
2221
2235
|
3,
|
|
2222
2236
|
n0,
|
|
2223
2237
|
_NOF,
|
|
2224
2238
|
8,
|
|
2225
2239
|
[_n, _co, _ne, _ty],
|
|
2226
|
-
[0, [() => NodeExecutionContent
|
|
2240
|
+
[0, [() => NodeExecutionContent$, 0], [() => NodeOutputNextList, 0], 0],
|
|
2227
2241
|
];
|
|
2228
|
-
var NodeOutputNext = [3, n0, _NON, 8, [_nN, _iFN], [0, 0]];
|
|
2229
|
-
var Observation = [
|
|
2242
|
+
var NodeOutputNext$ = [3, n0, _NON, 8, [_nN, _iFN], [0, 0]];
|
|
2243
|
+
var Observation$ = [
|
|
2230
2244
|
3,
|
|
2231
2245
|
n0,
|
|
2232
2246
|
_O,
|
|
@@ -2235,50 +2249,50 @@ var Observation = [
|
|
|
2235
2249
|
[
|
|
2236
2250
|
0,
|
|
2237
2251
|
0,
|
|
2238
|
-
[() => ActionGroupInvocationOutput
|
|
2239
|
-
[() => AgentCollaboratorInvocationOutput
|
|
2240
|
-
[() => KnowledgeBaseLookupOutput
|
|
2241
|
-
[() => FinalResponse
|
|
2242
|
-
[() => RepromptResponse
|
|
2243
|
-
[() => CodeInterpreterInvocationOutput
|
|
2252
|
+
[() => ActionGroupInvocationOutput$, 0],
|
|
2253
|
+
[() => AgentCollaboratorInvocationOutput$, 0],
|
|
2254
|
+
[() => KnowledgeBaseLookupOutput$, 0],
|
|
2255
|
+
[() => FinalResponse$, 0],
|
|
2256
|
+
[() => RepromptResponse$, 0],
|
|
2257
|
+
[() => CodeInterpreterInvocationOutput$, 0],
|
|
2244
2258
|
],
|
|
2245
2259
|
];
|
|
2246
|
-
var OptimizedPromptEvent = [3, n0, _OPE, 8, [_oP], [[() => OptimizedPrompt
|
|
2247
|
-
var OptimizePromptRequest = [3, n0, _OPR, 0, [_i, _tMI], [[() => InputPrompt
|
|
2248
|
-
var OptimizePromptResponse = [
|
|
2260
|
+
var OptimizedPromptEvent$ = [3, n0, _OPE, 8, [_oP], [[() => OptimizedPrompt$, 0]]];
|
|
2261
|
+
var OptimizePromptRequest$ = [3, n0, _OPR, 0, [_i, _tMI], [[() => InputPrompt$, 0], 0]];
|
|
2262
|
+
var OptimizePromptResponse$ = [
|
|
2249
2263
|
3,
|
|
2250
2264
|
n0,
|
|
2251
2265
|
_OPRp,
|
|
2252
2266
|
0,
|
|
2253
2267
|
[_oP],
|
|
2254
|
-
[[() => OptimizedPromptStream
|
|
2268
|
+
[[() => OptimizedPromptStream$, 16]],
|
|
2255
2269
|
];
|
|
2256
|
-
var OrchestrationConfiguration = [
|
|
2270
|
+
var OrchestrationConfiguration$ = [
|
|
2257
2271
|
3,
|
|
2258
2272
|
n0,
|
|
2259
2273
|
_OC,
|
|
2260
2274
|
0,
|
|
2261
2275
|
[_pT, _iC, _aMRF, _qTC, _pC],
|
|
2262
2276
|
[
|
|
2263
|
-
[() => PromptTemplate
|
|
2264
|
-
() => InferenceConfig
|
|
2277
|
+
[() => PromptTemplate$, 0],
|
|
2278
|
+
() => InferenceConfig$,
|
|
2265
2279
|
128 | 15,
|
|
2266
|
-
() => QueryTransformationConfiguration
|
|
2267
|
-
() => PerformanceConfiguration
|
|
2280
|
+
() => QueryTransformationConfiguration$,
|
|
2281
|
+
() => PerformanceConfiguration$,
|
|
2268
2282
|
],
|
|
2269
2283
|
];
|
|
2270
|
-
var OrchestrationModelInvocationOutput = [
|
|
2284
|
+
var OrchestrationModelInvocationOutput$ = [
|
|
2271
2285
|
3,
|
|
2272
2286
|
n0,
|
|
2273
2287
|
_OMIO,
|
|
2274
2288
|
8,
|
|
2275
2289
|
[_tI, _rRa, _me, _rCea],
|
|
2276
|
-
[0, [() => RawResponse
|
|
2290
|
+
[0, [() => RawResponse$, 0], [() => Metadata$, 0], [() => ReasoningContentBlock$, 0]],
|
|
2277
2291
|
];
|
|
2278
|
-
var OutputFile = [3, n0, _OF, 8, [_n, _ty, _by], [0, 0, [() => FileBody, 0]]];
|
|
2279
|
-
var Parameter = [3, n0, _Pa, 0, [_n, _ty, _va], [0, 0, 0]];
|
|
2280
|
-
var ParameterDetail = [3, n0, _PD, 0, [_d, _ty, _req], [0, 0, 2]];
|
|
2281
|
-
var PayloadPart = [
|
|
2292
|
+
var OutputFile$ = [3, n0, _OF, 8, [_n, _ty, _by], [0, 0, [() => FileBody, 0]]];
|
|
2293
|
+
var Parameter$ = [3, n0, _Pa, 0, [_n, _ty, _va], [0, 0, 0]];
|
|
2294
|
+
var ParameterDetail$ = [3, n0, _PD, 0, [_d, _ty, _req], [0, 0, 2]];
|
|
2295
|
+
var PayloadPart$ = [
|
|
2282
2296
|
3,
|
|
2283
2297
|
n0,
|
|
2284
2298
|
_PP,
|
|
@@ -2286,11 +2300,11 @@ var PayloadPart = [
|
|
|
2286
2300
|
[_by, _at],
|
|
2287
2301
|
[
|
|
2288
2302
|
[() => PartBody, 0],
|
|
2289
|
-
[() => Attribution
|
|
2303
|
+
[() => Attribution$, 0],
|
|
2290
2304
|
],
|
|
2291
2305
|
];
|
|
2292
|
-
var PerformanceConfiguration = [3, n0, _PC, 0, [_la], [0]];
|
|
2293
|
-
var PostProcessingModelInvocationOutput = [
|
|
2306
|
+
var PerformanceConfiguration$ = [3, n0, _PC, 0, [_la], [0]];
|
|
2307
|
+
var PostProcessingModelInvocationOutput$ = [
|
|
2294
2308
|
3,
|
|
2295
2309
|
n0,
|
|
2296
2310
|
_PPMIO,
|
|
@@ -2298,14 +2312,14 @@ var PostProcessingModelInvocationOutput = [
|
|
|
2298
2312
|
[_tI, _pR, _rRa, _me, _rCea],
|
|
2299
2313
|
[
|
|
2300
2314
|
0,
|
|
2301
|
-
[() => PostProcessingParsedResponse
|
|
2302
|
-
[() => RawResponse
|
|
2303
|
-
[() => Metadata
|
|
2304
|
-
[() => ReasoningContentBlock
|
|
2315
|
+
[() => PostProcessingParsedResponse$, 0],
|
|
2316
|
+
[() => RawResponse$, 0],
|
|
2317
|
+
[() => Metadata$, 0],
|
|
2318
|
+
[() => ReasoningContentBlock$, 0],
|
|
2305
2319
|
],
|
|
2306
2320
|
];
|
|
2307
|
-
var PostProcessingParsedResponse = [3, n0, _PPPR, 8, [_t], [[() => OutputString, 0]]];
|
|
2308
|
-
var PreProcessingModelInvocationOutput = [
|
|
2321
|
+
var PostProcessingParsedResponse$ = [3, n0, _PPPR, 8, [_t], [[() => OutputString, 0]]];
|
|
2322
|
+
var PreProcessingModelInvocationOutput$ = [
|
|
2309
2323
|
3,
|
|
2310
2324
|
n0,
|
|
2311
2325
|
_PPMIOr,
|
|
@@ -2313,13 +2327,13 @@ var PreProcessingModelInvocationOutput = [
|
|
|
2313
2327
|
[_tI, _pR, _rRa, _me, _rCea],
|
|
2314
2328
|
[
|
|
2315
2329
|
0,
|
|
2316
|
-
[() => PreProcessingParsedResponse
|
|
2317
|
-
[() => RawResponse
|
|
2318
|
-
[() => Metadata
|
|
2319
|
-
[() => ReasoningContentBlock
|
|
2330
|
+
[() => PreProcessingParsedResponse$, 0],
|
|
2331
|
+
[() => RawResponse$, 0],
|
|
2332
|
+
[() => Metadata$, 0],
|
|
2333
|
+
[() => ReasoningContentBlock$, 0],
|
|
2320
2334
|
],
|
|
2321
2335
|
];
|
|
2322
|
-
var PreProcessingParsedResponse = [
|
|
2336
|
+
var PreProcessingParsedResponse$ = [
|
|
2323
2337
|
3,
|
|
2324
2338
|
n0,
|
|
2325
2339
|
_PPPRr,
|
|
@@ -2327,16 +2341,16 @@ var PreProcessingParsedResponse = [
|
|
|
2327
2341
|
[_ra, _iV],
|
|
2328
2342
|
[[() => RationaleString, 0], 2],
|
|
2329
2343
|
];
|
|
2330
|
-
var PromptConfiguration = [
|
|
2344
|
+
var PromptConfiguration$ = [
|
|
2331
2345
|
3,
|
|
2332
2346
|
n0,
|
|
2333
2347
|
_PCr,
|
|
2334
2348
|
0,
|
|
2335
2349
|
[_pTr, _pCM, _pS, _bPT, _iCnf, _pM, _fM, _aMRF],
|
|
2336
|
-
[0, 0, 0, [() => BasePromptTemplate, 0], () => InferenceConfiguration
|
|
2350
|
+
[0, 0, 0, [() => BasePromptTemplate, 0], () => InferenceConfiguration$, 0, 0, 15],
|
|
2337
2351
|
];
|
|
2338
|
-
var PromptCreationConfigurations = [3, n0, _PCC, 0, [_pCTTI, _ePTS], [1, 2]];
|
|
2339
|
-
var PromptOverrideConfiguration = [
|
|
2352
|
+
var PromptCreationConfigurations$ = [3, n0, _PCC, 0, [_pCTTI, _ePTS], [1, 2]];
|
|
2353
|
+
var PromptOverrideConfiguration$ = [
|
|
2340
2354
|
3,
|
|
2341
2355
|
n0,
|
|
2342
2356
|
_POC,
|
|
@@ -2344,75 +2358,75 @@ var PromptOverrideConfiguration = [
|
|
|
2344
2358
|
[_pCr, _oL],
|
|
2345
2359
|
[[() => PromptConfigurations, 0], 0],
|
|
2346
2360
|
];
|
|
2347
|
-
var PromptTemplate = [3, n0, _PTr, 0, [_tPT], [[() => TextPromptTemplate, 0]]];
|
|
2348
|
-
var PropertyParameters = [3, n0, _PPr, 0, [_pr], [() => ParameterList]];
|
|
2349
|
-
var PutInvocationStepRequest = [
|
|
2361
|
+
var PromptTemplate$ = [3, n0, _PTr, 0, [_tPT], [[() => TextPromptTemplate, 0]]];
|
|
2362
|
+
var PropertyParameters$ = [3, n0, _PPr, 0, [_pr], [() => ParameterList]];
|
|
2363
|
+
var PutInvocationStepRequest$ = [
|
|
2350
2364
|
3,
|
|
2351
2365
|
n0,
|
|
2352
2366
|
_PISR,
|
|
2353
2367
|
0,
|
|
2354
2368
|
[_sI, _iIn, _iST, _pa, _iSI],
|
|
2355
|
-
[[0, 1], 0, 5, [() => InvocationStepPayload
|
|
2369
|
+
[[0, 1], 0, 5, [() => InvocationStepPayload$, 0], 0],
|
|
2356
2370
|
];
|
|
2357
|
-
var PutInvocationStepResponse = [3, n0, _PISRu, 0, [_iSI], [0]];
|
|
2358
|
-
var QueryGenerationInput = [3, n0, _QGI, 8, [_ty, _t], [0, 0]];
|
|
2359
|
-
var QueryTransformationConfiguration = [3, n0, _QTC, 0, [_ty], [0]];
|
|
2360
|
-
var Rationale = [3, n0, _R, 8, [_tI, _t], [0, [() => RationaleString, 0]]];
|
|
2361
|
-
var RawResponse = [3, n0, _RR, 8, [_co], [0]];
|
|
2362
|
-
var ReasoningTextBlock = [3, n0, _RTB, 8, [_t, _si], [0, 0]];
|
|
2363
|
-
var RepromptResponse = [3, n0, _RRe, 8, [_t, _sou], [0, [() => Source$1, 0]]];
|
|
2364
|
-
var RequestBody = [3, n0, _RB, 0, [_co], [() => ContentMap]];
|
|
2365
|
-
var RerankDocument = [
|
|
2371
|
+
var PutInvocationStepResponse$ = [3, n0, _PISRu, 0, [_iSI], [0]];
|
|
2372
|
+
var QueryGenerationInput$ = [3, n0, _QGI, 8, [_ty, _t], [0, 0]];
|
|
2373
|
+
var QueryTransformationConfiguration$ = [3, n0, _QTC, 0, [_ty], [0]];
|
|
2374
|
+
var Rationale$ = [3, n0, _R, 8, [_tI, _t], [0, [() => RationaleString, 0]]];
|
|
2375
|
+
var RawResponse$ = [3, n0, _RR, 8, [_co], [0]];
|
|
2376
|
+
var ReasoningTextBlock$ = [3, n0, _RTB, 8, [_t, _si], [0, 0]];
|
|
2377
|
+
var RepromptResponse$ = [3, n0, _RRe, 8, [_t, _sou], [0, [() => Source$1, 0]]];
|
|
2378
|
+
var RequestBody$ = [3, n0, _RB, 0, [_co], [() => ContentMap]];
|
|
2379
|
+
var RerankDocument$ = [
|
|
2366
2380
|
3,
|
|
2367
2381
|
n0,
|
|
2368
2382
|
_RDe,
|
|
2369
2383
|
8,
|
|
2370
2384
|
[_ty, _tD, _jD],
|
|
2371
|
-
[0, [() => RerankTextDocument
|
|
2385
|
+
[0, [() => RerankTextDocument$, 0], 15],
|
|
2372
2386
|
];
|
|
2373
|
-
var RerankingConfiguration = [
|
|
2387
|
+
var RerankingConfiguration$ = [
|
|
2374
2388
|
3,
|
|
2375
2389
|
n0,
|
|
2376
2390
|
_RC,
|
|
2377
2391
|
0,
|
|
2378
2392
|
[_ty, _bRC],
|
|
2379
|
-
[0, () => BedrockRerankingConfiguration],
|
|
2393
|
+
[0, () => BedrockRerankingConfiguration$],
|
|
2380
2394
|
];
|
|
2381
|
-
var RerankQuery = [3, n0, _RQ, 8, [_ty, _tQ], [0, [() => RerankTextDocument
|
|
2382
|
-
var RerankRequest = [
|
|
2395
|
+
var RerankQuery$ = [3, n0, _RQ, 8, [_ty, _tQ], [0, [() => RerankTextDocument$, 0]]];
|
|
2396
|
+
var RerankRequest$ = [
|
|
2383
2397
|
3,
|
|
2384
2398
|
n0,
|
|
2385
2399
|
_RRer,
|
|
2386
2400
|
0,
|
|
2387
2401
|
[_q, _so, _rCer, _nTe],
|
|
2388
|
-
[[() => RerankQueriesList, 0], [() => RerankSourcesList, 0], () => RerankingConfiguration
|
|
2402
|
+
[[() => RerankQueriesList, 0], [() => RerankSourcesList, 0], () => RerankingConfiguration$, 0],
|
|
2389
2403
|
];
|
|
2390
|
-
var RerankResponse = [3, n0, _RRera, 0, [_res, _nTe], [[() => RerankResultsList, 0], 0]];
|
|
2391
|
-
var RerankResult = [
|
|
2404
|
+
var RerankResponse$ = [3, n0, _RRera, 0, [_res, _nTe], [[() => RerankResultsList, 0], 0]];
|
|
2405
|
+
var RerankResult$ = [
|
|
2392
2406
|
3,
|
|
2393
2407
|
n0,
|
|
2394
2408
|
_RReran,
|
|
2395
2409
|
0,
|
|
2396
2410
|
[_ind, _rSel, _do],
|
|
2397
|
-
[1, 1, [() => RerankDocument
|
|
2411
|
+
[1, 1, [() => RerankDocument$, 0]],
|
|
2398
2412
|
];
|
|
2399
|
-
var RerankSource = [3, n0, _RSe, 8, [_ty, _iDS], [0, [() => RerankDocument
|
|
2400
|
-
var RerankTextDocument = [3, n0, _RTD, 8, [_t], [0]];
|
|
2401
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
2402
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
2403
|
-
var RetrievalResultConfluenceLocation = [3, n0, _RRCL, 0, [_ur], [0]];
|
|
2404
|
-
var RetrievalResultContent = [
|
|
2413
|
+
var RerankSource$ = [3, n0, _RSe, 8, [_ty, _iDS], [0, [() => RerankDocument$, 0]]];
|
|
2414
|
+
var RerankTextDocument$ = [3, n0, _RTD, 8, [_t], [0]];
|
|
2415
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
2416
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2417
|
+
var RetrievalResultConfluenceLocation$ = [3, n0, _RRCL, 0, [_ur], [0]];
|
|
2418
|
+
var RetrievalResultContent$ = [
|
|
2405
2419
|
3,
|
|
2406
2420
|
n0,
|
|
2407
2421
|
_RRC,
|
|
2408
2422
|
8,
|
|
2409
2423
|
[_ty, _t, _bC, _vi, _au, _row],
|
|
2410
|
-
[0, 0, 0, () => VideoSegment
|
|
2424
|
+
[0, 0, 0, () => VideoSegment$, () => AudioSegment$, [() => RetrievalResultContentRow, 0]],
|
|
2411
2425
|
];
|
|
2412
|
-
var RetrievalResultContentColumn = [3, n0, _RRCC, 8, [_cNol, _cV, _ty], [0, 0, 0]];
|
|
2413
|
-
var RetrievalResultCustomDocumentLocation = [3, n0, _RRCDL, 0, [_id_], [0]];
|
|
2414
|
-
var RetrievalResultKendraDocumentLocation = [3, n0, _RRKDL, 0, [_uri], [0]];
|
|
2415
|
-
var RetrievalResultLocation = [
|
|
2426
|
+
var RetrievalResultContentColumn$ = [3, n0, _RRCC, 8, [_cNol, _cV, _ty], [0, 0, 0]];
|
|
2427
|
+
var RetrievalResultCustomDocumentLocation$ = [3, n0, _RRCDL, 0, [_id_], [0]];
|
|
2428
|
+
var RetrievalResultKendraDocumentLocation$ = [3, n0, _RRKDL, 0, [_uri], [0]];
|
|
2429
|
+
var RetrievalResultLocation$ = [
|
|
2416
2430
|
3,
|
|
2417
2431
|
n0,
|
|
2418
2432
|
_RRL,
|
|
@@ -2420,22 +2434,22 @@ var RetrievalResultLocation = [
|
|
|
2420
2434
|
[_ty, _sL, _wL, _cL, _sLa, _sPL, _cDL, _kDL, _sLq],
|
|
2421
2435
|
[
|
|
2422
2436
|
0,
|
|
2423
|
-
() => RetrievalResultS3Location
|
|
2424
|
-
() => RetrievalResultWebLocation
|
|
2425
|
-
() => RetrievalResultConfluenceLocation
|
|
2426
|
-
() => RetrievalResultSalesforceLocation
|
|
2427
|
-
() => RetrievalResultSharePointLocation
|
|
2428
|
-
() => RetrievalResultCustomDocumentLocation
|
|
2429
|
-
() => RetrievalResultKendraDocumentLocation
|
|
2430
|
-
() => RetrievalResultSqlLocation
|
|
2437
|
+
() => RetrievalResultS3Location$,
|
|
2438
|
+
() => RetrievalResultWebLocation$,
|
|
2439
|
+
() => RetrievalResultConfluenceLocation$,
|
|
2440
|
+
() => RetrievalResultSalesforceLocation$,
|
|
2441
|
+
() => RetrievalResultSharePointLocation$,
|
|
2442
|
+
() => RetrievalResultCustomDocumentLocation$,
|
|
2443
|
+
() => RetrievalResultKendraDocumentLocation$,
|
|
2444
|
+
() => RetrievalResultSqlLocation$,
|
|
2431
2445
|
],
|
|
2432
2446
|
];
|
|
2433
|
-
var RetrievalResultS3Location = [3, n0, _RRSL, 0, [_uri], [0]];
|
|
2434
|
-
var RetrievalResultSalesforceLocation = [3, n0, _RRSLe, 0, [_ur], [0]];
|
|
2435
|
-
var RetrievalResultSharePointLocation = [3, n0, _RRSPL, 0, [_ur], [0]];
|
|
2436
|
-
var RetrievalResultSqlLocation = [3, n0, _RRSLet, 0, [_qu], [0]];
|
|
2437
|
-
var RetrievalResultWebLocation = [3, n0, _RRWL, 0, [_ur], [0]];
|
|
2438
|
-
var RetrieveAndGenerateConfiguration = [
|
|
2447
|
+
var RetrievalResultS3Location$ = [3, n0, _RRSL, 0, [_uri], [0]];
|
|
2448
|
+
var RetrievalResultSalesforceLocation$ = [3, n0, _RRSLe, 0, [_ur], [0]];
|
|
2449
|
+
var RetrievalResultSharePointLocation$ = [3, n0, _RRSPL, 0, [_ur], [0]];
|
|
2450
|
+
var RetrievalResultSqlLocation$ = [3, n0, _RRSLet, 0, [_qu], [0]];
|
|
2451
|
+
var RetrievalResultWebLocation$ = [3, n0, _RRWL, 0, [_ur], [0]];
|
|
2452
|
+
var RetrieveAndGenerateConfiguration$ = [
|
|
2439
2453
|
3,
|
|
2440
2454
|
n0,
|
|
2441
2455
|
_RAGC,
|
|
@@ -2443,14 +2457,14 @@ var RetrieveAndGenerateConfiguration = [
|
|
|
2443
2457
|
[_ty, _kBC, _eSC],
|
|
2444
2458
|
[
|
|
2445
2459
|
0,
|
|
2446
|
-
[() => KnowledgeBaseRetrieveAndGenerateConfiguration
|
|
2447
|
-
[() => ExternalSourcesRetrieveAndGenerateConfiguration
|
|
2460
|
+
[() => KnowledgeBaseRetrieveAndGenerateConfiguration$, 0],
|
|
2461
|
+
[() => ExternalSourcesRetrieveAndGenerateConfiguration$, 0],
|
|
2448
2462
|
],
|
|
2449
2463
|
];
|
|
2450
|
-
var RetrieveAndGenerateInput = [3, n0, _RAGI, 8, [_t], [0]];
|
|
2451
|
-
var RetrieveAndGenerateOutput = [3, n0, _RAGO, 8, [_t], [0]];
|
|
2452
|
-
var RetrieveAndGenerateOutputEvent = [3, n0, _RAGOE, 8, [_t], [0]];
|
|
2453
|
-
var RetrieveAndGenerateRequest = [
|
|
2464
|
+
var RetrieveAndGenerateInput$ = [3, n0, _RAGI, 8, [_t], [0]];
|
|
2465
|
+
var RetrieveAndGenerateOutput$ = [3, n0, _RAGO, 8, [_t], [0]];
|
|
2466
|
+
var RetrieveAndGenerateOutputEvent$ = [3, n0, _RAGOE, 8, [_t], [0]];
|
|
2467
|
+
var RetrieveAndGenerateRequest$ = [
|
|
2454
2468
|
3,
|
|
2455
2469
|
n0,
|
|
2456
2470
|
_RAGR,
|
|
@@ -2458,21 +2472,21 @@ var RetrieveAndGenerateRequest = [
|
|
|
2458
2472
|
[_sIe, _i, _rAGC, _sCe],
|
|
2459
2473
|
[
|
|
2460
2474
|
0,
|
|
2461
|
-
[() => RetrieveAndGenerateInput
|
|
2462
|
-
[() => RetrieveAndGenerateConfiguration
|
|
2463
|
-
() => RetrieveAndGenerateSessionConfiguration
|
|
2475
|
+
[() => RetrieveAndGenerateInput$, 0],
|
|
2476
|
+
[() => RetrieveAndGenerateConfiguration$, 0],
|
|
2477
|
+
() => RetrieveAndGenerateSessionConfiguration$,
|
|
2464
2478
|
],
|
|
2465
2479
|
];
|
|
2466
|
-
var RetrieveAndGenerateResponse = [
|
|
2480
|
+
var RetrieveAndGenerateResponse$ = [
|
|
2467
2481
|
3,
|
|
2468
2482
|
n0,
|
|
2469
2483
|
_RAGRe,
|
|
2470
2484
|
0,
|
|
2471
2485
|
[_sIe, _o, _ci, _gA],
|
|
2472
|
-
[0, [() => RetrieveAndGenerateOutput
|
|
2486
|
+
[0, [() => RetrieveAndGenerateOutput$, 0], [() => Citations, 0], 0],
|
|
2473
2487
|
];
|
|
2474
|
-
var RetrieveAndGenerateSessionConfiguration = [3, n0, _RAGSC, 0, [_kKA], [0]];
|
|
2475
|
-
var RetrieveAndGenerateStreamRequest = [
|
|
2488
|
+
var RetrieveAndGenerateSessionConfiguration$ = [3, n0, _RAGSC, 0, [_kKA], [0]];
|
|
2489
|
+
var RetrieveAndGenerateStreamRequest$ = [
|
|
2476
2490
|
3,
|
|
2477
2491
|
n0,
|
|
2478
2492
|
_RAGSR,
|
|
@@ -2480,35 +2494,35 @@ var RetrieveAndGenerateStreamRequest = [
|
|
|
2480
2494
|
[_sIe, _i, _rAGC, _sCe],
|
|
2481
2495
|
[
|
|
2482
2496
|
0,
|
|
2483
|
-
[() => RetrieveAndGenerateInput
|
|
2484
|
-
[() => RetrieveAndGenerateConfiguration
|
|
2485
|
-
() => RetrieveAndGenerateSessionConfiguration
|
|
2497
|
+
[() => RetrieveAndGenerateInput$, 0],
|
|
2498
|
+
[() => RetrieveAndGenerateConfiguration$, 0],
|
|
2499
|
+
() => RetrieveAndGenerateSessionConfiguration$,
|
|
2486
2500
|
],
|
|
2487
2501
|
];
|
|
2488
|
-
var RetrieveAndGenerateStreamResponse = [
|
|
2502
|
+
var RetrieveAndGenerateStreamResponse$ = [
|
|
2489
2503
|
3,
|
|
2490
2504
|
n0,
|
|
2491
2505
|
_RAGSRe,
|
|
2492
2506
|
0,
|
|
2493
2507
|
[_str, _sIe],
|
|
2494
2508
|
[
|
|
2495
|
-
[() => RetrieveAndGenerateStreamResponseOutput
|
|
2509
|
+
[() => RetrieveAndGenerateStreamResponseOutput$, 16],
|
|
2496
2510
|
[0, { [_hH]: _xabkbsi }],
|
|
2497
2511
|
],
|
|
2498
2512
|
];
|
|
2499
|
-
var RetrievedReference = [
|
|
2513
|
+
var RetrievedReference$ = [
|
|
2500
2514
|
3,
|
|
2501
2515
|
n0,
|
|
2502
2516
|
_RRet,
|
|
2503
2517
|
0,
|
|
2504
2518
|
[_co, _l, _me],
|
|
2505
2519
|
[
|
|
2506
|
-
[() => RetrievalResultContent
|
|
2507
|
-
[() => RetrievalResultLocation
|
|
2520
|
+
[() => RetrievalResultContent$, 0],
|
|
2521
|
+
[() => RetrievalResultLocation$, 0],
|
|
2508
2522
|
[() => RetrievalResultMetadata, 0],
|
|
2509
2523
|
],
|
|
2510
2524
|
];
|
|
2511
|
-
var RetrieveRequest = [
|
|
2525
|
+
var RetrieveRequest$ = [
|
|
2512
2526
|
3,
|
|
2513
2527
|
n0,
|
|
2514
2528
|
_RRetr,
|
|
@@ -2516,13 +2530,13 @@ var RetrieveRequest = [
|
|
|
2516
2530
|
[_kBI, _rQ, _rCe, _gC, _nTe],
|
|
2517
2531
|
[
|
|
2518
2532
|
[0, 1],
|
|
2519
|
-
[() => KnowledgeBaseQuery
|
|
2520
|
-
[() => KnowledgeBaseRetrievalConfiguration
|
|
2521
|
-
() => GuardrailConfiguration
|
|
2533
|
+
[() => KnowledgeBaseQuery$, 0],
|
|
2534
|
+
[() => KnowledgeBaseRetrievalConfiguration$, 0],
|
|
2535
|
+
() => GuardrailConfiguration$,
|
|
2522
2536
|
0,
|
|
2523
2537
|
],
|
|
2524
2538
|
];
|
|
2525
|
-
var RetrieveResponse = [
|
|
2539
|
+
var RetrieveResponse$ = [
|
|
2526
2540
|
3,
|
|
2527
2541
|
n0,
|
|
2528
2542
|
_RRetri,
|
|
@@ -2530,7 +2544,7 @@ var RetrieveResponse = [
|
|
|
2530
2544
|
[_rRet, _gA, _nTe],
|
|
2531
2545
|
[[() => KnowledgeBaseRetrievalResults, 0], 0, 0],
|
|
2532
2546
|
];
|
|
2533
|
-
var ReturnControlPayload = [
|
|
2547
|
+
var ReturnControlPayload$ = [
|
|
2534
2548
|
3,
|
|
2535
2549
|
n0,
|
|
2536
2550
|
_RCP,
|
|
@@ -2538,7 +2552,7 @@ var ReturnControlPayload = [
|
|
|
2538
2552
|
[_iInv, _iI],
|
|
2539
2553
|
[[() => InvocationInputs, 0], 0],
|
|
2540
2554
|
];
|
|
2541
|
-
var ReturnControlResults = [
|
|
2555
|
+
var ReturnControlResults$ = [
|
|
2542
2556
|
3,
|
|
2543
2557
|
n0,
|
|
2544
2558
|
_RCR,
|
|
@@ -2546,22 +2560,22 @@ var ReturnControlResults = [
|
|
|
2546
2560
|
[_iI, _rCIR],
|
|
2547
2561
|
[0, [() => ReturnControlInvocationResults, 0]],
|
|
2548
2562
|
];
|
|
2549
|
-
var RoutingClassifierModelInvocationOutput = [
|
|
2563
|
+
var RoutingClassifierModelInvocationOutput$ = [
|
|
2550
2564
|
3,
|
|
2551
2565
|
n0,
|
|
2552
2566
|
_RCMIO,
|
|
2553
2567
|
8,
|
|
2554
2568
|
[_tI, _rRa, _me],
|
|
2555
|
-
[0, [() => RawResponse
|
|
2569
|
+
[0, [() => RawResponse$, 0], [() => Metadata$, 0]],
|
|
2556
2570
|
];
|
|
2557
|
-
var S3Identifier = [3, n0, _SI, 0, [_sBN, _sOK], [0, 0]];
|
|
2558
|
-
var S3Location = [3, n0, _SL, 0, [_uri], [0]];
|
|
2559
|
-
var S3ObjectDoc = [3, n0, _SOD, 0, [_uri], [0]];
|
|
2560
|
-
var S3ObjectFile = [3, n0, _SOF, 0, [_uri], [0]];
|
|
2561
|
-
var SatisfiedCondition = [3, n0, _SC, 8, [_cNo], [0]];
|
|
2562
|
-
var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
2563
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
2564
|
-
var SessionState = [
|
|
2571
|
+
var S3Identifier$ = [3, n0, _SI, 0, [_sBN, _sOK], [0, 0]];
|
|
2572
|
+
var S3Location$ = [3, n0, _SL, 0, [_uri], [0]];
|
|
2573
|
+
var S3ObjectDoc$ = [3, n0, _SOD, 0, [_uri], [0]];
|
|
2574
|
+
var S3ObjectFile$ = [3, n0, _SOF, 0, [_uri], [0]];
|
|
2575
|
+
var SatisfiedCondition$ = [3, n0, _SC, 8, [_cNo], [0]];
|
|
2576
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
2577
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
2578
|
+
var SessionState$ = [
|
|
2565
2579
|
3,
|
|
2566
2580
|
n0,
|
|
2567
2581
|
_SS,
|
|
@@ -2574,21 +2588,21 @@ var SessionState = [
|
|
|
2574
2588
|
0,
|
|
2575
2589
|
[() => InputFiles, 0],
|
|
2576
2590
|
[() => KnowledgeBaseConfigurations, 0],
|
|
2577
|
-
[() => ConversationHistory
|
|
2591
|
+
[() => ConversationHistory$, 0],
|
|
2578
2592
|
],
|
|
2579
2593
|
];
|
|
2580
|
-
var SessionSummary = [3, n0, _SSe, 0, [_sIe, _sA, _sS, _cA, _lUA], [0, 0, 0, 5, 5]];
|
|
2581
|
-
var Span = [3, n0, _Sp, 0, [_sta, _en], [1, 1]];
|
|
2582
|
-
var StartFlowExecutionRequest = [
|
|
2594
|
+
var SessionSummary$ = [3, n0, _SSe, 0, [_sIe, _sA, _sS, _cA, _lUA], [0, 0, 0, 5, 5]];
|
|
2595
|
+
var Span$ = [3, n0, _Sp, 0, [_sta, _en], [1, 1]];
|
|
2596
|
+
var StartFlowExecutionRequest$ = [
|
|
2583
2597
|
3,
|
|
2584
2598
|
n0,
|
|
2585
2599
|
_SFER,
|
|
2586
2600
|
0,
|
|
2587
2601
|
[_fI, _fAI, _fEN, _inp, _mPC],
|
|
2588
|
-
[[0, 1], [0, 1], 0, [() => FlowInputs, 0], () => ModelPerformanceConfiguration],
|
|
2602
|
+
[[0, 1], [0, 1], 0, [() => FlowInputs, 0], () => ModelPerformanceConfiguration$],
|
|
2589
2603
|
];
|
|
2590
|
-
var StartFlowExecutionResponse = [3, n0, _SFERt, 0, [_eA], [0]];
|
|
2591
|
-
var StopFlowExecutionRequest = [
|
|
2604
|
+
var StartFlowExecutionResponse$ = [3, n0, _SFERt, 0, [_eA], [0]];
|
|
2605
|
+
var StopFlowExecutionRequest$ = [
|
|
2592
2606
|
3,
|
|
2593
2607
|
n0,
|
|
2594
2608
|
_SFERto,
|
|
@@ -2600,41 +2614,41 @@ var StopFlowExecutionRequest = [
|
|
|
2600
2614
|
[0, 1],
|
|
2601
2615
|
],
|
|
2602
2616
|
];
|
|
2603
|
-
var StopFlowExecutionResponse = [3, n0, _SFERtop, 0, [_eA, _st], [0, 0]];
|
|
2604
|
-
var StreamingConfigurations = [3, n0, _SCt, 0, [_sFR, _aGI], [2, 1]];
|
|
2605
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
2606
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
2607
|
-
var TextInferenceConfig = [3, n0, _TIC, 0, [_te, _tPo, _mTa, _sSt], [1, 1, 1, 64 | 0]];
|
|
2608
|
-
var TextPrompt = [3, n0, _TP, 8, [_t], [0]];
|
|
2609
|
-
var TextResponsePart = [3, n0, _TRP, 8, [_t, _sp], [0, () => Span]];
|
|
2610
|
-
var TextToSqlConfiguration = [
|
|
2617
|
+
var StopFlowExecutionResponse$ = [3, n0, _SFERtop, 0, [_eA, _st], [0, 0]];
|
|
2618
|
+
var StreamingConfigurations$ = [3, n0, _SCt, 0, [_sFR, _aGI], [2, 1]];
|
|
2619
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
2620
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
2621
|
+
var TextInferenceConfig$ = [3, n0, _TIC, 0, [_te, _tPo, _mTa, _sSt], [1, 1, 1, 64 | 0]];
|
|
2622
|
+
var TextPrompt$ = [3, n0, _TP, 8, [_t], [0]];
|
|
2623
|
+
var TextResponsePart$ = [3, n0, _TRP, 8, [_t, _sp], [0, () => Span$]];
|
|
2624
|
+
var TextToSqlConfiguration$ = [
|
|
2611
2625
|
3,
|
|
2612
2626
|
n0,
|
|
2613
2627
|
_TTSC,
|
|
2614
2628
|
0,
|
|
2615
2629
|
[_ty, _kBC],
|
|
2616
|
-
[0, () => TextToSqlKnowledgeBaseConfiguration],
|
|
2630
|
+
[0, () => TextToSqlKnowledgeBaseConfiguration$],
|
|
2617
2631
|
];
|
|
2618
|
-
var TextToSqlKnowledgeBaseConfiguration = [3, n0, _TTSKBC, 0, [_kBA], [0]];
|
|
2619
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
2620
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
2621
|
-
var TracePart = [
|
|
2632
|
+
var TextToSqlKnowledgeBaseConfiguration$ = [3, n0, _TTSKBC, 0, [_kBA], [0]];
|
|
2633
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
2634
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
2635
|
+
var TracePart$ = [
|
|
2622
2636
|
3,
|
|
2623
2637
|
n0,
|
|
2624
2638
|
_TPr,
|
|
2625
2639
|
8,
|
|
2626
2640
|
[_sIe, _tra, _cCa, _eTv, _cN, _aI, _aAI, _aV],
|
|
2627
|
-
[0, [() => Trace
|
|
2641
|
+
[0, [() => Trace$, 0], () => CallerChain, 5, [() => Name, 0], 0, 0, 0],
|
|
2628
2642
|
];
|
|
2629
|
-
var TransformationConfiguration = [
|
|
2643
|
+
var TransformationConfiguration$ = [
|
|
2630
2644
|
3,
|
|
2631
2645
|
n0,
|
|
2632
2646
|
_TC,
|
|
2633
2647
|
0,
|
|
2634
2648
|
[_mo, _tTSC],
|
|
2635
|
-
[0, () => TextToSqlConfiguration],
|
|
2649
|
+
[0, () => TextToSqlConfiguration$],
|
|
2636
2650
|
];
|
|
2637
|
-
var UntagResourceRequest = [
|
|
2651
|
+
var UntagResourceRequest$ = [
|
|
2638
2652
|
3,
|
|
2639
2653
|
n0,
|
|
2640
2654
|
_URR,
|
|
@@ -2645,9 +2659,9 @@ var UntagResourceRequest = [
|
|
|
2645
2659
|
[64 | 0, { [_hQ]: _tKa }],
|
|
2646
2660
|
],
|
|
2647
2661
|
];
|
|
2648
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
2649
|
-
var UpdateSessionRequest = [3, n0, _USR, 0, [_sM, _sI], [128 | 0, [0, 1]]];
|
|
2650
|
-
var UpdateSessionResponse = [
|
|
2662
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
2663
|
+
var UpdateSessionRequest$ = [3, n0, _USR, 0, [_sM, _sI], [128 | 0, [0, 1]]];
|
|
2664
|
+
var UpdateSessionResponse$ = [
|
|
2651
2665
|
3,
|
|
2652
2666
|
n0,
|
|
2653
2667
|
_USRp,
|
|
@@ -2655,18 +2669,18 @@ var UpdateSessionResponse = [
|
|
|
2655
2669
|
[_sIe, _sA, _sS, _cA, _lUA],
|
|
2656
2670
|
[0, 0, 0, 5, 5],
|
|
2657
2671
|
];
|
|
2658
|
-
var Usage = [3, n0, _U, 8, [_iTnp, _oTu], [1, 1]];
|
|
2659
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
2660
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
2661
|
-
var VectorSearchBedrockRerankingConfiguration = [
|
|
2672
|
+
var Usage$ = [3, n0, _U, 8, [_iTnp, _oTu], [1, 1]];
|
|
2673
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
2674
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
2675
|
+
var VectorSearchBedrockRerankingConfiguration$ = [
|
|
2662
2676
|
3,
|
|
2663
2677
|
n0,
|
|
2664
2678
|
_VSBRC,
|
|
2665
2679
|
0,
|
|
2666
2680
|
[_mC, _nORR, _mCet],
|
|
2667
|
-
[() => VectorSearchBedrockRerankingModelConfiguration
|
|
2681
|
+
[() => VectorSearchBedrockRerankingModelConfiguration$, 1, [() => MetadataConfigurationForReranking$, 0]],
|
|
2668
2682
|
];
|
|
2669
|
-
var VectorSearchBedrockRerankingModelConfiguration = [
|
|
2683
|
+
var VectorSearchBedrockRerankingModelConfiguration$ = [
|
|
2670
2684
|
3,
|
|
2671
2685
|
n0,
|
|
2672
2686
|
_VSBRMC,
|
|
@@ -2674,16 +2688,16 @@ var VectorSearchBedrockRerankingModelConfiguration = [
|
|
|
2674
2688
|
[_mA, _aMRF],
|
|
2675
2689
|
[0, 128 | 15],
|
|
2676
2690
|
];
|
|
2677
|
-
var VectorSearchRerankingConfiguration = [
|
|
2691
|
+
var VectorSearchRerankingConfiguration$ = [
|
|
2678
2692
|
3,
|
|
2679
2693
|
n0,
|
|
2680
2694
|
_VSRC,
|
|
2681
2695
|
0,
|
|
2682
2696
|
[_ty, _bRC],
|
|
2683
|
-
[0, [() => VectorSearchBedrockRerankingConfiguration
|
|
2697
|
+
[0, [() => VectorSearchBedrockRerankingConfiguration$, 0]],
|
|
2684
2698
|
];
|
|
2685
|
-
var VideoSegment = [3, n0, _VS, 0, [_sU, _su], [0, 0]];
|
|
2686
|
-
var BedrockAgentRuntimeServiceException = [
|
|
2699
|
+
var VideoSegment$ = [3, n0, _VS, 0, [_sU, _su], [0, 0]];
|
|
2700
|
+
var BedrockAgentRuntimeServiceException$ = [
|
|
2687
2701
|
-3,
|
|
2688
2702
|
_sm,
|
|
2689
2703
|
"BedrockAgentRuntimeServiceException",
|
|
@@ -2691,195 +2705,189 @@ var BedrockAgentRuntimeServiceException = [
|
|
|
2691
2705
|
[],
|
|
2692
2706
|
[],
|
|
2693
2707
|
];
|
|
2694
|
-
schema.TypeRegistry.for(_sm).registerError(BedrockAgentRuntimeServiceException
|
|
2695
|
-
var AgentActionGroups = [1, n0, _AAGg, 0, [() => AgentActionGroup
|
|
2696
|
-
var AgentTraces = [1, n0, _AT, 0, [() => TracePart
|
|
2697
|
-
var ApiParameters = [1, n0, _APpi, 0, () => ApiParameter];
|
|
2698
|
-
var BedrockSessionContentBlocks = [1, n0, _BSCB, 0, [() => BedrockSessionContentBlock
|
|
2699
|
-
var CallerChain = [1, n0, _CCa, 0, () => Caller];
|
|
2700
|
-
var Citations = [1, n0, _Ci, 0, [() => Citation
|
|
2701
|
-
var CollaboratorConfigurations = [1, n0, _CCo, 0, [() => CollaboratorConfiguration
|
|
2702
|
-
var Collaborators = [1, n0, _Col, 0, [() => Collaborator
|
|
2703
|
-
var ContentBlocks = [1, n0, _CBo, 0, [() => ContentBlock
|
|
2704
|
-
var ExternalSources = [1, n0, _ESx, 0, [() => ExternalSource
|
|
2705
|
-
var FieldsForReranking = [1, n0, _FFRi, 8, () => FieldForReranking];
|
|
2706
|
-
var FlowExecutionErrors = [1, n0, _FEEl, 0, () => FlowExecutionError];
|
|
2707
|
-
var FlowExecutionEvents = [1, n0, _FEElo, 0, [() => FlowExecutionEvent
|
|
2708
|
-
var FlowExecutionSummaries = [1, n0, _FESl, 0, () => FlowExecutionSummary];
|
|
2709
|
-
var FlowInputFields = [1, n0, _FIFl, 0, [() => FlowInputField
|
|
2710
|
-
var FlowInputs = [1, n0, _FIl, 0, [() => FlowInput
|
|
2711
|
-
var FlowOutputFields = [1, n0, _FOFl, 0, [() => FlowOutputField
|
|
2712
|
-
var FlowTraceConditions = [1, n0, _FTCl, 0, [() => FlowTraceCondition
|
|
2708
|
+
schema.TypeRegistry.for(_sm).registerError(BedrockAgentRuntimeServiceException$, BedrockAgentRuntimeServiceException);
|
|
2709
|
+
var AgentActionGroups = [1, n0, _AAGg, 0, [() => AgentActionGroup$, 0]];
|
|
2710
|
+
var AgentTraces = [1, n0, _AT, 0, [() => TracePart$, 0]];
|
|
2711
|
+
var ApiParameters = [1, n0, _APpi, 0, () => ApiParameter$];
|
|
2712
|
+
var BedrockSessionContentBlocks = [1, n0, _BSCB, 0, [() => BedrockSessionContentBlock$, 0]];
|
|
2713
|
+
var CallerChain = [1, n0, _CCa, 0, () => Caller$];
|
|
2714
|
+
var Citations = [1, n0, _Ci, 0, [() => Citation$, 0]];
|
|
2715
|
+
var CollaboratorConfigurations = [1, n0, _CCo, 0, [() => CollaboratorConfiguration$, 0]];
|
|
2716
|
+
var Collaborators = [1, n0, _Col, 0, [() => Collaborator$, 0]];
|
|
2717
|
+
var ContentBlocks = [1, n0, _CBo, 0, [() => ContentBlock$, 0]];
|
|
2718
|
+
var ExternalSources = [1, n0, _ESx, 0, [() => ExternalSource$, 0]];
|
|
2719
|
+
var FieldsForReranking = [1, n0, _FFRi, 8, () => FieldForReranking$];
|
|
2720
|
+
var FlowExecutionErrors = [1, n0, _FEEl, 0, () => FlowExecutionError$];
|
|
2721
|
+
var FlowExecutionEvents = [1, n0, _FEElo, 0, [() => FlowExecutionEvent$, 0]];
|
|
2722
|
+
var FlowExecutionSummaries = [1, n0, _FESl, 0, () => FlowExecutionSummary$];
|
|
2723
|
+
var FlowInputFields = [1, n0, _FIFl, 0, [() => FlowInputField$, 0]];
|
|
2724
|
+
var FlowInputs = [1, n0, _FIl, 0, [() => FlowInput$, 0]];
|
|
2725
|
+
var FlowOutputFields = [1, n0, _FOFl, 0, [() => FlowOutputField$, 0]];
|
|
2726
|
+
var FlowTraceConditions = [1, n0, _FTCl, 0, [() => FlowTraceCondition$, 0]];
|
|
2713
2727
|
var FlowTraceNodeInputExecutionChain = [
|
|
2714
2728
|
1,
|
|
2715
2729
|
n0,
|
|
2716
2730
|
_FTNIEC,
|
|
2717
2731
|
8,
|
|
2718
|
-
[() => FlowTraceNodeInputExecutionChainItem
|
|
2719
|
-
];
|
|
2720
|
-
var FlowTraceNodeInputFields = [1, n0, _FTNIFl, 0, [() => FlowTraceNodeInputField
|
|
2721
|
-
var FlowTraceNodeOutputFields = [1, n0, _FTNOFl, 0, [() => FlowTraceNodeOutputField
|
|
2722
|
-
var FlowTraceNodeOutputNextList = [1, n0, _FTNONL, 0, [() => FlowTraceNodeOutputNext
|
|
2723
|
-
var FunctionParameters = [1, n0, _FPun, 0, () => FunctionParameter];
|
|
2724
|
-
var Functions = [1, n0, _Fu, 0, [() => FunctionDefinition
|
|
2725
|
-
var GeneratedQueries = [1, n0, _GQe, 0, [() => GeneratedQuery
|
|
2726
|
-
var GuardrailAssessmentList = [1, n0, _GAL, 0, [() => GuardrailAssessment
|
|
2727
|
-
var GuardrailContentFilterList = [1, n0, _GCFL, 8, [() => GuardrailContentFilter
|
|
2728
|
-
var GuardrailCustomWordList = [1, n0, _GCWL, 8, [() => GuardrailCustomWord
|
|
2729
|
-
var GuardrailManagedWordList = [1, n0, _GMWL, 8, [() => GuardrailManagedWord
|
|
2730
|
-
var GuardrailPiiEntityFilterList = [1, n0, _GPEFL, 8, [() => GuardrailPiiEntityFilter
|
|
2731
|
-
var GuardrailRegexFilterList = [1, n0, _GRFL, 8, [() => GuardrailRegexFilter
|
|
2732
|
-
var GuardrailTopicList = [1, n0, _GTL, 8, [() => GuardrailTopic
|
|
2733
|
-
var ImageInputs = [1, n0, _IIm, 0, () => ImageInput];
|
|
2734
|
-
var InputFiles = [1, n0, _IFn, 0, [() => InputFile
|
|
2735
|
-
var InvocationInputs = [1, n0, _IInvo, 0, [() => InvocationInputMember
|
|
2736
|
-
var InvocationStepSummaries = [1, n0, _ISSnv, 0, () => InvocationStepSummary];
|
|
2737
|
-
var InvocationSummaries = [1, n0, _ISnv, 0, () => InvocationSummary];
|
|
2738
|
-
var KnowledgeBaseConfigurations = [1, n0, _KBCn, 0, [() => KnowledgeBaseConfiguration
|
|
2739
|
-
var KnowledgeBaseRetrievalResults = [
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
];
|
|
2746
|
-
var
|
|
2747
|
-
var
|
|
2748
|
-
var
|
|
2749
|
-
var
|
|
2750
|
-
var
|
|
2751
|
-
var
|
|
2752
|
-
var
|
|
2753
|
-
var
|
|
2754
|
-
var
|
|
2755
|
-
var
|
|
2756
|
-
var
|
|
2757
|
-
var
|
|
2758
|
-
var
|
|
2759
|
-
var
|
|
2760
|
-
var
|
|
2761
|
-
var
|
|
2762
|
-
var RetrievalResultContentRow = [1, n0, _RRCR, 8, [() => RetrievalResultContentColumn, 0]];
|
|
2763
|
-
var RetrievedReferences = [1, n0, _RRetrie, 0, [() => RetrievedReference, 0]];
|
|
2764
|
-
var ReturnControlInvocationResults = [1, n0, _RCIR, 0, [() => InvocationResultMember, 0]];
|
|
2765
|
-
var SatisfiedConditions = [1, n0, _SCa, 0, [() => SatisfiedCondition, 0]];
|
|
2766
|
-
var SessionSummaries = [1, n0, _SSes, 0, () => SessionSummary];
|
|
2767
|
-
var ApiContentMap = [2, n0, _ACM, 0, 0, () => PropertyParameters];
|
|
2732
|
+
[() => FlowTraceNodeInputExecutionChainItem$, 0],
|
|
2733
|
+
];
|
|
2734
|
+
var FlowTraceNodeInputFields = [1, n0, _FTNIFl, 0, [() => FlowTraceNodeInputField$, 0]];
|
|
2735
|
+
var FlowTraceNodeOutputFields = [1, n0, _FTNOFl, 0, [() => FlowTraceNodeOutputField$, 0]];
|
|
2736
|
+
var FlowTraceNodeOutputNextList = [1, n0, _FTNONL, 0, [() => FlowTraceNodeOutputNext$, 0]];
|
|
2737
|
+
var FunctionParameters = [1, n0, _FPun, 0, () => FunctionParameter$];
|
|
2738
|
+
var Functions = [1, n0, _Fu, 0, [() => FunctionDefinition$, 0]];
|
|
2739
|
+
var GeneratedQueries = [1, n0, _GQe, 0, [() => GeneratedQuery$, 0]];
|
|
2740
|
+
var GuardrailAssessmentList = [1, n0, _GAL, 0, [() => GuardrailAssessment$, 0]];
|
|
2741
|
+
var GuardrailContentFilterList = [1, n0, _GCFL, 8, [() => GuardrailContentFilter$, 0]];
|
|
2742
|
+
var GuardrailCustomWordList = [1, n0, _GCWL, 8, [() => GuardrailCustomWord$, 0]];
|
|
2743
|
+
var GuardrailManagedWordList = [1, n0, _GMWL, 8, [() => GuardrailManagedWord$, 0]];
|
|
2744
|
+
var GuardrailPiiEntityFilterList = [1, n0, _GPEFL, 8, [() => GuardrailPiiEntityFilter$, 0]];
|
|
2745
|
+
var GuardrailRegexFilterList = [1, n0, _GRFL, 8, [() => GuardrailRegexFilter$, 0]];
|
|
2746
|
+
var GuardrailTopicList = [1, n0, _GTL, 8, [() => GuardrailTopic$, 0]];
|
|
2747
|
+
var ImageInputs = [1, n0, _IIm, 0, () => ImageInput$];
|
|
2748
|
+
var InputFiles = [1, n0, _IFn, 0, [() => InputFile$, 0]];
|
|
2749
|
+
var InvocationInputs = [1, n0, _IInvo, 0, [() => InvocationInputMember$, 0]];
|
|
2750
|
+
var InvocationStepSummaries = [1, n0, _ISSnv, 0, () => InvocationStepSummary$];
|
|
2751
|
+
var InvocationSummaries = [1, n0, _ISnv, 0, () => InvocationSummary$];
|
|
2752
|
+
var KnowledgeBaseConfigurations = [1, n0, _KBCn, 0, [() => KnowledgeBaseConfiguration$, 0]];
|
|
2753
|
+
var KnowledgeBaseRetrievalResults = [1, n0, _KBRRn, 8, [() => KnowledgeBaseRetrievalResult$, 0]];
|
|
2754
|
+
var KnowledgeBases = [1, n0, _KBn, 0, [() => KnowledgeBase$, 0]];
|
|
2755
|
+
var Memories = [1, n0, _Mem, 0, () => Memory$];
|
|
2756
|
+
var Messages = [1, n0, _Mes, 0, [() => Message$, 0]];
|
|
2757
|
+
var MetadataAttributeSchemaList = [1, n0, _MASL, 0, [() => MetadataAttributeSchema$, 0]];
|
|
2758
|
+
var NodeInputExecutionChain = [1, n0, _NIEC, 0, () => NodeInputExecutionChainItem$];
|
|
2759
|
+
var NodeInputFields = [1, n0, _NIFo, 0, [() => NodeInputField$, 0]];
|
|
2760
|
+
var NodeOutputFields = [1, n0, _NOFo, 0, [() => NodeOutputField$, 0]];
|
|
2761
|
+
var NodeOutputNextList = [1, n0, _NONL, 0, [() => NodeOutputNext$, 0]];
|
|
2762
|
+
var OutputFiles = [1, n0, _OFu, 0, [() => OutputFile$, 0]];
|
|
2763
|
+
var ParameterList = [1, n0, _PL, 0, () => Parameter$];
|
|
2764
|
+
var _Parameters = [1, n0, _Par, 0, () => Parameter$];
|
|
2765
|
+
var PromptConfigurations = [1, n0, _PCro, 0, [() => PromptConfiguration$, 0]];
|
|
2766
|
+
var RerankQueriesList = [1, n0, _RQL, 8, [() => RerankQuery$, 0]];
|
|
2767
|
+
var RerankResultsList = [1, n0, _RRLe, 0, [() => RerankResult$, 0]];
|
|
2768
|
+
var RerankSourcesList = [1, n0, _RSL, 8, [() => RerankSource$, 0]];
|
|
2769
|
+
var RetrievalFilterList = [1, n0, _RFL, 0, [() => RetrievalFilter$, 0]];
|
|
2770
|
+
var RetrievalResultContentRow = [1, n0, _RRCR, 8, [() => RetrievalResultContentColumn$, 0]];
|
|
2771
|
+
var RetrievedReferences = [1, n0, _RRetrie, 0, [() => RetrievedReference$, 0]];
|
|
2772
|
+
var ReturnControlInvocationResults = [1, n0, _RCIR, 0, [() => InvocationResultMember$, 0]];
|
|
2773
|
+
var SatisfiedConditions = [1, n0, _SCa, 0, [() => SatisfiedCondition$, 0]];
|
|
2774
|
+
var SessionSummaries = [1, n0, _SSes, 0, () => SessionSummary$];
|
|
2775
|
+
var ApiContentMap = [2, n0, _ACM, 0, 0, () => PropertyParameters$];
|
|
2768
2776
|
var ContentMap = [2, n0, _CM, 0, 0, () => _Parameters];
|
|
2769
|
-
var ParameterMap = [2, n0, _PM, 0, 0, () => ParameterDetail];
|
|
2770
|
-
var ResponseBody = [2, n0, _RBe, 0, 0, () => ContentBody];
|
|
2777
|
+
var ParameterMap = [2, n0, _PM, 0, 0, () => ParameterDetail$];
|
|
2778
|
+
var ResponseBody = [2, n0, _RBe, 0, 0, () => ContentBody$];
|
|
2771
2779
|
var RetrievalResultMetadata = [2, n0, _RRM, 8, 0, 15];
|
|
2772
|
-
var ActionGroupExecutor = [3, n0, _AGE, 0, [_lam, _cCu], [0, 0]];
|
|
2773
|
-
var APISchema = [3, n0, _APIS, 0, [_s_, _pa], [() => S3Identifier
|
|
2774
|
-
var BedrockSessionContentBlock = [3, n0, _BSCBe, 8, [_t, _ima], [0, () => ImageBlock]];
|
|
2775
|
-
var Caller = [3, n0, _Ca, 0, [_aAA], [0]];
|
|
2776
|
-
var ContentBlock = [3, n0, _CBon, 8, [_t], [0]];
|
|
2777
|
-
var FlowExecutionContent = [3, n0, _FEC, 8, [_do], [15]];
|
|
2778
|
-
var FlowExecutionEvent = [
|
|
2780
|
+
var ActionGroupExecutor$ = [3, n0, _AGE, 0, [_lam, _cCu], [0, 0]];
|
|
2781
|
+
var APISchema$ = [3, n0, _APIS, 0, [_s_, _pa], [() => S3Identifier$, [() => Payload, 0]]];
|
|
2782
|
+
var BedrockSessionContentBlock$ = [3, n0, _BSCBe, 8, [_t, _ima], [0, () => ImageBlock$]];
|
|
2783
|
+
var Caller$ = [3, n0, _Ca, 0, [_aAA], [0]];
|
|
2784
|
+
var ContentBlock$ = [3, n0, _CBon, 8, [_t], [0]];
|
|
2785
|
+
var FlowExecutionContent$ = [3, n0, _FEC, 8, [_do], [15]];
|
|
2786
|
+
var FlowExecutionEvent$ = [
|
|
2779
2787
|
3,
|
|
2780
2788
|
n0,
|
|
2781
2789
|
_FEElow,
|
|
2782
2790
|
0,
|
|
2783
2791
|
[_fIE, _fOE, _nIE, _nOE, _cRE, _nFE, _fFE, _nAE, _nDE],
|
|
2784
2792
|
[
|
|
2785
|
-
[() => FlowExecutionInputEvent
|
|
2786
|
-
[() => FlowExecutionOutputEvent
|
|
2787
|
-
[() => NodeInputEvent
|
|
2788
|
-
[() => NodeOutputEvent
|
|
2789
|
-
[() => ConditionResultEvent
|
|
2790
|
-
[() => NodeFailureEvent
|
|
2791
|
-
[() => FlowFailureEvent
|
|
2792
|
-
[() => NodeActionEvent
|
|
2793
|
-
[() => NodeDependencyEvent
|
|
2793
|
+
[() => FlowExecutionInputEvent$, 0],
|
|
2794
|
+
[() => FlowExecutionOutputEvent$, 0],
|
|
2795
|
+
[() => NodeInputEvent$, 0],
|
|
2796
|
+
[() => NodeOutputEvent$, 0],
|
|
2797
|
+
[() => ConditionResultEvent$, 0],
|
|
2798
|
+
[() => NodeFailureEvent$, 0],
|
|
2799
|
+
[() => FlowFailureEvent$, 0],
|
|
2800
|
+
[() => NodeActionEvent$, 0],
|
|
2801
|
+
[() => NodeDependencyEvent$, 0],
|
|
2794
2802
|
],
|
|
2795
2803
|
];
|
|
2796
|
-
var FlowInputContent = [3, n0, _FIC, 8, [_do], [15]];
|
|
2797
|
-
var FlowMultiTurnInputContent = [3, n0, _FMTIC, 0, [_do], [15]];
|
|
2798
|
-
var FlowOutputContent = [3, n0, _FOC, 0, [_do], [15]];
|
|
2799
|
-
var FlowResponseStream = [
|
|
2804
|
+
var FlowInputContent$ = [3, n0, _FIC, 8, [_do], [15]];
|
|
2805
|
+
var FlowMultiTurnInputContent$ = [3, n0, _FMTIC, 0, [_do], [15]];
|
|
2806
|
+
var FlowOutputContent$ = [3, n0, _FOC, 0, [_do], [15]];
|
|
2807
|
+
var FlowResponseStream$ = [
|
|
2800
2808
|
3,
|
|
2801
2809
|
n0,
|
|
2802
2810
|
_FRSl,
|
|
2803
2811
|
{ [_stre]: 1 },
|
|
2804
2812
|
[_fOE, _fCE, _fTE, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE, _fMTIRE],
|
|
2805
2813
|
[
|
|
2806
|
-
[() => FlowOutputEvent
|
|
2807
|
-
[() => FlowCompletionEvent
|
|
2808
|
-
[() => FlowTraceEvent
|
|
2809
|
-
[() => InternalServerException
|
|
2810
|
-
[() => ValidationException
|
|
2811
|
-
[() => ResourceNotFoundException
|
|
2812
|
-
[() => ServiceQuotaExceededException
|
|
2813
|
-
[() => ThrottlingException
|
|
2814
|
-
[() => AccessDeniedException
|
|
2815
|
-
[() => ConflictException
|
|
2816
|
-
[() => DependencyFailedException
|
|
2817
|
-
[() => BadGatewayException
|
|
2818
|
-
[() => FlowMultiTurnInputRequestEvent
|
|
2814
|
+
[() => FlowOutputEvent$, 0],
|
|
2815
|
+
[() => FlowCompletionEvent$, 0],
|
|
2816
|
+
[() => FlowTraceEvent$, 0],
|
|
2817
|
+
[() => InternalServerException$, 0],
|
|
2818
|
+
[() => ValidationException$, 0],
|
|
2819
|
+
[() => ResourceNotFoundException$, 0],
|
|
2820
|
+
[() => ServiceQuotaExceededException$, 0],
|
|
2821
|
+
[() => ThrottlingException$, 0],
|
|
2822
|
+
[() => AccessDeniedException$, 0],
|
|
2823
|
+
[() => ConflictException$, 0],
|
|
2824
|
+
[() => DependencyFailedException$, 0],
|
|
2825
|
+
[() => BadGatewayException$, 0],
|
|
2826
|
+
[() => FlowMultiTurnInputRequestEvent$, 0],
|
|
2819
2827
|
],
|
|
2820
2828
|
];
|
|
2821
|
-
var FlowTrace = [
|
|
2829
|
+
var FlowTrace$ = [
|
|
2822
2830
|
3,
|
|
2823
2831
|
n0,
|
|
2824
2832
|
_FTl,
|
|
2825
2833
|
8,
|
|
2826
2834
|
[_nIT, _nOT, _cNRT, _nAT, _nDT],
|
|
2827
2835
|
[
|
|
2828
|
-
[() => FlowTraceNodeInputEvent
|
|
2829
|
-
[() => FlowTraceNodeOutputEvent
|
|
2830
|
-
[() => FlowTraceConditionNodeResultEvent
|
|
2831
|
-
[() => FlowTraceNodeActionEvent
|
|
2832
|
-
[() => FlowTraceDependencyEvent
|
|
2836
|
+
[() => FlowTraceNodeInputEvent$, 0],
|
|
2837
|
+
[() => FlowTraceNodeOutputEvent$, 0],
|
|
2838
|
+
[() => FlowTraceConditionNodeResultEvent$, 0],
|
|
2839
|
+
[() => FlowTraceNodeActionEvent$, 0],
|
|
2840
|
+
[() => FlowTraceDependencyEvent$, 0],
|
|
2833
2841
|
],
|
|
2834
2842
|
];
|
|
2835
|
-
var FlowTraceNodeInputContent = [3, n0, _FTNIC, 8, [_do], [15]];
|
|
2836
|
-
var FlowTraceNodeOutputContent = [3, n0, _FTNOC, 0, [_do], [15]];
|
|
2837
|
-
var FunctionSchema = [3, n0, _FSu, 0, [_fu], [[() => Functions, 0]]];
|
|
2838
|
-
var ImageInputSource = [3, n0, _IIS, 0, [_by], [21]];
|
|
2839
|
-
var ImageSource = [3, n0, _ISm, 0, [_by, _sL], [21, () => S3Location]];
|
|
2840
|
-
var InlineAgentResponseStream = [
|
|
2843
|
+
var FlowTraceNodeInputContent$ = [3, n0, _FTNIC, 8, [_do], [15]];
|
|
2844
|
+
var FlowTraceNodeOutputContent$ = [3, n0, _FTNOC, 0, [_do], [15]];
|
|
2845
|
+
var FunctionSchema$ = [3, n0, _FSu, 0, [_fu], [[() => Functions, 0]]];
|
|
2846
|
+
var ImageInputSource$ = [3, n0, _IIS, 0, [_by], [21]];
|
|
2847
|
+
var ImageSource$ = [3, n0, _ISm, 0, [_by, _sL], [21, () => S3Location$]];
|
|
2848
|
+
var InlineAgentResponseStream$ = [
|
|
2841
2849
|
3,
|
|
2842
2850
|
n0,
|
|
2843
2851
|
_IARS,
|
|
2844
2852
|
{ [_stre]: 1 },
|
|
2845
2853
|
[_ch, _tra, _rCet, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE, _fi],
|
|
2846
2854
|
[
|
|
2847
|
-
[() => InlineAgentPayloadPart
|
|
2848
|
-
[() => InlineAgentTracePart
|
|
2849
|
-
[() => InlineAgentReturnControlPayload
|
|
2850
|
-
[() => InternalServerException
|
|
2851
|
-
[() => ValidationException
|
|
2852
|
-
[() => ResourceNotFoundException
|
|
2853
|
-
[() => ServiceQuotaExceededException
|
|
2854
|
-
[() => ThrottlingException
|
|
2855
|
-
[() => AccessDeniedException
|
|
2856
|
-
[() => ConflictException
|
|
2857
|
-
[() => DependencyFailedException
|
|
2858
|
-
[() => BadGatewayException
|
|
2859
|
-
[() => InlineAgentFilePart
|
|
2855
|
+
[() => InlineAgentPayloadPart$, 0],
|
|
2856
|
+
[() => InlineAgentTracePart$, 0],
|
|
2857
|
+
[() => InlineAgentReturnControlPayload$, 0],
|
|
2858
|
+
[() => InternalServerException$, 0],
|
|
2859
|
+
[() => ValidationException$, 0],
|
|
2860
|
+
[() => ResourceNotFoundException$, 0],
|
|
2861
|
+
[() => ServiceQuotaExceededException$, 0],
|
|
2862
|
+
[() => ThrottlingException$, 0],
|
|
2863
|
+
[() => AccessDeniedException$, 0],
|
|
2864
|
+
[() => ConflictException$, 0],
|
|
2865
|
+
[() => DependencyFailedException$, 0],
|
|
2866
|
+
[() => BadGatewayException$, 0],
|
|
2867
|
+
[() => InlineAgentFilePart$, 0],
|
|
2860
2868
|
],
|
|
2861
2869
|
];
|
|
2862
|
-
var InputPrompt = [3, n0, _IP, 0, [_tPe], [[() => TextPrompt
|
|
2863
|
-
var InvocationInputMember = [
|
|
2870
|
+
var InputPrompt$ = [3, n0, _IP, 0, [_tPe], [[() => TextPrompt$, 0]]];
|
|
2871
|
+
var InvocationInputMember$ = [
|
|
2864
2872
|
3,
|
|
2865
2873
|
n0,
|
|
2866
2874
|
_IIM,
|
|
2867
2875
|
0,
|
|
2868
2876
|
[_aII, _fII],
|
|
2869
2877
|
[
|
|
2870
|
-
[() => ApiInvocationInput
|
|
2871
|
-
[() => FunctionInvocationInput
|
|
2878
|
+
[() => ApiInvocationInput$, 0],
|
|
2879
|
+
[() => FunctionInvocationInput$, 0],
|
|
2872
2880
|
],
|
|
2873
2881
|
];
|
|
2874
|
-
var InvocationResultMember = [
|
|
2882
|
+
var InvocationResultMember$ = [
|
|
2875
2883
|
3,
|
|
2876
2884
|
n0,
|
|
2877
2885
|
_IRM,
|
|
2878
2886
|
0,
|
|
2879
2887
|
[_aR, _fRu],
|
|
2880
|
-
[[() => ApiResult
|
|
2888
|
+
[[() => ApiResult$, 0], () => FunctionResult$],
|
|
2881
2889
|
];
|
|
2882
|
-
var InvocationStepPayload = [
|
|
2890
|
+
var InvocationStepPayload$ = [
|
|
2883
2891
|
3,
|
|
2884
2892
|
n0,
|
|
2885
2893
|
_ISP,
|
|
@@ -2887,73 +2895,73 @@ var InvocationStepPayload = [
|
|
|
2887
2895
|
[_cB],
|
|
2888
2896
|
[[() => BedrockSessionContentBlocks, 0]],
|
|
2889
2897
|
];
|
|
2890
|
-
var Memory = [3, n0, _Memo, 0, [_sSess], [() => MemorySessionSummary]];
|
|
2891
|
-
var NodeExecutionContent = [3, n0, _NEC, 8, [_do], [15]];
|
|
2892
|
-
var NodeTraceElements = [3, n0, _NTE, 8, [_aT], [[() => AgentTraces, 0]]];
|
|
2893
|
-
var OptimizedPrompt = [3, n0, _OP, 0, [_tPe], [[() => TextPrompt
|
|
2894
|
-
var OptimizedPromptStream = [
|
|
2898
|
+
var Memory$ = [3, n0, _Memo, 0, [_sSess], [() => MemorySessionSummary$]];
|
|
2899
|
+
var NodeExecutionContent$ = [3, n0, _NEC, 8, [_do], [15]];
|
|
2900
|
+
var NodeTraceElements$ = [3, n0, _NTE, 8, [_aT], [[() => AgentTraces, 0]]];
|
|
2901
|
+
var OptimizedPrompt$ = [3, n0, _OP, 0, [_tPe], [[() => TextPrompt$, 0]]];
|
|
2902
|
+
var OptimizedPromptStream$ = [
|
|
2895
2903
|
3,
|
|
2896
2904
|
n0,
|
|
2897
2905
|
_OPS,
|
|
2898
2906
|
{ [_stre]: 1 },
|
|
2899
2907
|
[_oPE, _aPE, _iSE, _tEh, _vE, _dFE, _aDE, _bGE],
|
|
2900
2908
|
[
|
|
2901
|
-
[() => OptimizedPromptEvent
|
|
2902
|
-
[() => AnalyzePromptEvent
|
|
2903
|
-
[() => InternalServerException
|
|
2904
|
-
[() => ThrottlingException
|
|
2905
|
-
[() => ValidationException
|
|
2906
|
-
[() => DependencyFailedException
|
|
2907
|
-
[() => AccessDeniedException
|
|
2908
|
-
[() => BadGatewayException
|
|
2909
|
+
[() => OptimizedPromptEvent$, 0],
|
|
2910
|
+
[() => AnalyzePromptEvent$, 0],
|
|
2911
|
+
[() => InternalServerException$, 0],
|
|
2912
|
+
[() => ThrottlingException$, 0],
|
|
2913
|
+
[() => ValidationException$, 0],
|
|
2914
|
+
[() => DependencyFailedException$, 0],
|
|
2915
|
+
[() => AccessDeniedException$, 0],
|
|
2916
|
+
[() => BadGatewayException$, 0],
|
|
2909
2917
|
],
|
|
2910
2918
|
];
|
|
2911
|
-
var OrchestrationExecutor = [3, n0, _OE, 0, [_lam], [0]];
|
|
2912
|
-
var OrchestrationTrace = [
|
|
2919
|
+
var OrchestrationExecutor$ = [3, n0, _OE, 0, [_lam], [0]];
|
|
2920
|
+
var OrchestrationTrace$ = [
|
|
2913
2921
|
3,
|
|
2914
2922
|
n0,
|
|
2915
2923
|
_OT,
|
|
2916
2924
|
8,
|
|
2917
2925
|
[_ra, _iInvo, _ob, _mII, _mIO],
|
|
2918
2926
|
[
|
|
2919
|
-
[() => Rationale
|
|
2920
|
-
[() => InvocationInput
|
|
2921
|
-
[() => Observation
|
|
2922
|
-
[() => ModelInvocationInput
|
|
2923
|
-
[() => OrchestrationModelInvocationOutput
|
|
2927
|
+
[() => Rationale$, 0],
|
|
2928
|
+
[() => InvocationInput$, 0],
|
|
2929
|
+
[() => Observation$, 0],
|
|
2930
|
+
[() => ModelInvocationInput$, 0],
|
|
2931
|
+
[() => OrchestrationModelInvocationOutput$, 0],
|
|
2924
2932
|
],
|
|
2925
2933
|
];
|
|
2926
|
-
var PostProcessingTrace = [
|
|
2934
|
+
var PostProcessingTrace$ = [
|
|
2927
2935
|
3,
|
|
2928
2936
|
n0,
|
|
2929
2937
|
_PPT,
|
|
2930
2938
|
8,
|
|
2931
2939
|
[_mII, _mIO],
|
|
2932
2940
|
[
|
|
2933
|
-
[() => ModelInvocationInput
|
|
2934
|
-
[() => PostProcessingModelInvocationOutput
|
|
2941
|
+
[() => ModelInvocationInput$, 0],
|
|
2942
|
+
[() => PostProcessingModelInvocationOutput$, 0],
|
|
2935
2943
|
],
|
|
2936
2944
|
];
|
|
2937
|
-
var PreProcessingTrace = [
|
|
2945
|
+
var PreProcessingTrace$ = [
|
|
2938
2946
|
3,
|
|
2939
2947
|
n0,
|
|
2940
2948
|
_PPTr,
|
|
2941
2949
|
8,
|
|
2942
2950
|
[_mII, _mIO],
|
|
2943
2951
|
[
|
|
2944
|
-
[() => ModelInvocationInput
|
|
2945
|
-
[() => PreProcessingModelInvocationOutput
|
|
2952
|
+
[() => ModelInvocationInput$, 0],
|
|
2953
|
+
[() => PreProcessingModelInvocationOutput$, 0],
|
|
2946
2954
|
],
|
|
2947
2955
|
];
|
|
2948
|
-
var ReasoningContentBlock = [
|
|
2956
|
+
var ReasoningContentBlock$ = [
|
|
2949
2957
|
3,
|
|
2950
2958
|
n0,
|
|
2951
2959
|
_RCB,
|
|
2952
2960
|
8,
|
|
2953
2961
|
[_rT, _rCed],
|
|
2954
|
-
[[() => ReasoningTextBlock
|
|
2962
|
+
[[() => ReasoningTextBlock$, 0], 21],
|
|
2955
2963
|
];
|
|
2956
|
-
var RerankingMetadataSelectiveModeConfiguration = [
|
|
2964
|
+
var RerankingMetadataSelectiveModeConfiguration$ = [
|
|
2957
2965
|
3,
|
|
2958
2966
|
n0,
|
|
2959
2967
|
_RMSMC,
|
|
@@ -2964,159 +2972,159 @@ var RerankingMetadataSelectiveModeConfiguration = [
|
|
|
2964
2972
|
[() => FieldsForReranking, 0],
|
|
2965
2973
|
],
|
|
2966
2974
|
];
|
|
2967
|
-
var ResponseStream = [
|
|
2975
|
+
var ResponseStream$ = [
|
|
2968
2976
|
3,
|
|
2969
2977
|
n0,
|
|
2970
2978
|
_RSes,
|
|
2971
2979
|
{ [_stre]: 1 },
|
|
2972
2980
|
[_ch, _tra, _rCet, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE, _mNRE, _fi],
|
|
2973
2981
|
[
|
|
2974
|
-
[() => PayloadPart
|
|
2975
|
-
[() => TracePart
|
|
2976
|
-
[() => ReturnControlPayload
|
|
2977
|
-
[() => InternalServerException
|
|
2978
|
-
[() => ValidationException
|
|
2979
|
-
[() => ResourceNotFoundException
|
|
2980
|
-
[() => ServiceQuotaExceededException
|
|
2981
|
-
[() => ThrottlingException
|
|
2982
|
-
[() => AccessDeniedException
|
|
2983
|
-
[() => ConflictException
|
|
2984
|
-
[() => DependencyFailedException
|
|
2985
|
-
[() => BadGatewayException
|
|
2986
|
-
[() => ModelNotReadyException
|
|
2987
|
-
[() => FilePart
|
|
2982
|
+
[() => PayloadPart$, 0],
|
|
2983
|
+
[() => TracePart$, 0],
|
|
2984
|
+
[() => ReturnControlPayload$, 0],
|
|
2985
|
+
[() => InternalServerException$, 0],
|
|
2986
|
+
[() => ValidationException$, 0],
|
|
2987
|
+
[() => ResourceNotFoundException$, 0],
|
|
2988
|
+
[() => ServiceQuotaExceededException$, 0],
|
|
2989
|
+
[() => ThrottlingException$, 0],
|
|
2990
|
+
[() => AccessDeniedException$, 0],
|
|
2991
|
+
[() => ConflictException$, 0],
|
|
2992
|
+
[() => DependencyFailedException$, 0],
|
|
2993
|
+
[() => BadGatewayException$, 0],
|
|
2994
|
+
[() => ModelNotReadyException$, 0],
|
|
2995
|
+
[() => FilePart$, 0],
|
|
2988
2996
|
],
|
|
2989
2997
|
];
|
|
2990
|
-
var RetrievalFilter = [
|
|
2998
|
+
var RetrievalFilter$ = [
|
|
2991
2999
|
3,
|
|
2992
3000
|
n0,
|
|
2993
3001
|
_RF,
|
|
2994
3002
|
8,
|
|
2995
3003
|
[_eq, _nE, _gT, _gTOE, _lT, _lTOE, _in_, _nI, _sW, _lC, _sCtr, _aA, _oAr],
|
|
2996
3004
|
[
|
|
2997
|
-
() => FilterAttribute
|
|
2998
|
-
() => FilterAttribute
|
|
2999
|
-
() => FilterAttribute
|
|
3000
|
-
() => FilterAttribute
|
|
3001
|
-
() => FilterAttribute
|
|
3002
|
-
() => FilterAttribute
|
|
3003
|
-
() => FilterAttribute
|
|
3004
|
-
() => FilterAttribute
|
|
3005
|
-
() => FilterAttribute
|
|
3006
|
-
() => FilterAttribute
|
|
3007
|
-
() => FilterAttribute
|
|
3005
|
+
() => FilterAttribute$,
|
|
3006
|
+
() => FilterAttribute$,
|
|
3007
|
+
() => FilterAttribute$,
|
|
3008
|
+
() => FilterAttribute$,
|
|
3009
|
+
() => FilterAttribute$,
|
|
3010
|
+
() => FilterAttribute$,
|
|
3011
|
+
() => FilterAttribute$,
|
|
3012
|
+
() => FilterAttribute$,
|
|
3013
|
+
() => FilterAttribute$,
|
|
3014
|
+
() => FilterAttribute$,
|
|
3015
|
+
() => FilterAttribute$,
|
|
3008
3016
|
[() => RetrievalFilterList, 0],
|
|
3009
3017
|
[() => RetrievalFilterList, 0],
|
|
3010
3018
|
],
|
|
3011
3019
|
];
|
|
3012
|
-
var RetrieveAndGenerateStreamResponseOutput = [
|
|
3020
|
+
var RetrieveAndGenerateStreamResponseOutput$ = [
|
|
3013
3021
|
3,
|
|
3014
3022
|
n0,
|
|
3015
3023
|
_RAGSRO,
|
|
3016
3024
|
{ [_stre]: 1 },
|
|
3017
3025
|
[_o, _cit, _g, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE],
|
|
3018
3026
|
[
|
|
3019
|
-
[() => RetrieveAndGenerateOutputEvent
|
|
3020
|
-
[() => CitationEvent
|
|
3021
|
-
() => GuardrailEvent
|
|
3022
|
-
[() => InternalServerException
|
|
3023
|
-
[() => ValidationException
|
|
3024
|
-
[() => ResourceNotFoundException
|
|
3025
|
-
[() => ServiceQuotaExceededException
|
|
3026
|
-
[() => ThrottlingException
|
|
3027
|
-
[() => AccessDeniedException
|
|
3028
|
-
[() => ConflictException
|
|
3029
|
-
[() => DependencyFailedException
|
|
3030
|
-
[() => BadGatewayException
|
|
3027
|
+
[() => RetrieveAndGenerateOutputEvent$, 0],
|
|
3028
|
+
[() => CitationEvent$, 0],
|
|
3029
|
+
() => GuardrailEvent$,
|
|
3030
|
+
[() => InternalServerException$, 0],
|
|
3031
|
+
[() => ValidationException$, 0],
|
|
3032
|
+
[() => ResourceNotFoundException$, 0],
|
|
3033
|
+
[() => ServiceQuotaExceededException$, 0],
|
|
3034
|
+
[() => ThrottlingException$, 0],
|
|
3035
|
+
[() => AccessDeniedException$, 0],
|
|
3036
|
+
[() => ConflictException$, 0],
|
|
3037
|
+
[() => DependencyFailedException$, 0],
|
|
3038
|
+
[() => BadGatewayException$, 0],
|
|
3031
3039
|
],
|
|
3032
3040
|
];
|
|
3033
|
-
var RoutingClassifierTrace = [
|
|
3041
|
+
var RoutingClassifierTrace$ = [
|
|
3034
3042
|
3,
|
|
3035
3043
|
n0,
|
|
3036
3044
|
_RCT,
|
|
3037
3045
|
8,
|
|
3038
3046
|
[_iInvo, _ob, _mII, _mIO],
|
|
3039
3047
|
[
|
|
3040
|
-
[() => InvocationInput
|
|
3041
|
-
[() => Observation
|
|
3042
|
-
[() => ModelInvocationInput
|
|
3043
|
-
[() => RoutingClassifierModelInvocationOutput
|
|
3048
|
+
[() => InvocationInput$, 0],
|
|
3049
|
+
[() => Observation$, 0],
|
|
3050
|
+
[() => ModelInvocationInput$, 0],
|
|
3051
|
+
[() => RoutingClassifierModelInvocationOutput$, 0],
|
|
3044
3052
|
],
|
|
3045
3053
|
];
|
|
3046
|
-
var Trace = [
|
|
3054
|
+
var Trace$ = [
|
|
3047
3055
|
3,
|
|
3048
3056
|
n0,
|
|
3049
3057
|
_T,
|
|
3050
3058
|
8,
|
|
3051
3059
|
[_gTu, _pPT, _oTr, _pPTo, _rCT, _fT, _cOT],
|
|
3052
3060
|
[
|
|
3053
|
-
[() => GuardrailTrace
|
|
3054
|
-
[() => PreProcessingTrace
|
|
3055
|
-
[() => OrchestrationTrace
|
|
3056
|
-
[() => PostProcessingTrace
|
|
3057
|
-
[() => RoutingClassifierTrace
|
|
3058
|
-
[() => FailureTrace
|
|
3059
|
-
[() => CustomOrchestrationTrace
|
|
3061
|
+
[() => GuardrailTrace$, 0],
|
|
3062
|
+
[() => PreProcessingTrace$, 0],
|
|
3063
|
+
[() => OrchestrationTrace$, 0],
|
|
3064
|
+
[() => PostProcessingTrace$, 0],
|
|
3065
|
+
[() => RoutingClassifierTrace$, 0],
|
|
3066
|
+
[() => FailureTrace$, 0],
|
|
3067
|
+
[() => CustomOrchestrationTrace$, 0],
|
|
3060
3068
|
],
|
|
3061
3069
|
];
|
|
3062
|
-
var TraceElements = [3, n0, _TEr, 8, [_aT], [[() => AgentTraces, 0]]];
|
|
3063
|
-
var CreateInvocation = [
|
|
3070
|
+
var TraceElements$ = [3, n0, _TEr, 8, [_aT], [[() => AgentTraces, 0]]];
|
|
3071
|
+
var CreateInvocation$ = [
|
|
3064
3072
|
9,
|
|
3065
3073
|
n0,
|
|
3066
3074
|
_CIr,
|
|
3067
3075
|
{ [_h]: ["PUT", "/sessions/{sessionIdentifier}/invocations/", 201] },
|
|
3068
|
-
() => CreateInvocationRequest
|
|
3069
|
-
() => CreateInvocationResponse
|
|
3076
|
+
() => CreateInvocationRequest$,
|
|
3077
|
+
() => CreateInvocationResponse$,
|
|
3070
3078
|
];
|
|
3071
|
-
var CreateSession = [
|
|
3079
|
+
var CreateSession$ = [
|
|
3072
3080
|
9,
|
|
3073
3081
|
n0,
|
|
3074
3082
|
_CS,
|
|
3075
3083
|
{ [_h]: ["PUT", "/sessions/", 201] },
|
|
3076
|
-
() => CreateSessionRequest
|
|
3077
|
-
() => CreateSessionResponse
|
|
3084
|
+
() => CreateSessionRequest$,
|
|
3085
|
+
() => CreateSessionResponse$,
|
|
3078
3086
|
];
|
|
3079
|
-
var DeleteAgentMemory = [
|
|
3087
|
+
var DeleteAgentMemory$ = [
|
|
3080
3088
|
9,
|
|
3081
3089
|
n0,
|
|
3082
3090
|
_DAM,
|
|
3083
3091
|
{ [_h]: ["DELETE", "/agents/{agentId}/agentAliases/{agentAliasId}/memories", 202] },
|
|
3084
|
-
() => DeleteAgentMemoryRequest
|
|
3085
|
-
() => DeleteAgentMemoryResponse
|
|
3092
|
+
() => DeleteAgentMemoryRequest$,
|
|
3093
|
+
() => DeleteAgentMemoryResponse$,
|
|
3086
3094
|
];
|
|
3087
|
-
var DeleteSession = [
|
|
3095
|
+
var DeleteSession$ = [
|
|
3088
3096
|
9,
|
|
3089
3097
|
n0,
|
|
3090
3098
|
_DS,
|
|
3091
3099
|
{ [_h]: ["DELETE", "/sessions/{sessionIdentifier}/", 200] },
|
|
3092
|
-
() => DeleteSessionRequest
|
|
3093
|
-
() => DeleteSessionResponse
|
|
3100
|
+
() => DeleteSessionRequest$,
|
|
3101
|
+
() => DeleteSessionResponse$,
|
|
3094
3102
|
];
|
|
3095
|
-
var EndSession = [
|
|
3103
|
+
var EndSession$ = [
|
|
3096
3104
|
9,
|
|
3097
3105
|
n0,
|
|
3098
3106
|
_ESn,
|
|
3099
3107
|
{ [_h]: ["PATCH", "/sessions/{sessionIdentifier}", 200] },
|
|
3100
|
-
() => EndSessionRequest
|
|
3101
|
-
() => EndSessionResponse
|
|
3108
|
+
() => EndSessionRequest$,
|
|
3109
|
+
() => EndSessionResponse$,
|
|
3102
3110
|
];
|
|
3103
|
-
var GenerateQuery = [
|
|
3111
|
+
var GenerateQuery$ = [
|
|
3104
3112
|
9,
|
|
3105
3113
|
n0,
|
|
3106
3114
|
_GQen,
|
|
3107
3115
|
{ [_h]: ["POST", "/generateQuery", 200] },
|
|
3108
|
-
() => GenerateQueryRequest
|
|
3109
|
-
() => GenerateQueryResponse
|
|
3116
|
+
() => GenerateQueryRequest$,
|
|
3117
|
+
() => GenerateQueryResponse$,
|
|
3110
3118
|
];
|
|
3111
|
-
var GetAgentMemory = [
|
|
3119
|
+
var GetAgentMemory$ = [
|
|
3112
3120
|
9,
|
|
3113
3121
|
n0,
|
|
3114
3122
|
_GAM,
|
|
3115
3123
|
{ [_h]: ["GET", "/agents/{agentId}/agentAliases/{agentAliasId}/memories", 200] },
|
|
3116
|
-
() => GetAgentMemoryRequest
|
|
3117
|
-
() => GetAgentMemoryResponse
|
|
3124
|
+
() => GetAgentMemoryRequest$,
|
|
3125
|
+
() => GetAgentMemoryResponse$,
|
|
3118
3126
|
];
|
|
3119
|
-
var GetExecutionFlowSnapshot = [
|
|
3127
|
+
var GetExecutionFlowSnapshot$ = [
|
|
3120
3128
|
9,
|
|
3121
3129
|
n0,
|
|
3122
3130
|
_GEFS,
|
|
@@ -3127,196 +3135,196 @@ var GetExecutionFlowSnapshot = [
|
|
|
3127
3135
|
200,
|
|
3128
3136
|
],
|
|
3129
3137
|
},
|
|
3130
|
-
() => GetExecutionFlowSnapshotRequest
|
|
3131
|
-
() => GetExecutionFlowSnapshotResponse
|
|
3138
|
+
() => GetExecutionFlowSnapshotRequest$,
|
|
3139
|
+
() => GetExecutionFlowSnapshotResponse$,
|
|
3132
3140
|
];
|
|
3133
|
-
var GetFlowExecution = [
|
|
3141
|
+
var GetFlowExecution$ = [
|
|
3134
3142
|
9,
|
|
3135
3143
|
n0,
|
|
3136
3144
|
_GFE,
|
|
3137
3145
|
{ [_h]: ["GET", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}", 200] },
|
|
3138
|
-
() => GetFlowExecutionRequest
|
|
3139
|
-
() => GetFlowExecutionResponse
|
|
3146
|
+
() => GetFlowExecutionRequest$,
|
|
3147
|
+
() => GetFlowExecutionResponse$,
|
|
3140
3148
|
];
|
|
3141
|
-
var GetInvocationStep = [
|
|
3149
|
+
var GetInvocationStep$ = [
|
|
3142
3150
|
9,
|
|
3143
3151
|
n0,
|
|
3144
3152
|
_GIS,
|
|
3145
3153
|
{ [_h]: ["POST", "/sessions/{sessionIdentifier}/invocationSteps/{invocationStepId}", 200] },
|
|
3146
|
-
() => GetInvocationStepRequest
|
|
3147
|
-
() => GetInvocationStepResponse
|
|
3154
|
+
() => GetInvocationStepRequest$,
|
|
3155
|
+
() => GetInvocationStepResponse$,
|
|
3148
3156
|
];
|
|
3149
|
-
var GetSession = [
|
|
3157
|
+
var GetSession$ = [
|
|
3150
3158
|
9,
|
|
3151
3159
|
n0,
|
|
3152
3160
|
_GS,
|
|
3153
3161
|
{ [_h]: ["GET", "/sessions/{sessionIdentifier}/", 200] },
|
|
3154
|
-
() => GetSessionRequest
|
|
3155
|
-
() => GetSessionResponse
|
|
3162
|
+
() => GetSessionRequest$,
|
|
3163
|
+
() => GetSessionResponse$,
|
|
3156
3164
|
];
|
|
3157
|
-
var InvokeAgent = [
|
|
3165
|
+
var InvokeAgent$ = [
|
|
3158
3166
|
9,
|
|
3159
3167
|
n0,
|
|
3160
3168
|
_IA,
|
|
3161
3169
|
{ [_h]: ["POST", "/agents/{agentId}/agentAliases/{agentAliasId}/sessions/{sessionId}/text", 200] },
|
|
3162
|
-
() => InvokeAgentRequest
|
|
3163
|
-
() => InvokeAgentResponse
|
|
3170
|
+
() => InvokeAgentRequest$,
|
|
3171
|
+
() => InvokeAgentResponse$,
|
|
3164
3172
|
];
|
|
3165
|
-
var InvokeFlow = [
|
|
3173
|
+
var InvokeFlow$ = [
|
|
3166
3174
|
9,
|
|
3167
3175
|
n0,
|
|
3168
3176
|
_IFnv,
|
|
3169
3177
|
{ [_h]: ["POST", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}", 200] },
|
|
3170
|
-
() => InvokeFlowRequest
|
|
3171
|
-
() => InvokeFlowResponse
|
|
3178
|
+
() => InvokeFlowRequest$,
|
|
3179
|
+
() => InvokeFlowResponse$,
|
|
3172
3180
|
];
|
|
3173
|
-
var InvokeInlineAgent = [
|
|
3181
|
+
var InvokeInlineAgent$ = [
|
|
3174
3182
|
9,
|
|
3175
3183
|
n0,
|
|
3176
3184
|
_IIA,
|
|
3177
3185
|
{ [_h]: ["POST", "/agents/{sessionId}", 200] },
|
|
3178
|
-
() => InvokeInlineAgentRequest
|
|
3179
|
-
() => InvokeInlineAgentResponse
|
|
3186
|
+
() => InvokeInlineAgentRequest$,
|
|
3187
|
+
() => InvokeInlineAgentResponse$,
|
|
3180
3188
|
];
|
|
3181
|
-
var ListFlowExecutionEvents = [
|
|
3189
|
+
var ListFlowExecutionEvents$ = [
|
|
3182
3190
|
9,
|
|
3183
3191
|
n0,
|
|
3184
3192
|
_LFEE,
|
|
3185
3193
|
{
|
|
3186
3194
|
[_h]: ["GET", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}/events", 200],
|
|
3187
3195
|
},
|
|
3188
|
-
() => ListFlowExecutionEventsRequest
|
|
3189
|
-
() => ListFlowExecutionEventsResponse
|
|
3196
|
+
() => ListFlowExecutionEventsRequest$,
|
|
3197
|
+
() => ListFlowExecutionEventsResponse$,
|
|
3190
3198
|
];
|
|
3191
|
-
var ListFlowExecutions = [
|
|
3199
|
+
var ListFlowExecutions$ = [
|
|
3192
3200
|
9,
|
|
3193
3201
|
n0,
|
|
3194
3202
|
_LFE,
|
|
3195
3203
|
{ [_h]: ["GET", "/flows/{flowIdentifier}/executions", 200] },
|
|
3196
|
-
() => ListFlowExecutionsRequest
|
|
3197
|
-
() => ListFlowExecutionsResponse
|
|
3204
|
+
() => ListFlowExecutionsRequest$,
|
|
3205
|
+
() => ListFlowExecutionsResponse$,
|
|
3198
3206
|
];
|
|
3199
|
-
var ListInvocations = [
|
|
3207
|
+
var ListInvocations$ = [
|
|
3200
3208
|
9,
|
|
3201
3209
|
n0,
|
|
3202
3210
|
_LI,
|
|
3203
3211
|
{ [_h]: ["POST", "/sessions/{sessionIdentifier}/invocations/", 200] },
|
|
3204
|
-
() => ListInvocationsRequest
|
|
3205
|
-
() => ListInvocationsResponse
|
|
3212
|
+
() => ListInvocationsRequest$,
|
|
3213
|
+
() => ListInvocationsResponse$,
|
|
3206
3214
|
];
|
|
3207
|
-
var ListInvocationSteps = [
|
|
3215
|
+
var ListInvocationSteps$ = [
|
|
3208
3216
|
9,
|
|
3209
3217
|
n0,
|
|
3210
3218
|
_LIS,
|
|
3211
3219
|
{ [_h]: ["POST", "/sessions/{sessionIdentifier}/invocationSteps/", 200] },
|
|
3212
|
-
() => ListInvocationStepsRequest
|
|
3213
|
-
() => ListInvocationStepsResponse
|
|
3220
|
+
() => ListInvocationStepsRequest$,
|
|
3221
|
+
() => ListInvocationStepsResponse$,
|
|
3214
3222
|
];
|
|
3215
|
-
var ListSessions = [
|
|
3223
|
+
var ListSessions$ = [
|
|
3216
3224
|
9,
|
|
3217
3225
|
n0,
|
|
3218
3226
|
_LS,
|
|
3219
3227
|
{ [_h]: ["POST", "/sessions/", 200] },
|
|
3220
|
-
() => ListSessionsRequest
|
|
3221
|
-
() => ListSessionsResponse
|
|
3228
|
+
() => ListSessionsRequest$,
|
|
3229
|
+
() => ListSessionsResponse$,
|
|
3222
3230
|
];
|
|
3223
|
-
var ListTagsForResource = [
|
|
3231
|
+
var ListTagsForResource$ = [
|
|
3224
3232
|
9,
|
|
3225
3233
|
n0,
|
|
3226
3234
|
_LTFR,
|
|
3227
3235
|
{ [_h]: ["GET", "/tags/{resourceArn}", 200] },
|
|
3228
|
-
() => ListTagsForResourceRequest
|
|
3229
|
-
() => ListTagsForResourceResponse
|
|
3236
|
+
() => ListTagsForResourceRequest$,
|
|
3237
|
+
() => ListTagsForResourceResponse$,
|
|
3230
3238
|
];
|
|
3231
|
-
var OptimizePrompt = [
|
|
3239
|
+
var OptimizePrompt$ = [
|
|
3232
3240
|
9,
|
|
3233
3241
|
n0,
|
|
3234
3242
|
_OPp,
|
|
3235
3243
|
{ [_h]: ["POST", "/optimize-prompt", 200] },
|
|
3236
|
-
() => OptimizePromptRequest
|
|
3237
|
-
() => OptimizePromptResponse
|
|
3244
|
+
() => OptimizePromptRequest$,
|
|
3245
|
+
() => OptimizePromptResponse$,
|
|
3238
3246
|
];
|
|
3239
|
-
var PutInvocationStep = [
|
|
3247
|
+
var PutInvocationStep$ = [
|
|
3240
3248
|
9,
|
|
3241
3249
|
n0,
|
|
3242
3250
|
_PIS,
|
|
3243
3251
|
{ [_h]: ["PUT", "/sessions/{sessionIdentifier}/invocationSteps/", 201] },
|
|
3244
|
-
() => PutInvocationStepRequest
|
|
3245
|
-
() => PutInvocationStepResponse
|
|
3252
|
+
() => PutInvocationStepRequest$,
|
|
3253
|
+
() => PutInvocationStepResponse$,
|
|
3246
3254
|
];
|
|
3247
|
-
var Rerank = [
|
|
3255
|
+
var Rerank$ = [
|
|
3248
3256
|
9,
|
|
3249
3257
|
n0,
|
|
3250
3258
|
_Re,
|
|
3251
3259
|
{ [_h]: ["POST", "/rerank", 200] },
|
|
3252
|
-
() => RerankRequest
|
|
3253
|
-
() => RerankResponse
|
|
3260
|
+
() => RerankRequest$,
|
|
3261
|
+
() => RerankResponse$,
|
|
3254
3262
|
];
|
|
3255
|
-
var Retrieve = [
|
|
3263
|
+
var Retrieve$ = [
|
|
3256
3264
|
9,
|
|
3257
3265
|
n0,
|
|
3258
3266
|
_Ret,
|
|
3259
3267
|
{ [_h]: ["POST", "/knowledgebases/{knowledgeBaseId}/retrieve", 200] },
|
|
3260
|
-
() => RetrieveRequest
|
|
3261
|
-
() => RetrieveResponse
|
|
3268
|
+
() => RetrieveRequest$,
|
|
3269
|
+
() => RetrieveResponse$,
|
|
3262
3270
|
];
|
|
3263
|
-
var RetrieveAndGenerate = [
|
|
3271
|
+
var RetrieveAndGenerate$ = [
|
|
3264
3272
|
9,
|
|
3265
3273
|
n0,
|
|
3266
3274
|
_RAG,
|
|
3267
3275
|
{ [_h]: ["POST", "/retrieveAndGenerate", 200] },
|
|
3268
|
-
() => RetrieveAndGenerateRequest
|
|
3269
|
-
() => RetrieveAndGenerateResponse
|
|
3276
|
+
() => RetrieveAndGenerateRequest$,
|
|
3277
|
+
() => RetrieveAndGenerateResponse$,
|
|
3270
3278
|
];
|
|
3271
|
-
var RetrieveAndGenerateStream = [
|
|
3279
|
+
var RetrieveAndGenerateStream$ = [
|
|
3272
3280
|
9,
|
|
3273
3281
|
n0,
|
|
3274
3282
|
_RAGS,
|
|
3275
3283
|
{ [_h]: ["POST", "/retrieveAndGenerateStream", 200] },
|
|
3276
|
-
() => RetrieveAndGenerateStreamRequest
|
|
3277
|
-
() => RetrieveAndGenerateStreamResponse
|
|
3284
|
+
() => RetrieveAndGenerateStreamRequest$,
|
|
3285
|
+
() => RetrieveAndGenerateStreamResponse$,
|
|
3278
3286
|
];
|
|
3279
|
-
var StartFlowExecution = [
|
|
3287
|
+
var StartFlowExecution$ = [
|
|
3280
3288
|
9,
|
|
3281
3289
|
n0,
|
|
3282
3290
|
_SFE,
|
|
3283
3291
|
{ [_h]: ["POST", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions", 200] },
|
|
3284
|
-
() => StartFlowExecutionRequest
|
|
3285
|
-
() => StartFlowExecutionResponse
|
|
3292
|
+
() => StartFlowExecutionRequest$,
|
|
3293
|
+
() => StartFlowExecutionResponse$,
|
|
3286
3294
|
];
|
|
3287
|
-
var StopFlowExecution = [
|
|
3295
|
+
var StopFlowExecution$ = [
|
|
3288
3296
|
9,
|
|
3289
3297
|
n0,
|
|
3290
3298
|
_SFEt,
|
|
3291
3299
|
{
|
|
3292
3300
|
[_h]: ["POST", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}/stop", 200],
|
|
3293
3301
|
},
|
|
3294
|
-
() => StopFlowExecutionRequest
|
|
3295
|
-
() => StopFlowExecutionResponse
|
|
3302
|
+
() => StopFlowExecutionRequest$,
|
|
3303
|
+
() => StopFlowExecutionResponse$,
|
|
3296
3304
|
];
|
|
3297
|
-
var TagResource = [
|
|
3305
|
+
var TagResource$ = [
|
|
3298
3306
|
9,
|
|
3299
3307
|
n0,
|
|
3300
3308
|
_TR,
|
|
3301
3309
|
{ [_h]: ["POST", "/tags/{resourceArn}", 200] },
|
|
3302
|
-
() => TagResourceRequest
|
|
3303
|
-
() => TagResourceResponse
|
|
3310
|
+
() => TagResourceRequest$,
|
|
3311
|
+
() => TagResourceResponse$,
|
|
3304
3312
|
];
|
|
3305
|
-
var UntagResource = [
|
|
3313
|
+
var UntagResource$ = [
|
|
3306
3314
|
9,
|
|
3307
3315
|
n0,
|
|
3308
3316
|
_UR,
|
|
3309
3317
|
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
|
|
3310
|
-
() => UntagResourceRequest
|
|
3311
|
-
() => UntagResourceResponse
|
|
3318
|
+
() => UntagResourceRequest$,
|
|
3319
|
+
() => UntagResourceResponse$,
|
|
3312
3320
|
];
|
|
3313
|
-
var UpdateSession = [
|
|
3321
|
+
var UpdateSession$ = [
|
|
3314
3322
|
9,
|
|
3315
3323
|
n0,
|
|
3316
3324
|
_US,
|
|
3317
3325
|
{ [_h]: ["PUT", "/sessions/{sessionIdentifier}/", 200] },
|
|
3318
|
-
() => UpdateSessionRequest
|
|
3319
|
-
() => UpdateSessionResponse
|
|
3326
|
+
() => UpdateSessionRequest$,
|
|
3327
|
+
() => UpdateSessionResponse$,
|
|
3320
3328
|
];
|
|
3321
3329
|
|
|
3322
3330
|
class CreateInvocationCommand extends smithyClient.Command
|
|
@@ -3327,7 +3335,7 @@ class CreateInvocationCommand extends smithyClient.Command
|
|
|
3327
3335
|
})
|
|
3328
3336
|
.s("AmazonBedrockAgentRunTimeService", "CreateInvocation", {})
|
|
3329
3337
|
.n("BedrockAgentRuntimeClient", "CreateInvocationCommand")
|
|
3330
|
-
.sc(CreateInvocation)
|
|
3338
|
+
.sc(CreateInvocation$)
|
|
3331
3339
|
.build() {
|
|
3332
3340
|
}
|
|
3333
3341
|
|
|
@@ -3339,7 +3347,7 @@ class CreateSessionCommand extends smithyClient.Command
|
|
|
3339
3347
|
})
|
|
3340
3348
|
.s("AmazonBedrockAgentRunTimeService", "CreateSession", {})
|
|
3341
3349
|
.n("BedrockAgentRuntimeClient", "CreateSessionCommand")
|
|
3342
|
-
.sc(CreateSession)
|
|
3350
|
+
.sc(CreateSession$)
|
|
3343
3351
|
.build() {
|
|
3344
3352
|
}
|
|
3345
3353
|
|
|
@@ -3351,7 +3359,7 @@ class DeleteAgentMemoryCommand extends smithyClient.Command
|
|
|
3351
3359
|
})
|
|
3352
3360
|
.s("AmazonBedrockAgentRunTimeService", "DeleteAgentMemory", {})
|
|
3353
3361
|
.n("BedrockAgentRuntimeClient", "DeleteAgentMemoryCommand")
|
|
3354
|
-
.sc(DeleteAgentMemory)
|
|
3362
|
+
.sc(DeleteAgentMemory$)
|
|
3355
3363
|
.build() {
|
|
3356
3364
|
}
|
|
3357
3365
|
|
|
@@ -3363,7 +3371,7 @@ class DeleteSessionCommand extends smithyClient.Command
|
|
|
3363
3371
|
})
|
|
3364
3372
|
.s("AmazonBedrockAgentRunTimeService", "DeleteSession", {})
|
|
3365
3373
|
.n("BedrockAgentRuntimeClient", "DeleteSessionCommand")
|
|
3366
|
-
.sc(DeleteSession)
|
|
3374
|
+
.sc(DeleteSession$)
|
|
3367
3375
|
.build() {
|
|
3368
3376
|
}
|
|
3369
3377
|
|
|
@@ -3375,7 +3383,7 @@ class EndSessionCommand extends smithyClient.Command
|
|
|
3375
3383
|
})
|
|
3376
3384
|
.s("AmazonBedrockAgentRunTimeService", "EndSession", {})
|
|
3377
3385
|
.n("BedrockAgentRuntimeClient", "EndSessionCommand")
|
|
3378
|
-
.sc(EndSession)
|
|
3386
|
+
.sc(EndSession$)
|
|
3379
3387
|
.build() {
|
|
3380
3388
|
}
|
|
3381
3389
|
|
|
@@ -3387,7 +3395,7 @@ class GenerateQueryCommand extends smithyClient.Command
|
|
|
3387
3395
|
})
|
|
3388
3396
|
.s("AmazonBedrockAgentRunTimeService", "GenerateQuery", {})
|
|
3389
3397
|
.n("BedrockAgentRuntimeClient", "GenerateQueryCommand")
|
|
3390
|
-
.sc(GenerateQuery)
|
|
3398
|
+
.sc(GenerateQuery$)
|
|
3391
3399
|
.build() {
|
|
3392
3400
|
}
|
|
3393
3401
|
|
|
@@ -3399,7 +3407,7 @@ class GetAgentMemoryCommand extends smithyClient.Command
|
|
|
3399
3407
|
})
|
|
3400
3408
|
.s("AmazonBedrockAgentRunTimeService", "GetAgentMemory", {})
|
|
3401
3409
|
.n("BedrockAgentRuntimeClient", "GetAgentMemoryCommand")
|
|
3402
|
-
.sc(GetAgentMemory)
|
|
3410
|
+
.sc(GetAgentMemory$)
|
|
3403
3411
|
.build() {
|
|
3404
3412
|
}
|
|
3405
3413
|
|
|
@@ -3411,7 +3419,7 @@ class GetExecutionFlowSnapshotCommand extends smithyClient.Command
|
|
|
3411
3419
|
})
|
|
3412
3420
|
.s("AmazonBedrockAgentRunTimeService", "GetExecutionFlowSnapshot", {})
|
|
3413
3421
|
.n("BedrockAgentRuntimeClient", "GetExecutionFlowSnapshotCommand")
|
|
3414
|
-
.sc(GetExecutionFlowSnapshot)
|
|
3422
|
+
.sc(GetExecutionFlowSnapshot$)
|
|
3415
3423
|
.build() {
|
|
3416
3424
|
}
|
|
3417
3425
|
|
|
@@ -3423,7 +3431,7 @@ class GetFlowExecutionCommand extends smithyClient.Command
|
|
|
3423
3431
|
})
|
|
3424
3432
|
.s("AmazonBedrockAgentRunTimeService", "GetFlowExecution", {})
|
|
3425
3433
|
.n("BedrockAgentRuntimeClient", "GetFlowExecutionCommand")
|
|
3426
|
-
.sc(GetFlowExecution)
|
|
3434
|
+
.sc(GetFlowExecution$)
|
|
3427
3435
|
.build() {
|
|
3428
3436
|
}
|
|
3429
3437
|
|
|
@@ -3435,7 +3443,7 @@ class GetInvocationStepCommand extends smithyClient.Command
|
|
|
3435
3443
|
})
|
|
3436
3444
|
.s("AmazonBedrockAgentRunTimeService", "GetInvocationStep", {})
|
|
3437
3445
|
.n("BedrockAgentRuntimeClient", "GetInvocationStepCommand")
|
|
3438
|
-
.sc(GetInvocationStep)
|
|
3446
|
+
.sc(GetInvocationStep$)
|
|
3439
3447
|
.build() {
|
|
3440
3448
|
}
|
|
3441
3449
|
|
|
@@ -3447,7 +3455,7 @@ class GetSessionCommand extends smithyClient.Command
|
|
|
3447
3455
|
})
|
|
3448
3456
|
.s("AmazonBedrockAgentRunTimeService", "GetSession", {})
|
|
3449
3457
|
.n("BedrockAgentRuntimeClient", "GetSessionCommand")
|
|
3450
|
-
.sc(GetSession)
|
|
3458
|
+
.sc(GetSession$)
|
|
3451
3459
|
.build() {
|
|
3452
3460
|
}
|
|
3453
3461
|
|
|
@@ -3463,7 +3471,7 @@ class InvokeAgentCommand extends smithyClient.Command
|
|
|
3463
3471
|
},
|
|
3464
3472
|
})
|
|
3465
3473
|
.n("BedrockAgentRuntimeClient", "InvokeAgentCommand")
|
|
3466
|
-
.sc(InvokeAgent)
|
|
3474
|
+
.sc(InvokeAgent$)
|
|
3467
3475
|
.build() {
|
|
3468
3476
|
}
|
|
3469
3477
|
|
|
@@ -3479,7 +3487,7 @@ class InvokeFlowCommand extends smithyClient.Command
|
|
|
3479
3487
|
},
|
|
3480
3488
|
})
|
|
3481
3489
|
.n("BedrockAgentRuntimeClient", "InvokeFlowCommand")
|
|
3482
|
-
.sc(InvokeFlow)
|
|
3490
|
+
.sc(InvokeFlow$)
|
|
3483
3491
|
.build() {
|
|
3484
3492
|
}
|
|
3485
3493
|
|
|
@@ -3495,7 +3503,7 @@ class InvokeInlineAgentCommand extends smithyClient.Command
|
|
|
3495
3503
|
},
|
|
3496
3504
|
})
|
|
3497
3505
|
.n("BedrockAgentRuntimeClient", "InvokeInlineAgentCommand")
|
|
3498
|
-
.sc(InvokeInlineAgent)
|
|
3506
|
+
.sc(InvokeInlineAgent$)
|
|
3499
3507
|
.build() {
|
|
3500
3508
|
}
|
|
3501
3509
|
|
|
@@ -3507,7 +3515,7 @@ class ListFlowExecutionEventsCommand extends smithyClient.Command
|
|
|
3507
3515
|
})
|
|
3508
3516
|
.s("AmazonBedrockAgentRunTimeService", "ListFlowExecutionEvents", {})
|
|
3509
3517
|
.n("BedrockAgentRuntimeClient", "ListFlowExecutionEventsCommand")
|
|
3510
|
-
.sc(ListFlowExecutionEvents)
|
|
3518
|
+
.sc(ListFlowExecutionEvents$)
|
|
3511
3519
|
.build() {
|
|
3512
3520
|
}
|
|
3513
3521
|
|
|
@@ -3519,7 +3527,7 @@ class ListFlowExecutionsCommand extends smithyClient.Command
|
|
|
3519
3527
|
})
|
|
3520
3528
|
.s("AmazonBedrockAgentRunTimeService", "ListFlowExecutions", {})
|
|
3521
3529
|
.n("BedrockAgentRuntimeClient", "ListFlowExecutionsCommand")
|
|
3522
|
-
.sc(ListFlowExecutions)
|
|
3530
|
+
.sc(ListFlowExecutions$)
|
|
3523
3531
|
.build() {
|
|
3524
3532
|
}
|
|
3525
3533
|
|
|
@@ -3531,7 +3539,7 @@ class ListInvocationsCommand extends smithyClient.Command
|
|
|
3531
3539
|
})
|
|
3532
3540
|
.s("AmazonBedrockAgentRunTimeService", "ListInvocations", {})
|
|
3533
3541
|
.n("BedrockAgentRuntimeClient", "ListInvocationsCommand")
|
|
3534
|
-
.sc(ListInvocations)
|
|
3542
|
+
.sc(ListInvocations$)
|
|
3535
3543
|
.build() {
|
|
3536
3544
|
}
|
|
3537
3545
|
|
|
@@ -3543,7 +3551,7 @@ class ListInvocationStepsCommand extends smithyClient.Command
|
|
|
3543
3551
|
})
|
|
3544
3552
|
.s("AmazonBedrockAgentRunTimeService", "ListInvocationSteps", {})
|
|
3545
3553
|
.n("BedrockAgentRuntimeClient", "ListInvocationStepsCommand")
|
|
3546
|
-
.sc(ListInvocationSteps)
|
|
3554
|
+
.sc(ListInvocationSteps$)
|
|
3547
3555
|
.build() {
|
|
3548
3556
|
}
|
|
3549
3557
|
|
|
@@ -3555,7 +3563,7 @@ class ListSessionsCommand extends smithyClient.Command
|
|
|
3555
3563
|
})
|
|
3556
3564
|
.s("AmazonBedrockAgentRunTimeService", "ListSessions", {})
|
|
3557
3565
|
.n("BedrockAgentRuntimeClient", "ListSessionsCommand")
|
|
3558
|
-
.sc(ListSessions)
|
|
3566
|
+
.sc(ListSessions$)
|
|
3559
3567
|
.build() {
|
|
3560
3568
|
}
|
|
3561
3569
|
|
|
@@ -3567,7 +3575,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3567
3575
|
})
|
|
3568
3576
|
.s("AmazonBedrockAgentRunTimeService", "ListTagsForResource", {})
|
|
3569
3577
|
.n("BedrockAgentRuntimeClient", "ListTagsForResourceCommand")
|
|
3570
|
-
.sc(ListTagsForResource)
|
|
3578
|
+
.sc(ListTagsForResource$)
|
|
3571
3579
|
.build() {
|
|
3572
3580
|
}
|
|
3573
3581
|
|
|
@@ -3583,7 +3591,7 @@ class OptimizePromptCommand extends smithyClient.Command
|
|
|
3583
3591
|
},
|
|
3584
3592
|
})
|
|
3585
3593
|
.n("BedrockAgentRuntimeClient", "OptimizePromptCommand")
|
|
3586
|
-
.sc(OptimizePrompt)
|
|
3594
|
+
.sc(OptimizePrompt$)
|
|
3587
3595
|
.build() {
|
|
3588
3596
|
}
|
|
3589
3597
|
|
|
@@ -3595,7 +3603,7 @@ class PutInvocationStepCommand extends smithyClient.Command
|
|
|
3595
3603
|
})
|
|
3596
3604
|
.s("AmazonBedrockAgentRunTimeService", "PutInvocationStep", {})
|
|
3597
3605
|
.n("BedrockAgentRuntimeClient", "PutInvocationStepCommand")
|
|
3598
|
-
.sc(PutInvocationStep)
|
|
3606
|
+
.sc(PutInvocationStep$)
|
|
3599
3607
|
.build() {
|
|
3600
3608
|
}
|
|
3601
3609
|
|
|
@@ -3607,7 +3615,7 @@ class RerankCommand extends smithyClient.Command
|
|
|
3607
3615
|
})
|
|
3608
3616
|
.s("AmazonBedrockAgentRunTimeService", "Rerank", {})
|
|
3609
3617
|
.n("BedrockAgentRuntimeClient", "RerankCommand")
|
|
3610
|
-
.sc(Rerank)
|
|
3618
|
+
.sc(Rerank$)
|
|
3611
3619
|
.build() {
|
|
3612
3620
|
}
|
|
3613
3621
|
|
|
@@ -3619,7 +3627,7 @@ class RetrieveAndGenerateCommand extends smithyClient.Command
|
|
|
3619
3627
|
})
|
|
3620
3628
|
.s("AmazonBedrockAgentRunTimeService", "RetrieveAndGenerate", {})
|
|
3621
3629
|
.n("BedrockAgentRuntimeClient", "RetrieveAndGenerateCommand")
|
|
3622
|
-
.sc(RetrieveAndGenerate)
|
|
3630
|
+
.sc(RetrieveAndGenerate$)
|
|
3623
3631
|
.build() {
|
|
3624
3632
|
}
|
|
3625
3633
|
|
|
@@ -3635,7 +3643,7 @@ class RetrieveAndGenerateStreamCommand extends smithyClient.Command
|
|
|
3635
3643
|
},
|
|
3636
3644
|
})
|
|
3637
3645
|
.n("BedrockAgentRuntimeClient", "RetrieveAndGenerateStreamCommand")
|
|
3638
|
-
.sc(RetrieveAndGenerateStream)
|
|
3646
|
+
.sc(RetrieveAndGenerateStream$)
|
|
3639
3647
|
.build() {
|
|
3640
3648
|
}
|
|
3641
3649
|
|
|
@@ -3647,7 +3655,7 @@ class RetrieveCommand extends smithyClient.Command
|
|
|
3647
3655
|
})
|
|
3648
3656
|
.s("AmazonBedrockAgentRunTimeService", "Retrieve", {})
|
|
3649
3657
|
.n("BedrockAgentRuntimeClient", "RetrieveCommand")
|
|
3650
|
-
.sc(Retrieve)
|
|
3658
|
+
.sc(Retrieve$)
|
|
3651
3659
|
.build() {
|
|
3652
3660
|
}
|
|
3653
3661
|
|
|
@@ -3659,7 +3667,7 @@ class StartFlowExecutionCommand extends smithyClient.Command
|
|
|
3659
3667
|
})
|
|
3660
3668
|
.s("AmazonBedrockAgentRunTimeService", "StartFlowExecution", {})
|
|
3661
3669
|
.n("BedrockAgentRuntimeClient", "StartFlowExecutionCommand")
|
|
3662
|
-
.sc(StartFlowExecution)
|
|
3670
|
+
.sc(StartFlowExecution$)
|
|
3663
3671
|
.build() {
|
|
3664
3672
|
}
|
|
3665
3673
|
|
|
@@ -3671,7 +3679,7 @@ class StopFlowExecutionCommand extends smithyClient.Command
|
|
|
3671
3679
|
})
|
|
3672
3680
|
.s("AmazonBedrockAgentRunTimeService", "StopFlowExecution", {})
|
|
3673
3681
|
.n("BedrockAgentRuntimeClient", "StopFlowExecutionCommand")
|
|
3674
|
-
.sc(StopFlowExecution)
|
|
3682
|
+
.sc(StopFlowExecution$)
|
|
3675
3683
|
.build() {
|
|
3676
3684
|
}
|
|
3677
3685
|
|
|
@@ -3683,7 +3691,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3683
3691
|
})
|
|
3684
3692
|
.s("AmazonBedrockAgentRunTimeService", "TagResource", {})
|
|
3685
3693
|
.n("BedrockAgentRuntimeClient", "TagResourceCommand")
|
|
3686
|
-
.sc(TagResource)
|
|
3694
|
+
.sc(TagResource$)
|
|
3687
3695
|
.build() {
|
|
3688
3696
|
}
|
|
3689
3697
|
|
|
@@ -3695,7 +3703,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3695
3703
|
})
|
|
3696
3704
|
.s("AmazonBedrockAgentRunTimeService", "UntagResource", {})
|
|
3697
3705
|
.n("BedrockAgentRuntimeClient", "UntagResourceCommand")
|
|
3698
|
-
.sc(UntagResource)
|
|
3706
|
+
.sc(UntagResource$)
|
|
3699
3707
|
.build() {
|
|
3700
3708
|
}
|
|
3701
3709
|
|
|
@@ -3707,7 +3715,7 @@ class UpdateSessionCommand extends smithyClient.Command
|
|
|
3707
3715
|
})
|
|
3708
3716
|
.s("AmazonBedrockAgentRunTimeService", "UpdateSession", {})
|
|
3709
3717
|
.n("BedrockAgentRuntimeClient", "UpdateSessionCommand")
|
|
3710
|
-
.sc(UpdateSession)
|
|
3718
|
+
.sc(UpdateSession$)
|
|
3711
3719
|
.build() {
|
|
3712
3720
|
}
|
|
3713
3721
|
|
|
@@ -4115,117 +4123,460 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4115
4123
|
enumerable: true,
|
|
4116
4124
|
get: function () { return smithyClient.Client; }
|
|
4117
4125
|
});
|
|
4118
|
-
exports.
|
|
4126
|
+
exports.APISchema$ = APISchema$;
|
|
4127
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4128
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
4129
|
+
exports.ActionGroupExecutor$ = ActionGroupExecutor$;
|
|
4130
|
+
exports.ActionGroupInvocationInput$ = ActionGroupInvocationInput$;
|
|
4131
|
+
exports.ActionGroupInvocationOutput$ = ActionGroupInvocationOutput$;
|
|
4119
4132
|
exports.ActionGroupSignature = ActionGroupSignature;
|
|
4120
4133
|
exports.ActionInvocationType = ActionInvocationType;
|
|
4134
|
+
exports.AgentActionGroup$ = AgentActionGroup$;
|
|
4121
4135
|
exports.AgentCollaboration = AgentCollaboration;
|
|
4136
|
+
exports.AgentCollaboratorInputPayload$ = AgentCollaboratorInputPayload$;
|
|
4137
|
+
exports.AgentCollaboratorInvocationInput$ = AgentCollaboratorInvocationInput$;
|
|
4138
|
+
exports.AgentCollaboratorInvocationOutput$ = AgentCollaboratorInvocationOutput$;
|
|
4139
|
+
exports.AgentCollaboratorOutputPayload$ = AgentCollaboratorOutputPayload$;
|
|
4140
|
+
exports.AnalyzePromptEvent$ = AnalyzePromptEvent$;
|
|
4141
|
+
exports.ApiInvocationInput$ = ApiInvocationInput$;
|
|
4142
|
+
exports.ApiParameter$ = ApiParameter$;
|
|
4143
|
+
exports.ApiRequestBody$ = ApiRequestBody$;
|
|
4144
|
+
exports.ApiResult$ = ApiResult$;
|
|
4122
4145
|
exports.AttributeType = AttributeType;
|
|
4123
|
-
exports.
|
|
4146
|
+
exports.Attribution$ = Attribution$;
|
|
4147
|
+
exports.AudioSegment$ = AudioSegment$;
|
|
4148
|
+
exports.BadGatewayException = BadGatewayException;
|
|
4149
|
+
exports.BadGatewayException$ = BadGatewayException$;
|
|
4124
4150
|
exports.BedrockAgentRuntime = BedrockAgentRuntime;
|
|
4125
4151
|
exports.BedrockAgentRuntimeClient = BedrockAgentRuntimeClient;
|
|
4126
|
-
exports.BedrockAgentRuntimeServiceException = BedrockAgentRuntimeServiceException
|
|
4152
|
+
exports.BedrockAgentRuntimeServiceException = BedrockAgentRuntimeServiceException;
|
|
4153
|
+
exports.BedrockAgentRuntimeServiceException$ = BedrockAgentRuntimeServiceException$;
|
|
4154
|
+
exports.BedrockModelConfigurations$ = BedrockModelConfigurations$;
|
|
4155
|
+
exports.BedrockRerankingConfiguration$ = BedrockRerankingConfiguration$;
|
|
4156
|
+
exports.BedrockRerankingModelConfiguration$ = BedrockRerankingModelConfiguration$;
|
|
4157
|
+
exports.BedrockSessionContentBlock$ = BedrockSessionContentBlock$;
|
|
4158
|
+
exports.ByteContentDoc$ = ByteContentDoc$;
|
|
4159
|
+
exports.ByteContentFile$ = ByteContentFile$;
|
|
4160
|
+
exports.Caller$ = Caller$;
|
|
4161
|
+
exports.Citation$ = Citation$;
|
|
4162
|
+
exports.CitationEvent$ = CitationEvent$;
|
|
4163
|
+
exports.CodeInterpreterInvocationInput$ = CodeInterpreterInvocationInput$;
|
|
4164
|
+
exports.CodeInterpreterInvocationOutput$ = CodeInterpreterInvocationOutput$;
|
|
4165
|
+
exports.Collaborator$ = Collaborator$;
|
|
4166
|
+
exports.CollaboratorConfiguration$ = CollaboratorConfiguration$;
|
|
4167
|
+
exports.ConditionResultEvent$ = ConditionResultEvent$;
|
|
4127
4168
|
exports.ConfirmationState = ConfirmationState;
|
|
4128
|
-
exports.ConflictException = ConflictException
|
|
4169
|
+
exports.ConflictException = ConflictException;
|
|
4170
|
+
exports.ConflictException$ = ConflictException$;
|
|
4171
|
+
exports.ContentBlock$ = ContentBlock$;
|
|
4172
|
+
exports.ContentBody$ = ContentBody$;
|
|
4173
|
+
exports.ConversationHistory$ = ConversationHistory$;
|
|
4129
4174
|
exports.ConversationRole = ConversationRole;
|
|
4175
|
+
exports.CreateInvocation$ = CreateInvocation$;
|
|
4130
4176
|
exports.CreateInvocationCommand = CreateInvocationCommand;
|
|
4177
|
+
exports.CreateInvocationRequest$ = CreateInvocationRequest$;
|
|
4178
|
+
exports.CreateInvocationResponse$ = CreateInvocationResponse$;
|
|
4179
|
+
exports.CreateSession$ = CreateSession$;
|
|
4131
4180
|
exports.CreateSessionCommand = CreateSessionCommand;
|
|
4181
|
+
exports.CreateSessionRequest$ = CreateSessionRequest$;
|
|
4182
|
+
exports.CreateSessionResponse$ = CreateSessionResponse$;
|
|
4132
4183
|
exports.CreationMode = CreationMode;
|
|
4133
4184
|
exports.CustomControlMethod = CustomControlMethod;
|
|
4185
|
+
exports.CustomOrchestration$ = CustomOrchestration$;
|
|
4186
|
+
exports.CustomOrchestrationTrace$ = CustomOrchestrationTrace$;
|
|
4187
|
+
exports.CustomOrchestrationTraceEvent$ = CustomOrchestrationTraceEvent$;
|
|
4188
|
+
exports.DeleteAgentMemory$ = DeleteAgentMemory$;
|
|
4134
4189
|
exports.DeleteAgentMemoryCommand = DeleteAgentMemoryCommand;
|
|
4190
|
+
exports.DeleteAgentMemoryRequest$ = DeleteAgentMemoryRequest$;
|
|
4191
|
+
exports.DeleteAgentMemoryResponse$ = DeleteAgentMemoryResponse$;
|
|
4192
|
+
exports.DeleteSession$ = DeleteSession$;
|
|
4135
4193
|
exports.DeleteSessionCommand = DeleteSessionCommand;
|
|
4136
|
-
exports.
|
|
4194
|
+
exports.DeleteSessionRequest$ = DeleteSessionRequest$;
|
|
4195
|
+
exports.DeleteSessionResponse$ = DeleteSessionResponse$;
|
|
4196
|
+
exports.DependencyFailedException = DependencyFailedException;
|
|
4197
|
+
exports.DependencyFailedException$ = DependencyFailedException$;
|
|
4198
|
+
exports.EndSession$ = EndSession$;
|
|
4137
4199
|
exports.EndSessionCommand = EndSessionCommand;
|
|
4200
|
+
exports.EndSessionRequest$ = EndSessionRequest$;
|
|
4201
|
+
exports.EndSessionResponse$ = EndSessionResponse$;
|
|
4138
4202
|
exports.ExecutionType = ExecutionType;
|
|
4203
|
+
exports.ExternalSource$ = ExternalSource$;
|
|
4139
4204
|
exports.ExternalSourceType = ExternalSourceType;
|
|
4205
|
+
exports.ExternalSourcesGenerationConfiguration$ = ExternalSourcesGenerationConfiguration$;
|
|
4206
|
+
exports.ExternalSourcesRetrieveAndGenerateConfiguration$ = ExternalSourcesRetrieveAndGenerateConfiguration$;
|
|
4207
|
+
exports.FailureTrace$ = FailureTrace$;
|
|
4208
|
+
exports.FieldForReranking$ = FieldForReranking$;
|
|
4209
|
+
exports.FilePart$ = FilePart$;
|
|
4210
|
+
exports.FileSource$ = FileSource$;
|
|
4140
4211
|
exports.FileSourceType = FileSourceType;
|
|
4141
4212
|
exports.FileUseCase = FileUseCase;
|
|
4213
|
+
exports.FilterAttribute$ = FilterAttribute$;
|
|
4214
|
+
exports.FinalResponse$ = FinalResponse$;
|
|
4215
|
+
exports.FlowCompletionEvent$ = FlowCompletionEvent$;
|
|
4142
4216
|
exports.FlowCompletionReason = FlowCompletionReason;
|
|
4143
4217
|
exports.FlowControlNodeType = FlowControlNodeType;
|
|
4144
4218
|
exports.FlowErrorCode = FlowErrorCode;
|
|
4219
|
+
exports.FlowExecutionContent$ = FlowExecutionContent$;
|
|
4220
|
+
exports.FlowExecutionError$ = FlowExecutionError$;
|
|
4145
4221
|
exports.FlowExecutionErrorType = FlowExecutionErrorType;
|
|
4222
|
+
exports.FlowExecutionEvent$ = FlowExecutionEvent$;
|
|
4146
4223
|
exports.FlowExecutionEventType = FlowExecutionEventType;
|
|
4224
|
+
exports.FlowExecutionInputEvent$ = FlowExecutionInputEvent$;
|
|
4225
|
+
exports.FlowExecutionOutputEvent$ = FlowExecutionOutputEvent$;
|
|
4147
4226
|
exports.FlowExecutionStatus = FlowExecutionStatus;
|
|
4227
|
+
exports.FlowExecutionSummary$ = FlowExecutionSummary$;
|
|
4228
|
+
exports.FlowFailureEvent$ = FlowFailureEvent$;
|
|
4229
|
+
exports.FlowInput$ = FlowInput$;
|
|
4230
|
+
exports.FlowInputContent$ = FlowInputContent$;
|
|
4231
|
+
exports.FlowInputField$ = FlowInputField$;
|
|
4232
|
+
exports.FlowMultiTurnInputContent$ = FlowMultiTurnInputContent$;
|
|
4233
|
+
exports.FlowMultiTurnInputRequestEvent$ = FlowMultiTurnInputRequestEvent$;
|
|
4148
4234
|
exports.FlowNodeIODataType = FlowNodeIODataType;
|
|
4149
4235
|
exports.FlowNodeInputCategory = FlowNodeInputCategory;
|
|
4236
|
+
exports.FlowOutputContent$ = FlowOutputContent$;
|
|
4237
|
+
exports.FlowOutputEvent$ = FlowOutputEvent$;
|
|
4238
|
+
exports.FlowOutputField$ = FlowOutputField$;
|
|
4239
|
+
exports.FlowResponseStream$ = FlowResponseStream$;
|
|
4240
|
+
exports.FlowTrace$ = FlowTrace$;
|
|
4241
|
+
exports.FlowTraceCondition$ = FlowTraceCondition$;
|
|
4242
|
+
exports.FlowTraceConditionNodeResultEvent$ = FlowTraceConditionNodeResultEvent$;
|
|
4243
|
+
exports.FlowTraceDependencyEvent$ = FlowTraceDependencyEvent$;
|
|
4244
|
+
exports.FlowTraceEvent$ = FlowTraceEvent$;
|
|
4245
|
+
exports.FlowTraceNodeActionEvent$ = FlowTraceNodeActionEvent$;
|
|
4246
|
+
exports.FlowTraceNodeInputContent$ = FlowTraceNodeInputContent$;
|
|
4247
|
+
exports.FlowTraceNodeInputEvent$ = FlowTraceNodeInputEvent$;
|
|
4248
|
+
exports.FlowTraceNodeInputExecutionChainItem$ = FlowTraceNodeInputExecutionChainItem$;
|
|
4249
|
+
exports.FlowTraceNodeInputField$ = FlowTraceNodeInputField$;
|
|
4250
|
+
exports.FlowTraceNodeInputSource$ = FlowTraceNodeInputSource$;
|
|
4251
|
+
exports.FlowTraceNodeOutputContent$ = FlowTraceNodeOutputContent$;
|
|
4252
|
+
exports.FlowTraceNodeOutputEvent$ = FlowTraceNodeOutputEvent$;
|
|
4253
|
+
exports.FlowTraceNodeOutputField$ = FlowTraceNodeOutputField$;
|
|
4254
|
+
exports.FlowTraceNodeOutputNext$ = FlowTraceNodeOutputNext$;
|
|
4255
|
+
exports.FunctionDefinition$ = FunctionDefinition$;
|
|
4256
|
+
exports.FunctionInvocationInput$ = FunctionInvocationInput$;
|
|
4257
|
+
exports.FunctionParameter$ = FunctionParameter$;
|
|
4258
|
+
exports.FunctionResult$ = FunctionResult$;
|
|
4259
|
+
exports.FunctionSchema$ = FunctionSchema$;
|
|
4260
|
+
exports.GenerateQuery$ = GenerateQuery$;
|
|
4150
4261
|
exports.GenerateQueryCommand = GenerateQueryCommand;
|
|
4262
|
+
exports.GenerateQueryRequest$ = GenerateQueryRequest$;
|
|
4263
|
+
exports.GenerateQueryResponse$ = GenerateQueryResponse$;
|
|
4264
|
+
exports.GeneratedQuery$ = GeneratedQuery$;
|
|
4151
4265
|
exports.GeneratedQueryType = GeneratedQueryType;
|
|
4266
|
+
exports.GeneratedResponsePart$ = GeneratedResponsePart$;
|
|
4267
|
+
exports.GenerationConfiguration$ = GenerationConfiguration$;
|
|
4268
|
+
exports.GetAgentMemory$ = GetAgentMemory$;
|
|
4152
4269
|
exports.GetAgentMemoryCommand = GetAgentMemoryCommand;
|
|
4270
|
+
exports.GetAgentMemoryRequest$ = GetAgentMemoryRequest$;
|
|
4271
|
+
exports.GetAgentMemoryResponse$ = GetAgentMemoryResponse$;
|
|
4272
|
+
exports.GetExecutionFlowSnapshot$ = GetExecutionFlowSnapshot$;
|
|
4153
4273
|
exports.GetExecutionFlowSnapshotCommand = GetExecutionFlowSnapshotCommand;
|
|
4274
|
+
exports.GetExecutionFlowSnapshotRequest$ = GetExecutionFlowSnapshotRequest$;
|
|
4275
|
+
exports.GetExecutionFlowSnapshotResponse$ = GetExecutionFlowSnapshotResponse$;
|
|
4276
|
+
exports.GetFlowExecution$ = GetFlowExecution$;
|
|
4154
4277
|
exports.GetFlowExecutionCommand = GetFlowExecutionCommand;
|
|
4278
|
+
exports.GetFlowExecutionRequest$ = GetFlowExecutionRequest$;
|
|
4279
|
+
exports.GetFlowExecutionResponse$ = GetFlowExecutionResponse$;
|
|
4280
|
+
exports.GetInvocationStep$ = GetInvocationStep$;
|
|
4155
4281
|
exports.GetInvocationStepCommand = GetInvocationStepCommand;
|
|
4282
|
+
exports.GetInvocationStepRequest$ = GetInvocationStepRequest$;
|
|
4283
|
+
exports.GetInvocationStepResponse$ = GetInvocationStepResponse$;
|
|
4284
|
+
exports.GetSession$ = GetSession$;
|
|
4156
4285
|
exports.GetSessionCommand = GetSessionCommand;
|
|
4286
|
+
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
4287
|
+
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
4157
4288
|
exports.GuadrailAction = GuadrailAction;
|
|
4158
4289
|
exports.GuardrailAction = GuardrailAction;
|
|
4290
|
+
exports.GuardrailAssessment$ = GuardrailAssessment$;
|
|
4291
|
+
exports.GuardrailConfiguration$ = GuardrailConfiguration$;
|
|
4292
|
+
exports.GuardrailConfigurationWithArn$ = GuardrailConfigurationWithArn$;
|
|
4293
|
+
exports.GuardrailContentFilter$ = GuardrailContentFilter$;
|
|
4159
4294
|
exports.GuardrailContentFilterConfidence = GuardrailContentFilterConfidence;
|
|
4160
4295
|
exports.GuardrailContentFilterType = GuardrailContentFilterType;
|
|
4161
4296
|
exports.GuardrailContentPolicyAction = GuardrailContentPolicyAction;
|
|
4297
|
+
exports.GuardrailContentPolicyAssessment$ = GuardrailContentPolicyAssessment$;
|
|
4298
|
+
exports.GuardrailCustomWord$ = GuardrailCustomWord$;
|
|
4299
|
+
exports.GuardrailEvent$ = GuardrailEvent$;
|
|
4300
|
+
exports.GuardrailManagedWord$ = GuardrailManagedWord$;
|
|
4162
4301
|
exports.GuardrailManagedWordType = GuardrailManagedWordType;
|
|
4302
|
+
exports.GuardrailPiiEntityFilter$ = GuardrailPiiEntityFilter$;
|
|
4163
4303
|
exports.GuardrailPiiEntityType = GuardrailPiiEntityType;
|
|
4304
|
+
exports.GuardrailRegexFilter$ = GuardrailRegexFilter$;
|
|
4164
4305
|
exports.GuardrailSensitiveInformationPolicyAction = GuardrailSensitiveInformationPolicyAction;
|
|
4306
|
+
exports.GuardrailSensitiveInformationPolicyAssessment$ = GuardrailSensitiveInformationPolicyAssessment$;
|
|
4307
|
+
exports.GuardrailTopic$ = GuardrailTopic$;
|
|
4165
4308
|
exports.GuardrailTopicPolicyAction = GuardrailTopicPolicyAction;
|
|
4309
|
+
exports.GuardrailTopicPolicyAssessment$ = GuardrailTopicPolicyAssessment$;
|
|
4166
4310
|
exports.GuardrailTopicType = GuardrailTopicType;
|
|
4311
|
+
exports.GuardrailTrace$ = GuardrailTrace$;
|
|
4167
4312
|
exports.GuardrailWordPolicyAction = GuardrailWordPolicyAction;
|
|
4313
|
+
exports.GuardrailWordPolicyAssessment$ = GuardrailWordPolicyAssessment$;
|
|
4314
|
+
exports.ImageBlock$ = ImageBlock$;
|
|
4168
4315
|
exports.ImageFormat = ImageFormat;
|
|
4316
|
+
exports.ImageInput$ = ImageInput$;
|
|
4169
4317
|
exports.ImageInputFormat = ImageInputFormat;
|
|
4318
|
+
exports.ImageInputSource$ = ImageInputSource$;
|
|
4319
|
+
exports.ImageSource$ = ImageSource$;
|
|
4320
|
+
exports.ImplicitFilterConfiguration$ = ImplicitFilterConfiguration$;
|
|
4321
|
+
exports.InferenceConfig$ = InferenceConfig$;
|
|
4322
|
+
exports.InferenceConfiguration$ = InferenceConfiguration$;
|
|
4323
|
+
exports.InlineAgentFilePart$ = InlineAgentFilePart$;
|
|
4324
|
+
exports.InlineAgentPayloadPart$ = InlineAgentPayloadPart$;
|
|
4325
|
+
exports.InlineAgentResponseStream$ = InlineAgentResponseStream$;
|
|
4326
|
+
exports.InlineAgentReturnControlPayload$ = InlineAgentReturnControlPayload$;
|
|
4327
|
+
exports.InlineAgentTracePart$ = InlineAgentTracePart$;
|
|
4328
|
+
exports.InlineBedrockModelConfigurations$ = InlineBedrockModelConfigurations$;
|
|
4329
|
+
exports.InlineSessionState$ = InlineSessionState$;
|
|
4330
|
+
exports.InputFile$ = InputFile$;
|
|
4331
|
+
exports.InputImage$ = InputImage$;
|
|
4170
4332
|
exports.InputImageFormat = InputImageFormat;
|
|
4333
|
+
exports.InputPrompt$ = InputPrompt$;
|
|
4171
4334
|
exports.InputQueryType = InputQueryType;
|
|
4172
|
-
exports.InternalServerException = InternalServerException
|
|
4335
|
+
exports.InternalServerException = InternalServerException;
|
|
4336
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
4337
|
+
exports.InvocationInput$ = InvocationInput$;
|
|
4338
|
+
exports.InvocationInputMember$ = InvocationInputMember$;
|
|
4339
|
+
exports.InvocationResultMember$ = InvocationResultMember$;
|
|
4340
|
+
exports.InvocationStep$ = InvocationStep$;
|
|
4341
|
+
exports.InvocationStepPayload$ = InvocationStepPayload$;
|
|
4342
|
+
exports.InvocationStepSummary$ = InvocationStepSummary$;
|
|
4343
|
+
exports.InvocationSummary$ = InvocationSummary$;
|
|
4173
4344
|
exports.InvocationType = InvocationType;
|
|
4345
|
+
exports.InvokeAgent$ = InvokeAgent$;
|
|
4174
4346
|
exports.InvokeAgentCommand = InvokeAgentCommand;
|
|
4347
|
+
exports.InvokeAgentRequest$ = InvokeAgentRequest$;
|
|
4348
|
+
exports.InvokeAgentResponse$ = InvokeAgentResponse$;
|
|
4349
|
+
exports.InvokeFlow$ = InvokeFlow$;
|
|
4175
4350
|
exports.InvokeFlowCommand = InvokeFlowCommand;
|
|
4351
|
+
exports.InvokeFlowRequest$ = InvokeFlowRequest$;
|
|
4352
|
+
exports.InvokeFlowResponse$ = InvokeFlowResponse$;
|
|
4353
|
+
exports.InvokeInlineAgent$ = InvokeInlineAgent$;
|
|
4176
4354
|
exports.InvokeInlineAgentCommand = InvokeInlineAgentCommand;
|
|
4355
|
+
exports.InvokeInlineAgentRequest$ = InvokeInlineAgentRequest$;
|
|
4356
|
+
exports.InvokeInlineAgentResponse$ = InvokeInlineAgentResponse$;
|
|
4357
|
+
exports.KnowledgeBase$ = KnowledgeBase$;
|
|
4358
|
+
exports.KnowledgeBaseConfiguration$ = KnowledgeBaseConfiguration$;
|
|
4359
|
+
exports.KnowledgeBaseLookupInput$ = KnowledgeBaseLookupInput$;
|
|
4360
|
+
exports.KnowledgeBaseLookupOutput$ = KnowledgeBaseLookupOutput$;
|
|
4361
|
+
exports.KnowledgeBaseQuery$ = KnowledgeBaseQuery$;
|
|
4177
4362
|
exports.KnowledgeBaseQueryType = KnowledgeBaseQueryType;
|
|
4363
|
+
exports.KnowledgeBaseRetrievalConfiguration$ = KnowledgeBaseRetrievalConfiguration$;
|
|
4364
|
+
exports.KnowledgeBaseRetrievalResult$ = KnowledgeBaseRetrievalResult$;
|
|
4365
|
+
exports.KnowledgeBaseRetrieveAndGenerateConfiguration$ = KnowledgeBaseRetrieveAndGenerateConfiguration$;
|
|
4366
|
+
exports.KnowledgeBaseVectorSearchConfiguration$ = KnowledgeBaseVectorSearchConfiguration$;
|
|
4367
|
+
exports.ListFlowExecutionEvents$ = ListFlowExecutionEvents$;
|
|
4178
4368
|
exports.ListFlowExecutionEventsCommand = ListFlowExecutionEventsCommand;
|
|
4369
|
+
exports.ListFlowExecutionEventsRequest$ = ListFlowExecutionEventsRequest$;
|
|
4370
|
+
exports.ListFlowExecutionEventsResponse$ = ListFlowExecutionEventsResponse$;
|
|
4371
|
+
exports.ListFlowExecutions$ = ListFlowExecutions$;
|
|
4179
4372
|
exports.ListFlowExecutionsCommand = ListFlowExecutionsCommand;
|
|
4373
|
+
exports.ListFlowExecutionsRequest$ = ListFlowExecutionsRequest$;
|
|
4374
|
+
exports.ListFlowExecutionsResponse$ = ListFlowExecutionsResponse$;
|
|
4375
|
+
exports.ListInvocationSteps$ = ListInvocationSteps$;
|
|
4180
4376
|
exports.ListInvocationStepsCommand = ListInvocationStepsCommand;
|
|
4377
|
+
exports.ListInvocationStepsRequest$ = ListInvocationStepsRequest$;
|
|
4378
|
+
exports.ListInvocationStepsResponse$ = ListInvocationStepsResponse$;
|
|
4379
|
+
exports.ListInvocations$ = ListInvocations$;
|
|
4181
4380
|
exports.ListInvocationsCommand = ListInvocationsCommand;
|
|
4381
|
+
exports.ListInvocationsRequest$ = ListInvocationsRequest$;
|
|
4382
|
+
exports.ListInvocationsResponse$ = ListInvocationsResponse$;
|
|
4383
|
+
exports.ListSessions$ = ListSessions$;
|
|
4182
4384
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
4385
|
+
exports.ListSessionsRequest$ = ListSessionsRequest$;
|
|
4386
|
+
exports.ListSessionsResponse$ = ListSessionsResponse$;
|
|
4387
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
4183
4388
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4389
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4390
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4391
|
+
exports.Memory$ = Memory$;
|
|
4392
|
+
exports.MemorySessionSummary$ = MemorySessionSummary$;
|
|
4184
4393
|
exports.MemoryType = MemoryType;
|
|
4185
|
-
exports.
|
|
4394
|
+
exports.Message$ = Message$;
|
|
4395
|
+
exports.Metadata$ = Metadata$;
|
|
4396
|
+
exports.MetadataAttributeSchema$ = MetadataAttributeSchema$;
|
|
4397
|
+
exports.MetadataConfigurationForReranking$ = MetadataConfigurationForReranking$;
|
|
4398
|
+
exports.ModelInvocationInput$ = ModelInvocationInput$;
|
|
4399
|
+
exports.ModelNotReadyException = ModelNotReadyException;
|
|
4400
|
+
exports.ModelNotReadyException$ = ModelNotReadyException$;
|
|
4401
|
+
exports.ModelPerformanceConfiguration$ = ModelPerformanceConfiguration$;
|
|
4402
|
+
exports.NodeActionEvent$ = NodeActionEvent$;
|
|
4403
|
+
exports.NodeDependencyEvent$ = NodeDependencyEvent$;
|
|
4186
4404
|
exports.NodeErrorCode = NodeErrorCode;
|
|
4405
|
+
exports.NodeExecutionContent$ = NodeExecutionContent$;
|
|
4406
|
+
exports.NodeFailureEvent$ = NodeFailureEvent$;
|
|
4407
|
+
exports.NodeInputEvent$ = NodeInputEvent$;
|
|
4408
|
+
exports.NodeInputExecutionChainItem$ = NodeInputExecutionChainItem$;
|
|
4409
|
+
exports.NodeInputField$ = NodeInputField$;
|
|
4410
|
+
exports.NodeInputSource$ = NodeInputSource$;
|
|
4411
|
+
exports.NodeOutputEvent$ = NodeOutputEvent$;
|
|
4412
|
+
exports.NodeOutputField$ = NodeOutputField$;
|
|
4413
|
+
exports.NodeOutputNext$ = NodeOutputNext$;
|
|
4414
|
+
exports.NodeTraceElements$ = NodeTraceElements$;
|
|
4187
4415
|
exports.NodeType = NodeType;
|
|
4416
|
+
exports.Observation$ = Observation$;
|
|
4417
|
+
exports.OptimizePrompt$ = OptimizePrompt$;
|
|
4188
4418
|
exports.OptimizePromptCommand = OptimizePromptCommand;
|
|
4419
|
+
exports.OptimizePromptRequest$ = OptimizePromptRequest$;
|
|
4420
|
+
exports.OptimizePromptResponse$ = OptimizePromptResponse$;
|
|
4421
|
+
exports.OptimizedPrompt$ = OptimizedPrompt$;
|
|
4422
|
+
exports.OptimizedPromptEvent$ = OptimizedPromptEvent$;
|
|
4423
|
+
exports.OptimizedPromptStream$ = OptimizedPromptStream$;
|
|
4424
|
+
exports.OrchestrationConfiguration$ = OrchestrationConfiguration$;
|
|
4425
|
+
exports.OrchestrationExecutor$ = OrchestrationExecutor$;
|
|
4426
|
+
exports.OrchestrationModelInvocationOutput$ = OrchestrationModelInvocationOutput$;
|
|
4427
|
+
exports.OrchestrationTrace$ = OrchestrationTrace$;
|
|
4189
4428
|
exports.OrchestrationType = OrchestrationType;
|
|
4429
|
+
exports.OutputFile$ = OutputFile$;
|
|
4430
|
+
exports.Parameter$ = Parameter$;
|
|
4431
|
+
exports.ParameterDetail$ = ParameterDetail$;
|
|
4190
4432
|
exports.ParameterType = ParameterType;
|
|
4433
|
+
exports.PayloadPart$ = PayloadPart$;
|
|
4191
4434
|
exports.PayloadType = PayloadType;
|
|
4192
4435
|
exports.PerformanceConfigLatency = PerformanceConfigLatency;
|
|
4436
|
+
exports.PerformanceConfiguration$ = PerformanceConfiguration$;
|
|
4437
|
+
exports.PostProcessingModelInvocationOutput$ = PostProcessingModelInvocationOutput$;
|
|
4438
|
+
exports.PostProcessingParsedResponse$ = PostProcessingParsedResponse$;
|
|
4439
|
+
exports.PostProcessingTrace$ = PostProcessingTrace$;
|
|
4440
|
+
exports.PreProcessingModelInvocationOutput$ = PreProcessingModelInvocationOutput$;
|
|
4441
|
+
exports.PreProcessingParsedResponse$ = PreProcessingParsedResponse$;
|
|
4442
|
+
exports.PreProcessingTrace$ = PreProcessingTrace$;
|
|
4443
|
+
exports.PromptConfiguration$ = PromptConfiguration$;
|
|
4444
|
+
exports.PromptCreationConfigurations$ = PromptCreationConfigurations$;
|
|
4445
|
+
exports.PromptOverrideConfiguration$ = PromptOverrideConfiguration$;
|
|
4193
4446
|
exports.PromptState = PromptState;
|
|
4447
|
+
exports.PromptTemplate$ = PromptTemplate$;
|
|
4194
4448
|
exports.PromptType = PromptType;
|
|
4449
|
+
exports.PropertyParameters$ = PropertyParameters$;
|
|
4450
|
+
exports.PutInvocationStep$ = PutInvocationStep$;
|
|
4195
4451
|
exports.PutInvocationStepCommand = PutInvocationStepCommand;
|
|
4452
|
+
exports.PutInvocationStepRequest$ = PutInvocationStepRequest$;
|
|
4453
|
+
exports.PutInvocationStepResponse$ = PutInvocationStepResponse$;
|
|
4454
|
+
exports.QueryGenerationInput$ = QueryGenerationInput$;
|
|
4455
|
+
exports.QueryTransformationConfiguration$ = QueryTransformationConfiguration$;
|
|
4196
4456
|
exports.QueryTransformationMode = QueryTransformationMode;
|
|
4197
4457
|
exports.QueryTransformationType = QueryTransformationType;
|
|
4458
|
+
exports.Rationale$ = Rationale$;
|
|
4459
|
+
exports.RawResponse$ = RawResponse$;
|
|
4460
|
+
exports.ReasoningContentBlock$ = ReasoningContentBlock$;
|
|
4461
|
+
exports.ReasoningTextBlock$ = ReasoningTextBlock$;
|
|
4198
4462
|
exports.RelayConversationHistory = RelayConversationHistory;
|
|
4463
|
+
exports.RepromptResponse$ = RepromptResponse$;
|
|
4464
|
+
exports.RequestBody$ = RequestBody$;
|
|
4199
4465
|
exports.RequireConfirmation = RequireConfirmation;
|
|
4466
|
+
exports.Rerank$ = Rerank$;
|
|
4200
4467
|
exports.RerankCommand = RerankCommand;
|
|
4468
|
+
exports.RerankDocument$ = RerankDocument$;
|
|
4201
4469
|
exports.RerankDocumentType = RerankDocumentType;
|
|
4470
|
+
exports.RerankQuery$ = RerankQuery$;
|
|
4202
4471
|
exports.RerankQueryContentType = RerankQueryContentType;
|
|
4472
|
+
exports.RerankRequest$ = RerankRequest$;
|
|
4473
|
+
exports.RerankResponse$ = RerankResponse$;
|
|
4474
|
+
exports.RerankResult$ = RerankResult$;
|
|
4475
|
+
exports.RerankSource$ = RerankSource$;
|
|
4203
4476
|
exports.RerankSourceType = RerankSourceType;
|
|
4477
|
+
exports.RerankTextDocument$ = RerankTextDocument$;
|
|
4478
|
+
exports.RerankingConfiguration$ = RerankingConfiguration$;
|
|
4204
4479
|
exports.RerankingConfigurationType = RerankingConfigurationType;
|
|
4205
4480
|
exports.RerankingMetadataSelectionMode = RerankingMetadataSelectionMode;
|
|
4206
|
-
exports.
|
|
4481
|
+
exports.RerankingMetadataSelectiveModeConfiguration$ = RerankingMetadataSelectiveModeConfiguration$;
|
|
4482
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4483
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4207
4484
|
exports.ResponseState = ResponseState;
|
|
4485
|
+
exports.ResponseStream$ = ResponseStream$;
|
|
4486
|
+
exports.RetrievalFilter$ = RetrievalFilter$;
|
|
4487
|
+
exports.RetrievalResultConfluenceLocation$ = RetrievalResultConfluenceLocation$;
|
|
4488
|
+
exports.RetrievalResultContent$ = RetrievalResultContent$;
|
|
4489
|
+
exports.RetrievalResultContentColumn$ = RetrievalResultContentColumn$;
|
|
4208
4490
|
exports.RetrievalResultContentColumnType = RetrievalResultContentColumnType;
|
|
4209
4491
|
exports.RetrievalResultContentType = RetrievalResultContentType;
|
|
4492
|
+
exports.RetrievalResultCustomDocumentLocation$ = RetrievalResultCustomDocumentLocation$;
|
|
4493
|
+
exports.RetrievalResultKendraDocumentLocation$ = RetrievalResultKendraDocumentLocation$;
|
|
4494
|
+
exports.RetrievalResultLocation$ = RetrievalResultLocation$;
|
|
4210
4495
|
exports.RetrievalResultLocationType = RetrievalResultLocationType;
|
|
4496
|
+
exports.RetrievalResultS3Location$ = RetrievalResultS3Location$;
|
|
4497
|
+
exports.RetrievalResultSalesforceLocation$ = RetrievalResultSalesforceLocation$;
|
|
4498
|
+
exports.RetrievalResultSharePointLocation$ = RetrievalResultSharePointLocation$;
|
|
4499
|
+
exports.RetrievalResultSqlLocation$ = RetrievalResultSqlLocation$;
|
|
4500
|
+
exports.RetrievalResultWebLocation$ = RetrievalResultWebLocation$;
|
|
4501
|
+
exports.Retrieve$ = Retrieve$;
|
|
4502
|
+
exports.RetrieveAndGenerate$ = RetrieveAndGenerate$;
|
|
4211
4503
|
exports.RetrieveAndGenerateCommand = RetrieveAndGenerateCommand;
|
|
4504
|
+
exports.RetrieveAndGenerateConfiguration$ = RetrieveAndGenerateConfiguration$;
|
|
4505
|
+
exports.RetrieveAndGenerateInput$ = RetrieveAndGenerateInput$;
|
|
4506
|
+
exports.RetrieveAndGenerateOutput$ = RetrieveAndGenerateOutput$;
|
|
4507
|
+
exports.RetrieveAndGenerateOutputEvent$ = RetrieveAndGenerateOutputEvent$;
|
|
4508
|
+
exports.RetrieveAndGenerateRequest$ = RetrieveAndGenerateRequest$;
|
|
4509
|
+
exports.RetrieveAndGenerateResponse$ = RetrieveAndGenerateResponse$;
|
|
4510
|
+
exports.RetrieveAndGenerateSessionConfiguration$ = RetrieveAndGenerateSessionConfiguration$;
|
|
4511
|
+
exports.RetrieveAndGenerateStream$ = RetrieveAndGenerateStream$;
|
|
4212
4512
|
exports.RetrieveAndGenerateStreamCommand = RetrieveAndGenerateStreamCommand;
|
|
4513
|
+
exports.RetrieveAndGenerateStreamRequest$ = RetrieveAndGenerateStreamRequest$;
|
|
4514
|
+
exports.RetrieveAndGenerateStreamResponse$ = RetrieveAndGenerateStreamResponse$;
|
|
4515
|
+
exports.RetrieveAndGenerateStreamResponseOutput$ = RetrieveAndGenerateStreamResponseOutput$;
|
|
4213
4516
|
exports.RetrieveAndGenerateType = RetrieveAndGenerateType;
|
|
4214
4517
|
exports.RetrieveCommand = RetrieveCommand;
|
|
4518
|
+
exports.RetrieveRequest$ = RetrieveRequest$;
|
|
4519
|
+
exports.RetrieveResponse$ = RetrieveResponse$;
|
|
4520
|
+
exports.RetrievedReference$ = RetrievedReference$;
|
|
4521
|
+
exports.ReturnControlPayload$ = ReturnControlPayload$;
|
|
4522
|
+
exports.ReturnControlResults$ = ReturnControlResults$;
|
|
4523
|
+
exports.RoutingClassifierModelInvocationOutput$ = RoutingClassifierModelInvocationOutput$;
|
|
4524
|
+
exports.RoutingClassifierTrace$ = RoutingClassifierTrace$;
|
|
4525
|
+
exports.S3Identifier$ = S3Identifier$;
|
|
4526
|
+
exports.S3Location$ = S3Location$;
|
|
4527
|
+
exports.S3ObjectDoc$ = S3ObjectDoc$;
|
|
4528
|
+
exports.S3ObjectFile$ = S3ObjectFile$;
|
|
4529
|
+
exports.SatisfiedCondition$ = SatisfiedCondition$;
|
|
4215
4530
|
exports.SearchType = SearchType;
|
|
4216
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException
|
|
4531
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
4532
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
4533
|
+
exports.SessionState$ = SessionState$;
|
|
4217
4534
|
exports.SessionStatus = SessionStatus;
|
|
4535
|
+
exports.SessionSummary$ = SessionSummary$;
|
|
4218
4536
|
exports.Source = Source;
|
|
4537
|
+
exports.Span$ = Span$;
|
|
4538
|
+
exports.StartFlowExecution$ = StartFlowExecution$;
|
|
4219
4539
|
exports.StartFlowExecutionCommand = StartFlowExecutionCommand;
|
|
4540
|
+
exports.StartFlowExecutionRequest$ = StartFlowExecutionRequest$;
|
|
4541
|
+
exports.StartFlowExecutionResponse$ = StartFlowExecutionResponse$;
|
|
4542
|
+
exports.StopFlowExecution$ = StopFlowExecution$;
|
|
4220
4543
|
exports.StopFlowExecutionCommand = StopFlowExecutionCommand;
|
|
4544
|
+
exports.StopFlowExecutionRequest$ = StopFlowExecutionRequest$;
|
|
4545
|
+
exports.StopFlowExecutionResponse$ = StopFlowExecutionResponse$;
|
|
4546
|
+
exports.StreamingConfigurations$ = StreamingConfigurations$;
|
|
4547
|
+
exports.TagResource$ = TagResource$;
|
|
4221
4548
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4549
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4550
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
4551
|
+
exports.TextInferenceConfig$ = TextInferenceConfig$;
|
|
4552
|
+
exports.TextPrompt$ = TextPrompt$;
|
|
4553
|
+
exports.TextResponsePart$ = TextResponsePart$;
|
|
4554
|
+
exports.TextToSqlConfiguration$ = TextToSqlConfiguration$;
|
|
4222
4555
|
exports.TextToSqlConfigurationType = TextToSqlConfigurationType;
|
|
4223
|
-
exports.
|
|
4556
|
+
exports.TextToSqlKnowledgeBaseConfiguration$ = TextToSqlKnowledgeBaseConfiguration$;
|
|
4557
|
+
exports.ThrottlingException = ThrottlingException;
|
|
4558
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
4559
|
+
exports.Trace$ = Trace$;
|
|
4560
|
+
exports.TraceElements$ = TraceElements$;
|
|
4561
|
+
exports.TracePart$ = TracePart$;
|
|
4562
|
+
exports.TransformationConfiguration$ = TransformationConfiguration$;
|
|
4224
4563
|
exports.Type = Type;
|
|
4564
|
+
exports.UntagResource$ = UntagResource$;
|
|
4225
4565
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4566
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4567
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4568
|
+
exports.UpdateSession$ = UpdateSession$;
|
|
4226
4569
|
exports.UpdateSessionCommand = UpdateSessionCommand;
|
|
4227
|
-
exports.
|
|
4570
|
+
exports.UpdateSessionRequest$ = UpdateSessionRequest$;
|
|
4571
|
+
exports.UpdateSessionResponse$ = UpdateSessionResponse$;
|
|
4572
|
+
exports.Usage$ = Usage$;
|
|
4573
|
+
exports.ValidationException = ValidationException;
|
|
4574
|
+
exports.ValidationException$ = ValidationException$;
|
|
4575
|
+
exports.VectorSearchBedrockRerankingConfiguration$ = VectorSearchBedrockRerankingConfiguration$;
|
|
4576
|
+
exports.VectorSearchBedrockRerankingModelConfiguration$ = VectorSearchBedrockRerankingModelConfiguration$;
|
|
4577
|
+
exports.VectorSearchRerankingConfiguration$ = VectorSearchRerankingConfiguration$;
|
|
4228
4578
|
exports.VectorSearchRerankingConfigurationType = VectorSearchRerankingConfigurationType;
|
|
4579
|
+
exports.VideoSegment$ = VideoSegment$;
|
|
4229
4580
|
exports.paginateGetAgentMemory = paginateGetAgentMemory;
|
|
4230
4581
|
exports.paginateListFlowExecutionEvents = paginateListFlowExecutionEvents;
|
|
4231
4582
|
exports.paginateListFlowExecutions = paginateListFlowExecutions;
|