@aws-sdk/client-bedrock-agent-runtime 3.1075.0 → 3.1076.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 CHANGED
@@ -1,22 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
10
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
11
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
12
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
13
- const { resolveHttpAuthSchemeConfig, defaultBedrockAgentRuntimeHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
14
- const { getRuntimeConfig } = require("./runtimeConfig");
15
- const { AgenticRetrieveStream$, CreateInvocation$, CreateSession$, DeleteAgentMemory$, DeleteSession$, EndSession$, GenerateQuery$, GetAgentMemory$, GetDocumentContent$, GetExecutionFlowSnapshot$, GetFlowExecution$, GetInvocationStep$, GetSession$, InvokeAgent$, InvokeFlow$, InvokeInlineAgent$, ListFlowExecutionEvents$, ListFlowExecutions$, ListInvocations$, ListInvocationSteps$, ListSessions$, ListTagsForResource$, OptimizePrompt$, PutInvocationStep$, Rerank$, RetrieveAndGenerate$, RetrieveAndGenerateStream$, Retrieve$, StartFlowExecution$, StopFlowExecution$, TagResource$, UntagResource$, UpdateSession$ } = require("./schemas/schemas_0");
16
- __exportStar(require("./schemas/schemas_0"), exports);
17
- __exportStar(require("./models/errors"), exports);
18
- const { BedrockAgentRuntimeServiceException } = require("./models/BedrockAgentRuntimeServiceException");
19
- exports.BedrockAgentRuntimeServiceException = BedrockAgentRuntimeServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { eventStreamSerdeProvider, resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
9
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
12
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
13
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
14
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
15
+ const { streamCollector, NodeHttp2Handler } = require("@smithy/node-http-handler");
16
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
17
+
18
+ const defaultBedrockAgentRuntimeHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "bedrock",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultBedrockAgentRuntimeHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
20
56
 
21
57
  const resolveClientEndpointParameters = (options) => {
22
58
  return Object.assign(options, {
@@ -32,6 +68,3438 @@ const commonParams = {
32
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
33
69
  };
34
70
 
71
+ var version = "3.1075.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://bedrock-agent-runtime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://bedrock-agent-runtime-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://bedrock-agent-runtime.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://bedrock-agent-runtime.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class BedrockAgentRuntimeServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, BedrockAgentRuntimeServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends BedrockAgentRuntimeServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class BadGatewayException extends BedrockAgentRuntimeServiceException {
153
+ name = "BadGatewayException";
154
+ $fault = "server";
155
+ resourceName;
156
+ constructor(opts) {
157
+ super({
158
+ name: "BadGatewayException",
159
+ $fault: "server",
160
+ ...opts,
161
+ });
162
+ Object.setPrototypeOf(this, BadGatewayException.prototype);
163
+ this.resourceName = opts.resourceName;
164
+ }
165
+ }
166
+ class ConflictException extends BedrockAgentRuntimeServiceException {
167
+ name = "ConflictException";
168
+ $fault = "client";
169
+ constructor(opts) {
170
+ super({
171
+ name: "ConflictException",
172
+ $fault: "client",
173
+ ...opts,
174
+ });
175
+ Object.setPrototypeOf(this, ConflictException.prototype);
176
+ }
177
+ }
178
+ class DependencyFailedException extends BedrockAgentRuntimeServiceException {
179
+ name = "DependencyFailedException";
180
+ $fault = "client";
181
+ resourceName;
182
+ constructor(opts) {
183
+ super({
184
+ name: "DependencyFailedException",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ Object.setPrototypeOf(this, DependencyFailedException.prototype);
189
+ this.resourceName = opts.resourceName;
190
+ }
191
+ }
192
+ class InternalServerException extends BedrockAgentRuntimeServiceException {
193
+ name = "InternalServerException";
194
+ $fault = "server";
195
+ reason;
196
+ constructor(opts) {
197
+ super({
198
+ name: "InternalServerException",
199
+ $fault: "server",
200
+ ...opts,
201
+ });
202
+ Object.setPrototypeOf(this, InternalServerException.prototype);
203
+ this.reason = opts.reason;
204
+ }
205
+ }
206
+ class ResourceNotFoundException extends BedrockAgentRuntimeServiceException {
207
+ name = "ResourceNotFoundException";
208
+ $fault = "client";
209
+ constructor(opts) {
210
+ super({
211
+ name: "ResourceNotFoundException",
212
+ $fault: "client",
213
+ ...opts,
214
+ });
215
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
216
+ }
217
+ }
218
+ class ServiceQuotaExceededException extends BedrockAgentRuntimeServiceException {
219
+ name = "ServiceQuotaExceededException";
220
+ $fault = "client";
221
+ constructor(opts) {
222
+ super({
223
+ name: "ServiceQuotaExceededException",
224
+ $fault: "client",
225
+ ...opts,
226
+ });
227
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
228
+ }
229
+ }
230
+ class ThrottlingException extends BedrockAgentRuntimeServiceException {
231
+ name = "ThrottlingException";
232
+ $fault = "client";
233
+ constructor(opts) {
234
+ super({
235
+ name: "ThrottlingException",
236
+ $fault: "client",
237
+ ...opts,
238
+ });
239
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
240
+ }
241
+ }
242
+ class ValidationException extends BedrockAgentRuntimeServiceException {
243
+ name = "ValidationException";
244
+ $fault = "client";
245
+ constructor(opts) {
246
+ super({
247
+ name: "ValidationException",
248
+ $fault: "client",
249
+ ...opts,
250
+ });
251
+ Object.setPrototypeOf(this, ValidationException.prototype);
252
+ }
253
+ }
254
+ class ModelNotReadyException extends BedrockAgentRuntimeServiceException {
255
+ name = "ModelNotReadyException";
256
+ $fault = "client";
257
+ constructor(opts) {
258
+ super({
259
+ name: "ModelNotReadyException",
260
+ $fault: "client",
261
+ ...opts,
262
+ });
263
+ Object.setPrototypeOf(this, ModelNotReadyException.prototype);
264
+ }
265
+ }
266
+
267
+ const _A = "Attribution";
268
+ const _AAG = "AgentActionGroup";
269
+ const _AAGg = "AgentActionGroups";
270
+ const _ACII = "AgentCollaboratorInvocationInput";
271
+ const _ACIO = "AgentCollaboratorInvocationOutput";
272
+ const _ACIP = "AgentCollaboratorInputPayload";
273
+ const _ACM = "ApiContentMap";
274
+ const _ACOP = "AgentCollaboratorOutputPayload";
275
+ const _ACPS = "AgentCollaboratorPayloadString";
276
+ const _ADE = "AccessDeniedException";
277
+ const _AGE = "ActionGroupExecutor";
278
+ const _AGII = "ActionGroupInvocationInput";
279
+ const _AGIO = "ActionGroupInvocationOutput";
280
+ const _AGN = "ActionGroupName";
281
+ const _AGOS = "ActionGroupOutputString";
282
+ const _AII = "ApiInvocationInput";
283
+ const _AP = "ApiPath";
284
+ const _APE = "AnalyzePromptEvent";
285
+ const _APIS = "APISchema";
286
+ const _APp = "ApiParameter";
287
+ const _APpi = "ApiParameters";
288
+ const _AR = "AgenticRetriever";
289
+ const _ARA = "AgenticRetrieveAction";
290
+ const _ARAD = "AgenticRetrieveActionDetails";
291
+ const _ARAg = "AgenticRetrieveActions";
292
+ const _ARB = "ApiRequestBody";
293
+ const _ARBGC = "AgenticRetrieveBedrockGuardrailConfiguration";
294
+ const _ARBRC = "AgenticRetrieveBedrockRerankingConfiguration";
295
+ const _ARBRMC = "AgenticRetrieveBedrockRerankingModelConfiguration";
296
+ const _ARC = "AgenticRetrieveCitation";
297
+ const _ARCL = "AgenticRetrieveCitationList";
298
+ const _ARCR = "AgenticRetrieveCitationReference";
299
+ const _ARCRL = "AgenticRetrieveCitationReferenceList";
300
+ const _ARCg = "AgenticRetrieveConfiguration";
301
+ const _ARF = "AgenticRetrieveFailure";
302
+ const _ARFDED = "AgenticRetrieveFullDocExpansionDetails";
303
+ const _ARFg = "AgenticRetrieveFailures";
304
+ const _ARGR = "AgenticRetrieveGeneratedResponse";
305
+ const _ARGW = "AgenticRetrieveGuardrailWarning";
306
+ const _ARM = "AgenticRetrieveMessage";
307
+ const _ARMC = "AgenticRetrieveMessageContent";
308
+ const _ARMg = "AgenticRetrieveMessages";
309
+ const _ARPC = "AgenticRetrievePolicyConfiguration";
310
+ const _ARR = "AgenticRetrieveResults";
311
+ const _ARRC = "AgenticRetrieveRerankingConfiguration";
312
+ const _ARRE = "AgenticRetrieveResponseEvent";
313
+ const _ARREg = "AgenticRetrieveResultEvent";
314
+ const _ARRI = "AgenticRetrieveResultItem";
315
+ const _ARS = "AgenticRetrieveStream";
316
+ const _ARSM = "AgenticRetrieveSourceMetadata";
317
+ const _ARSML = "AgenticRetrieveSourceMetadataList";
318
+ const _ARSR = "AgenticRetrieveSourceRetriever";
319
+ const _ARSRL = "AgenticRetrieveSourceRetrieverList";
320
+ const _ARSRO = "AgenticRetrieveStreamResponseOutput";
321
+ const _ARSRg = "AgenticRetrieveStreamRequest";
322
+ const _ARSRge = "AgenticRetrieveStreamResponse";
323
+ const _ARTE = "AgenticRetrieveTraceEvent";
324
+ const _ARTEA = "AgenticRetrieveTraceEventAttributes";
325
+ const _ARTR = "AgenticRetrieveTraceResults";
326
+ const _ARTRI = "AgenticRetrieveTraceResultItem";
327
+ const _ARW = "AgenticRetrieveWarnings";
328
+ const _ARWM = "AgenticRetrieveWarningMessage";
329
+ const _ARWg = "AgenticRetrieveWarning";
330
+ const _ARg = "AgenticRetrievers";
331
+ const _ARp = "ApiResult";
332
+ const _AS = "AudioSegment";
333
+ const _AT = "AgentTraces";
334
+ const _BCB = "ByteContentBlob";
335
+ const _BCD = "ByteContentDoc";
336
+ const _BCF = "ByteContentFile";
337
+ const _BFMC = "BedrockFoundationModelConfiguration";
338
+ const _BFMMC = "BedrockFoundationModelModelConfiguration";
339
+ const _BGE = "BadGatewayException";
340
+ const _BMC = "BedrockModelConfigurations";
341
+ const _BPT = "BasePromptTemplate";
342
+ const _BRC = "BedrockRerankingConfiguration";
343
+ const _BRMC = "BedrockRerankingModelConfiguration";
344
+ const _BSCB = "BedrockSessionContentBlocks";
345
+ const _BSCBe = "BedrockSessionContentBlock";
346
+ const _C = "Citation";
347
+ const _CB = "ContentBody";
348
+ const _CBo = "ContentBlocks";
349
+ const _CBon = "ContentBlock";
350
+ const _CC = "CollaboratorConfiguration";
351
+ const _CCa = "CallerChain";
352
+ const _CCo = "CollaboratorConfigurations";
353
+ const _CE = "ConflictException";
354
+ const _CEi = "CitationEvent";
355
+ const _CH = "ConversationHistory";
356
+ const _CI = "CollaborationInstruction";
357
+ const _CIII = "CodeInterpreterInvocationInput";
358
+ const _CIIO = "CodeInterpreterInvocationOutput";
359
+ const _CIR = "CreateInvocationRequest";
360
+ const _CIRr = "CreateInvocationResponse";
361
+ const _CIr = "CreateInvocation";
362
+ const _CM = "ContentMap";
363
+ const _CO = "CustomOrchestration";
364
+ const _COT = "CustomOrchestrationTrace";
365
+ const _COTE = "CustomOrchestrationTraceEvent";
366
+ const _CRE = "ConditionResultEvent";
367
+ const _CS = "CreateSession";
368
+ const _CSR = "CreateSessionRequest";
369
+ const _CSRr = "CreateSessionResponse";
370
+ const _Ca = "Caller";
371
+ const _Ci = "Citations";
372
+ const _Co = "Collaborator";
373
+ const _Col = "Collaborators";
374
+ const _DAM = "DeleteAgentMemory";
375
+ const _DAMR = "DeleteAgentMemoryRequest";
376
+ const _DAMRe = "DeleteAgentMemoryResponse";
377
+ const _DFE = "DependencyFailedException";
378
+ const _DS = "DeleteSession";
379
+ const _DSR = "DeleteSessionRequest";
380
+ const _DSRe = "DeleteSessionResponse";
381
+ const _ES = "ExternalSource";
382
+ const _ESGC = "ExternalSourcesGenerationConfiguration";
383
+ const _ESR = "EndSessionRequest";
384
+ const _ESRAGC = "ExternalSourcesRetrieveAndGenerateConfiguration";
385
+ const _ESRn = "EndSessionResponse";
386
+ const _ESn = "EndSession";
387
+ const _ESx = "ExternalSources";
388
+ const _F = "Function";
389
+ const _FA = "FilterAttribute";
390
+ const _FB = "FileBody";
391
+ const _FCE = "FlowCompletionEvent";
392
+ const _FD = "FunctionDefinition";
393
+ const _FEC = "FlowExecutionContent";
394
+ const _FEE = "FlowExecutionError";
395
+ const _FEEl = "FlowExecutionErrors";
396
+ const _FEElo = "FlowExecutionEvents";
397
+ const _FEElow = "FlowExecutionEvent";
398
+ const _FEIE = "FlowExecutionInputEvent";
399
+ const _FEOE = "FlowExecutionOutputEvent";
400
+ const _FES = "FlowExecutionSummary";
401
+ const _FESl = "FlowExecutionSummaries";
402
+ const _FFE = "FlowFailureEvent";
403
+ const _FFR = "FieldForReranking";
404
+ const _FFRi = "FieldsForReranking";
405
+ const _FI = "FlowInput";
406
+ const _FIC = "FlowInputContent";
407
+ const _FIF = "FlowInputField";
408
+ const _FIFl = "FlowInputFields";
409
+ const _FII = "FunctionInvocationInput";
410
+ const _FIl = "FlowInputs";
411
+ const _FMC = "FoundationModelConfiguration";
412
+ const _FMTIC = "FlowMultiTurnInputContent";
413
+ const _FMTIRE = "FlowMultiTurnInputRequestEvent";
414
+ const _FNIE = "FlowNodeInputExpression";
415
+ const _FOC = "FlowOutputContent";
416
+ const _FOE = "FlowOutputEvent";
417
+ const _FOF = "FlowOutputField";
418
+ const _FOFl = "FlowOutputFields";
419
+ const _FP = "FilePart";
420
+ const _FPu = "FunctionParameter";
421
+ const _FPun = "FunctionParameters";
422
+ const _FR = "FinalResponse";
423
+ const _FRS = "FailureReasonString";
424
+ const _FRSi = "FinalResponseString";
425
+ const _FRSl = "FlowResponseStream";
426
+ const _FRu = "FunctionResult";
427
+ const _FS = "FileSource";
428
+ const _FSu = "FunctionSchema";
429
+ const _FT = "FailureTrace";
430
+ const _FTC = "FlowTraceCondition";
431
+ const _FTCNRE = "FlowTraceConditionNodeResultEvent";
432
+ const _FTCl = "FlowTraceConditions";
433
+ const _FTDE = "FlowTraceDependencyEvent";
434
+ const _FTE = "FlowTraceEvent";
435
+ const _FTNAE = "FlowTraceNodeActionEvent";
436
+ const _FTNIC = "FlowTraceNodeInputContent";
437
+ const _FTNIE = "FlowTraceNodeInputEvent";
438
+ const _FTNIEC = "FlowTraceNodeInputExecutionChain";
439
+ const _FTNIECI = "FlowTraceNodeInputExecutionChainItem";
440
+ const _FTNIF = "FlowTraceNodeInputField";
441
+ const _FTNIFl = "FlowTraceNodeInputFields";
442
+ const _FTNIS = "FlowTraceNodeInputSource";
443
+ const _FTNOC = "FlowTraceNodeOutputContent";
444
+ const _FTNOE = "FlowTraceNodeOutputEvent";
445
+ const _FTNOF = "FlowTraceNodeOutputField";
446
+ const _FTNOFl = "FlowTraceNodeOutputFields";
447
+ const _FTNON = "FlowTraceNodeOutputNext";
448
+ const _FTNONL = "FlowTraceNodeOutputNextList";
449
+ const _FTl = "FlowTrace";
450
+ const _Fu = "Functions";
451
+ const _GA = "GuardrailAssessment";
452
+ const _GAL = "GuardrailAssessmentList";
453
+ const _GAM = "GetAgentMemory";
454
+ const _GAMR = "GetAgentMemoryRequest";
455
+ const _GAMRe = "GetAgentMemoryResponse";
456
+ const _GC = "GenerationConfiguration";
457
+ const _GCF = "GuardrailContentFilter";
458
+ const _GCFL = "GuardrailContentFilterList";
459
+ const _GCPA = "GuardrailContentPolicyAssessment";
460
+ const _GCW = "GuardrailCustomWord";
461
+ const _GCWA = "GuardrailConfigurationWithArn";
462
+ const _GCWL = "GuardrailCustomWordList";
463
+ const _GCu = "GuardrailConfiguration";
464
+ const _GDC = "GetDocumentContent";
465
+ const _GDCR = "GetDocumentContentRequest";
466
+ const _GDCRe = "GetDocumentContentResponse";
467
+ const _GE = "GuardrailEvent";
468
+ const _GEFS = "GetExecutionFlowSnapshot";
469
+ const _GEFSR = "GetExecutionFlowSnapshotRequest";
470
+ const _GEFSRe = "GetExecutionFlowSnapshotResponse";
471
+ const _GFE = "GetFlowExecution";
472
+ const _GFER = "GetFlowExecutionRequest";
473
+ const _GFERe = "GetFlowExecutionResponse";
474
+ const _GIS = "GetInvocationStep";
475
+ const _GISR = "GetInvocationStepRequest";
476
+ const _GISRe = "GetInvocationStepResponse";
477
+ const _GMW = "GuardrailManagedWord";
478
+ const _GMWL = "GuardrailManagedWordList";
479
+ const _GPEF = "GuardrailPiiEntityFilter";
480
+ const _GPEFL = "GuardrailPiiEntityFilterList";
481
+ const _GQ = "GeneratedQuery";
482
+ const _GQR = "GenerateQueryRequest";
483
+ const _GQRe = "GenerateQueryResponse";
484
+ const _GQe = "GeneratedQueries";
485
+ const _GQen = "GenerateQuery";
486
+ const _GRF = "GuardrailRegexFilter";
487
+ const _GRFL = "GuardrailRegexFilterList";
488
+ const _GRP = "GeneratedResponsePart";
489
+ const _GS = "GetSession";
490
+ const _GSIPA = "GuardrailSensitiveInformationPolicyAssessment";
491
+ const _GSR = "GetSessionRequest";
492
+ const _GSRe = "GetSessionResponse";
493
+ const _GT = "GuardrailTopic";
494
+ const _GTL = "GuardrailTopicList";
495
+ const _GTPA = "GuardrailTopicPolicyAssessment";
496
+ const _GTu = "GuardrailTrace";
497
+ const _GWPA = "GuardrailWordPolicyAssessment";
498
+ const _I = "Identifier";
499
+ const _IA = "InvokeAgent";
500
+ const _IAFP = "InlineAgentFilePart";
501
+ const _IAPP = "InlineAgentPayloadPart";
502
+ const _IAR = "InvokeAgentRequest";
503
+ const _IARCP = "InlineAgentReturnControlPayload";
504
+ const _IARS = "InlineAgentResponseStream";
505
+ const _IARn = "InvokeAgentResponse";
506
+ const _IATP = "InlineAgentTracePart";
507
+ const _IB = "ImageBlock";
508
+ const _IBMC = "InlineBedrockModelConfigurations";
509
+ const _IC = "InferenceConfig";
510
+ const _ICn = "InferenceConfiguration";
511
+ const _IF = "InputFile";
512
+ const _IFC = "ImplicitFilterConfiguration";
513
+ const _IFR = "InvokeFlowRequest";
514
+ const _IFRn = "InvokeFlowResponse";
515
+ const _IFn = "InputFiles";
516
+ const _IFnv = "InvokeFlow";
517
+ const _II = "ImageInput";
518
+ const _IIA = "InvokeInlineAgent";
519
+ const _IIAR = "InvokeInlineAgentRequest";
520
+ const _IIARn = "InvokeInlineAgentResponse";
521
+ const _IIM = "InvocationInputMember";
522
+ const _IIS = "ImageInputSource";
523
+ const _IIm = "ImageInputs";
524
+ const _IIn = "InputImage";
525
+ const _IInv = "InvocationInput";
526
+ const _IInvo = "InvocationInputs";
527
+ const _IP = "InputPrompt";
528
+ const _IRM = "InvocationResultMember";
529
+ const _IS = "InvocationStep";
530
+ const _ISE = "InternalServerException";
531
+ const _ISP = "InvocationStepPayload";
532
+ const _ISS = "InlineSessionState";
533
+ const _ISSn = "InvocationStepSummary";
534
+ const _ISSnv = "InvocationStepSummaries";
535
+ const _ISm = "ImageSource";
536
+ const _ISn = "InvocationSummary";
537
+ const _ISnv = "InvocationSummaries";
538
+ const _IT = "InputText";
539
+ const _In = "Instruction";
540
+ const _KB = "KnowledgeBase";
541
+ const _KBC = "KnowledgeBaseConfiguration";
542
+ const _KBCn = "KnowledgeBaseConfigurations";
543
+ const _KBLI = "KnowledgeBaseLookupInput";
544
+ const _KBLIS = "KnowledgeBaseLookupInputString";
545
+ const _KBLO = "KnowledgeBaseLookupOutput";
546
+ const _KBQ = "KnowledgeBaseQuery";
547
+ const _KBRAGC = "KnowledgeBaseRetrieveAndGenerateConfiguration";
548
+ const _KBRC = "KnowledgeBaseRetrievalConfiguration";
549
+ const _KBRCn = "KnowledgeBaseRetrieverConfiguration";
550
+ const _KBRR = "KnowledgeBaseRetrievalResult";
551
+ const _KBRRn = "KnowledgeBaseRetrievalResults";
552
+ const _KBVSC = "KnowledgeBaseVectorSearchConfiguration";
553
+ const _KBn = "KnowledgeBases";
554
+ const _LFE = "ListFlowExecutions";
555
+ const _LFEE = "ListFlowExecutionEvents";
556
+ const _LFEER = "ListFlowExecutionEventsRequest";
557
+ const _LFEERi = "ListFlowExecutionEventsResponse";
558
+ const _LFER = "ListFlowExecutionsRequest";
559
+ const _LFERi = "ListFlowExecutionsResponse";
560
+ const _LI = "ListInvocations";
561
+ const _LIR = "ListInvocationsRequest";
562
+ const _LIRi = "ListInvocationsResponse";
563
+ const _LIS = "ListInvocationSteps";
564
+ const _LISR = "ListInvocationStepsRequest";
565
+ const _LISRi = "ListInvocationStepsResponse";
566
+ const _LS = "ListSessions";
567
+ const _LSR = "ListSessionsRequest";
568
+ const _LSRi = "ListSessionsResponse";
569
+ const _LTFR = "ListTagsForResource";
570
+ const _LTFRR = "ListTagsForResourceRequest";
571
+ const _LTFRRi = "ListTagsForResourceResponse";
572
+ const _M = "Message";
573
+ const _MAS = "MetadataAttributeSchema";
574
+ const _MASL = "MetadataAttributeSchemaList";
575
+ const _MCFR = "MetadataConfigurationForReranking";
576
+ const _MII = "ModelInvocationInput";
577
+ const _MNRE = "ModelNotReadyException";
578
+ const _MPC = "ModelPerformanceConfiguration";
579
+ const _MSBRC = "ManagedSearchBedrockRerankingConfiguration";
580
+ const _MSBRMC = "ManagedSearchBedrockRerankingModelConfiguration";
581
+ const _MSC = "ManagedSearchConfiguration";
582
+ const _MSRC = "ManagedSearchRerankingConfiguration";
583
+ const _MSS = "MemorySessionSummary";
584
+ const _Me = "Metadata";
585
+ const _Mem = "Memories";
586
+ const _Memo = "Memory";
587
+ const _Mes = "Messages";
588
+ const _N = "Name";
589
+ const _NAE = "NodeActionEvent";
590
+ const _NDE = "NodeDependencyEvent";
591
+ const _NEC = "NodeExecutionContent";
592
+ const _NFE = "NodeFailureEvent";
593
+ const _NIE = "NodeInputEvent";
594
+ const _NIEC = "NodeInputExecutionChain";
595
+ const _NIECI = "NodeInputExecutionChainItem";
596
+ const _NIF = "NodeInputField";
597
+ const _NIFo = "NodeInputFields";
598
+ const _NIS = "NodeInputSource";
599
+ const _NOE = "NodeOutputEvent";
600
+ const _NOF = "NodeOutputField";
601
+ const _NOFo = "NodeOutputFields";
602
+ const _NON = "NodeOutputNext";
603
+ const _NONL = "NodeOutputNextList";
604
+ const _NTE = "NodeTraceElements";
605
+ const _O = "Observation";
606
+ const _OC = "OrchestrationConfiguration";
607
+ const _OE = "OrchestrationExecutor";
608
+ const _OF = "OutputFile";
609
+ const _OFu = "OutputFiles";
610
+ const _OMIO = "OrchestrationModelInvocationOutput";
611
+ const _OP = "OptimizedPrompt";
612
+ const _OPE = "OptimizedPromptEvent";
613
+ const _OPR = "OptimizePromptRequest";
614
+ const _OPRp = "OptimizePromptResponse";
615
+ const _OPS = "OptimizedPromptStream";
616
+ const _OPp = "OptimizePrompt";
617
+ const _OS = "OutputString";
618
+ const _OT = "OrchestrationTrace";
619
+ const _P = "Payload";
620
+ const _PB = "PartBody";
621
+ const _PC = "PerformanceConfiguration";
622
+ const _PCC = "PromptCreationConfigurations";
623
+ const _PCr = "PromptConfiguration";
624
+ const _PCro = "PromptConfigurations";
625
+ const _PD = "ParameterDetail";
626
+ const _PIS = "PutInvocationStep";
627
+ const _PISR = "PutInvocationStepRequest";
628
+ const _PISRu = "PutInvocationStepResponse";
629
+ const _PL = "ParameterList";
630
+ const _PM = "ParameterMap";
631
+ const _POC = "PromptOverrideConfiguration";
632
+ const _PP = "PayloadPart";
633
+ const _PPMIO = "PostProcessingModelInvocationOutput";
634
+ const _PPMIOr = "PreProcessingModelInvocationOutput";
635
+ const _PPPR = "PostProcessingParsedResponse";
636
+ const _PPPRr = "PreProcessingParsedResponse";
637
+ const _PPT = "PostProcessingTrace";
638
+ const _PPTr = "PreProcessingTrace";
639
+ const _PPr = "PropertyParameters";
640
+ const _PT = "PromptText";
641
+ const _PTr = "PromptTemplate";
642
+ const _PU = "PresignedUrl";
643
+ const _Pa = "Parameter";
644
+ const _Par = "Parameters";
645
+ const _QGI = "QueryGenerationInput";
646
+ const _QTC = "QueryTransformationConfiguration";
647
+ const _R = "Rationale";
648
+ const _RAG = "RetrieveAndGenerate";
649
+ const _RAGC = "RetrieveAndGenerateConfiguration";
650
+ const _RAGI = "RetrieveAndGenerateInput";
651
+ const _RAGO = "RetrieveAndGenerateOutput";
652
+ const _RAGOE = "RetrieveAndGenerateOutputEvent";
653
+ const _RAGR = "RetrieveAndGenerateRequest";
654
+ const _RAGRe = "RetrieveAndGenerateResponse";
655
+ const _RAGS = "RetrieveAndGenerateStream";
656
+ const _RAGSC = "RetrieveAndGenerateSessionConfiguration";
657
+ const _RAGSR = "RetrieveAndGenerateStreamRequest";
658
+ const _RAGSRO = "RetrieveAndGenerateStreamResponseOutput";
659
+ const _RAGSRe = "RetrieveAndGenerateStreamResponse";
660
+ const _RB = "RequestBody";
661
+ const _RBe = "ResponseBody";
662
+ const _RC = "RerankingConfiguration";
663
+ const _RCB = "ReasoningContentBlock";
664
+ const _RCIR = "ReturnControlInvocationResults";
665
+ const _RCMIO = "RoutingClassifierModelInvocationOutput";
666
+ const _RCP = "ReturnControlPayload";
667
+ const _RCR = "ReturnControlResults";
668
+ const _RCT = "RoutingClassifierTrace";
669
+ const _RCe = "RetrievalContent";
670
+ const _RCet = "RetrieverConfiguration";
671
+ const _RD = "ResourceDescription";
672
+ const _RDe = "RerankDocument";
673
+ const _RF = "RetrievalFilter";
674
+ const _RFL = "RetrievalFilterList";
675
+ const _RMSMC = "RerankingMetadataSelectiveModeConfiguration";
676
+ const _RN = "ResourceName";
677
+ const _RNFE = "ResourceNotFoundException";
678
+ const _RO = "RetrievalOverrides";
679
+ const _RQ = "RerankQuery";
680
+ const _RQL = "RerankQueriesList";
681
+ const _RR = "RawResponse";
682
+ const _RRC = "RetrievalResultContent";
683
+ const _RRCC = "RetrievalResultContentColumn";
684
+ const _RRCDL = "RetrievalResultCustomDocumentLocation";
685
+ const _RRCL = "RetrievalResultConfluenceLocation";
686
+ const _RRCR = "RetrievalResultContentRow";
687
+ const _RRGDL = "RetrievalResultGoogleDriveLocation";
688
+ const _RRKDL = "RetrievalResultKendraDocumentLocation";
689
+ const _RRL = "RetrievalResultLocation";
690
+ const _RRLe = "RerankResultsList";
691
+ const _RRM = "RetrievalResultMetadata";
692
+ const _RRODL = "RetrievalResultOneDriveLocation";
693
+ const _RRSL = "RetrievalResultS3Location";
694
+ const _RRSLe = "RetrievalResultSalesforceLocation";
695
+ const _RRSLet = "RetrievalResultSqlLocation";
696
+ const _RRSPL = "RetrievalResultSharePointLocation";
697
+ const _RRWL = "RetrievalResultWebLocation";
698
+ const _RRe = "RepromptResponse";
699
+ const _RRer = "RerankRequest";
700
+ const _RRera = "RerankResponse";
701
+ const _RReran = "RerankResult";
702
+ const _RRet = "RetrievedReference";
703
+ const _RRetr = "RetrieveRequest";
704
+ const _RRetri = "RetrieveResponse";
705
+ const _RRetrie = "RetrievedReferences";
706
+ const _RS = "RationaleString";
707
+ const _RSL = "RerankSourcesList";
708
+ const _RSe = "RerankSource";
709
+ const _RSes = "ResponseStream";
710
+ const _RTB = "ReasoningTextBlock";
711
+ const _RTD = "RerankTextDocument";
712
+ const _Re = "Rerank";
713
+ const _Ret = "Retrieve";
714
+ const _S = "Source";
715
+ const _SC = "SatisfiedCondition";
716
+ const _SCa = "SatisfiedConditions";
717
+ const _SCt = "StreamingConfigurations";
718
+ const _SFE = "StartFlowExecution";
719
+ const _SFER = "StartFlowExecutionRequest";
720
+ const _SFERt = "StartFlowExecutionResponse";
721
+ const _SFERto = "StopFlowExecutionRequest";
722
+ const _SFERtop = "StopFlowExecutionResponse";
723
+ const _SFEt = "StopFlowExecution";
724
+ const _SI = "S3Identifier";
725
+ const _SL = "S3Location";
726
+ const _SOD = "S3ObjectDoc";
727
+ const _SOF = "S3ObjectFile";
728
+ const _SQEE = "ServiceQuotaExceededException";
729
+ const _SS = "SessionState";
730
+ const _SSe = "SessionSummary";
731
+ const _SSes = "SessionSummaries";
732
+ const _Sp = "Span";
733
+ const _T = "Trace";
734
+ const _TC = "TransformationConfiguration";
735
+ const _TE = "ThrottlingException";
736
+ const _TEr = "TraceElements";
737
+ const _TIC = "TextInferenceConfig";
738
+ const _TKBI = "TraceKnowledgeBaseId";
739
+ const _TP = "TextPrompt";
740
+ const _TPT = "TextPromptTemplate";
741
+ const _TPr = "TracePart";
742
+ const _TR = "TagResource";
743
+ const _TRP = "TextResponsePart";
744
+ const _TRR = "TagResourceRequest";
745
+ const _TRRa = "TagResourceResponse";
746
+ const _TTSC = "TextToSqlConfiguration";
747
+ const _TTSKBC = "TextToSqlKnowledgeBaseConfiguration";
748
+ const _U = "Usage";
749
+ const _UC = "UserContext";
750
+ const _UR = "UntagResource";
751
+ const _URR = "UntagResourceRequest";
752
+ const _URRn = "UntagResourceResponse";
753
+ const _US = "UpdateSession";
754
+ const _USR = "UpdateSessionRequest";
755
+ const _USRp = "UpdateSessionResponse";
756
+ const _V = "Verb";
757
+ const _VE = "ValidationException";
758
+ const _VS = "VideoSegment";
759
+ const _VSBRC = "VectorSearchBedrockRerankingConfiguration";
760
+ const _VSBRMC = "VectorSearchBedrockRerankingModelConfiguration";
761
+ const _VSRC = "VectorSearchRerankingConfiguration";
762
+ const _a = "answer";
763
+ const _aA = "andAll";
764
+ const _aAA = "agentAliasArn";
765
+ const _aAI = "agentAliasId";
766
+ const _aC = "agentCollaboration";
767
+ const _aCAA = "agentCollaboratorAliasArn";
768
+ const _aCII = "agentCollaboratorInvocationInput";
769
+ const _aCIO = "agentCollaboratorInvocationOutput";
770
+ const _aCN = "agentCollaboratorName";
771
+ const _aDE = "accessDeniedException";
772
+ const _aG = "actionGroup";
773
+ const _aGE = "actionGroupExecutor";
774
+ const _aGI = "applyGuardrailInterval";
775
+ const _aGII = "actionGroupInvocationInput";
776
+ const _aGIO = "actionGroupInvocationOutput";
777
+ const _aGN = "actionGroupName";
778
+ const _aGc = "actionGroups";
779
+ const _aI = "agentId";
780
+ const _aII = "apiInvocationInput";
781
+ const _aIT = "actionInvocationType";
782
+ const _aMRF = "additionalModelRequestFields";
783
+ const _aN = "agentName";
784
+ const _aP = "apiPath";
785
+ const _aPE = "analyzePromptEvent";
786
+ const _aR = "apiResult";
787
+ const _aRC = "agenticRetrieveConfiguration";
788
+ const _aS = "apiSchema";
789
+ const _aT = "agentTraces";
790
+ const _aV = "agentVersion";
791
+ const _ac = "action";
792
+ const _act = "actions";
793
+ const _at = "attributes";
794
+ const _att = "attribution";
795
+ const _au = "audio";
796
+ const _b = "body";
797
+ const _bC = "byteContent";
798
+ const _bFMC = "bedrockFoundationModelConfiguration";
799
+ const _bGC = "bedrockGuardrailConfiguration";
800
+ const _bGE = "badGatewayException";
801
+ const _bMC = "bedrockModelConfigurations";
802
+ const _bPT = "basePromptTemplate";
803
+ const _bRC = "bedrockRerankingConfiguration";
804
+ const _by = "bytes";
805
+ const _c = "client";
806
+ const _cA = "createdAt";
807
+ const _cB = "contentBlocks";
808
+ const _cC = "collaboratorConfigurations";
809
+ const _cCa = "callerChain";
810
+ const _cCu = "customControl";
811
+ const _cDL = "customDocumentLocation";
812
+ const _cE = "conflictException";
813
+ const _cEKA = "customerEncryptionKeyArn";
814
+ const _cH = "conversationHistory";
815
+ const _cI = "collaboratorInstruction";
816
+ const _cIII = "codeInterpreterInvocationInput";
817
+ const _cIIO = "codeInterpreterInvocationOutput";
818
+ const _cL = "confluenceLocation";
819
+ const _cN = "collaboratorName";
820
+ const _cNRT = "conditionNodeResultTrace";
821
+ const _cNo = "conditionName";
822
+ const _cNol = "columnName";
823
+ const _cO = "customOrchestration";
824
+ const _cOT = "customOrchestrationTrace";
825
+ const _cP = "contentPolicy";
826
+ const _cR = "completionReason";
827
+ const _cRE = "conditionResultEvent";
828
+ const _cRI = "clientRequestId";
829
+ const _cS = "confirmationState";
830
+ const _cT = "contentType";
831
+ const _cV = "columnValue";
832
+ const _cW = "customWords";
833
+ const _ca = "category";
834
+ const _ch = "chunk";
835
+ const _ci = "citations";
836
+ const _cit = "citation";
837
+ const _co = "content";
838
+ const _cod = "code";
839
+ const _col = "collaborators";
840
+ const _com = "completion";
841
+ const _con = "configuration";
842
+ const _conf = "confidence";
843
+ const _d = "description";
844
+ const _dCL = "documentContentLength";
845
+ const _dFE = "dependencyFailedException";
846
+ const _dI = "documentId";
847
+ const _dSI = "dataSourceId";
848
+ const _da = "data";
849
+ const _de = "definition";
850
+ const _do = "document";
851
+ const _e = "error";
852
+ const _eA = "executionArn";
853
+ const _eAn = "endedAt";
854
+ const _eC = "errorCode";
855
+ const _eCx = "executionChain";
856
+ const _eE = "executionError";
857
+ const _eI = "endIndex";
858
+ const _eIx = "executionIdentifier";
859
+ const _eIxe = "executionId";
860
+ const _eKA = "encryptionKeyArn";
861
+ const _eM = "errorMessage";
862
+ const _eO = "executionOutput";
863
+ const _ePTS = "excludePreviousThinkingSteps";
864
+ const _eRA = "executionRoleArn";
865
+ const _eS = "endSession";
866
+ const _eSC = "externalSourcesConfiguration";
867
+ const _eT = "executionType";
868
+ const _eTn = "enableTrace";
869
+ const _eTnd = "endTime";
870
+ const _eTv = "eventTime";
871
+ const _eTve = "eventType";
872
+ const _eTx = "executionTimeout";
873
+ const _en = "end";
874
+ const _eq = "equals";
875
+ const _er = "errors";
876
+ const _ev = "event";
877
+ const _ex = "executor";
878
+ const _exp = "expression";
879
+ const _f = "function";
880
+ const _fAI = "flowAliasIdentifier";
881
+ const _fC = "failureCode";
882
+ const _fCE = "flowCompletionEvent";
883
+ const _fDE = "fullDocumentExpansion";
884
+ const _fEE = "flowExecutionEvents";
885
+ const _fEN = "flowExecutionName";
886
+ const _fES = "flowExecutionSummaries";
887
+ const _fFE = "flowFailureEvent";
888
+ const _fI = "flowIdentifier";
889
+ const _fIE = "flowInputEvent";
890
+ const _fII = "functionInvocationInput";
891
+ const _fM = "foundationModel";
892
+ const _fMC = "foundationModelConfiguration";
893
+ const _fMT = "foundationModelType";
894
+ const _fMTIRE = "flowMultiTurnInputRequestEvent";
895
+ const _fN = "fieldName";
896
+ const _fOE = "flowOutputEvent";
897
+ const _fR = "failureReason";
898
+ const _fRi = "finalResponse";
899
+ const _fRu = "functionResult";
900
+ const _fS = "functionSchema";
901
+ const _fT = "failureTrace";
902
+ const _fTE = "flowTraceEvent";
903
+ const _fTEi = "fieldsToExclude";
904
+ const _fTI = "fieldsToInclude";
905
+ const _fV = "flowVersion";
906
+ const _fa = "failures";
907
+ const _fi = "files";
908
+ const _fie = "fields";
909
+ const _fil = "filters";
910
+ const _filt = "filter";
911
+ const _fo = "format";
912
+ const _fu = "functions";
913
+ const _g = "guardrail";
914
+ const _gA = "guardrailAction";
915
+ const _gC = "guardrailConfiguration";
916
+ const _gCe = "generationConfiguration";
917
+ const _gDL = "googleDriveLocation";
918
+ const _gI = "guardrailId";
919
+ const _gIu = "guardrailIdentifier";
920
+ const _gR = "generatedResponse";
921
+ const _gRP = "generatedResponsePart";
922
+ const _gRe = "generateResponse";
923
+ const _gT = "greaterThan";
924
+ const _gTOE = "greaterThanOrEquals";
925
+ const _gTu = "guardrailTrace";
926
+ const _gV = "guardrailVersion";
927
+ const _h = "http";
928
+ const _hE = "httpError";
929
+ const _hH = "httpHeader";
930
+ const _hM = "httpMethod";
931
+ const _hQ = "httpQuery";
932
+ const _hSC = "httpStatusCode";
933
+ const _i = "input";
934
+ const _iA = "inputAssessments";
935
+ const _iC = "inferenceConfig";
936
+ const _iCn = "inlineContent";
937
+ const _iCnf = "inferenceConfiguration";
938
+ const _iDS = "inlineDocumentSource";
939
+ const _iFC = "implicitFilterConfiguration";
940
+ const _iFN = "inputFieldName";
941
+ const _iI = "invocationId";
942
+ const _iIn = "invocationIdentifier";
943
+ const _iInv = "invocationInputs";
944
+ const _iInvo = "invocationInput";
945
+ const _iQ = "inputQuery";
946
+ const _iS = "invocationStep";
947
+ const _iSE = "internalServerException";
948
+ const _iSI = "invocationStepId";
949
+ const _iSS = "inlineSessionState";
950
+ const _iSSn = "invocationStepSummaries";
951
+ const _iST = "invocationStepTime";
952
+ const _iSTTLIS = "idleSessionTTLInSeconds";
953
+ const _iSn = "invocationSummaries";
954
+ const _iT = "invocationType";
955
+ const _iTn = "inputText";
956
+ const _iTnp = "inputTokens";
957
+ const _iV = "isValid";
958
+ const _id = "id";
959
+ const _ide = "identifier";
960
+ const _im = "images";
961
+ const _ima = "image";
962
+ const _in = "instruction";
963
+ const _in_ = "in";
964
+ const _ind = "index";
965
+ const _inp = "inputs";
966
+ const _jD = "jsonDocument";
967
+ const _k = "key";
968
+ const _kB = "knowledgeBases";
969
+ const _kBA = "knowledgeBaseArn";
970
+ const _kBC = "knowledgeBaseConfiguration";
971
+ const _kBCn = "knowledgeBaseConfigurations";
972
+ const _kBI = "knowledgeBaseId";
973
+ const _kBLI = "knowledgeBaseLookupInput";
974
+ const _kBLO = "knowledgeBaseLookupOutput";
975
+ const _kBn = "knowledgeBase";
976
+ const _kDL = "kendraDocumentLocation";
977
+ const _kKA = "kmsKeyArn";
978
+ const _l = "location";
979
+ const _lC = "listContains";
980
+ const _lT = "lessThan";
981
+ const _lTOE = "lessThanOrEquals";
982
+ const _lUA = "lastUpdatedAt";
983
+ const _la = "latency";
984
+ const _lam = "lambda";
985
+ const _m = "message";
986
+ const _mA = "modelArn";
987
+ const _mAI = "maxAgentIteration";
988
+ const _mAe = "metadataAttributes";
989
+ const _mC = "modelConfiguration";
990
+ const _mCe = "memoryContents";
991
+ const _mCet = "metadataConfiguration";
992
+ const _mI = "memoryId";
993
+ const _mII = "modelInvocationInput";
994
+ const _mIO = "modelInvocationOutput";
995
+ const _mIa = "maxItems";
996
+ const _mL = "maximumLength";
997
+ const _mNOR = "maxNumberOfResults";
998
+ const _mNRE = "modelNotReadyException";
999
+ const _mPC = "modelPerformanceConfiguration";
1000
+ const _mR = "maxResults";
1001
+ const _mSC = "managedSearchConfiguration";
1002
+ const _mT = "mediaType";
1003
+ const _mTa = "maxTokens";
1004
+ const _mTe = "memoryType";
1005
+ const _mTi = "mimeType";
1006
+ const _mWL = "managedWordLists";
1007
+ const _ma = "match";
1008
+ const _me = "metadata";
1009
+ const _mes = "messages";
1010
+ const _mo = "mode";
1011
+ const _n = "name";
1012
+ const _nAE = "nodeActionEvent";
1013
+ const _nAT = "nodeActionTrace";
1014
+ const _nDE = "nodeDependencyEvent";
1015
+ const _nDT = "nodeDependencyTrace";
1016
+ const _nE = "notEquals";
1017
+ const _nFE = "nodeFailureEvent";
1018
+ const _nI = "notIn";
1019
+ const _nIE = "nodeInputEvent";
1020
+ const _nIN = "nodeInputName";
1021
+ const _nIT = "nodeInputTrace";
1022
+ const _nN = "nodeName";
1023
+ const _nOE = "nodeOutputEvent";
1024
+ const _nON = "nodeOutputName";
1025
+ const _nOR = "numberOfResults";
1026
+ const _nORR = "numberOfRerankedResults";
1027
+ const _nOT = "nodeOutputTrace";
1028
+ const _nT = "nextToken";
1029
+ const _nTo = "nodeType";
1030
+ const _ne = "next";
1031
+ const _o = "output";
1032
+ const _oA = "outputAssessments";
1033
+ const _oAr = "orAll";
1034
+ const _oC = "orchestrationConfiguration";
1035
+ const _oDL = "oneDriveLocation";
1036
+ const _oF = "outputFormat";
1037
+ const _oFN = "outputFieldName";
1038
+ const _oL = "overrideLambda";
1039
+ const _oN = "operationName";
1040
+ const _oP = "optimizedPrompt";
1041
+ const _oPE = "optimizedPromptEvent";
1042
+ const _oR = "operationRequest";
1043
+ const _oRp = "operationResponse";
1044
+ const _oST = "overrideSearchType";
1045
+ const _oT = "orchestrationType";
1046
+ const _oTTM = "operationTotalTimeMs";
1047
+ const _oTr = "orchestrationTrace";
1048
+ const _oTu = "outputTokens";
1049
+ const _ob = "observation";
1050
+ const _p = "parameters";
1051
+ const _pAGS = "parentActionGroupSignature";
1052
+ const _pAGSP = "parentActionGroupSignatureParams";
1053
+ const _pC = "policyConfiguration";
1054
+ const _pCC = "promptCreationConfigurations";
1055
+ const _pCM = "promptCreationMode";
1056
+ const _pCTTI = "previousConversationTurnsToInclude";
1057
+ const _pCe = "performanceConfig";
1058
+ const _pCr = "promptConfigurations";
1059
+ const _pE = "piiEntities";
1060
+ const _pM = "parserMode";
1061
+ const _pOC = "promptOverrideConfiguration";
1062
+ const _pPT = "preProcessingTrace";
1063
+ const _pPTo = "postProcessingTrace";
1064
+ const _pR = "parsedResponse";
1065
+ const _pS = "promptState";
1066
+ const _pSA = "promptSessionAttributes";
1067
+ const _pT = "promptTemplate";
1068
+ const _pTr = "promptType";
1069
+ const _pU = "presignedUrl";
1070
+ const _pa = "payload";
1071
+ const _pr = "properties";
1072
+ const _q = "queries";
1073
+ const _qGI = "queryGenerationInput";
1074
+ const _qTC = "queryTransformationConfiguration";
1075
+ const _qu = "query";
1076
+ const _r = "reason";
1077
+ const _rA = "resourceArn";
1078
+ const _rAGC = "retrieveAndGenerateConfiguration";
1079
+ const _rB = "requestBody";
1080
+ const _rBe = "responseBody";
1081
+ const _rC = "rerankingConfiguration";
1082
+ const _rCH = "relayConversationHistory";
1083
+ const _rCIR = "returnControlInvocationResults";
1084
+ const _rCP = "returnControlPayload";
1085
+ const _rCR = "returnControlResults";
1086
+ const _rCT = "routingClassifierTrace";
1087
+ const _rCe = "requireConfirmation";
1088
+ const _rCea = "reasoningContent";
1089
+ const _rCed = "redactedContent";
1090
+ const _rCet = "retrievalConfiguration";
1091
+ const _rCetu = "returnControl";
1092
+ const _rE = "responseEvent";
1093
+ const _rI = "resultIndex";
1094
+ const _rIe = "requestId";
1095
+ const _rM = "retrievalMetadata";
1096
+ const _rMT = "rerankingModelType";
1097
+ const _rN = "resourceName";
1098
+ const _rNFE = "resourceNotFoundException";
1099
+ const _rO = "retrievalOverrides";
1100
+ const _rQ = "retrievalQuery";
1101
+ const _rR = "retrievalResponse";
1102
+ const _rRa = "rawResponse";
1103
+ const _rRe = "retrievedReferences";
1104
+ const _rRep = "repromptResponse";
1105
+ const _rRet = "retrievalResults";
1106
+ const _rS = "responseState";
1107
+ const _rSe = "responseStream";
1108
+ const _rSel = "relevanceScore";
1109
+ const _rT = "retrievalType";
1110
+ const _rTe = "reasoningText";
1111
+ const _ra = "rationale";
1112
+ const _re = "retrieve";
1113
+ const _ref = "references";
1114
+ const _reg = "regex";
1115
+ const _rege = "regexes";
1116
+ const _req = "required";
1117
+ const _res = "results";
1118
+ const _resu = "result";
1119
+ const _ret = "retrievers";
1120
+ const _ro = "role";
1121
+ const _row = "row";
1122
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentruntime";
1123
+ const _sA = "sessionArn";
1124
+ const _sAe = "sessionAttributes";
1125
+ const _sAo = "sourceArn";
1126
+ const _sAt = "startedAt";
1127
+ const _sBN = "s3BucketName";
1128
+ const _sC = "satisfiedConditions";
1129
+ const _sCe = "sessionConfiguration";
1130
+ const _sCt = "streamingConfigurations";
1131
+ const _sCtr = "stringContains";
1132
+ const _sET = "sessionExpiryTime";
1133
+ const _sFR = "streamFinalResponse";
1134
+ const _sI = "startIndex";
1135
+ const _sIP = "sensitiveInformationPolicy";
1136
+ const _sIe = "sessionIdentifier";
1137
+ const _sIes = "sessionId";
1138
+ const _sL = "s3Location";
1139
+ const _sLa = "salesforceLocation";
1140
+ const _sLq = "sqlLocation";
1141
+ const _sM = "sessionMetadata";
1142
+ const _sMC = "selectiveModeConfiguration";
1143
+ const _sMe = "selectionMode";
1144
+ const _sN = "serviceName";
1145
+ const _sOK = "s3ObjectKey";
1146
+ const _sPL = "sharePointLocation";
1147
+ const _sQEE = "serviceQuotaExceededException";
1148
+ const _sR = "sourceRetrievers";
1149
+ const _sRo = "sourceRetriever";
1150
+ const _sS = "sessionStatus";
1151
+ const _sST = "sessionStartTime";
1152
+ const _sSe = "sessionState";
1153
+ const _sSes = "sessionSummaries";
1154
+ const _sSess = "sessionSummary";
1155
+ const _sSt = "stopSequences";
1156
+ const _sT = "sourceType";
1157
+ const _sTt = "startTime";
1158
+ const _sTu = "summaryText";
1159
+ const _sU = "s3Uri";
1160
+ const _sW = "startsWith";
1161
+ const _s_ = "s3";
1162
+ const _sc = "score";
1163
+ const _se = "server";
1164
+ const _si = "signature";
1165
+ const _so = "sources";
1166
+ const _sou = "source";
1167
+ const _sp = "span";
1168
+ const _sq = "sql";
1169
+ const _st = "stream";
1170
+ const _sta = "status";
1171
+ const _star = "start";
1172
+ const _ste = "step";
1173
+ const _str = "streaming";
1174
+ const _su = "summary";
1175
+ const _t = "text";
1176
+ const _tC = "transformationConfiguration";
1177
+ const _tD = "textDocument";
1178
+ const _tE = "traceElements";
1179
+ const _tEh = "throttlingException";
1180
+ const _tEr = "traceEvent";
1181
+ const _tI = "traceId";
1182
+ const _tIC = "textInferenceConfig";
1183
+ const _tK = "topK";
1184
+ const _tKa = "tagKeys";
1185
+ const _tMI = "targetModelId";
1186
+ const _tP = "topicPolicy";
1187
+ const _tPT = "textPromptTemplate";
1188
+ const _tPe = "textPrompt";
1189
+ const _tPo = "topP";
1190
+ const _tQ = "textQuery";
1191
+ const _tRP = "textResponsePart";
1192
+ const _tTM = "totalTimeMs";
1193
+ const _tTSC = "textToSqlConfiguration";
1194
+ const _ta = "tags";
1195
+ const _te = "temperature";
1196
+ const _ti = "timestamp";
1197
+ const _to = "topics";
1198
+ const _tr = "transcription";
1199
+ const _tra = "trace";
1200
+ const _ty = "type";
1201
+ const _u = "usage";
1202
+ const _uC = "userContext";
1203
+ const _uCs = "useCase";
1204
+ const _uI = "userId";
1205
+ const _ur = "url";
1206
+ const _uri = "uri";
1207
+ const _v = "verb";
1208
+ const _vE = "validationException";
1209
+ const _vSC = "vectorSearchConfiguration";
1210
+ const _va = "value";
1211
+ const _ve = "version";
1212
+ const _vi = "video";
1213
+ const _w = "warnings";
1214
+ const _wL = "webLocation";
1215
+ const _wP = "wordPolicy";
1216
+ const _xabact = "x-amzn-bedrock-agent-content-type";
1217
+ const _xabami = "x-amz-bedrock-agent-memory-id";
1218
+ const _xabasi = "x-amz-bedrock-agent-session-id";
1219
+ const _xabfei = "x-amz-bedrock-flow-execution-id";
1220
+ const _xabkbsi = "x-amzn-bedrock-knowledge-base-session-id";
1221
+ const _xasa = "x-amz-source-arn";
1222
+ const n0 = "com.amazonaws.bedrockagentruntime";
1223
+ const _s_registry = TypeRegistry.for(_s);
1224
+ var BedrockAgentRuntimeServiceException$ = [-3, _s, "BedrockAgentRuntimeServiceException", 0, [], []];
1225
+ _s_registry.registerError(BedrockAgentRuntimeServiceException$, BedrockAgentRuntimeServiceException);
1226
+ const n0_registry = TypeRegistry.for(n0);
1227
+ var AccessDeniedException$ = [-3, n0, _ADE,
1228
+ { [_e]: _c, [_hE]: 403 },
1229
+ [_m],
1230
+ [0]
1231
+ ];
1232
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
1233
+ var BadGatewayException$ = [-3, n0, _BGE,
1234
+ { [_e]: _se, [_hE]: 502 },
1235
+ [_m, _rN],
1236
+ [0, 0]
1237
+ ];
1238
+ n0_registry.registerError(BadGatewayException$, BadGatewayException);
1239
+ var ConflictException$ = [-3, n0, _CE,
1240
+ { [_e]: _c, [_hE]: 409 },
1241
+ [_m],
1242
+ [0]
1243
+ ];
1244
+ n0_registry.registerError(ConflictException$, ConflictException);
1245
+ var DependencyFailedException$ = [-3, n0, _DFE,
1246
+ { [_e]: _c, [_hE]: 424 },
1247
+ [_m, _rN],
1248
+ [0, 0]
1249
+ ];
1250
+ n0_registry.registerError(DependencyFailedException$, DependencyFailedException);
1251
+ var InternalServerException$ = [-3, n0, _ISE,
1252
+ { [_e]: _se, [_hE]: 500 },
1253
+ [_m, _r],
1254
+ [0, 0]
1255
+ ];
1256
+ n0_registry.registerError(InternalServerException$, InternalServerException);
1257
+ var ModelNotReadyException$ = [-3, n0, _MNRE,
1258
+ { [_e]: _c, [_hE]: 424 },
1259
+ [_m],
1260
+ [0]
1261
+ ];
1262
+ n0_registry.registerError(ModelNotReadyException$, ModelNotReadyException);
1263
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
1264
+ { [_e]: _c, [_hE]: 404 },
1265
+ [_m],
1266
+ [0]
1267
+ ];
1268
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
1269
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
1270
+ { [_e]: _c, [_hE]: 400 },
1271
+ [_m],
1272
+ [0]
1273
+ ];
1274
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1275
+ var ThrottlingException$ = [-3, n0, _TE,
1276
+ { [_e]: _c, [_hE]: 429 },
1277
+ [_m],
1278
+ [0]
1279
+ ];
1280
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
1281
+ var ValidationException$ = [-3, n0, _VE,
1282
+ { [_e]: _c, [_hE]: 400 },
1283
+ [_m],
1284
+ [0]
1285
+ ];
1286
+ n0_registry.registerError(ValidationException$, ValidationException);
1287
+ const errorTypeRegistries = [
1288
+ _s_registry,
1289
+ n0_registry,
1290
+ ];
1291
+ var ActionGroupName = [0, n0, _AGN, 8, 0];
1292
+ var ActionGroupOutputString = [0, n0, _AGOS, 8, 0];
1293
+ var AgentCollaboratorPayloadString = [0, n0, _ACPS, 8, 0];
1294
+ var ApiPath = [0, n0, _AP, 8, 0];
1295
+ var BasePromptTemplate = [0, n0, _BPT, 8, 0];
1296
+ var ByteContentBlob = [0, n0, _BCB, 8, 21];
1297
+ var CollaborationInstruction = [0, n0, _CI, 8, 0];
1298
+ var FailureReasonString = [0, n0, _FRS, 8, 0];
1299
+ var FileBody = [0, n0, _FB, 8, 21];
1300
+ var FinalResponseString = [0, n0, _FRSi, 8, 0];
1301
+ var FlowNodeInputExpression = [0, n0, _FNIE, 8, 0];
1302
+ var Function = [0, n0, _F, 8, 0];
1303
+ var Identifier = [0, n0, _I, 8, 0];
1304
+ var InputText = [0, n0, _IT, 8, 0];
1305
+ var Instruction = [0, n0, _In, 8, 0];
1306
+ var KnowledgeBaseLookupInputString = [0, n0, _KBLIS, 8, 0];
1307
+ var Name = [0, n0, _N, 8, 0];
1308
+ var OutputString = [0, n0, _OS, 8, 0];
1309
+ var PartBody = [0, n0, _PB, 8, 21];
1310
+ var Payload = [0, n0, _P, 8, 0];
1311
+ var PresignedUrl = [0, n0, _PU, 8, 0];
1312
+ var PromptText = [0, n0, _PT, 8, 0];
1313
+ var RationaleString = [0, n0, _RS, 8, 0];
1314
+ var ResourceDescription = [0, n0, _RD, 8, 0];
1315
+ var ResourceName = [0, n0, _RN, 8, 0];
1316
+ var Source$1 = [0, n0, _S, 8, 0];
1317
+ var TextPromptTemplate = [0, n0, _TPT, 8, 0];
1318
+ var TraceKnowledgeBaseId = [0, n0, _TKBI, 8, 0];
1319
+ var Verb = [0, n0, _V, 8, 0];
1320
+ var ActionGroupInvocationInput$ = [3, n0, _AGII,
1321
+ 0,
1322
+ [_aGN, _v, _aP, _p, _rB, _f, _eT, _iI],
1323
+ [[() => ActionGroupName, 0], [() => Verb, 0], [() => ApiPath, 0], () => _Parameters, () => RequestBody$, [() => Function, 0], 0, 0]
1324
+ ];
1325
+ var ActionGroupInvocationOutput$ = [3, n0, _AGIO,
1326
+ 0,
1327
+ [_t, _me],
1328
+ [[() => ActionGroupOutputString, 0], [() => Metadata$, 0]]
1329
+ ];
1330
+ var AgentActionGroup$ = [3, n0, _AAG,
1331
+ 0,
1332
+ [_aGN, _d, _pAGS, _aGE, _aS, _fS, _pAGSP],
1333
+ [[() => ResourceName, 0], [() => ResourceDescription, 0], 0, () => ActionGroupExecutor$, [() => APISchema$, 0], [() => FunctionSchema$, 0], 128 | 0], 1
1334
+ ];
1335
+ var AgentCollaboratorInputPayload$ = [3, n0, _ACIP,
1336
+ 0,
1337
+ [_ty, _t, _rCR],
1338
+ [0, [() => AgentCollaboratorPayloadString, 0], [() => ReturnControlResults$, 0]]
1339
+ ];
1340
+ var AgentCollaboratorInvocationInput$ = [3, n0, _ACII,
1341
+ 0,
1342
+ [_aCN, _aCAA, _i],
1343
+ [0, 0, [() => AgentCollaboratorInputPayload$, 0]]
1344
+ ];
1345
+ var AgentCollaboratorInvocationOutput$ = [3, n0, _ACIO,
1346
+ 0,
1347
+ [_aCN, _aCAA, _o, _me],
1348
+ [0, 0, [() => AgentCollaboratorOutputPayload$, 0], [() => Metadata$, 0]]
1349
+ ];
1350
+ var AgentCollaboratorOutputPayload$ = [3, n0, _ACOP,
1351
+ 0,
1352
+ [_ty, _t, _rCP],
1353
+ [0, [() => AgentCollaboratorPayloadString, 0], [() => ReturnControlPayload$, 0]]
1354
+ ];
1355
+ var AgenticRetrieveAction$ = [3, n0, _ARA,
1356
+ 0,
1357
+ [_re, _fDE],
1358
+ [[() => AgenticRetrieveActionDetails$, 0], () => AgenticRetrieveFullDocExpansionDetails$]
1359
+ ];
1360
+ var AgenticRetrieveActionDetails$ = [3, n0, _ARAD,
1361
+ 0,
1362
+ [_iQ, _sR],
1363
+ [[() => AgenticRetrieveMessageContent$, 0], () => AgenticRetrieveSourceRetrieverList], 2
1364
+ ];
1365
+ var AgenticRetrieveBedrockGuardrailConfiguration$ = [3, n0, _ARBGC,
1366
+ 0,
1367
+ [_gI, _gV],
1368
+ [0, 0], 2
1369
+ ];
1370
+ var AgenticRetrieveBedrockRerankingConfiguration$ = [3, n0, _ARBRC,
1371
+ 0,
1372
+ [_mC],
1373
+ [() => AgenticRetrieveBedrockRerankingModelConfiguration$], 1
1374
+ ];
1375
+ var AgenticRetrieveBedrockRerankingModelConfiguration$ = [3, n0, _ARBRMC,
1376
+ 0,
1377
+ [_mA],
1378
+ [0], 1
1379
+ ];
1380
+ var AgenticRetrieveCitation$ = [3, n0, _ARC,
1381
+ 0,
1382
+ [_sI, _eI, _ref],
1383
+ [1, 1, () => AgenticRetrieveCitationReferenceList], 3
1384
+ ];
1385
+ var AgenticRetrieveCitationReference$ = [3, n0, _ARCR,
1386
+ 0,
1387
+ [_rI],
1388
+ [1], 1
1389
+ ];
1390
+ var AgenticRetrieveConfiguration$ = [3, n0, _ARCg,
1391
+ 0,
1392
+ [_fMT, _fMC, _rMT, _rC, _mAI],
1393
+ [0, () => FoundationModelConfiguration$, 0, () => AgenticRetrieveRerankingConfiguration$, 1]
1394
+ ];
1395
+ var AgenticRetrieveFailure$ = [3, n0, _ARF,
1396
+ 0,
1397
+ [_m],
1398
+ [0], 1
1399
+ ];
1400
+ var AgenticRetrieveFullDocExpansionDetails$ = [3, n0, _ARFDED,
1401
+ 0,
1402
+ [_dI, _sRo],
1403
+ [0, () => AgenticRetrieveSourceRetriever$]
1404
+ ];
1405
+ var AgenticRetrieveGeneratedResponse$ = [3, n0, _ARGR,
1406
+ 0,
1407
+ [_a, _ci],
1408
+ [0, () => AgenticRetrieveCitationList], 1
1409
+ ];
1410
+ var AgenticRetrieveGuardrailWarning$ = [3, n0, _ARGW,
1411
+ 0,
1412
+ [_id, _ve, _ac, _m],
1413
+ [0, 0, 0, 0], 3
1414
+ ];
1415
+ var AgenticRetrieveMessage$ = [3, n0, _ARM,
1416
+ 0,
1417
+ [_co, _ro],
1418
+ [[() => AgenticRetrieveMessageContent$, 0], 0], 2
1419
+ ];
1420
+ var AgenticRetrieveMessageContent$ = [3, n0, _ARMC,
1421
+ 8,
1422
+ [_t],
1423
+ [0]
1424
+ ];
1425
+ var AgenticRetrievePolicyConfiguration$ = [3, n0, _ARPC,
1426
+ 0,
1427
+ [_bGC],
1428
+ [() => AgenticRetrieveBedrockGuardrailConfiguration$]
1429
+ ];
1430
+ var AgenticRetriever$ = [3, n0, _AR,
1431
+ 0,
1432
+ [_con, _d],
1433
+ [[() => RetrieverConfiguration$, 0], 0], 1
1434
+ ];
1435
+ var AgenticRetrieveRerankingConfiguration$ = [3, n0, _ARRC,
1436
+ 0,
1437
+ [_ty, _bRC],
1438
+ [0, () => AgenticRetrieveBedrockRerankingConfiguration$], 1
1439
+ ];
1440
+ var AgenticRetrieveResponseEvent$ = [3, n0, _ARRE,
1441
+ 0,
1442
+ [_t],
1443
+ [0], 1
1444
+ ];
1445
+ var AgenticRetrieveResultEvent$ = [3, n0, _ARREg,
1446
+ 0,
1447
+ [_res, _gR, _nT],
1448
+ [() => AgenticRetrieveResults, () => AgenticRetrieveGeneratedResponse$, 0], 1
1449
+ ];
1450
+ var AgenticRetrieveResultItem$ = [3, n0, _ARRI,
1451
+ 0,
1452
+ [_co, _sRo, _me],
1453
+ [() => RetrievalContent$, () => AgenticRetrieveSourceRetriever$, 128 | 15], 2
1454
+ ];
1455
+ var AgenticRetrieveSourceMetadata$ = [3, n0, _ARSM,
1456
+ 0,
1457
+ [_ide, _rT],
1458
+ [0, 0]
1459
+ ];
1460
+ var AgenticRetrieveSourceRetriever$ = [3, n0, _ARSR,
1461
+ 0,
1462
+ [_ide],
1463
+ [0], 1
1464
+ ];
1465
+ var AgenticRetrieveStreamRequest$ = [3, n0, _ARSRg,
1466
+ 0,
1467
+ [_mes, _ret, _aRC, _pC, _nT, _uC, _gRe],
1468
+ [[() => AgenticRetrieveMessages, 0], [() => AgenticRetrievers, 0], () => AgenticRetrieveConfiguration$, () => AgenticRetrievePolicyConfiguration$, 0, [() => UserContext$, 0], 2], 3
1469
+ ];
1470
+ var AgenticRetrieveStreamResponse$ = [3, n0, _ARSRge,
1471
+ 0,
1472
+ [_st],
1473
+ [[() => AgenticRetrieveStreamResponseOutput$, 16]], 1
1474
+ ];
1475
+ var AgenticRetrieveTraceEvent$ = [3, n0, _ARTE,
1476
+ 0,
1477
+ [_id, _ti, _at],
1478
+ [0, 1, [() => AgenticRetrieveTraceEventAttributes$, 0]], 3
1479
+ ];
1480
+ var AgenticRetrieveTraceEventAttributes$ = [3, n0, _ARTEA,
1481
+ 0,
1482
+ [_ste, _sta, _m, _act, _w, _fa, _rM, _rR],
1483
+ [0, 0, 0, [() => AgenticRetrieveActions, 0], () => AgenticRetrieveWarnings, () => AgenticRetrieveFailures, () => AgenticRetrieveSourceMetadataList, () => AgenticRetrieveTraceResults], 3
1484
+ ];
1485
+ var AgenticRetrieveTraceResultItem$ = [3, n0, _ARTRI,
1486
+ 0,
1487
+ [_co, _me, _sRo],
1488
+ [() => RetrievalContent$, 128 | 15, () => AgenticRetrieveSourceRetriever$]
1489
+ ];
1490
+ var AgenticRetrieveWarningMessage$ = [3, n0, _ARWM,
1491
+ 0,
1492
+ [_m],
1493
+ [0], 1
1494
+ ];
1495
+ var AnalyzePromptEvent$ = [3, n0, _APE,
1496
+ 8,
1497
+ [_m],
1498
+ [0]
1499
+ ];
1500
+ var ApiInvocationInput$ = [3, n0, _AII,
1501
+ 0,
1502
+ [_aG, _hM, _aP, _p, _rB, _aIT, _aI, _cN],
1503
+ [0, 0, [() => ApiPath, 0], () => ApiParameters, () => ApiRequestBody$, 0, 0, [() => Name, 0]], 1
1504
+ ];
1505
+ var ApiParameter$ = [3, n0, _APp,
1506
+ 0,
1507
+ [_n, _ty, _va],
1508
+ [0, 0, 0]
1509
+ ];
1510
+ var ApiRequestBody$ = [3, n0, _ARB,
1511
+ 0,
1512
+ [_co],
1513
+ [() => ApiContentMap]
1514
+ ];
1515
+ var ApiResult$ = [3, n0, _ARp,
1516
+ 0,
1517
+ [_aG, _hM, _aP, _cS, _rS, _hSC, _rBe, _aI],
1518
+ [0, 0, [() => ApiPath, 0], 0, 0, 1, () => ResponseBody, 0], 1
1519
+ ];
1520
+ var Attribution$ = [3, n0, _A,
1521
+ 0,
1522
+ [_ci],
1523
+ [[() => Citations, 0]]
1524
+ ];
1525
+ var AudioSegment$ = [3, n0, _AS,
1526
+ 0,
1527
+ [_sU, _tr],
1528
+ [0, 0], 1
1529
+ ];
1530
+ var BedrockFoundationModelConfiguration$ = [3, n0, _BFMC,
1531
+ 0,
1532
+ [_mC],
1533
+ [() => BedrockFoundationModelModelConfiguration$], 1
1534
+ ];
1535
+ var BedrockFoundationModelModelConfiguration$ = [3, n0, _BFMMC,
1536
+ 0,
1537
+ [_mA],
1538
+ [0], 1
1539
+ ];
1540
+ var BedrockModelConfigurations$ = [3, n0, _BMC,
1541
+ 0,
1542
+ [_pCe],
1543
+ [() => PerformanceConfiguration$]
1544
+ ];
1545
+ var BedrockRerankingConfiguration$ = [3, n0, _BRC,
1546
+ 0,
1547
+ [_mC, _nOR],
1548
+ [() => BedrockRerankingModelConfiguration$, 1], 1
1549
+ ];
1550
+ var BedrockRerankingModelConfiguration$ = [3, n0, _BRMC,
1551
+ 0,
1552
+ [_mA, _aMRF],
1553
+ [0, 128 | 15], 1
1554
+ ];
1555
+ var ByteContentDoc$ = [3, n0, _BCD,
1556
+ 0,
1557
+ [_ide, _cT, _da],
1558
+ [[() => Identifier, 0], 0, [() => ByteContentBlob, 0]], 3
1559
+ ];
1560
+ var ByteContentFile$ = [3, n0, _BCF,
1561
+ 0,
1562
+ [_mT, _da],
1563
+ [0, [() => ByteContentBlob, 0]], 2
1564
+ ];
1565
+ var Citation$ = [3, n0, _C,
1566
+ 0,
1567
+ [_gRP, _rRe],
1568
+ [[() => GeneratedResponsePart$, 0], [() => RetrievedReferences, 0]]
1569
+ ];
1570
+ var CitationEvent$ = [3, n0, _CEi,
1571
+ 0,
1572
+ [_cit, _gRP, _rRe],
1573
+ [[() => Citation$, 0], [() => GeneratedResponsePart$, 0], [() => RetrievedReferences, 0]]
1574
+ ];
1575
+ var CodeInterpreterInvocationInput$ = [3, n0, _CIII,
1576
+ 0,
1577
+ [_cod, _fi],
1578
+ [0, 64 | 0]
1579
+ ];
1580
+ var CodeInterpreterInvocationOutput$ = [3, n0, _CIIO,
1581
+ 0,
1582
+ [_eO, _eE, _fi, _eTx, _me],
1583
+ [0, 0, 64 | 0, 2, [() => Metadata$, 0]]
1584
+ ];
1585
+ var Collaborator$ = [3, n0, _Co,
1586
+ 0,
1587
+ [_fM, _in, _cEKA, _iSTTLIS, _aGc, _kB, _gC, _pOC, _aC, _cC, _aN],
1588
+ [0, [() => Instruction, 0], 0, 1, [() => AgentActionGroups, 0], [() => KnowledgeBases, 0], () => GuardrailConfigurationWithArn$, [() => PromptOverrideConfiguration$, 0], 0, [() => CollaboratorConfigurations, 0], [() => Name, 0]], 2
1589
+ ];
1590
+ var CollaboratorConfiguration$ = [3, n0, _CC,
1591
+ 0,
1592
+ [_cN, _cI, _aAA, _rCH],
1593
+ [[() => Name, 0], [() => CollaborationInstruction, 0], 0, 0], 2
1594
+ ];
1595
+ var ConditionResultEvent$ = [3, n0, _CRE,
1596
+ 8,
1597
+ [_nN, _ti, _sC],
1598
+ [0, 5, [() => SatisfiedConditions, 0]], 3
1599
+ ];
1600
+ var ContentBody$ = [3, n0, _CB,
1601
+ 0,
1602
+ [_b, _im],
1603
+ [0, () => ImageInputs]
1604
+ ];
1605
+ var ConversationHistory$ = [3, n0, _CH,
1606
+ 0,
1607
+ [_mes],
1608
+ [[() => Messages, 0]]
1609
+ ];
1610
+ var CreateInvocationRequest$ = [3, n0, _CIR,
1611
+ 0,
1612
+ [_sIe, _iI, _d],
1613
+ [[0, 1], 0, 0], 1
1614
+ ];
1615
+ var CreateInvocationResponse$ = [3, n0, _CIRr,
1616
+ 0,
1617
+ [_sIes, _iI, _cA],
1618
+ [0, 0, 5], 3
1619
+ ];
1620
+ var CreateSessionRequest$ = [3, n0, _CSR,
1621
+ 0,
1622
+ [_sM, _eKA, _ta],
1623
+ [128 | 0, 0, 128 | 0]
1624
+ ];
1625
+ var CreateSessionResponse$ = [3, n0, _CSRr,
1626
+ 0,
1627
+ [_sIes, _sA, _sS, _cA],
1628
+ [0, 0, 0, 5], 4
1629
+ ];
1630
+ var CustomOrchestration$ = [3, n0, _CO,
1631
+ 0,
1632
+ [_ex],
1633
+ [() => OrchestrationExecutor$]
1634
+ ];
1635
+ var CustomOrchestrationTrace$ = [3, n0, _COT,
1636
+ 8,
1637
+ [_tI, _ev],
1638
+ [0, [() => CustomOrchestrationTraceEvent$, 0]]
1639
+ ];
1640
+ var CustomOrchestrationTraceEvent$ = [3, n0, _COTE,
1641
+ 8,
1642
+ [_t],
1643
+ [0]
1644
+ ];
1645
+ var DeleteAgentMemoryRequest$ = [3, n0, _DAMR,
1646
+ 0,
1647
+ [_aI, _aAI, _mI, _sIes],
1648
+ [[0, 1], [0, 1], [0, { [_hQ]: _mI }], [0, { [_hQ]: _sIes }]], 2
1649
+ ];
1650
+ var DeleteAgentMemoryResponse$ = [3, n0, _DAMRe,
1651
+ 0,
1652
+ [],
1653
+ []
1654
+ ];
1655
+ var DeleteSessionRequest$ = [3, n0, _DSR,
1656
+ 0,
1657
+ [_sIe],
1658
+ [[0, 1]], 1
1659
+ ];
1660
+ var DeleteSessionResponse$ = [3, n0, _DSRe,
1661
+ 0,
1662
+ [],
1663
+ []
1664
+ ];
1665
+ var EndSessionRequest$ = [3, n0, _ESR,
1666
+ 0,
1667
+ [_sIe],
1668
+ [[0, 1]], 1
1669
+ ];
1670
+ var EndSessionResponse$ = [3, n0, _ESRn,
1671
+ 0,
1672
+ [_sIes, _sA, _sS],
1673
+ [0, 0, 0], 3
1674
+ ];
1675
+ var ExternalSource$ = [3, n0, _ES,
1676
+ 0,
1677
+ [_sT, _sL, _bC],
1678
+ [0, () => S3ObjectDoc$, [() => ByteContentDoc$, 0]], 1
1679
+ ];
1680
+ var ExternalSourcesGenerationConfiguration$ = [3, n0, _ESGC,
1681
+ 0,
1682
+ [_pT, _gC, _iC, _aMRF, _pCe],
1683
+ [[() => PromptTemplate$, 0], () => GuardrailConfiguration$, () => InferenceConfig$, 128 | 15, () => PerformanceConfiguration$]
1684
+ ];
1685
+ var ExternalSourcesRetrieveAndGenerateConfiguration$ = [3, n0, _ESRAGC,
1686
+ 0,
1687
+ [_mA, _so, _gCe],
1688
+ [0, [() => ExternalSources, 0], [() => ExternalSourcesGenerationConfiguration$, 0]], 2
1689
+ ];
1690
+ var FailureTrace$ = [3, n0, _FT,
1691
+ 8,
1692
+ [_tI, _fR, _fC, _me],
1693
+ [0, [() => FailureReasonString, 0], 1, [() => Metadata$, 0]]
1694
+ ];
1695
+ var FieldForReranking$ = [3, n0, _FFR,
1696
+ 0,
1697
+ [_fN],
1698
+ [0], 1
1699
+ ];
1700
+ var FilePart$ = [3, n0, _FP,
1701
+ 0,
1702
+ [_fi],
1703
+ [[() => OutputFiles, 0]]
1704
+ ];
1705
+ var FileSource$ = [3, n0, _FS,
1706
+ 0,
1707
+ [_sT, _sL, _bC],
1708
+ [0, () => S3ObjectFile$, [() => ByteContentFile$, 0]], 1
1709
+ ];
1710
+ var FilterAttribute$ = [3, n0, _FA,
1711
+ 0,
1712
+ [_k, _va],
1713
+ [0, 15], 2
1714
+ ];
1715
+ var FinalResponse$ = [3, n0, _FR,
1716
+ 0,
1717
+ [_t, _me],
1718
+ [[() => FinalResponseString, 0], [() => Metadata$, 0]]
1719
+ ];
1720
+ var FlowCompletionEvent$ = [3, n0, _FCE,
1721
+ 8,
1722
+ [_cR],
1723
+ [0], 1
1724
+ ];
1725
+ var FlowExecutionError$ = [3, n0, _FEE,
1726
+ 0,
1727
+ [_nN, _e, _m],
1728
+ [0, 0, 0]
1729
+ ];
1730
+ var FlowExecutionInputEvent$ = [3, n0, _FEIE,
1731
+ 8,
1732
+ [_nN, _ti, _fie],
1733
+ [0, 5, [() => FlowInputFields, 0]], 3
1734
+ ];
1735
+ var FlowExecutionOutputEvent$ = [3, n0, _FEOE,
1736
+ 8,
1737
+ [_nN, _ti, _fie],
1738
+ [0, 5, [() => FlowOutputFields, 0]], 3
1739
+ ];
1740
+ var FlowExecutionSummary$ = [3, n0, _FES,
1741
+ 0,
1742
+ [_eA, _fAI, _fI, _fV, _sta, _cA, _eAn],
1743
+ [0, 0, 0, 0, 0, 5, 5], 6
1744
+ ];
1745
+ var FlowFailureEvent$ = [3, n0, _FFE,
1746
+ 8,
1747
+ [_ti, _eC, _eM],
1748
+ [5, 0, 0], 3
1749
+ ];
1750
+ var FlowInput$ = [3, n0, _FI,
1751
+ 0,
1752
+ [_nN, _co, _nON, _nIN],
1753
+ [0, [() => FlowInputContent$, 0], 0, 0], 2
1754
+ ];
1755
+ var FlowInputField$ = [3, n0, _FIF,
1756
+ 8,
1757
+ [_n, _co],
1758
+ [0, [() => FlowExecutionContent$, 0]], 2
1759
+ ];
1760
+ var FlowMultiTurnInputRequestEvent$ = [3, n0, _FMTIRE,
1761
+ 8,
1762
+ [_nN, _nTo, _co],
1763
+ [0, 0, () => FlowMultiTurnInputContent$], 3
1764
+ ];
1765
+ var FlowOutputEvent$ = [3, n0, _FOE,
1766
+ 8,
1767
+ [_nN, _nTo, _co],
1768
+ [0, 0, () => FlowOutputContent$], 3
1769
+ ];
1770
+ var FlowOutputField$ = [3, n0, _FOF,
1771
+ 8,
1772
+ [_n, _co],
1773
+ [0, [() => FlowExecutionContent$, 0]], 2
1774
+ ];
1775
+ var FlowTraceCondition$ = [3, n0, _FTC,
1776
+ 8,
1777
+ [_cNo],
1778
+ [0], 1
1779
+ ];
1780
+ var FlowTraceConditionNodeResultEvent$ = [3, n0, _FTCNRE,
1781
+ 8,
1782
+ [_nN, _ti, _sC],
1783
+ [0, 5, [() => FlowTraceConditions, 0]], 3
1784
+ ];
1785
+ var FlowTraceDependencyEvent$ = [3, n0, _FTDE,
1786
+ 8,
1787
+ [_nN, _ti, _tE],
1788
+ [0, 5, [() => TraceElements$, 0]], 3
1789
+ ];
1790
+ var FlowTraceEvent$ = [3, n0, _FTE,
1791
+ 0,
1792
+ [_tra],
1793
+ [[() => FlowTrace$, 0]], 1
1794
+ ];
1795
+ var FlowTraceNodeActionEvent$ = [3, n0, _FTNAE,
1796
+ 8,
1797
+ [_nN, _ti, _rIe, _sN, _oN, _oR, _oRp],
1798
+ [0, 5, 0, 0, 0, 15, 15], 5
1799
+ ];
1800
+ var FlowTraceNodeInputEvent$ = [3, n0, _FTNIE,
1801
+ 8,
1802
+ [_nN, _ti, _fie],
1803
+ [0, 5, [() => FlowTraceNodeInputFields, 0]], 3
1804
+ ];
1805
+ var FlowTraceNodeInputExecutionChainItem$ = [3, n0, _FTNIECI,
1806
+ 8,
1807
+ [_nN, _ty, _ind],
1808
+ [0, 0, 1], 2
1809
+ ];
1810
+ var FlowTraceNodeInputField$ = [3, n0, _FTNIF,
1811
+ 8,
1812
+ [_nIN, _co, _sou, _ty, _ca, _eCx],
1813
+ [0, [() => FlowTraceNodeInputContent$, 0], [() => FlowTraceNodeInputSource$, 0], 0, 0, [() => FlowTraceNodeInputExecutionChain, 0]], 2
1814
+ ];
1815
+ var FlowTraceNodeInputSource$ = [3, n0, _FTNIS,
1816
+ 8,
1817
+ [_nN, _oFN, _exp],
1818
+ [0, 0, [() => FlowNodeInputExpression, 0]], 3
1819
+ ];
1820
+ var FlowTraceNodeOutputEvent$ = [3, n0, _FTNOE,
1821
+ 8,
1822
+ [_nN, _ti, _fie],
1823
+ [0, 5, [() => FlowTraceNodeOutputFields, 0]], 3
1824
+ ];
1825
+ var FlowTraceNodeOutputField$ = [3, n0, _FTNOF,
1826
+ 8,
1827
+ [_nON, _co, _ne, _ty],
1828
+ [0, () => FlowTraceNodeOutputContent$, [() => FlowTraceNodeOutputNextList, 0], 0], 2
1829
+ ];
1830
+ var FlowTraceNodeOutputNext$ = [3, n0, _FTNON,
1831
+ 8,
1832
+ [_nN, _iFN],
1833
+ [0, 0], 2
1834
+ ];
1835
+ var FoundationModelConfiguration$ = [3, n0, _FMC,
1836
+ 0,
1837
+ [_ty, _bFMC],
1838
+ [0, () => BedrockFoundationModelConfiguration$], 1
1839
+ ];
1840
+ var FunctionDefinition$ = [3, n0, _FD,
1841
+ 0,
1842
+ [_n, _d, _p, _rCe],
1843
+ [[() => ResourceName, 0], 0, () => ParameterMap, 0], 1
1844
+ ];
1845
+ var FunctionInvocationInput$ = [3, n0, _FII,
1846
+ 0,
1847
+ [_aG, _p, _f, _aIT, _aI, _cN],
1848
+ [0, () => FunctionParameters, 0, 0, 0, [() => Name, 0]], 1
1849
+ ];
1850
+ var FunctionParameter$ = [3, n0, _FPu,
1851
+ 0,
1852
+ [_n, _ty, _va],
1853
+ [0, 0, 0]
1854
+ ];
1855
+ var FunctionResult$ = [3, n0, _FRu,
1856
+ 0,
1857
+ [_aG, _cS, _f, _rBe, _rS, _aI],
1858
+ [0, 0, 0, () => ResponseBody, 0, 0], 1
1859
+ ];
1860
+ var GeneratedQuery$ = [3, n0, _GQ,
1861
+ 8,
1862
+ [_ty, _sq],
1863
+ [0, 0]
1864
+ ];
1865
+ var GeneratedResponsePart$ = [3, n0, _GRP,
1866
+ 0,
1867
+ [_tRP],
1868
+ [[() => TextResponsePart$, 0]]
1869
+ ];
1870
+ var GenerateQueryRequest$ = [3, n0, _GQR,
1871
+ 0,
1872
+ [_qGI, _tC],
1873
+ [[() => QueryGenerationInput$, 0], () => TransformationConfiguration$], 2
1874
+ ];
1875
+ var GenerateQueryResponse$ = [3, n0, _GQRe,
1876
+ 0,
1877
+ [_q],
1878
+ [[() => GeneratedQueries, 0]]
1879
+ ];
1880
+ var GenerationConfiguration$ = [3, n0, _GC,
1881
+ 0,
1882
+ [_pT, _gC, _iC, _aMRF, _pCe],
1883
+ [[() => PromptTemplate$, 0], () => GuardrailConfiguration$, () => InferenceConfig$, 128 | 15, () => PerformanceConfiguration$]
1884
+ ];
1885
+ var GetAgentMemoryRequest$ = [3, n0, _GAMR,
1886
+ 0,
1887
+ [_aI, _aAI, _mTe, _mI, _nT, _mIa],
1888
+ [[0, 1], [0, 1], [0, { [_hQ]: _mTe }], [0, { [_hQ]: _mI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mIa }]], 4
1889
+ ];
1890
+ var GetAgentMemoryResponse$ = [3, n0, _GAMRe,
1891
+ 0,
1892
+ [_nT, _mCe],
1893
+ [0, () => Memories]
1894
+ ];
1895
+ var GetDocumentContentRequest$ = [3, n0, _GDCR,
1896
+ 0,
1897
+ [_kBI, _dSI, _dI, _oF, _uC],
1898
+ [[0, 1], [0, 1], [0, 1], 0, [() => UserContext$, 0]], 3
1899
+ ];
1900
+ var GetDocumentContentResponse$ = [3, n0, _GDCRe,
1901
+ 0,
1902
+ [_mTi, _pU, _dCL],
1903
+ [0, [() => PresignedUrl, 0], 1], 2
1904
+ ];
1905
+ var GetExecutionFlowSnapshotRequest$ = [3, n0, _GEFSR,
1906
+ 0,
1907
+ [_fI, _fAI, _eIx],
1908
+ [[0, 1], [0, 1], [0, 1]], 3
1909
+ ];
1910
+ var GetExecutionFlowSnapshotResponse$ = [3, n0, _GEFSRe,
1911
+ 0,
1912
+ [_fI, _fAI, _fV, _eRA, _de, _cEKA],
1913
+ [0, 0, 0, 0, 0, 0], 5
1914
+ ];
1915
+ var GetFlowExecutionRequest$ = [3, n0, _GFER,
1916
+ 0,
1917
+ [_fI, _fAI, _eIx],
1918
+ [[0, 1], [0, 1], [0, 1]], 3
1919
+ ];
1920
+ var GetFlowExecutionResponse$ = [3, n0, _GFERe,
1921
+ 0,
1922
+ [_eA, _sta, _sAt, _fAI, _fI, _fV, _eAn, _er],
1923
+ [0, 0, 5, 0, 0, 0, 5, () => FlowExecutionErrors], 6
1924
+ ];
1925
+ var GetInvocationStepRequest$ = [3, n0, _GISR,
1926
+ 0,
1927
+ [_iIn, _iSI, _sIe],
1928
+ [0, [0, 1], [0, 1]], 3
1929
+ ];
1930
+ var GetInvocationStepResponse$ = [3, n0, _GISRe,
1931
+ 0,
1932
+ [_iS],
1933
+ [[() => InvocationStep$, 0]], 1
1934
+ ];
1935
+ var GetSessionRequest$ = [3, n0, _GSR,
1936
+ 0,
1937
+ [_sIe],
1938
+ [[0, 1]], 1
1939
+ ];
1940
+ var GetSessionResponse$ = [3, n0, _GSRe,
1941
+ 0,
1942
+ [_sIes, _sA, _sS, _cA, _lUA, _sM, _eKA],
1943
+ [0, 0, 0, 5, 5, 128 | 0, 0], 5
1944
+ ];
1945
+ var GuardrailAssessment$ = [3, n0, _GA,
1946
+ 8,
1947
+ [_tP, _cP, _wP, _sIP],
1948
+ [[() => GuardrailTopicPolicyAssessment$, 0], [() => GuardrailContentPolicyAssessment$, 0], [() => GuardrailWordPolicyAssessment$, 0], [() => GuardrailSensitiveInformationPolicyAssessment$, 0]]
1949
+ ];
1950
+ var GuardrailConfiguration$ = [3, n0, _GCu,
1951
+ 0,
1952
+ [_gI, _gV],
1953
+ [0, 0], 2
1954
+ ];
1955
+ var GuardrailConfigurationWithArn$ = [3, n0, _GCWA,
1956
+ 0,
1957
+ [_gIu, _gV],
1958
+ [0, 0], 2
1959
+ ];
1960
+ var GuardrailContentFilter$ = [3, n0, _GCF,
1961
+ 8,
1962
+ [_ty, _conf, _ac],
1963
+ [0, 0, 0]
1964
+ ];
1965
+ var GuardrailContentPolicyAssessment$ = [3, n0, _GCPA,
1966
+ 8,
1967
+ [_fil],
1968
+ [[() => GuardrailContentFilterList, 0]]
1969
+ ];
1970
+ var GuardrailCustomWord$ = [3, n0, _GCW,
1971
+ 8,
1972
+ [_ma, _ac],
1973
+ [0, 0]
1974
+ ];
1975
+ var GuardrailEvent$ = [3, n0, _GE,
1976
+ 0,
1977
+ [_ac],
1978
+ [0]
1979
+ ];
1980
+ var GuardrailManagedWord$ = [3, n0, _GMW,
1981
+ 8,
1982
+ [_ma, _ty, _ac],
1983
+ [0, 0, 0]
1984
+ ];
1985
+ var GuardrailPiiEntityFilter$ = [3, n0, _GPEF,
1986
+ 8,
1987
+ [_ty, _ma, _ac],
1988
+ [0, 0, 0]
1989
+ ];
1990
+ var GuardrailRegexFilter$ = [3, n0, _GRF,
1991
+ 8,
1992
+ [_n, _reg, _ma, _ac],
1993
+ [0, 0, 0, 0]
1994
+ ];
1995
+ var GuardrailSensitiveInformationPolicyAssessment$ = [3, n0, _GSIPA,
1996
+ 8,
1997
+ [_pE, _rege],
1998
+ [[() => GuardrailPiiEntityFilterList, 0], [() => GuardrailRegexFilterList, 0]]
1999
+ ];
2000
+ var GuardrailTopic$ = [3, n0, _GT,
2001
+ 8,
2002
+ [_n, _ty, _ac],
2003
+ [0, 0, 0]
2004
+ ];
2005
+ var GuardrailTopicPolicyAssessment$ = [3, n0, _GTPA,
2006
+ 8,
2007
+ [_to],
2008
+ [[() => GuardrailTopicList, 0]]
2009
+ ];
2010
+ var GuardrailTrace$ = [3, n0, _GTu,
2011
+ 8,
2012
+ [_ac, _tI, _iA, _oA, _me],
2013
+ [0, 0, [() => GuardrailAssessmentList, 0], [() => GuardrailAssessmentList, 0], [() => Metadata$, 0]]
2014
+ ];
2015
+ var GuardrailWordPolicyAssessment$ = [3, n0, _GWPA,
2016
+ 8,
2017
+ [_cW, _mWL],
2018
+ [[() => GuardrailCustomWordList, 0], [() => GuardrailManagedWordList, 0]]
2019
+ ];
2020
+ var ImageBlock$ = [3, n0, _IB,
2021
+ 0,
2022
+ [_fo, _sou],
2023
+ [0, () => ImageSource$], 2
2024
+ ];
2025
+ var ImageInput$ = [3, n0, _II,
2026
+ 0,
2027
+ [_fo, _sou],
2028
+ [0, () => ImageInputSource$], 2
2029
+ ];
2030
+ var ImplicitFilterConfiguration$ = [3, n0, _IFC,
2031
+ 0,
2032
+ [_mAe, _mA],
2033
+ [[() => MetadataAttributeSchemaList, 0], 0], 2
2034
+ ];
2035
+ var InferenceConfig$ = [3, n0, _IC,
2036
+ 0,
2037
+ [_tIC],
2038
+ [() => TextInferenceConfig$]
2039
+ ];
2040
+ var InferenceConfiguration$ = [3, n0, _ICn,
2041
+ 0,
2042
+ [_te, _tPo, _tK, _mL, _sSt],
2043
+ [1, 1, 1, 1, 64 | 0]
2044
+ ];
2045
+ var InlineAgentFilePart$ = [3, n0, _IAFP,
2046
+ 0,
2047
+ [_fi],
2048
+ [[() => OutputFiles, 0]]
2049
+ ];
2050
+ var InlineAgentPayloadPart$ = [3, n0, _IAPP,
2051
+ 8,
2052
+ [_by, _att],
2053
+ [[() => PartBody, 0], [() => Attribution$, 0]]
2054
+ ];
2055
+ var InlineAgentReturnControlPayload$ = [3, n0, _IARCP,
2056
+ 8,
2057
+ [_iInv, _iI],
2058
+ [[() => InvocationInputs, 0], 0]
2059
+ ];
2060
+ var InlineAgentTracePart$ = [3, n0, _IATP,
2061
+ 8,
2062
+ [_sIes, _tra, _cCa, _eTv, _cN],
2063
+ [0, [() => Trace$, 0], () => CallerChain, 5, [() => Name, 0]]
2064
+ ];
2065
+ var InlineBedrockModelConfigurations$ = [3, n0, _IBMC,
2066
+ 0,
2067
+ [_pCe],
2068
+ [() => PerformanceConfiguration$]
2069
+ ];
2070
+ var InlineSessionState$ = [3, n0, _ISS,
2071
+ 0,
2072
+ [_sAe, _pSA, _rCIR, _iI, _fi, _cH],
2073
+ [128 | 0, 128 | 0, [() => ReturnControlInvocationResults, 0], 0, [() => InputFiles, 0], [() => ConversationHistory$, 0]]
2074
+ ];
2075
+ var InputFile$ = [3, n0, _IF,
2076
+ 0,
2077
+ [_n, _sou, _uCs],
2078
+ [0, [() => FileSource$, 0], 0], 3
2079
+ ];
2080
+ var InputImage$ = [3, n0, _IIn,
2081
+ 0,
2082
+ [_fo, _iCn],
2083
+ [0, [() => ByteContentBlob, 0]], 2
2084
+ ];
2085
+ var InvocationInput$ = [3, n0, _IInv,
2086
+ 8,
2087
+ [_tI, _iT, _aGII, _kBLI, _cIII, _aCII],
2088
+ [0, 0, [() => ActionGroupInvocationInput$, 0], [() => KnowledgeBaseLookupInput$, 0], () => CodeInterpreterInvocationInput$, [() => AgentCollaboratorInvocationInput$, 0]]
2089
+ ];
2090
+ var InvocationStep$ = [3, n0, _IS,
2091
+ 0,
2092
+ [_sIes, _iI, _iSI, _iST, _pa],
2093
+ [0, 0, 0, 5, [() => InvocationStepPayload$, 0]], 5
2094
+ ];
2095
+ var InvocationStepSummary$ = [3, n0, _ISSn,
2096
+ 0,
2097
+ [_sIes, _iI, _iSI, _iST],
2098
+ [0, 0, 0, 5], 4
2099
+ ];
2100
+ var InvocationSummary$ = [3, n0, _ISn,
2101
+ 0,
2102
+ [_sIes, _iI, _cA],
2103
+ [0, 0, 5], 3
2104
+ ];
2105
+ var InvokeAgentRequest$ = [3, n0, _IAR,
2106
+ 0,
2107
+ [_aI, _aAI, _sIes, _sSe, _eS, _eTn, _iTn, _mI, _bMC, _sCt, _pCC, _sAo],
2108
+ [[0, 1], [0, 1], [0, 1], [() => SessionState$, 0], 2, 2, [() => InputText, 0], 0, () => BedrockModelConfigurations$, () => StreamingConfigurations$, () => PromptCreationConfigurations$, [0, { [_hH]: _xasa }]], 3
2109
+ ];
2110
+ var InvokeAgentResponse$ = [3, n0, _IARn,
2111
+ 0,
2112
+ [_com, _cT, _sIes, _mI],
2113
+ [[() => ResponseStream$, 16], [0, { [_hH]: _xabact }], [0, { [_hH]: _xabasi }], [0, { [_hH]: _xabami }]], 3
2114
+ ];
2115
+ var InvokeFlowRequest$ = [3, n0, _IFR,
2116
+ 0,
2117
+ [_fI, _fAI, _inp, _eTn, _mPC, _eIxe],
2118
+ [[0, 1], [0, 1], [() => FlowInputs, 0], 2, () => ModelPerformanceConfiguration$, 0], 3
2119
+ ];
2120
+ var InvokeFlowResponse$ = [3, n0, _IFRn,
2121
+ 0,
2122
+ [_rSe, _eIxe],
2123
+ [[() => FlowResponseStream$, 16], [0, { [_hH]: _xabfei }]], 1
2124
+ ];
2125
+ var InvokeInlineAgentRequest$ = [3, n0, _IIAR,
2126
+ 0,
2127
+ [_fM, _in, _sIes, _cEKA, _iSTTLIS, _aGc, _kB, _gC, _pOC, _aC, _cC, _aN, _eS, _eTn, _iTn, _sCt, _pCC, _iSS, _col, _bMC, _oT, _cO],
2128
+ [0, [() => Instruction, 0], [0, 1], 0, 1, [() => AgentActionGroups, 0], [() => KnowledgeBases, 0], () => GuardrailConfigurationWithArn$, [() => PromptOverrideConfiguration$, 0], 0, [() => CollaboratorConfigurations, 0], [() => Name, 0], 2, 2, [() => InputText, 0], () => StreamingConfigurations$, () => PromptCreationConfigurations$, [() => InlineSessionState$, 0], [() => Collaborators, 0], () => InlineBedrockModelConfigurations$, 0, () => CustomOrchestration$], 3
2129
+ ];
2130
+ var InvokeInlineAgentResponse$ = [3, n0, _IIARn,
2131
+ 0,
2132
+ [_com, _cT, _sIes],
2133
+ [[() => InlineAgentResponseStream$, 16], [0, { [_hH]: _xabact }], [0, { [_hH]: _xabasi }]], 3
2134
+ ];
2135
+ var KnowledgeBase$ = [3, n0, _KB,
2136
+ 0,
2137
+ [_kBI, _d, _rCet],
2138
+ [0, [() => ResourceDescription, 0], [() => KnowledgeBaseRetrievalConfiguration$, 0]], 2
2139
+ ];
2140
+ var KnowledgeBaseConfiguration$ = [3, n0, _KBC,
2141
+ 0,
2142
+ [_kBI, _rCet],
2143
+ [0, [() => KnowledgeBaseRetrievalConfiguration$, 0]], 2
2144
+ ];
2145
+ var KnowledgeBaseLookupInput$ = [3, n0, _KBLI,
2146
+ 0,
2147
+ [_t, _kBI],
2148
+ [[() => KnowledgeBaseLookupInputString, 0], [() => TraceKnowledgeBaseId, 0]]
2149
+ ];
2150
+ var KnowledgeBaseLookupOutput$ = [3, n0, _KBLO,
2151
+ 0,
2152
+ [_rRe, _me],
2153
+ [[() => RetrievedReferences, 0], [() => Metadata$, 0]]
2154
+ ];
2155
+ var KnowledgeBaseQuery$ = [3, n0, _KBQ,
2156
+ 8,
2157
+ [_ty, _t, _ima],
2158
+ [0, 0, [() => InputImage$, 0]]
2159
+ ];
2160
+ var KnowledgeBaseRetrievalConfiguration$ = [3, n0, _KBRC,
2161
+ 0,
2162
+ [_vSC, _mSC],
2163
+ [[() => KnowledgeBaseVectorSearchConfiguration$, 0], [() => ManagedSearchConfiguration$, 0]]
2164
+ ];
2165
+ var KnowledgeBaseRetrievalResult$ = [3, n0, _KBRR,
2166
+ 0,
2167
+ [_co, _l, _sc, _me, _dI],
2168
+ [[() => RetrievalResultContent$, 0], [() => RetrievalResultLocation$, 0], 1, [() => RetrievalResultMetadata, 0], 0], 1
2169
+ ];
2170
+ var KnowledgeBaseRetrieveAndGenerateConfiguration$ = [3, n0, _KBRAGC,
2171
+ 0,
2172
+ [_kBI, _mA, _rCet, _gCe, _oC],
2173
+ [0, 0, [() => KnowledgeBaseRetrievalConfiguration$, 0], [() => GenerationConfiguration$, 0], [() => OrchestrationConfiguration$, 0]], 2
2174
+ ];
2175
+ var KnowledgeBaseRetrieverConfiguration$ = [3, n0, _KBRCn,
2176
+ 0,
2177
+ [_kBI, _rO],
2178
+ [0, [() => RetrievalOverrides$, 0]], 1
2179
+ ];
2180
+ var KnowledgeBaseVectorSearchConfiguration$ = [3, n0, _KBVSC,
2181
+ 0,
2182
+ [_nOR, _oST, _filt, _rC, _iFC],
2183
+ [1, 0, [() => RetrievalFilter$, 0], [() => VectorSearchRerankingConfiguration$, 0], [() => ImplicitFilterConfiguration$, 0]]
2184
+ ];
2185
+ var ListFlowExecutionEventsRequest$ = [3, n0, _LFEER,
2186
+ 0,
2187
+ [_fI, _fAI, _eIx, _eTve, _mR, _nT],
2188
+ [[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _eTve }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 4
2189
+ ];
2190
+ var ListFlowExecutionEventsResponse$ = [3, n0, _LFEERi,
2191
+ 0,
2192
+ [_fEE, _nT],
2193
+ [[() => FlowExecutionEvents, 0], 0], 1
2194
+ ];
2195
+ var ListFlowExecutionsRequest$ = [3, n0, _LFER,
2196
+ 0,
2197
+ [_fI, _fAI, _mR, _nT],
2198
+ [[0, 1], [0, { [_hQ]: _fAI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
2199
+ ];
2200
+ var ListFlowExecutionsResponse$ = [3, n0, _LFERi,
2201
+ 0,
2202
+ [_fES, _nT],
2203
+ [() => FlowExecutionSummaries, 0], 1
2204
+ ];
2205
+ var ListInvocationsRequest$ = [3, n0, _LIR,
2206
+ 0,
2207
+ [_sIe, _nT, _mR],
2208
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
2209
+ ];
2210
+ var ListInvocationsResponse$ = [3, n0, _LIRi,
2211
+ 0,
2212
+ [_iSn, _nT],
2213
+ [() => InvocationSummaries, 0], 1
2214
+ ];
2215
+ var ListInvocationStepsRequest$ = [3, n0, _LISR,
2216
+ 0,
2217
+ [_sIe, _iIn, _nT, _mR],
2218
+ [[0, 1], 0, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
2219
+ ];
2220
+ var ListInvocationStepsResponse$ = [3, n0, _LISRi,
2221
+ 0,
2222
+ [_iSSn, _nT],
2223
+ [() => InvocationStepSummaries, 0], 1
2224
+ ];
2225
+ var ListSessionsRequest$ = [3, n0, _LSR,
2226
+ 0,
2227
+ [_mR, _nT],
2228
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
2229
+ ];
2230
+ var ListSessionsResponse$ = [3, n0, _LSRi,
2231
+ 0,
2232
+ [_sSes, _nT],
2233
+ [() => SessionSummaries, 0], 1
2234
+ ];
2235
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
2236
+ 0,
2237
+ [_rA],
2238
+ [[0, 1]], 1
2239
+ ];
2240
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
2241
+ 0,
2242
+ [_ta],
2243
+ [128 | 0]
2244
+ ];
2245
+ var ManagedSearchBedrockRerankingConfiguration$ = [3, n0, _MSBRC,
2246
+ 0,
2247
+ [_mC, _nORR, _mCet],
2248
+ [() => ManagedSearchBedrockRerankingModelConfiguration$, 1, [() => MetadataConfigurationForReranking$, 0]], 1
2249
+ ];
2250
+ var ManagedSearchBedrockRerankingModelConfiguration$ = [3, n0, _MSBRMC,
2251
+ 0,
2252
+ [_mA, _aMRF],
2253
+ [0, 128 | 15], 1
2254
+ ];
2255
+ var ManagedSearchConfiguration$ = [3, n0, _MSC,
2256
+ 0,
2257
+ [_nOR, _filt, _rMT, _rC],
2258
+ [1, [() => RetrievalFilter$, 0], 0, [() => ManagedSearchRerankingConfiguration$, 0]]
2259
+ ];
2260
+ var ManagedSearchRerankingConfiguration$ = [3, n0, _MSRC,
2261
+ 0,
2262
+ [_ty, _bRC],
2263
+ [0, [() => ManagedSearchBedrockRerankingConfiguration$, 0]], 1
2264
+ ];
2265
+ var MemorySessionSummary$ = [3, n0, _MSS,
2266
+ 0,
2267
+ [_mI, _sIes, _sST, _sET, _sTu],
2268
+ [0, 0, 5, 5, 0]
2269
+ ];
2270
+ var Message$ = [3, n0, _M,
2271
+ 0,
2272
+ [_ro, _co],
2273
+ [0, [() => ContentBlocks, 0]], 2
2274
+ ];
2275
+ var Metadata$ = [3, n0, _Me,
2276
+ 8,
2277
+ [_sTt, _eTnd, _tTM, _oTTM, _cRI, _u],
2278
+ [5, 5, 1, 1, 0, [() => Usage$, 0]]
2279
+ ];
2280
+ var MetadataAttributeSchema$ = [3, n0, _MAS,
2281
+ 8,
2282
+ [_k, _ty, _d],
2283
+ [0, 0, 0], 3
2284
+ ];
2285
+ var MetadataConfigurationForReranking$ = [3, n0, _MCFR,
2286
+ 0,
2287
+ [_sMe, _sMC],
2288
+ [0, [() => RerankingMetadataSelectiveModeConfiguration$, 0]], 1
2289
+ ];
2290
+ var ModelInvocationInput$ = [3, n0, _MII,
2291
+ 8,
2292
+ [_tI, _t, _ty, _oL, _pCM, _iCnf, _pM, _fM],
2293
+ [0, [() => PromptText, 0], 0, 0, 0, () => InferenceConfiguration$, 0, 0]
2294
+ ];
2295
+ var ModelPerformanceConfiguration$ = [3, n0, _MPC,
2296
+ 0,
2297
+ [_pCe],
2298
+ [() => PerformanceConfiguration$]
2299
+ ];
2300
+ var NodeActionEvent$ = [3, n0, _NAE,
2301
+ 8,
2302
+ [_nN, _ti, _rIe, _sN, _oN, _oR, _oRp],
2303
+ [0, 5, 0, 0, 0, 15, 15], 5
2304
+ ];
2305
+ var NodeDependencyEvent$ = [3, n0, _NDE,
2306
+ 8,
2307
+ [_nN, _ti, _tE],
2308
+ [0, 5, [() => NodeTraceElements$, 0]], 3
2309
+ ];
2310
+ var NodeFailureEvent$ = [3, n0, _NFE,
2311
+ 8,
2312
+ [_nN, _ti, _eC, _eM],
2313
+ [0, 5, 0, 0], 4
2314
+ ];
2315
+ var NodeInputEvent$ = [3, n0, _NIE,
2316
+ 8,
2317
+ [_nN, _ti, _fie],
2318
+ [0, 5, [() => NodeInputFields, 0]], 3
2319
+ ];
2320
+ var NodeInputExecutionChainItem$ = [3, n0, _NIECI,
2321
+ 0,
2322
+ [_nN, _ty, _ind],
2323
+ [0, 0, 1], 2
2324
+ ];
2325
+ var NodeInputField$ = [3, n0, _NIF,
2326
+ 8,
2327
+ [_n, _co, _sou, _ty, _ca, _eCx],
2328
+ [0, [() => NodeExecutionContent$, 0], [() => NodeInputSource$, 0], 0, 0, () => NodeInputExecutionChain], 2
2329
+ ];
2330
+ var NodeInputSource$ = [3, n0, _NIS,
2331
+ 0,
2332
+ [_nN, _oFN, _exp],
2333
+ [0, 0, [() => FlowNodeInputExpression, 0]], 3
2334
+ ];
2335
+ var NodeOutputEvent$ = [3, n0, _NOE,
2336
+ 8,
2337
+ [_nN, _ti, _fie],
2338
+ [0, 5, [() => NodeOutputFields, 0]], 3
2339
+ ];
2340
+ var NodeOutputField$ = [3, n0, _NOF,
2341
+ 8,
2342
+ [_n, _co, _ne, _ty],
2343
+ [0, [() => NodeExecutionContent$, 0], [() => NodeOutputNextList, 0], 0], 2
2344
+ ];
2345
+ var NodeOutputNext$ = [3, n0, _NON,
2346
+ 8,
2347
+ [_nN, _iFN],
2348
+ [0, 0], 2
2349
+ ];
2350
+ var Observation$ = [3, n0, _O,
2351
+ 8,
2352
+ [_tI, _ty, _aGIO, _aCIO, _kBLO, _fRi, _rRep, _cIIO],
2353
+ [0, 0, [() => ActionGroupInvocationOutput$, 0], [() => AgentCollaboratorInvocationOutput$, 0], [() => KnowledgeBaseLookupOutput$, 0], [() => FinalResponse$, 0], [() => RepromptResponse$, 0], [() => CodeInterpreterInvocationOutput$, 0]]
2354
+ ];
2355
+ var OptimizedPromptEvent$ = [3, n0, _OPE,
2356
+ 8,
2357
+ [_oP],
2358
+ [[() => OptimizedPrompt$, 0]]
2359
+ ];
2360
+ var OptimizePromptRequest$ = [3, n0, _OPR,
2361
+ 0,
2362
+ [_i, _tMI],
2363
+ [[() => InputPrompt$, 0], 0], 2
2364
+ ];
2365
+ var OptimizePromptResponse$ = [3, n0, _OPRp,
2366
+ 0,
2367
+ [_oP],
2368
+ [[() => OptimizedPromptStream$, 16]], 1
2369
+ ];
2370
+ var OrchestrationConfiguration$ = [3, n0, _OC,
2371
+ 0,
2372
+ [_pT, _iC, _aMRF, _qTC, _pCe],
2373
+ [[() => PromptTemplate$, 0], () => InferenceConfig$, 128 | 15, () => QueryTransformationConfiguration$, () => PerformanceConfiguration$]
2374
+ ];
2375
+ var OrchestrationModelInvocationOutput$ = [3, n0, _OMIO,
2376
+ 8,
2377
+ [_tI, _rRa, _me, _rCea],
2378
+ [0, [() => RawResponse$, 0], [() => Metadata$, 0], [() => ReasoningContentBlock$, 0]]
2379
+ ];
2380
+ var OutputFile$ = [3, n0, _OF,
2381
+ 8,
2382
+ [_n, _ty, _by],
2383
+ [0, 0, [() => FileBody, 0]]
2384
+ ];
2385
+ var Parameter$ = [3, n0, _Pa,
2386
+ 0,
2387
+ [_n, _ty, _va],
2388
+ [0, 0, 0]
2389
+ ];
2390
+ var ParameterDetail$ = [3, n0, _PD,
2391
+ 0,
2392
+ [_ty, _d, _req],
2393
+ [0, 0, 2], 1
2394
+ ];
2395
+ var PayloadPart$ = [3, n0, _PP,
2396
+ 8,
2397
+ [_by, _att],
2398
+ [[() => PartBody, 0], [() => Attribution$, 0]]
2399
+ ];
2400
+ var PerformanceConfiguration$ = [3, n0, _PC,
2401
+ 0,
2402
+ [_la],
2403
+ [0]
2404
+ ];
2405
+ var PostProcessingModelInvocationOutput$ = [3, n0, _PPMIO,
2406
+ 8,
2407
+ [_tI, _pR, _rRa, _me, _rCea],
2408
+ [0, [() => PostProcessingParsedResponse$, 0], [() => RawResponse$, 0], [() => Metadata$, 0], [() => ReasoningContentBlock$, 0]]
2409
+ ];
2410
+ var PostProcessingParsedResponse$ = [3, n0, _PPPR,
2411
+ 8,
2412
+ [_t],
2413
+ [[() => OutputString, 0]]
2414
+ ];
2415
+ var PreProcessingModelInvocationOutput$ = [3, n0, _PPMIOr,
2416
+ 8,
2417
+ [_tI, _pR, _rRa, _me, _rCea],
2418
+ [0, [() => PreProcessingParsedResponse$, 0], [() => RawResponse$, 0], [() => Metadata$, 0], [() => ReasoningContentBlock$, 0]]
2419
+ ];
2420
+ var PreProcessingParsedResponse$ = [3, n0, _PPPRr,
2421
+ 8,
2422
+ [_ra, _iV],
2423
+ [[() => RationaleString, 0], 2]
2424
+ ];
2425
+ var PromptConfiguration$ = [3, n0, _PCr,
2426
+ 0,
2427
+ [_pTr, _pCM, _pS, _bPT, _iCnf, _pM, _fM, _aMRF],
2428
+ [0, 0, 0, [() => BasePromptTemplate, 0], () => InferenceConfiguration$, 0, 0, 15]
2429
+ ];
2430
+ var PromptCreationConfigurations$ = [3, n0, _PCC,
2431
+ 0,
2432
+ [_pCTTI, _ePTS],
2433
+ [1, 2]
2434
+ ];
2435
+ var PromptOverrideConfiguration$ = [3, n0, _POC,
2436
+ 8,
2437
+ [_pCr, _oL],
2438
+ [[() => PromptConfigurations, 0], 0], 1
2439
+ ];
2440
+ var PromptTemplate$ = [3, n0, _PTr,
2441
+ 0,
2442
+ [_tPT],
2443
+ [[() => TextPromptTemplate, 0]]
2444
+ ];
2445
+ var PropertyParameters$ = [3, n0, _PPr,
2446
+ 0,
2447
+ [_pr],
2448
+ [() => ParameterList]
2449
+ ];
2450
+ var PutInvocationStepRequest$ = [3, n0, _PISR,
2451
+ 0,
2452
+ [_sIe, _iIn, _iST, _pa, _iSI],
2453
+ [[0, 1], 0, 5, [() => InvocationStepPayload$, 0], 0], 4
2454
+ ];
2455
+ var PutInvocationStepResponse$ = [3, n0, _PISRu,
2456
+ 0,
2457
+ [_iSI],
2458
+ [0], 1
2459
+ ];
2460
+ var QueryGenerationInput$ = [3, n0, _QGI,
2461
+ 8,
2462
+ [_ty, _t],
2463
+ [0, 0], 2
2464
+ ];
2465
+ var QueryTransformationConfiguration$ = [3, n0, _QTC,
2466
+ 0,
2467
+ [_ty],
2468
+ [0], 1
2469
+ ];
2470
+ var Rationale$ = [3, n0, _R,
2471
+ 8,
2472
+ [_tI, _t],
2473
+ [0, [() => RationaleString, 0]]
2474
+ ];
2475
+ var RawResponse$ = [3, n0, _RR,
2476
+ 8,
2477
+ [_co],
2478
+ [0]
2479
+ ];
2480
+ var ReasoningTextBlock$ = [3, n0, _RTB,
2481
+ 8,
2482
+ [_t, _si],
2483
+ [0, 0], 1
2484
+ ];
2485
+ var RepromptResponse$ = [3, n0, _RRe,
2486
+ 8,
2487
+ [_t, _sou],
2488
+ [0, [() => Source$1, 0]]
2489
+ ];
2490
+ var RequestBody$ = [3, n0, _RB,
2491
+ 0,
2492
+ [_co],
2493
+ [() => ContentMap]
2494
+ ];
2495
+ var RerankDocument$ = [3, n0, _RDe,
2496
+ 8,
2497
+ [_ty, _tD, _jD],
2498
+ [0, [() => RerankTextDocument$, 0], 15], 1
2499
+ ];
2500
+ var RerankingConfiguration$ = [3, n0, _RC,
2501
+ 0,
2502
+ [_ty, _bRC],
2503
+ [0, () => BedrockRerankingConfiguration$], 2
2504
+ ];
2505
+ var RerankQuery$ = [3, n0, _RQ,
2506
+ 8,
2507
+ [_ty, _tQ],
2508
+ [0, [() => RerankTextDocument$, 0]], 2
2509
+ ];
2510
+ var RerankRequest$ = [3, n0, _RRer,
2511
+ 0,
2512
+ [_q, _so, _rC, _nT],
2513
+ [[() => RerankQueriesList, 0], [() => RerankSourcesList, 0], () => RerankingConfiguration$, 0], 3
2514
+ ];
2515
+ var RerankResponse$ = [3, n0, _RRera,
2516
+ 0,
2517
+ [_res, _nT],
2518
+ [[() => RerankResultsList, 0], 0], 1
2519
+ ];
2520
+ var RerankResult$ = [3, n0, _RReran,
2521
+ 0,
2522
+ [_ind, _rSel, _do],
2523
+ [1, 1, [() => RerankDocument$, 0]], 2
2524
+ ];
2525
+ var RerankSource$ = [3, n0, _RSe,
2526
+ 8,
2527
+ [_ty, _iDS],
2528
+ [0, [() => RerankDocument$, 0]], 2
2529
+ ];
2530
+ var RerankTextDocument$ = [3, n0, _RTD,
2531
+ 8,
2532
+ [_t],
2533
+ [0]
2534
+ ];
2535
+ var RetrievalContent$ = [3, n0, _RCe,
2536
+ 0,
2537
+ [_mTi, _bC, _t],
2538
+ [0, 21, 0], 1
2539
+ ];
2540
+ var RetrievalOverrides$ = [3, n0, _RO,
2541
+ 0,
2542
+ [_filt, _mNOR],
2543
+ [[() => RetrievalFilter$, 0], 1]
2544
+ ];
2545
+ var RetrievalResultConfluenceLocation$ = [3, n0, _RRCL,
2546
+ 0,
2547
+ [_ur],
2548
+ [0]
2549
+ ];
2550
+ var RetrievalResultContent$ = [3, n0, _RRC,
2551
+ 8,
2552
+ [_ty, _t, _bC, _vi, _au, _row],
2553
+ [0, 0, 0, () => VideoSegment$, () => AudioSegment$, [() => RetrievalResultContentRow, 0]]
2554
+ ];
2555
+ var RetrievalResultContentColumn$ = [3, n0, _RRCC,
2556
+ 8,
2557
+ [_cNol, _cV, _ty],
2558
+ [0, 0, 0]
2559
+ ];
2560
+ var RetrievalResultCustomDocumentLocation$ = [3, n0, _RRCDL,
2561
+ 0,
2562
+ [_id],
2563
+ [0]
2564
+ ];
2565
+ var RetrievalResultGoogleDriveLocation$ = [3, n0, _RRGDL,
2566
+ 0,
2567
+ [_ur],
2568
+ [0]
2569
+ ];
2570
+ var RetrievalResultKendraDocumentLocation$ = [3, n0, _RRKDL,
2571
+ 0,
2572
+ [_uri],
2573
+ [0]
2574
+ ];
2575
+ var RetrievalResultLocation$ = [3, n0, _RRL,
2576
+ 8,
2577
+ [_ty, _sL, _wL, _cL, _sLa, _sPL, _cDL, _kDL, _sLq, _oDL, _gDL],
2578
+ [0, () => RetrievalResultS3Location$, () => RetrievalResultWebLocation$, () => RetrievalResultConfluenceLocation$, () => RetrievalResultSalesforceLocation$, () => RetrievalResultSharePointLocation$, () => RetrievalResultCustomDocumentLocation$, () => RetrievalResultKendraDocumentLocation$, () => RetrievalResultSqlLocation$, () => RetrievalResultOneDriveLocation$, () => RetrievalResultGoogleDriveLocation$], 1
2579
+ ];
2580
+ var RetrievalResultOneDriveLocation$ = [3, n0, _RRODL,
2581
+ 0,
2582
+ [_ur],
2583
+ [0]
2584
+ ];
2585
+ var RetrievalResultS3Location$ = [3, n0, _RRSL,
2586
+ 0,
2587
+ [_uri],
2588
+ [0]
2589
+ ];
2590
+ var RetrievalResultSalesforceLocation$ = [3, n0, _RRSLe,
2591
+ 0,
2592
+ [_ur],
2593
+ [0]
2594
+ ];
2595
+ var RetrievalResultSharePointLocation$ = [3, n0, _RRSPL,
2596
+ 0,
2597
+ [_ur],
2598
+ [0]
2599
+ ];
2600
+ var RetrievalResultSqlLocation$ = [3, n0, _RRSLet,
2601
+ 0,
2602
+ [_qu],
2603
+ [0]
2604
+ ];
2605
+ var RetrievalResultWebLocation$ = [3, n0, _RRWL,
2606
+ 0,
2607
+ [_ur],
2608
+ [0]
2609
+ ];
2610
+ var RetrieveAndGenerateConfiguration$ = [3, n0, _RAGC,
2611
+ 0,
2612
+ [_ty, _kBC, _eSC],
2613
+ [0, [() => KnowledgeBaseRetrieveAndGenerateConfiguration$, 0], [() => ExternalSourcesRetrieveAndGenerateConfiguration$, 0]], 1
2614
+ ];
2615
+ var RetrieveAndGenerateInput$ = [3, n0, _RAGI,
2616
+ 8,
2617
+ [_t],
2618
+ [0], 1
2619
+ ];
2620
+ var RetrieveAndGenerateOutput$ = [3, n0, _RAGO,
2621
+ 8,
2622
+ [_t],
2623
+ [0], 1
2624
+ ];
2625
+ var RetrieveAndGenerateOutputEvent$ = [3, n0, _RAGOE,
2626
+ 8,
2627
+ [_t],
2628
+ [0], 1
2629
+ ];
2630
+ var RetrieveAndGenerateRequest$ = [3, n0, _RAGR,
2631
+ 0,
2632
+ [_i, _sIes, _rAGC, _sCe, _uC],
2633
+ [[() => RetrieveAndGenerateInput$, 0], 0, [() => RetrieveAndGenerateConfiguration$, 0], () => RetrieveAndGenerateSessionConfiguration$, [() => UserContext$, 0]], 1
2634
+ ];
2635
+ var RetrieveAndGenerateResponse$ = [3, n0, _RAGRe,
2636
+ 0,
2637
+ [_sIes, _o, _ci, _gA],
2638
+ [0, [() => RetrieveAndGenerateOutput$, 0], [() => Citations, 0], 0], 2
2639
+ ];
2640
+ var RetrieveAndGenerateSessionConfiguration$ = [3, n0, _RAGSC,
2641
+ 0,
2642
+ [_kKA],
2643
+ [0], 1
2644
+ ];
2645
+ var RetrieveAndGenerateStreamRequest$ = [3, n0, _RAGSR,
2646
+ 0,
2647
+ [_i, _sIes, _rAGC, _sCe, _uC],
2648
+ [[() => RetrieveAndGenerateInput$, 0], 0, [() => RetrieveAndGenerateConfiguration$, 0], () => RetrieveAndGenerateSessionConfiguration$, [() => UserContext$, 0]], 1
2649
+ ];
2650
+ var RetrieveAndGenerateStreamResponse$ = [3, n0, _RAGSRe,
2651
+ 0,
2652
+ [_st, _sIes],
2653
+ [[() => RetrieveAndGenerateStreamResponseOutput$, 16], [0, { [_hH]: _xabkbsi }]], 2
2654
+ ];
2655
+ var RetrievedReference$ = [3, n0, _RRet,
2656
+ 0,
2657
+ [_co, _l, _me],
2658
+ [[() => RetrievalResultContent$, 0], [() => RetrievalResultLocation$, 0], [() => RetrievalResultMetadata, 0]]
2659
+ ];
2660
+ var RetrieveRequest$ = [3, n0, _RRetr,
2661
+ 0,
2662
+ [_kBI, _rQ, _rCet, _gC, _nT, _uC],
2663
+ [[0, 1], [() => KnowledgeBaseQuery$, 0], [() => KnowledgeBaseRetrievalConfiguration$, 0], () => GuardrailConfiguration$, 0, [() => UserContext$, 0]], 2
2664
+ ];
2665
+ var RetrieveResponse$ = [3, n0, _RRetri,
2666
+ 0,
2667
+ [_rRet, _gA, _nT],
2668
+ [[() => KnowledgeBaseRetrievalResults, 0], 0, 0], 1
2669
+ ];
2670
+ var ReturnControlPayload$ = [3, n0, _RCP,
2671
+ 8,
2672
+ [_iInv, _iI],
2673
+ [[() => InvocationInputs, 0], 0]
2674
+ ];
2675
+ var ReturnControlResults$ = [3, n0, _RCR,
2676
+ 0,
2677
+ [_iI, _rCIR],
2678
+ [0, [() => ReturnControlInvocationResults, 0]]
2679
+ ];
2680
+ var RoutingClassifierModelInvocationOutput$ = [3, n0, _RCMIO,
2681
+ 8,
2682
+ [_tI, _rRa, _me],
2683
+ [0, [() => RawResponse$, 0], [() => Metadata$, 0]]
2684
+ ];
2685
+ var S3Identifier$ = [3, n0, _SI,
2686
+ 0,
2687
+ [_sBN, _sOK],
2688
+ [0, 0]
2689
+ ];
2690
+ var S3Location$ = [3, n0, _SL,
2691
+ 0,
2692
+ [_uri],
2693
+ [0], 1
2694
+ ];
2695
+ var S3ObjectDoc$ = [3, n0, _SOD,
2696
+ 0,
2697
+ [_uri],
2698
+ [0], 1
2699
+ ];
2700
+ var S3ObjectFile$ = [3, n0, _SOF,
2701
+ 0,
2702
+ [_uri],
2703
+ [0], 1
2704
+ ];
2705
+ var SatisfiedCondition$ = [3, n0, _SC,
2706
+ 8,
2707
+ [_cNo],
2708
+ [0], 1
2709
+ ];
2710
+ var SessionState$ = [3, n0, _SS,
2711
+ 0,
2712
+ [_sAe, _pSA, _rCIR, _iI, _fi, _kBCn, _cH],
2713
+ [128 | 0, 128 | 0, [() => ReturnControlInvocationResults, 0], 0, [() => InputFiles, 0], [() => KnowledgeBaseConfigurations, 0], [() => ConversationHistory$, 0]]
2714
+ ];
2715
+ var SessionSummary$ = [3, n0, _SSe,
2716
+ 0,
2717
+ [_sIes, _sA, _sS, _cA, _lUA],
2718
+ [0, 0, 0, 5, 5], 5
2719
+ ];
2720
+ var Span$ = [3, n0, _Sp,
2721
+ 0,
2722
+ [_star, _en],
2723
+ [1, 1]
2724
+ ];
2725
+ var StartFlowExecutionRequest$ = [3, n0, _SFER,
2726
+ 0,
2727
+ [_fI, _fAI, _inp, _fEN, _mPC],
2728
+ [[0, 1], [0, 1], [() => FlowInputs, 0], 0, () => ModelPerformanceConfiguration$], 3
2729
+ ];
2730
+ var StartFlowExecutionResponse$ = [3, n0, _SFERt,
2731
+ 0,
2732
+ [_eA],
2733
+ [0]
2734
+ ];
2735
+ var StopFlowExecutionRequest$ = [3, n0, _SFERto,
2736
+ 0,
2737
+ [_fI, _fAI, _eIx],
2738
+ [[0, 1], [0, 1], [0, 1]], 3
2739
+ ];
2740
+ var StopFlowExecutionResponse$ = [3, n0, _SFERtop,
2741
+ 0,
2742
+ [_sta, _eA],
2743
+ [0, 0], 1
2744
+ ];
2745
+ var StreamingConfigurations$ = [3, n0, _SCt,
2746
+ 0,
2747
+ [_sFR, _aGI],
2748
+ [2, 1]
2749
+ ];
2750
+ var TagResourceRequest$ = [3, n0, _TRR,
2751
+ 0,
2752
+ [_rA, _ta],
2753
+ [[0, 1], 128 | 0], 2
2754
+ ];
2755
+ var TagResourceResponse$ = [3, n0, _TRRa,
2756
+ 0,
2757
+ [],
2758
+ []
2759
+ ];
2760
+ var TextInferenceConfig$ = [3, n0, _TIC,
2761
+ 0,
2762
+ [_te, _tPo, _mTa, _sSt],
2763
+ [1, 1, 1, 64 | 0]
2764
+ ];
2765
+ var TextPrompt$ = [3, n0, _TP,
2766
+ 8,
2767
+ [_t],
2768
+ [0], 1
2769
+ ];
2770
+ var TextResponsePart$ = [3, n0, _TRP,
2771
+ 8,
2772
+ [_t, _sp],
2773
+ [0, () => Span$]
2774
+ ];
2775
+ var TextToSqlConfiguration$ = [3, n0, _TTSC,
2776
+ 0,
2777
+ [_ty, _kBC],
2778
+ [0, () => TextToSqlKnowledgeBaseConfiguration$], 1
2779
+ ];
2780
+ var TextToSqlKnowledgeBaseConfiguration$ = [3, n0, _TTSKBC,
2781
+ 0,
2782
+ [_kBA],
2783
+ [0], 1
2784
+ ];
2785
+ var TracePart$ = [3, n0, _TPr,
2786
+ 8,
2787
+ [_sIes, _tra, _cCa, _eTv, _cN, _aI, _aAI, _aV],
2788
+ [0, [() => Trace$, 0], () => CallerChain, 5, [() => Name, 0], 0, 0, 0]
2789
+ ];
2790
+ var TransformationConfiguration$ = [3, n0, _TC,
2791
+ 0,
2792
+ [_mo, _tTSC],
2793
+ [0, () => TextToSqlConfiguration$], 1
2794
+ ];
2795
+ var UntagResourceRequest$ = [3, n0, _URR,
2796
+ 0,
2797
+ [_rA, _tKa],
2798
+ [[0, 1], [64 | 0, { [_hQ]: _tKa }]], 2
2799
+ ];
2800
+ var UntagResourceResponse$ = [3, n0, _URRn,
2801
+ 0,
2802
+ [],
2803
+ []
2804
+ ];
2805
+ var UpdateSessionRequest$ = [3, n0, _USR,
2806
+ 0,
2807
+ [_sIe, _sM],
2808
+ [[0, 1], 128 | 0], 1
2809
+ ];
2810
+ var UpdateSessionResponse$ = [3, n0, _USRp,
2811
+ 0,
2812
+ [_sIes, _sA, _sS, _cA, _lUA],
2813
+ [0, 0, 0, 5, 5], 5
2814
+ ];
2815
+ var Usage$ = [3, n0, _U,
2816
+ 8,
2817
+ [_iTnp, _oTu],
2818
+ [1, 1]
2819
+ ];
2820
+ var UserContext$ = [3, n0, _UC,
2821
+ 8,
2822
+ [_uI],
2823
+ [0], 1
2824
+ ];
2825
+ var VectorSearchBedrockRerankingConfiguration$ = [3, n0, _VSBRC,
2826
+ 0,
2827
+ [_mC, _nORR, _mCet],
2828
+ [() => VectorSearchBedrockRerankingModelConfiguration$, 1, [() => MetadataConfigurationForReranking$, 0]], 1
2829
+ ];
2830
+ var VectorSearchBedrockRerankingModelConfiguration$ = [3, n0, _VSBRMC,
2831
+ 0,
2832
+ [_mA, _aMRF],
2833
+ [0, 128 | 15], 1
2834
+ ];
2835
+ var VectorSearchRerankingConfiguration$ = [3, n0, _VSRC,
2836
+ 0,
2837
+ [_ty, _bRC],
2838
+ [0, [() => VectorSearchBedrockRerankingConfiguration$, 0]], 1
2839
+ ];
2840
+ var VideoSegment$ = [3, n0, _VS,
2841
+ 0,
2842
+ [_sU, _su],
2843
+ [0, 0], 1
2844
+ ];
2845
+ var AgentActionGroups = [1, n0, _AAGg,
2846
+ 0, [() => AgentActionGroup$,
2847
+ 0]
2848
+ ];
2849
+ var AgenticRetrieveActions = [1, n0, _ARAg,
2850
+ 0, [() => AgenticRetrieveAction$,
2851
+ 0]
2852
+ ];
2853
+ var AgenticRetrieveCitationList = [1, n0, _ARCL,
2854
+ 0, () => AgenticRetrieveCitation$
2855
+ ];
2856
+ var AgenticRetrieveCitationReferenceList = [1, n0, _ARCRL,
2857
+ 0, () => AgenticRetrieveCitationReference$
2858
+ ];
2859
+ var AgenticRetrieveFailures = [1, n0, _ARFg,
2860
+ 0, () => AgenticRetrieveFailure$
2861
+ ];
2862
+ var AgenticRetrieveMessages = [1, n0, _ARMg,
2863
+ 0, [() => AgenticRetrieveMessage$,
2864
+ 0]
2865
+ ];
2866
+ var AgenticRetrieveResults = [1, n0, _ARR,
2867
+ 0, () => AgenticRetrieveResultItem$
2868
+ ];
2869
+ var AgenticRetrievers = [1, n0, _ARg,
2870
+ 0, [() => AgenticRetriever$,
2871
+ 0]
2872
+ ];
2873
+ var AgenticRetrieveSourceMetadataList = [1, n0, _ARSML,
2874
+ 0, () => AgenticRetrieveSourceMetadata$
2875
+ ];
2876
+ var AgenticRetrieveSourceRetrieverList = [1, n0, _ARSRL,
2877
+ 0, () => AgenticRetrieveSourceRetriever$
2878
+ ];
2879
+ var AgenticRetrieveTraceResults = [1, n0, _ARTR,
2880
+ 0, () => AgenticRetrieveTraceResultItem$
2881
+ ];
2882
+ var AgenticRetrieveWarnings = [1, n0, _ARW,
2883
+ 0, () => AgenticRetrieveWarning$
2884
+ ];
2885
+ var AgentTraces = [1, n0, _AT,
2886
+ 0, [() => TracePart$,
2887
+ 0]
2888
+ ];
2889
+ var ApiParameters = [1, n0, _APpi,
2890
+ 0, () => ApiParameter$
2891
+ ];
2892
+ var BedrockSessionContentBlocks = [1, n0, _BSCB,
2893
+ 0, [() => BedrockSessionContentBlock$,
2894
+ 0]
2895
+ ];
2896
+ var CallerChain = [1, n0, _CCa,
2897
+ 0, () => Caller$
2898
+ ];
2899
+ var Citations = [1, n0, _Ci,
2900
+ 0, [() => Citation$,
2901
+ 0]
2902
+ ];
2903
+ var CollaboratorConfigurations = [1, n0, _CCo,
2904
+ 0, [() => CollaboratorConfiguration$,
2905
+ 0]
2906
+ ];
2907
+ var Collaborators = [1, n0, _Col,
2908
+ 0, [() => Collaborator$,
2909
+ 0]
2910
+ ];
2911
+ var ContentBlocks = [1, n0, _CBo,
2912
+ 0, [() => ContentBlock$,
2913
+ 0]
2914
+ ];
2915
+ var ExternalSources = [1, n0, _ESx,
2916
+ 0, [() => ExternalSource$,
2917
+ 0]
2918
+ ];
2919
+ var FieldsForReranking = [1, n0, _FFRi,
2920
+ 8, () => FieldForReranking$
2921
+ ];
2922
+ var FlowExecutionErrors = [1, n0, _FEEl,
2923
+ 0, () => FlowExecutionError$
2924
+ ];
2925
+ var FlowExecutionEvents = [1, n0, _FEElo,
2926
+ 0, [() => FlowExecutionEvent$,
2927
+ 0]
2928
+ ];
2929
+ var FlowExecutionSummaries = [1, n0, _FESl,
2930
+ 0, () => FlowExecutionSummary$
2931
+ ];
2932
+ var FlowInputFields = [1, n0, _FIFl,
2933
+ 0, [() => FlowInputField$,
2934
+ 0]
2935
+ ];
2936
+ var FlowInputs = [1, n0, _FIl,
2937
+ 0, [() => FlowInput$,
2938
+ 0]
2939
+ ];
2940
+ var FlowOutputFields = [1, n0, _FOFl,
2941
+ 0, [() => FlowOutputField$,
2942
+ 0]
2943
+ ];
2944
+ var FlowTraceConditions = [1, n0, _FTCl,
2945
+ 0, [() => FlowTraceCondition$,
2946
+ 0]
2947
+ ];
2948
+ var FlowTraceNodeInputExecutionChain = [1, n0, _FTNIEC,
2949
+ 8, [() => FlowTraceNodeInputExecutionChainItem$,
2950
+ 0]
2951
+ ];
2952
+ var FlowTraceNodeInputFields = [1, n0, _FTNIFl,
2953
+ 0, [() => FlowTraceNodeInputField$,
2954
+ 0]
2955
+ ];
2956
+ var FlowTraceNodeOutputFields = [1, n0, _FTNOFl,
2957
+ 0, [() => FlowTraceNodeOutputField$,
2958
+ 0]
2959
+ ];
2960
+ var FlowTraceNodeOutputNextList = [1, n0, _FTNONL,
2961
+ 0, [() => FlowTraceNodeOutputNext$,
2962
+ 0]
2963
+ ];
2964
+ var FunctionParameters = [1, n0, _FPun,
2965
+ 0, () => FunctionParameter$
2966
+ ];
2967
+ var Functions = [1, n0, _Fu,
2968
+ 0, [() => FunctionDefinition$,
2969
+ 0]
2970
+ ];
2971
+ var GeneratedQueries = [1, n0, _GQe,
2972
+ 0, [() => GeneratedQuery$,
2973
+ 0]
2974
+ ];
2975
+ var GuardrailAssessmentList = [1, n0, _GAL,
2976
+ 0, [() => GuardrailAssessment$,
2977
+ 0]
2978
+ ];
2979
+ var GuardrailContentFilterList = [1, n0, _GCFL,
2980
+ 8, [() => GuardrailContentFilter$,
2981
+ 0]
2982
+ ];
2983
+ var GuardrailCustomWordList = [1, n0, _GCWL,
2984
+ 8, [() => GuardrailCustomWord$,
2985
+ 0]
2986
+ ];
2987
+ var GuardrailManagedWordList = [1, n0, _GMWL,
2988
+ 8, [() => GuardrailManagedWord$,
2989
+ 0]
2990
+ ];
2991
+ var GuardrailPiiEntityFilterList = [1, n0, _GPEFL,
2992
+ 8, [() => GuardrailPiiEntityFilter$,
2993
+ 0]
2994
+ ];
2995
+ var GuardrailRegexFilterList = [1, n0, _GRFL,
2996
+ 8, [() => GuardrailRegexFilter$,
2997
+ 0]
2998
+ ];
2999
+ var GuardrailTopicList = [1, n0, _GTL,
3000
+ 8, [() => GuardrailTopic$,
3001
+ 0]
3002
+ ];
3003
+ var ImageInputs = [1, n0, _IIm,
3004
+ 0, () => ImageInput$
3005
+ ];
3006
+ var InputFiles = [1, n0, _IFn,
3007
+ 0, [() => InputFile$,
3008
+ 0]
3009
+ ];
3010
+ var InvocationInputs = [1, n0, _IInvo,
3011
+ 0, [() => InvocationInputMember$,
3012
+ 0]
3013
+ ];
3014
+ var InvocationStepSummaries = [1, n0, _ISSnv,
3015
+ 0, () => InvocationStepSummary$
3016
+ ];
3017
+ var InvocationSummaries = [1, n0, _ISnv,
3018
+ 0, () => InvocationSummary$
3019
+ ];
3020
+ var KnowledgeBaseConfigurations = [1, n0, _KBCn,
3021
+ 0, [() => KnowledgeBaseConfiguration$,
3022
+ 0]
3023
+ ];
3024
+ var KnowledgeBaseRetrievalResults = [1, n0, _KBRRn,
3025
+ 8, [() => KnowledgeBaseRetrievalResult$,
3026
+ 0]
3027
+ ];
3028
+ var KnowledgeBases = [1, n0, _KBn,
3029
+ 0, [() => KnowledgeBase$,
3030
+ 0]
3031
+ ];
3032
+ var Memories = [1, n0, _Mem,
3033
+ 0, () => Memory$
3034
+ ];
3035
+ var Messages = [1, n0, _Mes,
3036
+ 0, [() => Message$,
3037
+ 0]
3038
+ ];
3039
+ var MetadataAttributeSchemaList = [1, n0, _MASL,
3040
+ 0, [() => MetadataAttributeSchema$,
3041
+ 0]
3042
+ ];
3043
+ var NodeInputExecutionChain = [1, n0, _NIEC,
3044
+ 0, () => NodeInputExecutionChainItem$
3045
+ ];
3046
+ var NodeInputFields = [1, n0, _NIFo,
3047
+ 0, [() => NodeInputField$,
3048
+ 0]
3049
+ ];
3050
+ var NodeOutputFields = [1, n0, _NOFo,
3051
+ 0, [() => NodeOutputField$,
3052
+ 0]
3053
+ ];
3054
+ var NodeOutputNextList = [1, n0, _NONL,
3055
+ 0, [() => NodeOutputNext$,
3056
+ 0]
3057
+ ];
3058
+ var OutputFiles = [1, n0, _OFu,
3059
+ 0, [() => OutputFile$,
3060
+ 0]
3061
+ ];
3062
+ var ParameterList = [1, n0, _PL,
3063
+ 0, () => Parameter$
3064
+ ];
3065
+ var _Parameters = [1, n0, _Par,
3066
+ 0, () => Parameter$
3067
+ ];
3068
+ var PromptConfigurations = [1, n0, _PCro,
3069
+ 0, [() => PromptConfiguration$,
3070
+ 0]
3071
+ ];
3072
+ var RerankQueriesList = [1, n0, _RQL,
3073
+ 8, [() => RerankQuery$,
3074
+ 0]
3075
+ ];
3076
+ var RerankResultsList = [1, n0, _RRLe,
3077
+ 0, [() => RerankResult$,
3078
+ 0]
3079
+ ];
3080
+ var RerankSourcesList = [1, n0, _RSL,
3081
+ 8, [() => RerankSource$,
3082
+ 0]
3083
+ ];
3084
+ var RetrievalFilterList = [1, n0, _RFL,
3085
+ 0, [() => RetrievalFilter$,
3086
+ 0]
3087
+ ];
3088
+ var RetrievalResultContentRow = [1, n0, _RRCR,
3089
+ 8, [() => RetrievalResultContentColumn$,
3090
+ 0]
3091
+ ];
3092
+ var RetrievedReferences = [1, n0, _RRetrie,
3093
+ 0, [() => RetrievedReference$,
3094
+ 0]
3095
+ ];
3096
+ var ReturnControlInvocationResults = [1, n0, _RCIR,
3097
+ 0, [() => InvocationResultMember$,
3098
+ 0]
3099
+ ];
3100
+ var SatisfiedConditions = [1, n0, _SCa,
3101
+ 0, [() => SatisfiedCondition$,
3102
+ 0]
3103
+ ];
3104
+ var SessionSummaries = [1, n0, _SSes,
3105
+ 0, () => SessionSummary$
3106
+ ];
3107
+ var ApiContentMap = [2, n0, _ACM,
3108
+ 0, 0, () => PropertyParameters$
3109
+ ];
3110
+ var ContentMap = [2, n0, _CM,
3111
+ 0, 0, () => _Parameters
3112
+ ];
3113
+ var ParameterMap = [2, n0, _PM,
3114
+ 0, 0, () => ParameterDetail$
3115
+ ];
3116
+ var ResponseBody = [2, n0, _RBe,
3117
+ 0, 0, () => ContentBody$
3118
+ ];
3119
+ var RetrievalResultMetadata = [2, n0, _RRM,
3120
+ 8, 0, 15
3121
+ ];
3122
+ var ActionGroupExecutor$ = [4, n0, _AGE,
3123
+ 0,
3124
+ [_lam, _cCu],
3125
+ [0, 0]
3126
+ ];
3127
+ var AgenticRetrieveStreamResponseOutput$ = [4, n0, _ARSRO,
3128
+ { [_str]: 1 },
3129
+ [_resu, _tEr, _rE, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE],
3130
+ [() => AgenticRetrieveResultEvent$, [() => AgenticRetrieveTraceEvent$, 0], () => AgenticRetrieveResponseEvent$, [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => DependencyFailedException$, 0], [() => BadGatewayException$, 0]]
3131
+ ];
3132
+ var AgenticRetrieveWarning$ = [4, n0, _ARWg,
3133
+ 0,
3134
+ [_m, _g],
3135
+ [() => AgenticRetrieveWarningMessage$, () => AgenticRetrieveGuardrailWarning$]
3136
+ ];
3137
+ var APISchema$ = [4, n0, _APIS,
3138
+ 0,
3139
+ [_s_, _pa],
3140
+ [() => S3Identifier$, [() => Payload, 0]]
3141
+ ];
3142
+ var BedrockSessionContentBlock$ = [4, n0, _BSCBe,
3143
+ 8,
3144
+ [_t, _ima],
3145
+ [0, () => ImageBlock$]
3146
+ ];
3147
+ var Caller$ = [4, n0, _Ca,
3148
+ 0,
3149
+ [_aAA],
3150
+ [0]
3151
+ ];
3152
+ var ContentBlock$ = [4, n0, _CBon,
3153
+ 8,
3154
+ [_t],
3155
+ [0]
3156
+ ];
3157
+ var FlowExecutionContent$ = [4, n0, _FEC,
3158
+ 8,
3159
+ [_do],
3160
+ [15]
3161
+ ];
3162
+ var FlowExecutionEvent$ = [4, n0, _FEElow,
3163
+ 0,
3164
+ [_fIE, _fOE, _nIE, _nOE, _cRE, _nFE, _fFE, _nAE, _nDE],
3165
+ [[() => FlowExecutionInputEvent$, 0], [() => FlowExecutionOutputEvent$, 0], [() => NodeInputEvent$, 0], [() => NodeOutputEvent$, 0], [() => ConditionResultEvent$, 0], [() => NodeFailureEvent$, 0], [() => FlowFailureEvent$, 0], [() => NodeActionEvent$, 0], [() => NodeDependencyEvent$, 0]]
3166
+ ];
3167
+ var FlowInputContent$ = [4, n0, _FIC,
3168
+ 8,
3169
+ [_do],
3170
+ [15]
3171
+ ];
3172
+ var FlowMultiTurnInputContent$ = [4, n0, _FMTIC,
3173
+ 0,
3174
+ [_do],
3175
+ [15]
3176
+ ];
3177
+ var FlowOutputContent$ = [4, n0, _FOC,
3178
+ 0,
3179
+ [_do],
3180
+ [15]
3181
+ ];
3182
+ var FlowResponseStream$ = [4, n0, _FRSl,
3183
+ { [_str]: 1 },
3184
+ [_fOE, _fCE, _fTE, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE, _fMTIRE],
3185
+ [[() => FlowOutputEvent$, 0], [() => FlowCompletionEvent$, 0], [() => FlowTraceEvent$, 0], [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => DependencyFailedException$, 0], [() => BadGatewayException$, 0], [() => FlowMultiTurnInputRequestEvent$, 0]]
3186
+ ];
3187
+ var FlowTrace$ = [4, n0, _FTl,
3188
+ 8,
3189
+ [_nIT, _nOT, _cNRT, _nAT, _nDT],
3190
+ [[() => FlowTraceNodeInputEvent$, 0], [() => FlowTraceNodeOutputEvent$, 0], [() => FlowTraceConditionNodeResultEvent$, 0], [() => FlowTraceNodeActionEvent$, 0], [() => FlowTraceDependencyEvent$, 0]]
3191
+ ];
3192
+ var FlowTraceNodeInputContent$ = [4, n0, _FTNIC,
3193
+ 8,
3194
+ [_do],
3195
+ [15]
3196
+ ];
3197
+ var FlowTraceNodeOutputContent$ = [4, n0, _FTNOC,
3198
+ 0,
3199
+ [_do],
3200
+ [15]
3201
+ ];
3202
+ var FunctionSchema$ = [4, n0, _FSu,
3203
+ 0,
3204
+ [_fu],
3205
+ [[() => Functions, 0]]
3206
+ ];
3207
+ var ImageInputSource$ = [4, n0, _IIS,
3208
+ 0,
3209
+ [_by],
3210
+ [21]
3211
+ ];
3212
+ var ImageSource$ = [4, n0, _ISm,
3213
+ 0,
3214
+ [_by, _sL],
3215
+ [21, () => S3Location$]
3216
+ ];
3217
+ var InlineAgentResponseStream$ = [4, n0, _IARS,
3218
+ { [_str]: 1 },
3219
+ [_ch, _tra, _rCetu, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE, _fi],
3220
+ [[() => InlineAgentPayloadPart$, 0], [() => InlineAgentTracePart$, 0], [() => InlineAgentReturnControlPayload$, 0], [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => DependencyFailedException$, 0], [() => BadGatewayException$, 0], [() => InlineAgentFilePart$, 0]]
3221
+ ];
3222
+ var InputPrompt$ = [4, n0, _IP,
3223
+ 0,
3224
+ [_tPe],
3225
+ [[() => TextPrompt$, 0]]
3226
+ ];
3227
+ var InvocationInputMember$ = [4, n0, _IIM,
3228
+ 0,
3229
+ [_aII, _fII],
3230
+ [[() => ApiInvocationInput$, 0], [() => FunctionInvocationInput$, 0]]
3231
+ ];
3232
+ var InvocationResultMember$ = [4, n0, _IRM,
3233
+ 0,
3234
+ [_aR, _fRu],
3235
+ [[() => ApiResult$, 0], () => FunctionResult$]
3236
+ ];
3237
+ var InvocationStepPayload$ = [4, n0, _ISP,
3238
+ 0,
3239
+ [_cB],
3240
+ [[() => BedrockSessionContentBlocks, 0]]
3241
+ ];
3242
+ var Memory$ = [4, n0, _Memo,
3243
+ 0,
3244
+ [_sSess],
3245
+ [() => MemorySessionSummary$]
3246
+ ];
3247
+ var NodeExecutionContent$ = [4, n0, _NEC,
3248
+ 8,
3249
+ [_do],
3250
+ [15]
3251
+ ];
3252
+ var NodeTraceElements$ = [4, n0, _NTE,
3253
+ 8,
3254
+ [_aT],
3255
+ [[() => AgentTraces, 0]]
3256
+ ];
3257
+ var OptimizedPrompt$ = [4, n0, _OP,
3258
+ 0,
3259
+ [_tPe],
3260
+ [[() => TextPrompt$, 0]]
3261
+ ];
3262
+ var OptimizedPromptStream$ = [4, n0, _OPS,
3263
+ { [_str]: 1 },
3264
+ [_oPE, _aPE, _iSE, _tEh, _vE, _dFE, _aDE, _bGE],
3265
+ [[() => OptimizedPromptEvent$, 0], [() => AnalyzePromptEvent$, 0], [() => InternalServerException$, 0], [() => ThrottlingException$, 0], [() => ValidationException$, 0], [() => DependencyFailedException$, 0], [() => AccessDeniedException$, 0], [() => BadGatewayException$, 0]]
3266
+ ];
3267
+ var OrchestrationExecutor$ = [4, n0, _OE,
3268
+ 0,
3269
+ [_lam],
3270
+ [0]
3271
+ ];
3272
+ var OrchestrationTrace$ = [4, n0, _OT,
3273
+ 8,
3274
+ [_ra, _iInvo, _ob, _mII, _mIO],
3275
+ [[() => Rationale$, 0], [() => InvocationInput$, 0], [() => Observation$, 0], [() => ModelInvocationInput$, 0], [() => OrchestrationModelInvocationOutput$, 0]]
3276
+ ];
3277
+ var PostProcessingTrace$ = [4, n0, _PPT,
3278
+ 8,
3279
+ [_mII, _mIO],
3280
+ [[() => ModelInvocationInput$, 0], [() => PostProcessingModelInvocationOutput$, 0]]
3281
+ ];
3282
+ var PreProcessingTrace$ = [4, n0, _PPTr,
3283
+ 8,
3284
+ [_mII, _mIO],
3285
+ [[() => ModelInvocationInput$, 0], [() => PreProcessingModelInvocationOutput$, 0]]
3286
+ ];
3287
+ var ReasoningContentBlock$ = [4, n0, _RCB,
3288
+ 8,
3289
+ [_rTe, _rCed],
3290
+ [[() => ReasoningTextBlock$, 0], 21]
3291
+ ];
3292
+ var RerankingMetadataSelectiveModeConfiguration$ = [4, n0, _RMSMC,
3293
+ 0,
3294
+ [_fTI, _fTEi],
3295
+ [[() => FieldsForReranking, 0], [() => FieldsForReranking, 0]]
3296
+ ];
3297
+ var ResponseStream$ = [4, n0, _RSes,
3298
+ { [_str]: 1 },
3299
+ [_ch, _tra, _rCetu, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE, _mNRE, _fi],
3300
+ [[() => PayloadPart$, 0], [() => TracePart$, 0], [() => ReturnControlPayload$, 0], [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => DependencyFailedException$, 0], [() => BadGatewayException$, 0], [() => ModelNotReadyException$, 0], [() => FilePart$, 0]]
3301
+ ];
3302
+ var RetrievalFilter$ = [4, n0, _RF,
3303
+ 8,
3304
+ [_eq, _nE, _gT, _gTOE, _lT, _lTOE, _in_, _nI, _sW, _lC, _sCtr, _aA, _oAr],
3305
+ [() => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, () => FilterAttribute$, [() => RetrievalFilterList, 0], [() => RetrievalFilterList, 0]]
3306
+ ];
3307
+ var RetrieveAndGenerateStreamResponseOutput$ = [4, n0, _RAGSRO,
3308
+ { [_str]: 1 },
3309
+ [_o, _cit, _g, _iSE, _vE, _rNFE, _sQEE, _tEh, _aDE, _cE, _dFE, _bGE],
3310
+ [[() => RetrieveAndGenerateOutputEvent$, 0], [() => CitationEvent$, 0], () => GuardrailEvent$, [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => DependencyFailedException$, 0], [() => BadGatewayException$, 0]]
3311
+ ];
3312
+ var RetrieverConfiguration$ = [4, n0, _RCet,
3313
+ 0,
3314
+ [_kBn],
3315
+ [[() => KnowledgeBaseRetrieverConfiguration$, 0]]
3316
+ ];
3317
+ var RoutingClassifierTrace$ = [4, n0, _RCT,
3318
+ 8,
3319
+ [_iInvo, _ob, _mII, _mIO],
3320
+ [[() => InvocationInput$, 0], [() => Observation$, 0], [() => ModelInvocationInput$, 0], [() => RoutingClassifierModelInvocationOutput$, 0]]
3321
+ ];
3322
+ var Trace$ = [4, n0, _T,
3323
+ 8,
3324
+ [_gTu, _pPT, _oTr, _pPTo, _rCT, _fT, _cOT],
3325
+ [[() => GuardrailTrace$, 0], [() => PreProcessingTrace$, 0], [() => OrchestrationTrace$, 0], [() => PostProcessingTrace$, 0], [() => RoutingClassifierTrace$, 0], [() => FailureTrace$, 0], [() => CustomOrchestrationTrace$, 0]]
3326
+ ];
3327
+ var TraceElements$ = [4, n0, _TEr,
3328
+ 8,
3329
+ [_aT],
3330
+ [[() => AgentTraces, 0]]
3331
+ ];
3332
+ var AgenticRetrieveStream$ = [9, n0, _ARS,
3333
+ { [_h]: ["POST", "/agenticRetrieveStream", 200] }, () => AgenticRetrieveStreamRequest$, () => AgenticRetrieveStreamResponse$
3334
+ ];
3335
+ var CreateInvocation$ = [9, n0, _CIr,
3336
+ { [_h]: ["PUT", "/sessions/{sessionIdentifier}/invocations/", 201] }, () => CreateInvocationRequest$, () => CreateInvocationResponse$
3337
+ ];
3338
+ var CreateSession$ = [9, n0, _CS,
3339
+ { [_h]: ["PUT", "/sessions/", 201] }, () => CreateSessionRequest$, () => CreateSessionResponse$
3340
+ ];
3341
+ var DeleteAgentMemory$ = [9, n0, _DAM,
3342
+ { [_h]: ["DELETE", "/agents/{agentId}/agentAliases/{agentAliasId}/memories", 202] }, () => DeleteAgentMemoryRequest$, () => DeleteAgentMemoryResponse$
3343
+ ];
3344
+ var DeleteSession$ = [9, n0, _DS,
3345
+ { [_h]: ["DELETE", "/sessions/{sessionIdentifier}/", 200] }, () => DeleteSessionRequest$, () => DeleteSessionResponse$
3346
+ ];
3347
+ var EndSession$ = [9, n0, _ESn,
3348
+ { [_h]: ["PATCH", "/sessions/{sessionIdentifier}", 200] }, () => EndSessionRequest$, () => EndSessionResponse$
3349
+ ];
3350
+ var GenerateQuery$ = [9, n0, _GQen,
3351
+ { [_h]: ["POST", "/generateQuery", 200] }, () => GenerateQueryRequest$, () => GenerateQueryResponse$
3352
+ ];
3353
+ var GetAgentMemory$ = [9, n0, _GAM,
3354
+ { [_h]: ["GET", "/agents/{agentId}/agentAliases/{agentAliasId}/memories", 200] }, () => GetAgentMemoryRequest$, () => GetAgentMemoryResponse$
3355
+ ];
3356
+ var GetDocumentContent$ = [9, n0, _GDC,
3357
+ { [_h]: ["POST", "/knowledgebases/{knowledgeBaseId}/datasources/{dataSourceId}/documents/{documentId}/content", 200] }, () => GetDocumentContentRequest$, () => GetDocumentContentResponse$
3358
+ ];
3359
+ var GetExecutionFlowSnapshot$ = [9, n0, _GEFS,
3360
+ { [_h]: ["GET", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}/flowsnapshot", 200] }, () => GetExecutionFlowSnapshotRequest$, () => GetExecutionFlowSnapshotResponse$
3361
+ ];
3362
+ var GetFlowExecution$ = [9, n0, _GFE,
3363
+ { [_h]: ["GET", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}", 200] }, () => GetFlowExecutionRequest$, () => GetFlowExecutionResponse$
3364
+ ];
3365
+ var GetInvocationStep$ = [9, n0, _GIS,
3366
+ { [_h]: ["POST", "/sessions/{sessionIdentifier}/invocationSteps/{invocationStepId}", 200] }, () => GetInvocationStepRequest$, () => GetInvocationStepResponse$
3367
+ ];
3368
+ var GetSession$ = [9, n0, _GS,
3369
+ { [_h]: ["GET", "/sessions/{sessionIdentifier}/", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
3370
+ ];
3371
+ var InvokeAgent$ = [9, n0, _IA,
3372
+ { [_h]: ["POST", "/agents/{agentId}/agentAliases/{agentAliasId}/sessions/{sessionId}/text", 200] }, () => InvokeAgentRequest$, () => InvokeAgentResponse$
3373
+ ];
3374
+ var InvokeFlow$ = [9, n0, _IFnv,
3375
+ { [_h]: ["POST", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}", 200] }, () => InvokeFlowRequest$, () => InvokeFlowResponse$
3376
+ ];
3377
+ var InvokeInlineAgent$ = [9, n0, _IIA,
3378
+ { [_h]: ["POST", "/agents/{sessionId}", 200] }, () => InvokeInlineAgentRequest$, () => InvokeInlineAgentResponse$
3379
+ ];
3380
+ var ListFlowExecutionEvents$ = [9, n0, _LFEE,
3381
+ { [_h]: ["GET", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}/events", 200] }, () => ListFlowExecutionEventsRequest$, () => ListFlowExecutionEventsResponse$
3382
+ ];
3383
+ var ListFlowExecutions$ = [9, n0, _LFE,
3384
+ { [_h]: ["GET", "/flows/{flowIdentifier}/executions", 200] }, () => ListFlowExecutionsRequest$, () => ListFlowExecutionsResponse$
3385
+ ];
3386
+ var ListInvocations$ = [9, n0, _LI,
3387
+ { [_h]: ["POST", "/sessions/{sessionIdentifier}/invocations/", 200] }, () => ListInvocationsRequest$, () => ListInvocationsResponse$
3388
+ ];
3389
+ var ListInvocationSteps$ = [9, n0, _LIS,
3390
+ { [_h]: ["POST", "/sessions/{sessionIdentifier}/invocationSteps/", 200] }, () => ListInvocationStepsRequest$, () => ListInvocationStepsResponse$
3391
+ ];
3392
+ var ListSessions$ = [9, n0, _LS,
3393
+ { [_h]: ["POST", "/sessions/", 200] }, () => ListSessionsRequest$, () => ListSessionsResponse$
3394
+ ];
3395
+ var ListTagsForResource$ = [9, n0, _LTFR,
3396
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
3397
+ ];
3398
+ var OptimizePrompt$ = [9, n0, _OPp,
3399
+ { [_h]: ["POST", "/optimize-prompt", 200] }, () => OptimizePromptRequest$, () => OptimizePromptResponse$
3400
+ ];
3401
+ var PutInvocationStep$ = [9, n0, _PIS,
3402
+ { [_h]: ["PUT", "/sessions/{sessionIdentifier}/invocationSteps/", 201] }, () => PutInvocationStepRequest$, () => PutInvocationStepResponse$
3403
+ ];
3404
+ var Rerank$ = [9, n0, _Re,
3405
+ { [_h]: ["POST", "/rerank", 200] }, () => RerankRequest$, () => RerankResponse$
3406
+ ];
3407
+ var Retrieve$ = [9, n0, _Ret,
3408
+ { [_h]: ["POST", "/knowledgebases/{knowledgeBaseId}/retrieve", 200] }, () => RetrieveRequest$, () => RetrieveResponse$
3409
+ ];
3410
+ var RetrieveAndGenerate$ = [9, n0, _RAG,
3411
+ { [_h]: ["POST", "/retrieveAndGenerate", 200] }, () => RetrieveAndGenerateRequest$, () => RetrieveAndGenerateResponse$
3412
+ ];
3413
+ var RetrieveAndGenerateStream$ = [9, n0, _RAGS,
3414
+ { [_h]: ["POST", "/retrieveAndGenerateStream", 200] }, () => RetrieveAndGenerateStreamRequest$, () => RetrieveAndGenerateStreamResponse$
3415
+ ];
3416
+ var StartFlowExecution$ = [9, n0, _SFE,
3417
+ { [_h]: ["POST", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions", 200] }, () => StartFlowExecutionRequest$, () => StartFlowExecutionResponse$
3418
+ ];
3419
+ var StopFlowExecution$ = [9, n0, _SFEt,
3420
+ { [_h]: ["POST", "/flows/{flowIdentifier}/aliases/{flowAliasIdentifier}/executions/{executionIdentifier}/stop", 200] }, () => StopFlowExecutionRequest$, () => StopFlowExecutionResponse$
3421
+ ];
3422
+ var TagResource$ = [9, n0, _TR,
3423
+ { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
3424
+ ];
3425
+ var UntagResource$ = [9, n0, _UR,
3426
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
3427
+ ];
3428
+ var UpdateSession$ = [9, n0, _US,
3429
+ { [_h]: ["PUT", "/sessions/{sessionIdentifier}/", 200] }, () => UpdateSessionRequest$, () => UpdateSessionResponse$
3430
+ ];
3431
+
3432
+ const getRuntimeConfig$1 = (config) => {
3433
+ return {
3434
+ apiVersion: "2023-07-26",
3435
+ base64Decoder: config?.base64Decoder ?? fromBase64,
3436
+ base64Encoder: config?.base64Encoder ?? toBase64,
3437
+ disableHostPrefix: config?.disableHostPrefix ?? false,
3438
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
3439
+ extensions: config?.extensions ?? [],
3440
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBedrockAgentRuntimeHttpAuthSchemeProvider,
3441
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
3442
+ {
3443
+ schemeId: "aws.auth#sigv4",
3444
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
3445
+ signer: new AwsSdkSigV4Signer(),
3446
+ },
3447
+ ],
3448
+ logger: config?.logger ?? new NoOpLogger(),
3449
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
3450
+ protocolSettings: config?.protocolSettings ?? {
3451
+ defaultNamespace: "com.amazonaws.bedrockagentruntime",
3452
+ errorTypeRegistries,
3453
+ version: "2023-07-26",
3454
+ serviceTarget: "AmazonBedrockAgentRunTimeService",
3455
+ },
3456
+ serviceId: config?.serviceId ?? "Bedrock Agent Runtime",
3457
+ urlParser: config?.urlParser ?? parseUrl,
3458
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
3459
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
3460
+ };
3461
+ };
3462
+
3463
+ const getRuntimeConfig = (config) => {
3464
+ emitWarningIfUnsupportedVersion(process.version);
3465
+ const defaultsMode = resolveDefaultsModeConfig(config);
3466
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
3467
+ const clientSharedValues = getRuntimeConfig$1(config);
3468
+ emitWarningIfUnsupportedVersion$1(process.version);
3469
+ const loaderConfig = {
3470
+ profile: config?.profile,
3471
+ logger: clientSharedValues.logger,
3472
+ signingName: "bedrock",
3473
+ };
3474
+ return {
3475
+ ...clientSharedValues,
3476
+ ...config,
3477
+ runtime: "node",
3478
+ defaultsMode,
3479
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
3480
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
3481
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
3482
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
3483
+ eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
3484
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
3485
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
3486
+ requestHandler: NodeHttp2Handler.create(config?.requestHandler ?? (async () => ({
3487
+ ...await defaultConfigProvider(),
3488
+ disableConcurrentStreams: true
3489
+ }))),
3490
+ retryMode: config?.retryMode ??
3491
+ loadConfig({
3492
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
3493
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
3494
+ }, config),
3495
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
3496
+ streamCollector: config?.streamCollector ?? streamCollector,
3497
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
3498
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
3499
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
3500
+ };
3501
+ };
3502
+
35
3503
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
36
3504
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
37
3505
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -984,118 +4452,521 @@ const ImageFormat = {
984
4452
  WEBP: "webp",
985
4453
  };
986
4454
 
4455
+ exports.APISchema$ = APISchema$;
4456
+ exports.AccessDeniedException = AccessDeniedException;
4457
+ exports.AccessDeniedException$ = AccessDeniedException$;
4458
+ exports.ActionGroupExecutor$ = ActionGroupExecutor$;
4459
+ exports.ActionGroupInvocationInput$ = ActionGroupInvocationInput$;
4460
+ exports.ActionGroupInvocationOutput$ = ActionGroupInvocationOutput$;
987
4461
  exports.ActionGroupSignature = ActionGroupSignature;
988
4462
  exports.ActionInvocationType = ActionInvocationType;
4463
+ exports.AgentActionGroup$ = AgentActionGroup$;
989
4464
  exports.AgentCollaboration = AgentCollaboration;
4465
+ exports.AgentCollaboratorInputPayload$ = AgentCollaboratorInputPayload$;
4466
+ exports.AgentCollaboratorInvocationInput$ = AgentCollaboratorInvocationInput$;
4467
+ exports.AgentCollaboratorInvocationOutput$ = AgentCollaboratorInvocationOutput$;
4468
+ exports.AgentCollaboratorOutputPayload$ = AgentCollaboratorOutputPayload$;
4469
+ exports.AgenticRetrieveAction$ = AgenticRetrieveAction$;
4470
+ exports.AgenticRetrieveActionDetails$ = AgenticRetrieveActionDetails$;
4471
+ exports.AgenticRetrieveBedrockGuardrailConfiguration$ = AgenticRetrieveBedrockGuardrailConfiguration$;
4472
+ exports.AgenticRetrieveBedrockRerankingConfiguration$ = AgenticRetrieveBedrockRerankingConfiguration$;
4473
+ exports.AgenticRetrieveBedrockRerankingModelConfiguration$ = AgenticRetrieveBedrockRerankingModelConfiguration$;
4474
+ exports.AgenticRetrieveCitation$ = AgenticRetrieveCitation$;
4475
+ exports.AgenticRetrieveCitationReference$ = AgenticRetrieveCitationReference$;
4476
+ exports.AgenticRetrieveConfiguration$ = AgenticRetrieveConfiguration$;
4477
+ exports.AgenticRetrieveFailure$ = AgenticRetrieveFailure$;
4478
+ exports.AgenticRetrieveFullDocExpansionDetails$ = AgenticRetrieveFullDocExpansionDetails$;
4479
+ exports.AgenticRetrieveGeneratedResponse$ = AgenticRetrieveGeneratedResponse$;
4480
+ exports.AgenticRetrieveGuardrailWarning$ = AgenticRetrieveGuardrailWarning$;
4481
+ exports.AgenticRetrieveMessage$ = AgenticRetrieveMessage$;
4482
+ exports.AgenticRetrieveMessageContent$ = AgenticRetrieveMessageContent$;
4483
+ exports.AgenticRetrievePolicyConfiguration$ = AgenticRetrievePolicyConfiguration$;
4484
+ exports.AgenticRetrieveRerankingConfiguration$ = AgenticRetrieveRerankingConfiguration$;
990
4485
  exports.AgenticRetrieveRerankingConfigurationType = AgenticRetrieveRerankingConfigurationType;
991
4486
  exports.AgenticRetrieveRerankingModelType = AgenticRetrieveRerankingModelType;
4487
+ exports.AgenticRetrieveResponseEvent$ = AgenticRetrieveResponseEvent$;
4488
+ exports.AgenticRetrieveResultEvent$ = AgenticRetrieveResultEvent$;
4489
+ exports.AgenticRetrieveResultItem$ = AgenticRetrieveResultItem$;
4490
+ exports.AgenticRetrieveSourceMetadata$ = AgenticRetrieveSourceMetadata$;
4491
+ exports.AgenticRetrieveSourceRetriever$ = AgenticRetrieveSourceRetriever$;
992
4492
  exports.AgenticRetrieveStatus = AgenticRetrieveStatus;
993
4493
  exports.AgenticRetrieveStep = AgenticRetrieveStep;
4494
+ exports.AgenticRetrieveStream$ = AgenticRetrieveStream$;
994
4495
  exports.AgenticRetrieveStreamCommand = AgenticRetrieveStreamCommand;
4496
+ exports.AgenticRetrieveStreamRequest$ = AgenticRetrieveStreamRequest$;
4497
+ exports.AgenticRetrieveStreamResponse$ = AgenticRetrieveStreamResponse$;
4498
+ exports.AgenticRetrieveStreamResponseOutput$ = AgenticRetrieveStreamResponseOutput$;
4499
+ exports.AgenticRetrieveTraceEvent$ = AgenticRetrieveTraceEvent$;
4500
+ exports.AgenticRetrieveTraceEventAttributes$ = AgenticRetrieveTraceEventAttributes$;
4501
+ exports.AgenticRetrieveTraceResultItem$ = AgenticRetrieveTraceResultItem$;
995
4502
  exports.AgenticRetrieveType = AgenticRetrieveType;
4503
+ exports.AgenticRetrieveWarning$ = AgenticRetrieveWarning$;
4504
+ exports.AgenticRetrieveWarningMessage$ = AgenticRetrieveWarningMessage$;
4505
+ exports.AgenticRetriever$ = AgenticRetriever$;
4506
+ exports.AnalyzePromptEvent$ = AnalyzePromptEvent$;
4507
+ exports.ApiInvocationInput$ = ApiInvocationInput$;
4508
+ exports.ApiParameter$ = ApiParameter$;
4509
+ exports.ApiRequestBody$ = ApiRequestBody$;
4510
+ exports.ApiResult$ = ApiResult$;
996
4511
  exports.AttributeType = AttributeType;
4512
+ exports.Attribution$ = Attribution$;
4513
+ exports.AudioSegment$ = AudioSegment$;
4514
+ exports.BadGatewayException = BadGatewayException;
4515
+ exports.BadGatewayException$ = BadGatewayException$;
997
4516
  exports.BedrockAgentRuntime = BedrockAgentRuntime;
998
4517
  exports.BedrockAgentRuntimeClient = BedrockAgentRuntimeClient;
4518
+ exports.BedrockAgentRuntimeServiceException = BedrockAgentRuntimeServiceException;
4519
+ exports.BedrockAgentRuntimeServiceException$ = BedrockAgentRuntimeServiceException$;
4520
+ exports.BedrockFoundationModelConfiguration$ = BedrockFoundationModelConfiguration$;
4521
+ exports.BedrockFoundationModelModelConfiguration$ = BedrockFoundationModelModelConfiguration$;
4522
+ exports.BedrockModelConfigurations$ = BedrockModelConfigurations$;
4523
+ exports.BedrockRerankingConfiguration$ = BedrockRerankingConfiguration$;
4524
+ exports.BedrockRerankingModelConfiguration$ = BedrockRerankingModelConfiguration$;
4525
+ exports.BedrockSessionContentBlock$ = BedrockSessionContentBlock$;
4526
+ exports.ByteContentDoc$ = ByteContentDoc$;
4527
+ exports.ByteContentFile$ = ByteContentFile$;
4528
+ exports.Caller$ = Caller$;
4529
+ exports.Citation$ = Citation$;
4530
+ exports.CitationEvent$ = CitationEvent$;
4531
+ exports.CodeInterpreterInvocationInput$ = CodeInterpreterInvocationInput$;
4532
+ exports.CodeInterpreterInvocationOutput$ = CodeInterpreterInvocationOutput$;
4533
+ exports.Collaborator$ = Collaborator$;
4534
+ exports.CollaboratorConfiguration$ = CollaboratorConfiguration$;
4535
+ exports.ConditionResultEvent$ = ConditionResultEvent$;
999
4536
  exports.ConfirmationState = ConfirmationState;
4537
+ exports.ConflictException = ConflictException;
4538
+ exports.ConflictException$ = ConflictException$;
4539
+ exports.ContentBlock$ = ContentBlock$;
4540
+ exports.ContentBody$ = ContentBody$;
4541
+ exports.ConversationHistory$ = ConversationHistory$;
1000
4542
  exports.ConversationRole = ConversationRole;
4543
+ exports.CreateInvocation$ = CreateInvocation$;
1001
4544
  exports.CreateInvocationCommand = CreateInvocationCommand;
4545
+ exports.CreateInvocationRequest$ = CreateInvocationRequest$;
4546
+ exports.CreateInvocationResponse$ = CreateInvocationResponse$;
4547
+ exports.CreateSession$ = CreateSession$;
1002
4548
  exports.CreateSessionCommand = CreateSessionCommand;
4549
+ exports.CreateSessionRequest$ = CreateSessionRequest$;
4550
+ exports.CreateSessionResponse$ = CreateSessionResponse$;
1003
4551
  exports.CreationMode = CreationMode;
1004
4552
  exports.CustomControlMethod = CustomControlMethod;
4553
+ exports.CustomOrchestration$ = CustomOrchestration$;
4554
+ exports.CustomOrchestrationTrace$ = CustomOrchestrationTrace$;
4555
+ exports.CustomOrchestrationTraceEvent$ = CustomOrchestrationTraceEvent$;
4556
+ exports.DeleteAgentMemory$ = DeleteAgentMemory$;
1005
4557
  exports.DeleteAgentMemoryCommand = DeleteAgentMemoryCommand;
4558
+ exports.DeleteAgentMemoryRequest$ = DeleteAgentMemoryRequest$;
4559
+ exports.DeleteAgentMemoryResponse$ = DeleteAgentMemoryResponse$;
4560
+ exports.DeleteSession$ = DeleteSession$;
1006
4561
  exports.DeleteSessionCommand = DeleteSessionCommand;
4562
+ exports.DeleteSessionRequest$ = DeleteSessionRequest$;
4563
+ exports.DeleteSessionResponse$ = DeleteSessionResponse$;
4564
+ exports.DependencyFailedException = DependencyFailedException;
4565
+ exports.DependencyFailedException$ = DependencyFailedException$;
1007
4566
  exports.DocumentOutputFormat = DocumentOutputFormat;
4567
+ exports.EndSession$ = EndSession$;
1008
4568
  exports.EndSessionCommand = EndSessionCommand;
4569
+ exports.EndSessionRequest$ = EndSessionRequest$;
4570
+ exports.EndSessionResponse$ = EndSessionResponse$;
1009
4571
  exports.ExecutionType = ExecutionType;
4572
+ exports.ExternalSource$ = ExternalSource$;
1010
4573
  exports.ExternalSourceType = ExternalSourceType;
4574
+ exports.ExternalSourcesGenerationConfiguration$ = ExternalSourcesGenerationConfiguration$;
4575
+ exports.ExternalSourcesRetrieveAndGenerateConfiguration$ = ExternalSourcesRetrieveAndGenerateConfiguration$;
4576
+ exports.FailureTrace$ = FailureTrace$;
4577
+ exports.FieldForReranking$ = FieldForReranking$;
4578
+ exports.FilePart$ = FilePart$;
4579
+ exports.FileSource$ = FileSource$;
1011
4580
  exports.FileSourceType = FileSourceType;
1012
4581
  exports.FileUseCase = FileUseCase;
4582
+ exports.FilterAttribute$ = FilterAttribute$;
4583
+ exports.FinalResponse$ = FinalResponse$;
4584
+ exports.FlowCompletionEvent$ = FlowCompletionEvent$;
1013
4585
  exports.FlowCompletionReason = FlowCompletionReason;
1014
4586
  exports.FlowControlNodeType = FlowControlNodeType;
1015
4587
  exports.FlowErrorCode = FlowErrorCode;
4588
+ exports.FlowExecutionContent$ = FlowExecutionContent$;
4589
+ exports.FlowExecutionError$ = FlowExecutionError$;
1016
4590
  exports.FlowExecutionErrorType = FlowExecutionErrorType;
4591
+ exports.FlowExecutionEvent$ = FlowExecutionEvent$;
1017
4592
  exports.FlowExecutionEventType = FlowExecutionEventType;
4593
+ exports.FlowExecutionInputEvent$ = FlowExecutionInputEvent$;
4594
+ exports.FlowExecutionOutputEvent$ = FlowExecutionOutputEvent$;
1018
4595
  exports.FlowExecutionStatus = FlowExecutionStatus;
4596
+ exports.FlowExecutionSummary$ = FlowExecutionSummary$;
4597
+ exports.FlowFailureEvent$ = FlowFailureEvent$;
4598
+ exports.FlowInput$ = FlowInput$;
4599
+ exports.FlowInputContent$ = FlowInputContent$;
4600
+ exports.FlowInputField$ = FlowInputField$;
4601
+ exports.FlowMultiTurnInputContent$ = FlowMultiTurnInputContent$;
4602
+ exports.FlowMultiTurnInputRequestEvent$ = FlowMultiTurnInputRequestEvent$;
1019
4603
  exports.FlowNodeIODataType = FlowNodeIODataType;
1020
4604
  exports.FlowNodeInputCategory = FlowNodeInputCategory;
4605
+ exports.FlowOutputContent$ = FlowOutputContent$;
4606
+ exports.FlowOutputEvent$ = FlowOutputEvent$;
4607
+ exports.FlowOutputField$ = FlowOutputField$;
4608
+ exports.FlowResponseStream$ = FlowResponseStream$;
4609
+ exports.FlowTrace$ = FlowTrace$;
4610
+ exports.FlowTraceCondition$ = FlowTraceCondition$;
4611
+ exports.FlowTraceConditionNodeResultEvent$ = FlowTraceConditionNodeResultEvent$;
4612
+ exports.FlowTraceDependencyEvent$ = FlowTraceDependencyEvent$;
4613
+ exports.FlowTraceEvent$ = FlowTraceEvent$;
4614
+ exports.FlowTraceNodeActionEvent$ = FlowTraceNodeActionEvent$;
4615
+ exports.FlowTraceNodeInputContent$ = FlowTraceNodeInputContent$;
4616
+ exports.FlowTraceNodeInputEvent$ = FlowTraceNodeInputEvent$;
4617
+ exports.FlowTraceNodeInputExecutionChainItem$ = FlowTraceNodeInputExecutionChainItem$;
4618
+ exports.FlowTraceNodeInputField$ = FlowTraceNodeInputField$;
4619
+ exports.FlowTraceNodeInputSource$ = FlowTraceNodeInputSource$;
4620
+ exports.FlowTraceNodeOutputContent$ = FlowTraceNodeOutputContent$;
4621
+ exports.FlowTraceNodeOutputEvent$ = FlowTraceNodeOutputEvent$;
4622
+ exports.FlowTraceNodeOutputField$ = FlowTraceNodeOutputField$;
4623
+ exports.FlowTraceNodeOutputNext$ = FlowTraceNodeOutputNext$;
4624
+ exports.FoundationModelConfiguration$ = FoundationModelConfiguration$;
1021
4625
  exports.FoundationModelConfigurationType = FoundationModelConfigurationType;
1022
4626
  exports.FoundationModelType = FoundationModelType;
4627
+ exports.FunctionDefinition$ = FunctionDefinition$;
4628
+ exports.FunctionInvocationInput$ = FunctionInvocationInput$;
4629
+ exports.FunctionParameter$ = FunctionParameter$;
4630
+ exports.FunctionResult$ = FunctionResult$;
4631
+ exports.FunctionSchema$ = FunctionSchema$;
4632
+ exports.GenerateQuery$ = GenerateQuery$;
1023
4633
  exports.GenerateQueryCommand = GenerateQueryCommand;
4634
+ exports.GenerateQueryRequest$ = GenerateQueryRequest$;
4635
+ exports.GenerateQueryResponse$ = GenerateQueryResponse$;
4636
+ exports.GeneratedQuery$ = GeneratedQuery$;
1024
4637
  exports.GeneratedQueryType = GeneratedQueryType;
4638
+ exports.GeneratedResponsePart$ = GeneratedResponsePart$;
4639
+ exports.GenerationConfiguration$ = GenerationConfiguration$;
4640
+ exports.GetAgentMemory$ = GetAgentMemory$;
1025
4641
  exports.GetAgentMemoryCommand = GetAgentMemoryCommand;
4642
+ exports.GetAgentMemoryRequest$ = GetAgentMemoryRequest$;
4643
+ exports.GetAgentMemoryResponse$ = GetAgentMemoryResponse$;
4644
+ exports.GetDocumentContent$ = GetDocumentContent$;
1026
4645
  exports.GetDocumentContentCommand = GetDocumentContentCommand;
4646
+ exports.GetDocumentContentRequest$ = GetDocumentContentRequest$;
4647
+ exports.GetDocumentContentResponse$ = GetDocumentContentResponse$;
4648
+ exports.GetExecutionFlowSnapshot$ = GetExecutionFlowSnapshot$;
1027
4649
  exports.GetExecutionFlowSnapshotCommand = GetExecutionFlowSnapshotCommand;
4650
+ exports.GetExecutionFlowSnapshotRequest$ = GetExecutionFlowSnapshotRequest$;
4651
+ exports.GetExecutionFlowSnapshotResponse$ = GetExecutionFlowSnapshotResponse$;
4652
+ exports.GetFlowExecution$ = GetFlowExecution$;
1028
4653
  exports.GetFlowExecutionCommand = GetFlowExecutionCommand;
4654
+ exports.GetFlowExecutionRequest$ = GetFlowExecutionRequest$;
4655
+ exports.GetFlowExecutionResponse$ = GetFlowExecutionResponse$;
4656
+ exports.GetInvocationStep$ = GetInvocationStep$;
1029
4657
  exports.GetInvocationStepCommand = GetInvocationStepCommand;
4658
+ exports.GetInvocationStepRequest$ = GetInvocationStepRequest$;
4659
+ exports.GetInvocationStepResponse$ = GetInvocationStepResponse$;
4660
+ exports.GetSession$ = GetSession$;
1030
4661
  exports.GetSessionCommand = GetSessionCommand;
4662
+ exports.GetSessionRequest$ = GetSessionRequest$;
4663
+ exports.GetSessionResponse$ = GetSessionResponse$;
1031
4664
  exports.GuadrailAction = GuadrailAction;
1032
4665
  exports.GuardrailAction = GuardrailAction;
4666
+ exports.GuardrailAssessment$ = GuardrailAssessment$;
4667
+ exports.GuardrailConfiguration$ = GuardrailConfiguration$;
4668
+ exports.GuardrailConfigurationWithArn$ = GuardrailConfigurationWithArn$;
4669
+ exports.GuardrailContentFilter$ = GuardrailContentFilter$;
1033
4670
  exports.GuardrailContentFilterConfidence = GuardrailContentFilterConfidence;
1034
4671
  exports.GuardrailContentFilterType = GuardrailContentFilterType;
1035
4672
  exports.GuardrailContentPolicyAction = GuardrailContentPolicyAction;
4673
+ exports.GuardrailContentPolicyAssessment$ = GuardrailContentPolicyAssessment$;
4674
+ exports.GuardrailCustomWord$ = GuardrailCustomWord$;
4675
+ exports.GuardrailEvent$ = GuardrailEvent$;
4676
+ exports.GuardrailManagedWord$ = GuardrailManagedWord$;
1036
4677
  exports.GuardrailManagedWordType = GuardrailManagedWordType;
4678
+ exports.GuardrailPiiEntityFilter$ = GuardrailPiiEntityFilter$;
1037
4679
  exports.GuardrailPiiEntityType = GuardrailPiiEntityType;
4680
+ exports.GuardrailRegexFilter$ = GuardrailRegexFilter$;
1038
4681
  exports.GuardrailSensitiveInformationPolicyAction = GuardrailSensitiveInformationPolicyAction;
4682
+ exports.GuardrailSensitiveInformationPolicyAssessment$ = GuardrailSensitiveInformationPolicyAssessment$;
4683
+ exports.GuardrailTopic$ = GuardrailTopic$;
1039
4684
  exports.GuardrailTopicPolicyAction = GuardrailTopicPolicyAction;
4685
+ exports.GuardrailTopicPolicyAssessment$ = GuardrailTopicPolicyAssessment$;
1040
4686
  exports.GuardrailTopicType = GuardrailTopicType;
4687
+ exports.GuardrailTrace$ = GuardrailTrace$;
1041
4688
  exports.GuardrailWordPolicyAction = GuardrailWordPolicyAction;
4689
+ exports.GuardrailWordPolicyAssessment$ = GuardrailWordPolicyAssessment$;
4690
+ exports.ImageBlock$ = ImageBlock$;
1042
4691
  exports.ImageFormat = ImageFormat;
4692
+ exports.ImageInput$ = ImageInput$;
1043
4693
  exports.ImageInputFormat = ImageInputFormat;
4694
+ exports.ImageInputSource$ = ImageInputSource$;
4695
+ exports.ImageSource$ = ImageSource$;
4696
+ exports.ImplicitFilterConfiguration$ = ImplicitFilterConfiguration$;
4697
+ exports.InferenceConfig$ = InferenceConfig$;
4698
+ exports.InferenceConfiguration$ = InferenceConfiguration$;
4699
+ exports.InlineAgentFilePart$ = InlineAgentFilePart$;
4700
+ exports.InlineAgentPayloadPart$ = InlineAgentPayloadPart$;
4701
+ exports.InlineAgentResponseStream$ = InlineAgentResponseStream$;
4702
+ exports.InlineAgentReturnControlPayload$ = InlineAgentReturnControlPayload$;
4703
+ exports.InlineAgentTracePart$ = InlineAgentTracePart$;
4704
+ exports.InlineBedrockModelConfigurations$ = InlineBedrockModelConfigurations$;
4705
+ exports.InlineSessionState$ = InlineSessionState$;
4706
+ exports.InputFile$ = InputFile$;
4707
+ exports.InputImage$ = InputImage$;
1044
4708
  exports.InputImageFormat = InputImageFormat;
4709
+ exports.InputPrompt$ = InputPrompt$;
1045
4710
  exports.InputQueryType = InputQueryType;
4711
+ exports.InternalServerException = InternalServerException;
4712
+ exports.InternalServerException$ = InternalServerException$;
4713
+ exports.InvocationInput$ = InvocationInput$;
4714
+ exports.InvocationInputMember$ = InvocationInputMember$;
4715
+ exports.InvocationResultMember$ = InvocationResultMember$;
4716
+ exports.InvocationStep$ = InvocationStep$;
4717
+ exports.InvocationStepPayload$ = InvocationStepPayload$;
4718
+ exports.InvocationStepSummary$ = InvocationStepSummary$;
4719
+ exports.InvocationSummary$ = InvocationSummary$;
1046
4720
  exports.InvocationType = InvocationType;
4721
+ exports.InvokeAgent$ = InvokeAgent$;
1047
4722
  exports.InvokeAgentCommand = InvokeAgentCommand;
4723
+ exports.InvokeAgentRequest$ = InvokeAgentRequest$;
4724
+ exports.InvokeAgentResponse$ = InvokeAgentResponse$;
4725
+ exports.InvokeFlow$ = InvokeFlow$;
1048
4726
  exports.InvokeFlowCommand = InvokeFlowCommand;
4727
+ exports.InvokeFlowRequest$ = InvokeFlowRequest$;
4728
+ exports.InvokeFlowResponse$ = InvokeFlowResponse$;
4729
+ exports.InvokeInlineAgent$ = InvokeInlineAgent$;
1049
4730
  exports.InvokeInlineAgentCommand = InvokeInlineAgentCommand;
4731
+ exports.InvokeInlineAgentRequest$ = InvokeInlineAgentRequest$;
4732
+ exports.InvokeInlineAgentResponse$ = InvokeInlineAgentResponse$;
4733
+ exports.KnowledgeBase$ = KnowledgeBase$;
4734
+ exports.KnowledgeBaseConfiguration$ = KnowledgeBaseConfiguration$;
4735
+ exports.KnowledgeBaseLookupInput$ = KnowledgeBaseLookupInput$;
4736
+ exports.KnowledgeBaseLookupOutput$ = KnowledgeBaseLookupOutput$;
4737
+ exports.KnowledgeBaseQuery$ = KnowledgeBaseQuery$;
1050
4738
  exports.KnowledgeBaseQueryType = KnowledgeBaseQueryType;
4739
+ exports.KnowledgeBaseRetrievalConfiguration$ = KnowledgeBaseRetrievalConfiguration$;
4740
+ exports.KnowledgeBaseRetrievalResult$ = KnowledgeBaseRetrievalResult$;
4741
+ exports.KnowledgeBaseRetrieveAndGenerateConfiguration$ = KnowledgeBaseRetrieveAndGenerateConfiguration$;
4742
+ exports.KnowledgeBaseRetrieverConfiguration$ = KnowledgeBaseRetrieverConfiguration$;
4743
+ exports.KnowledgeBaseVectorSearchConfiguration$ = KnowledgeBaseVectorSearchConfiguration$;
4744
+ exports.ListFlowExecutionEvents$ = ListFlowExecutionEvents$;
1051
4745
  exports.ListFlowExecutionEventsCommand = ListFlowExecutionEventsCommand;
4746
+ exports.ListFlowExecutionEventsRequest$ = ListFlowExecutionEventsRequest$;
4747
+ exports.ListFlowExecutionEventsResponse$ = ListFlowExecutionEventsResponse$;
4748
+ exports.ListFlowExecutions$ = ListFlowExecutions$;
1052
4749
  exports.ListFlowExecutionsCommand = ListFlowExecutionsCommand;
4750
+ exports.ListFlowExecutionsRequest$ = ListFlowExecutionsRequest$;
4751
+ exports.ListFlowExecutionsResponse$ = ListFlowExecutionsResponse$;
4752
+ exports.ListInvocationSteps$ = ListInvocationSteps$;
1053
4753
  exports.ListInvocationStepsCommand = ListInvocationStepsCommand;
4754
+ exports.ListInvocationStepsRequest$ = ListInvocationStepsRequest$;
4755
+ exports.ListInvocationStepsResponse$ = ListInvocationStepsResponse$;
4756
+ exports.ListInvocations$ = ListInvocations$;
1054
4757
  exports.ListInvocationsCommand = ListInvocationsCommand;
4758
+ exports.ListInvocationsRequest$ = ListInvocationsRequest$;
4759
+ exports.ListInvocationsResponse$ = ListInvocationsResponse$;
4760
+ exports.ListSessions$ = ListSessions$;
1055
4761
  exports.ListSessionsCommand = ListSessionsCommand;
4762
+ exports.ListSessionsRequest$ = ListSessionsRequest$;
4763
+ exports.ListSessionsResponse$ = ListSessionsResponse$;
4764
+ exports.ListTagsForResource$ = ListTagsForResource$;
1056
4765
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
4766
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
4767
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
4768
+ exports.ManagedSearchBedrockRerankingConfiguration$ = ManagedSearchBedrockRerankingConfiguration$;
4769
+ exports.ManagedSearchBedrockRerankingModelConfiguration$ = ManagedSearchBedrockRerankingModelConfiguration$;
4770
+ exports.ManagedSearchConfiguration$ = ManagedSearchConfiguration$;
4771
+ exports.ManagedSearchRerankingConfiguration$ = ManagedSearchRerankingConfiguration$;
1057
4772
  exports.ManagedSearchRerankingConfigurationType = ManagedSearchRerankingConfigurationType;
4773
+ exports.Memory$ = Memory$;
4774
+ exports.MemorySessionSummary$ = MemorySessionSummary$;
1058
4775
  exports.MemoryType = MemoryType;
4776
+ exports.Message$ = Message$;
4777
+ exports.Metadata$ = Metadata$;
4778
+ exports.MetadataAttributeSchema$ = MetadataAttributeSchema$;
4779
+ exports.MetadataConfigurationForReranking$ = MetadataConfigurationForReranking$;
4780
+ exports.ModelInvocationInput$ = ModelInvocationInput$;
4781
+ exports.ModelNotReadyException = ModelNotReadyException;
4782
+ exports.ModelNotReadyException$ = ModelNotReadyException$;
4783
+ exports.ModelPerformanceConfiguration$ = ModelPerformanceConfiguration$;
4784
+ exports.NodeActionEvent$ = NodeActionEvent$;
4785
+ exports.NodeDependencyEvent$ = NodeDependencyEvent$;
1059
4786
  exports.NodeErrorCode = NodeErrorCode;
4787
+ exports.NodeExecutionContent$ = NodeExecutionContent$;
4788
+ exports.NodeFailureEvent$ = NodeFailureEvent$;
4789
+ exports.NodeInputEvent$ = NodeInputEvent$;
4790
+ exports.NodeInputExecutionChainItem$ = NodeInputExecutionChainItem$;
4791
+ exports.NodeInputField$ = NodeInputField$;
4792
+ exports.NodeInputSource$ = NodeInputSource$;
4793
+ exports.NodeOutputEvent$ = NodeOutputEvent$;
4794
+ exports.NodeOutputField$ = NodeOutputField$;
4795
+ exports.NodeOutputNext$ = NodeOutputNext$;
4796
+ exports.NodeTraceElements$ = NodeTraceElements$;
1060
4797
  exports.NodeType = NodeType;
4798
+ exports.Observation$ = Observation$;
4799
+ exports.OptimizePrompt$ = OptimizePrompt$;
1061
4800
  exports.OptimizePromptCommand = OptimizePromptCommand;
4801
+ exports.OptimizePromptRequest$ = OptimizePromptRequest$;
4802
+ exports.OptimizePromptResponse$ = OptimizePromptResponse$;
4803
+ exports.OptimizedPrompt$ = OptimizedPrompt$;
4804
+ exports.OptimizedPromptEvent$ = OptimizedPromptEvent$;
4805
+ exports.OptimizedPromptStream$ = OptimizedPromptStream$;
4806
+ exports.OrchestrationConfiguration$ = OrchestrationConfiguration$;
4807
+ exports.OrchestrationExecutor$ = OrchestrationExecutor$;
4808
+ exports.OrchestrationModelInvocationOutput$ = OrchestrationModelInvocationOutput$;
4809
+ exports.OrchestrationTrace$ = OrchestrationTrace$;
1062
4810
  exports.OrchestrationType = OrchestrationType;
4811
+ exports.OutputFile$ = OutputFile$;
4812
+ exports.Parameter$ = Parameter$;
4813
+ exports.ParameterDetail$ = ParameterDetail$;
1063
4814
  exports.ParameterType = ParameterType;
4815
+ exports.PayloadPart$ = PayloadPart$;
1064
4816
  exports.PayloadType = PayloadType;
1065
4817
  exports.PerformanceConfigLatency = PerformanceConfigLatency;
4818
+ exports.PerformanceConfiguration$ = PerformanceConfiguration$;
4819
+ exports.PostProcessingModelInvocationOutput$ = PostProcessingModelInvocationOutput$;
4820
+ exports.PostProcessingParsedResponse$ = PostProcessingParsedResponse$;
4821
+ exports.PostProcessingTrace$ = PostProcessingTrace$;
4822
+ exports.PreProcessingModelInvocationOutput$ = PreProcessingModelInvocationOutput$;
4823
+ exports.PreProcessingParsedResponse$ = PreProcessingParsedResponse$;
4824
+ exports.PreProcessingTrace$ = PreProcessingTrace$;
4825
+ exports.PromptConfiguration$ = PromptConfiguration$;
4826
+ exports.PromptCreationConfigurations$ = PromptCreationConfigurations$;
4827
+ exports.PromptOverrideConfiguration$ = PromptOverrideConfiguration$;
1066
4828
  exports.PromptState = PromptState;
4829
+ exports.PromptTemplate$ = PromptTemplate$;
1067
4830
  exports.PromptType = PromptType;
4831
+ exports.PropertyParameters$ = PropertyParameters$;
4832
+ exports.PutInvocationStep$ = PutInvocationStep$;
1068
4833
  exports.PutInvocationStepCommand = PutInvocationStepCommand;
4834
+ exports.PutInvocationStepRequest$ = PutInvocationStepRequest$;
4835
+ exports.PutInvocationStepResponse$ = PutInvocationStepResponse$;
4836
+ exports.QueryGenerationInput$ = QueryGenerationInput$;
4837
+ exports.QueryTransformationConfiguration$ = QueryTransformationConfiguration$;
1069
4838
  exports.QueryTransformationMode = QueryTransformationMode;
1070
4839
  exports.QueryTransformationType = QueryTransformationType;
4840
+ exports.Rationale$ = Rationale$;
4841
+ exports.RawResponse$ = RawResponse$;
4842
+ exports.ReasoningContentBlock$ = ReasoningContentBlock$;
4843
+ exports.ReasoningTextBlock$ = ReasoningTextBlock$;
1071
4844
  exports.RelayConversationHistory = RelayConversationHistory;
4845
+ exports.RepromptResponse$ = RepromptResponse$;
4846
+ exports.RequestBody$ = RequestBody$;
1072
4847
  exports.RequireConfirmation = RequireConfirmation;
4848
+ exports.Rerank$ = Rerank$;
1073
4849
  exports.RerankCommand = RerankCommand;
4850
+ exports.RerankDocument$ = RerankDocument$;
1074
4851
  exports.RerankDocumentType = RerankDocumentType;
4852
+ exports.RerankQuery$ = RerankQuery$;
1075
4853
  exports.RerankQueryContentType = RerankQueryContentType;
4854
+ exports.RerankRequest$ = RerankRequest$;
4855
+ exports.RerankResponse$ = RerankResponse$;
4856
+ exports.RerankResult$ = RerankResult$;
4857
+ exports.RerankSource$ = RerankSource$;
1076
4858
  exports.RerankSourceType = RerankSourceType;
4859
+ exports.RerankTextDocument$ = RerankTextDocument$;
4860
+ exports.RerankingConfiguration$ = RerankingConfiguration$;
1077
4861
  exports.RerankingConfigurationType = RerankingConfigurationType;
1078
4862
  exports.RerankingMetadataSelectionMode = RerankingMetadataSelectionMode;
4863
+ exports.RerankingMetadataSelectiveModeConfiguration$ = RerankingMetadataSelectiveModeConfiguration$;
1079
4864
  exports.RerankingModelType = RerankingModelType;
4865
+ exports.ResourceNotFoundException = ResourceNotFoundException;
4866
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1080
4867
  exports.ResponseState = ResponseState;
4868
+ exports.ResponseStream$ = ResponseStream$;
4869
+ exports.RetrievalContent$ = RetrievalContent$;
4870
+ exports.RetrievalFilter$ = RetrievalFilter$;
4871
+ exports.RetrievalOverrides$ = RetrievalOverrides$;
4872
+ exports.RetrievalResultConfluenceLocation$ = RetrievalResultConfluenceLocation$;
4873
+ exports.RetrievalResultContent$ = RetrievalResultContent$;
4874
+ exports.RetrievalResultContentColumn$ = RetrievalResultContentColumn$;
1081
4875
  exports.RetrievalResultContentColumnType = RetrievalResultContentColumnType;
1082
4876
  exports.RetrievalResultContentType = RetrievalResultContentType;
4877
+ exports.RetrievalResultCustomDocumentLocation$ = RetrievalResultCustomDocumentLocation$;
4878
+ exports.RetrievalResultGoogleDriveLocation$ = RetrievalResultGoogleDriveLocation$;
4879
+ exports.RetrievalResultKendraDocumentLocation$ = RetrievalResultKendraDocumentLocation$;
4880
+ exports.RetrievalResultLocation$ = RetrievalResultLocation$;
1083
4881
  exports.RetrievalResultLocationType = RetrievalResultLocationType;
4882
+ exports.RetrievalResultOneDriveLocation$ = RetrievalResultOneDriveLocation$;
4883
+ exports.RetrievalResultS3Location$ = RetrievalResultS3Location$;
4884
+ exports.RetrievalResultSalesforceLocation$ = RetrievalResultSalesforceLocation$;
4885
+ exports.RetrievalResultSharePointLocation$ = RetrievalResultSharePointLocation$;
4886
+ exports.RetrievalResultSqlLocation$ = RetrievalResultSqlLocation$;
4887
+ exports.RetrievalResultWebLocation$ = RetrievalResultWebLocation$;
4888
+ exports.Retrieve$ = Retrieve$;
4889
+ exports.RetrieveAndGenerate$ = RetrieveAndGenerate$;
1084
4890
  exports.RetrieveAndGenerateCommand = RetrieveAndGenerateCommand;
4891
+ exports.RetrieveAndGenerateConfiguration$ = RetrieveAndGenerateConfiguration$;
4892
+ exports.RetrieveAndGenerateInput$ = RetrieveAndGenerateInput$;
4893
+ exports.RetrieveAndGenerateOutput$ = RetrieveAndGenerateOutput$;
4894
+ exports.RetrieveAndGenerateOutputEvent$ = RetrieveAndGenerateOutputEvent$;
4895
+ exports.RetrieveAndGenerateRequest$ = RetrieveAndGenerateRequest$;
4896
+ exports.RetrieveAndGenerateResponse$ = RetrieveAndGenerateResponse$;
4897
+ exports.RetrieveAndGenerateSessionConfiguration$ = RetrieveAndGenerateSessionConfiguration$;
4898
+ exports.RetrieveAndGenerateStream$ = RetrieveAndGenerateStream$;
1085
4899
  exports.RetrieveAndGenerateStreamCommand = RetrieveAndGenerateStreamCommand;
4900
+ exports.RetrieveAndGenerateStreamRequest$ = RetrieveAndGenerateStreamRequest$;
4901
+ exports.RetrieveAndGenerateStreamResponse$ = RetrieveAndGenerateStreamResponse$;
4902
+ exports.RetrieveAndGenerateStreamResponseOutput$ = RetrieveAndGenerateStreamResponseOutput$;
1086
4903
  exports.RetrieveAndGenerateType = RetrieveAndGenerateType;
1087
4904
  exports.RetrieveCommand = RetrieveCommand;
4905
+ exports.RetrieveRequest$ = RetrieveRequest$;
4906
+ exports.RetrieveResponse$ = RetrieveResponse$;
4907
+ exports.RetrievedReference$ = RetrievedReference$;
4908
+ exports.RetrieverConfiguration$ = RetrieverConfiguration$;
4909
+ exports.ReturnControlPayload$ = ReturnControlPayload$;
4910
+ exports.ReturnControlResults$ = ReturnControlResults$;
4911
+ exports.RoutingClassifierModelInvocationOutput$ = RoutingClassifierModelInvocationOutput$;
4912
+ exports.RoutingClassifierTrace$ = RoutingClassifierTrace$;
4913
+ exports.S3Identifier$ = S3Identifier$;
4914
+ exports.S3Location$ = S3Location$;
4915
+ exports.S3ObjectDoc$ = S3ObjectDoc$;
4916
+ exports.S3ObjectFile$ = S3ObjectFile$;
4917
+ exports.SatisfiedCondition$ = SatisfiedCondition$;
1088
4918
  exports.SearchType = SearchType;
4919
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
4920
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
4921
+ exports.SessionState$ = SessionState$;
1089
4922
  exports.SessionStatus = SessionStatus;
4923
+ exports.SessionSummary$ = SessionSummary$;
1090
4924
  exports.Source = Source;
4925
+ exports.Span$ = Span$;
4926
+ exports.StartFlowExecution$ = StartFlowExecution$;
1091
4927
  exports.StartFlowExecutionCommand = StartFlowExecutionCommand;
4928
+ exports.StartFlowExecutionRequest$ = StartFlowExecutionRequest$;
4929
+ exports.StartFlowExecutionResponse$ = StartFlowExecutionResponse$;
4930
+ exports.StopFlowExecution$ = StopFlowExecution$;
1092
4931
  exports.StopFlowExecutionCommand = StopFlowExecutionCommand;
4932
+ exports.StopFlowExecutionRequest$ = StopFlowExecutionRequest$;
4933
+ exports.StopFlowExecutionResponse$ = StopFlowExecutionResponse$;
4934
+ exports.StreamingConfigurations$ = StreamingConfigurations$;
4935
+ exports.TagResource$ = TagResource$;
1093
4936
  exports.TagResourceCommand = TagResourceCommand;
4937
+ exports.TagResourceRequest$ = TagResourceRequest$;
4938
+ exports.TagResourceResponse$ = TagResourceResponse$;
4939
+ exports.TextInferenceConfig$ = TextInferenceConfig$;
4940
+ exports.TextPrompt$ = TextPrompt$;
4941
+ exports.TextResponsePart$ = TextResponsePart$;
4942
+ exports.TextToSqlConfiguration$ = TextToSqlConfiguration$;
1094
4943
  exports.TextToSqlConfigurationType = TextToSqlConfigurationType;
4944
+ exports.TextToSqlKnowledgeBaseConfiguration$ = TextToSqlKnowledgeBaseConfiguration$;
4945
+ exports.ThrottlingException = ThrottlingException;
4946
+ exports.ThrottlingException$ = ThrottlingException$;
4947
+ exports.Trace$ = Trace$;
4948
+ exports.TraceElements$ = TraceElements$;
4949
+ exports.TracePart$ = TracePart$;
4950
+ exports.TransformationConfiguration$ = TransformationConfiguration$;
1095
4951
  exports.Type = Type;
4952
+ exports.UntagResource$ = UntagResource$;
1096
4953
  exports.UntagResourceCommand = UntagResourceCommand;
4954
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
4955
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
4956
+ exports.UpdateSession$ = UpdateSession$;
1097
4957
  exports.UpdateSessionCommand = UpdateSessionCommand;
4958
+ exports.UpdateSessionRequest$ = UpdateSessionRequest$;
4959
+ exports.UpdateSessionResponse$ = UpdateSessionResponse$;
4960
+ exports.Usage$ = Usage$;
4961
+ exports.UserContext$ = UserContext$;
4962
+ exports.ValidationException = ValidationException;
4963
+ exports.ValidationException$ = ValidationException$;
4964
+ exports.VectorSearchBedrockRerankingConfiguration$ = VectorSearchBedrockRerankingConfiguration$;
4965
+ exports.VectorSearchBedrockRerankingModelConfiguration$ = VectorSearchBedrockRerankingModelConfiguration$;
4966
+ exports.VectorSearchRerankingConfiguration$ = VectorSearchRerankingConfiguration$;
1098
4967
  exports.VectorSearchRerankingConfigurationType = VectorSearchRerankingConfigurationType;
4968
+ exports.VideoSegment$ = VideoSegment$;
4969
+ exports.errorTypeRegistries = errorTypeRegistries;
1099
4970
  exports.paginateGetAgentMemory = paginateGetAgentMemory;
1100
4971
  exports.paginateListFlowExecutionEvents = paginateListFlowExecutionEvents;
1101
4972
  exports.paginateListFlowExecutions = paginateListFlowExecutions;