@aws-sdk/client-bedrock-agent-runtime 3.928.0 → 3.930.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 +3454 -5248
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/BedrockAgentRuntimeClient.js +2 -0
- package/dist-es/commands/CreateInvocationCommand.js +3 -9
- package/dist-es/commands/CreateSessionCommand.js +3 -9
- package/dist-es/commands/DeleteAgentMemoryCommand.js +3 -9
- package/dist-es/commands/DeleteSessionCommand.js +3 -9
- package/dist-es/commands/EndSessionCommand.js +3 -9
- package/dist-es/commands/GenerateQueryCommand.js +3 -10
- package/dist-es/commands/GetAgentMemoryCommand.js +3 -9
- package/dist-es/commands/GetExecutionFlowSnapshotCommand.js +3 -9
- package/dist-es/commands/GetFlowExecutionCommand.js +3 -9
- package/dist-es/commands/GetInvocationStepCommand.js +3 -10
- package/dist-es/commands/GetSessionCommand.js +3 -9
- package/dist-es/commands/InvokeAgentCommand.js +3 -11
- package/dist-es/commands/InvokeFlowCommand.js +3 -10
- package/dist-es/commands/InvokeInlineAgentCommand.js +3 -11
- package/dist-es/commands/ListFlowExecutionEventsCommand.js +3 -10
- package/dist-es/commands/ListFlowExecutionsCommand.js +3 -9
- package/dist-es/commands/ListInvocationStepsCommand.js +3 -9
- package/dist-es/commands/ListInvocationsCommand.js +3 -9
- package/dist-es/commands/ListSessionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/OptimizePromptCommand.js +3 -10
- package/dist-es/commands/PutInvocationStepCommand.js +3 -10
- package/dist-es/commands/RerankCommand.js +3 -10
- package/dist-es/commands/RetrieveAndGenerateCommand.js +3 -10
- package/dist-es/commands/RetrieveAndGenerateStreamCommand.js +3 -10
- package/dist-es/commands/RetrieveCommand.js +3 -10
- package/dist-es/commands/StartFlowExecutionCommand.js +3 -10
- package/dist-es/commands/StopFlowExecutionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateSessionCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -1348
- package/dist-es/models/models_1.js +0 -352
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +3380 -0
- package/dist-types/BedrockAgentRuntimeClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +136 -678
- package/dist-types/models/models_1.d.ts +20 -133
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +445 -0
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -468
- package/dist-types/ts3.4/models/models_1.d.ts +0 -100
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +452 -0
- package/package.json +36 -36
- package/dist-es/protocols/Aws_restJson1.js +0 -3122
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -380
|
@@ -59,12 +59,15 @@ export declare namespace ActionGroupExecutor {
|
|
|
59
59
|
customControl?: never;
|
|
60
60
|
$unknown: [string, any];
|
|
61
61
|
}
|
|
62
|
+
/**
|
|
63
|
+
* @deprecated unused in schema-serde mode.
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
62
66
|
interface Visitor<T> {
|
|
63
67
|
lambda: (value: string) => T;
|
|
64
68
|
customControl: (value: CustomControlMethod) => T;
|
|
65
69
|
_: (name: string, value: any) => T;
|
|
66
70
|
}
|
|
67
|
-
const visit: <T>(value: ActionGroupExecutor, visitor: Visitor<T>) => T;
|
|
68
71
|
}
|
|
69
72
|
/**
|
|
70
73
|
* @public
|
|
@@ -303,12 +306,15 @@ export declare namespace APISchema {
|
|
|
303
306
|
payload?: never;
|
|
304
307
|
$unknown: [string, any];
|
|
305
308
|
}
|
|
309
|
+
/**
|
|
310
|
+
* @deprecated unused in schema-serde mode.
|
|
311
|
+
*
|
|
312
|
+
*/
|
|
306
313
|
interface Visitor<T> {
|
|
307
314
|
s3: (value: S3Identifier) => T;
|
|
308
315
|
payload: (value: string) => T;
|
|
309
316
|
_: (name: string, value: any) => T;
|
|
310
317
|
}
|
|
311
|
-
const visit: <T>(value: APISchema, visitor: Visitor<T>) => T;
|
|
312
318
|
}
|
|
313
319
|
/**
|
|
314
320
|
* @public
|
|
@@ -408,11 +414,14 @@ export declare namespace FunctionSchema {
|
|
|
408
414
|
functions?: never;
|
|
409
415
|
$unknown: [string, any];
|
|
410
416
|
}
|
|
417
|
+
/**
|
|
418
|
+
* @deprecated unused in schema-serde mode.
|
|
419
|
+
*
|
|
420
|
+
*/
|
|
411
421
|
interface Visitor<T> {
|
|
412
422
|
functions: (value: FunctionDefinition[]) => T;
|
|
413
423
|
_: (name: string, value: any) => T;
|
|
414
424
|
}
|
|
415
|
-
const visit: <T>(value: FunctionSchema, visitor: Visitor<T>) => T;
|
|
416
425
|
}
|
|
417
426
|
/**
|
|
418
427
|
* <p> Contains details of the inline agent's action group. </p>
|
|
@@ -518,11 +527,14 @@ export declare namespace ImageInputSource {
|
|
|
518
527
|
bytes?: never;
|
|
519
528
|
$unknown: [string, any];
|
|
520
529
|
}
|
|
530
|
+
/**
|
|
531
|
+
* @deprecated unused in schema-serde mode.
|
|
532
|
+
*
|
|
533
|
+
*/
|
|
521
534
|
interface Visitor<T> {
|
|
522
535
|
bytes: (value: Uint8Array) => T;
|
|
523
536
|
_: (name: string, value: any) => T;
|
|
524
537
|
}
|
|
525
|
-
const visit: <T>(value: ImageInputSource, visitor: Visitor<T>) => T;
|
|
526
538
|
}
|
|
527
539
|
/**
|
|
528
540
|
* <p>Details about an image in the result from a function in the action group invocation. You can specify images only when the function is a computer use action. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html">Configure an Amazon Bedrock Agent to complete tasks with computer use tools</a>.</p>
|
|
@@ -685,12 +697,15 @@ export declare namespace InvocationResultMember {
|
|
|
685
697
|
functionResult?: never;
|
|
686
698
|
$unknown: [string, any];
|
|
687
699
|
}
|
|
700
|
+
/**
|
|
701
|
+
* @deprecated unused in schema-serde mode.
|
|
702
|
+
*
|
|
703
|
+
*/
|
|
688
704
|
interface Visitor<T> {
|
|
689
705
|
apiResult: (value: ApiResult) => T;
|
|
690
706
|
functionResult: (value: FunctionResult) => T;
|
|
691
707
|
_: (name: string, value: any) => T;
|
|
692
708
|
}
|
|
693
|
-
const visit: <T>(value: InvocationResultMember, visitor: Visitor<T>) => T;
|
|
694
709
|
}
|
|
695
710
|
/**
|
|
696
711
|
* <p>An action invocation result.</p>
|
|
@@ -943,12 +958,15 @@ export declare namespace InvocationInputMember {
|
|
|
943
958
|
functionInvocationInput?: never;
|
|
944
959
|
$unknown: [string, any];
|
|
945
960
|
}
|
|
961
|
+
/**
|
|
962
|
+
* @deprecated unused in schema-serde mode.
|
|
963
|
+
*
|
|
964
|
+
*/
|
|
946
965
|
interface Visitor<T> {
|
|
947
966
|
apiInvocationInput: (value: ApiInvocationInput) => T;
|
|
948
967
|
functionInvocationInput: (value: FunctionInvocationInput) => T;
|
|
949
968
|
_: (name: string, value: any) => T;
|
|
950
969
|
}
|
|
951
|
-
const visit: <T>(value: InvocationInputMember, visitor: Visitor<T>) => T;
|
|
952
970
|
}
|
|
953
971
|
/**
|
|
954
972
|
* <p>Contains information to return from the action group that the agent has predicted to invoke.</p> <p>This data type is used in the following API operations:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html#API_agent-runtime_InvokeAgent_ResponseSyntax">InvokeAgent response</a> </p> </li> </ul>
|
|
@@ -1037,11 +1055,14 @@ export declare namespace Caller {
|
|
|
1037
1055
|
agentAliasArn?: never;
|
|
1038
1056
|
$unknown: [string, any];
|
|
1039
1057
|
}
|
|
1058
|
+
/**
|
|
1059
|
+
* @deprecated unused in schema-serde mode.
|
|
1060
|
+
*
|
|
1061
|
+
*/
|
|
1040
1062
|
interface Visitor<T> {
|
|
1041
1063
|
agentAliasArn: (value: string) => T;
|
|
1042
1064
|
_: (name: string, value: any) => T;
|
|
1043
1065
|
}
|
|
1044
|
-
const visit: <T>(value: Caller, visitor: Visitor<T>) => T;
|
|
1045
1066
|
}
|
|
1046
1067
|
/**
|
|
1047
1068
|
* <p> The event in the custom orchestration sequence. Events are the responses which the custom orchestration Lambda function sends as response to the agent. </p>
|
|
@@ -1732,12 +1753,15 @@ export declare namespace ReasoningContentBlock {
|
|
|
1732
1753
|
redactedContent?: never;
|
|
1733
1754
|
$unknown: [string, any];
|
|
1734
1755
|
}
|
|
1756
|
+
/**
|
|
1757
|
+
* @deprecated unused in schema-serde mode.
|
|
1758
|
+
*
|
|
1759
|
+
*/
|
|
1735
1760
|
interface Visitor<T> {
|
|
1736
1761
|
reasoningText: (value: ReasoningTextBlock) => T;
|
|
1737
1762
|
redactedContent: (value: Uint8Array) => T;
|
|
1738
1763
|
_: (name: string, value: any) => T;
|
|
1739
1764
|
}
|
|
1740
|
-
const visit: <T>(value: ReasoningContentBlock, visitor: Visitor<T>) => T;
|
|
1741
1765
|
}
|
|
1742
1766
|
/**
|
|
1743
1767
|
* <p>The foundation model output from the orchestration step.</p>
|
|
@@ -2269,6 +2293,10 @@ export declare namespace OrchestrationTrace {
|
|
|
2269
2293
|
modelInvocationOutput?: never;
|
|
2270
2294
|
$unknown: [string, any];
|
|
2271
2295
|
}
|
|
2296
|
+
/**
|
|
2297
|
+
* @deprecated unused in schema-serde mode.
|
|
2298
|
+
*
|
|
2299
|
+
*/
|
|
2272
2300
|
interface Visitor<T> {
|
|
2273
2301
|
rationale: (value: Rationale) => T;
|
|
2274
2302
|
invocationInput: (value: InvocationInput) => T;
|
|
@@ -2277,7 +2305,6 @@ export declare namespace OrchestrationTrace {
|
|
|
2277
2305
|
modelInvocationOutput: (value: OrchestrationModelInvocationOutput) => T;
|
|
2278
2306
|
_: (name: string, value: any) => T;
|
|
2279
2307
|
}
|
|
2280
|
-
const visit: <T>(value: OrchestrationTrace, visitor: Visitor<T>) => T;
|
|
2281
2308
|
}
|
|
2282
2309
|
/**
|
|
2283
2310
|
* <p>Details about the response from the Lambda parsing of the output from the post-processing step.</p>
|
|
@@ -2356,12 +2383,15 @@ export declare namespace PostProcessingTrace {
|
|
|
2356
2383
|
modelInvocationOutput?: never;
|
|
2357
2384
|
$unknown: [string, any];
|
|
2358
2385
|
}
|
|
2386
|
+
/**
|
|
2387
|
+
* @deprecated unused in schema-serde mode.
|
|
2388
|
+
*
|
|
2389
|
+
*/
|
|
2359
2390
|
interface Visitor<T> {
|
|
2360
2391
|
modelInvocationInput: (value: ModelInvocationInput) => T;
|
|
2361
2392
|
modelInvocationOutput: (value: PostProcessingModelInvocationOutput) => T;
|
|
2362
2393
|
_: (name: string, value: any) => T;
|
|
2363
2394
|
}
|
|
2364
|
-
const visit: <T>(value: PostProcessingTrace, visitor: Visitor<T>) => T;
|
|
2365
2395
|
}
|
|
2366
2396
|
/**
|
|
2367
2397
|
* <p>Details about the response from the Lambda parsing of the output from the pre-processing step.</p>
|
|
@@ -2445,12 +2475,15 @@ export declare namespace PreProcessingTrace {
|
|
|
2445
2475
|
modelInvocationOutput?: never;
|
|
2446
2476
|
$unknown: [string, any];
|
|
2447
2477
|
}
|
|
2478
|
+
/**
|
|
2479
|
+
* @deprecated unused in schema-serde mode.
|
|
2480
|
+
*
|
|
2481
|
+
*/
|
|
2448
2482
|
interface Visitor<T> {
|
|
2449
2483
|
modelInvocationInput: (value: ModelInvocationInput) => T;
|
|
2450
2484
|
modelInvocationOutput: (value: PreProcessingModelInvocationOutput) => T;
|
|
2451
2485
|
_: (name: string, value: any) => T;
|
|
2452
2486
|
}
|
|
2453
|
-
const visit: <T>(value: PreProcessingTrace, visitor: Visitor<T>) => T;
|
|
2454
2487
|
}
|
|
2455
2488
|
/**
|
|
2456
2489
|
* <p>Invocation output from a routing classifier model.</p>
|
|
@@ -2536,6 +2569,10 @@ export declare namespace RoutingClassifierTrace {
|
|
|
2536
2569
|
modelInvocationOutput?: never;
|
|
2537
2570
|
$unknown: [string, any];
|
|
2538
2571
|
}
|
|
2572
|
+
/**
|
|
2573
|
+
* @deprecated unused in schema-serde mode.
|
|
2574
|
+
*
|
|
2575
|
+
*/
|
|
2539
2576
|
interface Visitor<T> {
|
|
2540
2577
|
invocationInput: (value: InvocationInput) => T;
|
|
2541
2578
|
observation: (value: Observation) => T;
|
|
@@ -2543,7 +2580,6 @@ export declare namespace RoutingClassifierTrace {
|
|
|
2543
2580
|
modelInvocationOutput: (value: RoutingClassifierModelInvocationOutput) => T;
|
|
2544
2581
|
_: (name: string, value: any) => T;
|
|
2545
2582
|
}
|
|
2546
|
-
const visit: <T>(value: RoutingClassifierTrace, visitor: Visitor<T>) => T;
|
|
2547
2583
|
}
|
|
2548
2584
|
/**
|
|
2549
2585
|
* <p>Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/agents-test.html#trace-enablement">Trace enablement</a>.</p>
|
|
@@ -2665,6 +2701,10 @@ export declare namespace Trace {
|
|
|
2665
2701
|
customOrchestrationTrace?: never;
|
|
2666
2702
|
$unknown: [string, any];
|
|
2667
2703
|
}
|
|
2704
|
+
/**
|
|
2705
|
+
* @deprecated unused in schema-serde mode.
|
|
2706
|
+
*
|
|
2707
|
+
*/
|
|
2668
2708
|
interface Visitor<T> {
|
|
2669
2709
|
guardrailTrace: (value: GuardrailTrace) => T;
|
|
2670
2710
|
preProcessingTrace: (value: PreProcessingTrace) => T;
|
|
@@ -2675,7 +2715,6 @@ export declare namespace Trace {
|
|
|
2675
2715
|
customOrchestrationTrace: (value: CustomOrchestrationTrace) => T;
|
|
2676
2716
|
_: (name: string, value: any) => T;
|
|
2677
2717
|
}
|
|
2678
|
-
const visit: <T>(value: Trace, visitor: Visitor<T>) => T;
|
|
2679
2718
|
}
|
|
2680
2719
|
/**
|
|
2681
2720
|
* <p>Contains information about the agent and session, alongside the agent's reasoning process and results from calling API actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/agents-test.html#trace-enablement">Trace enablement</a>.</p>
|
|
@@ -3080,11 +3119,14 @@ export declare namespace FlowExecutionContent {
|
|
|
3080
3119
|
document?: never;
|
|
3081
3120
|
$unknown: [string, any];
|
|
3082
3121
|
}
|
|
3122
|
+
/**
|
|
3123
|
+
* @deprecated unused in schema-serde mode.
|
|
3124
|
+
*
|
|
3125
|
+
*/
|
|
3083
3126
|
interface Visitor<T> {
|
|
3084
3127
|
document: (value: __DocumentType) => T;
|
|
3085
3128
|
_: (name: string, value: any) => T;
|
|
3086
3129
|
}
|
|
3087
|
-
const visit: <T>(value: FlowExecutionContent, visitor: Visitor<T>) => T;
|
|
3088
3130
|
}
|
|
3089
3131
|
/**
|
|
3090
3132
|
* <p>Represents an input field provided to a flow during a flow execution.</p> <note> <p>Flow executions is in preview release for Amazon Bedrock and is subject to change.</p> </note>
|
|
@@ -3225,11 +3267,14 @@ export declare namespace NodeTraceElements {
|
|
|
3225
3267
|
agentTraces?: never;
|
|
3226
3268
|
$unknown: [string, any];
|
|
3227
3269
|
}
|
|
3270
|
+
/**
|
|
3271
|
+
* @deprecated unused in schema-serde mode.
|
|
3272
|
+
*
|
|
3273
|
+
*/
|
|
3228
3274
|
interface Visitor<T> {
|
|
3229
3275
|
agentTraces: (value: TracePart[]) => T;
|
|
3230
3276
|
_: (name: string, value: any) => T;
|
|
3231
3277
|
}
|
|
3232
|
-
const visit: <T>(value: NodeTraceElements, visitor: Visitor<T>) => T;
|
|
3233
3278
|
}
|
|
3234
3279
|
/**
|
|
3235
3280
|
* <p>Contains information about an internal trace of a specific node during execution.</p>
|
|
@@ -3329,11 +3374,14 @@ export declare namespace NodeExecutionContent {
|
|
|
3329
3374
|
document?: never;
|
|
3330
3375
|
$unknown: [string, any];
|
|
3331
3376
|
}
|
|
3377
|
+
/**
|
|
3378
|
+
* @deprecated unused in schema-serde mode.
|
|
3379
|
+
*
|
|
3380
|
+
*/
|
|
3332
3381
|
interface Visitor<T> {
|
|
3333
3382
|
document: (value: __DocumentType) => T;
|
|
3334
3383
|
_: (name: string, value: any) => T;
|
|
3335
3384
|
}
|
|
3336
|
-
const visit: <T>(value: NodeExecutionContent, visitor: Visitor<T>) => T;
|
|
3337
3385
|
}
|
|
3338
3386
|
/**
|
|
3339
3387
|
* @public
|
|
@@ -3692,6 +3740,10 @@ export declare namespace FlowExecutionEvent {
|
|
|
3692
3740
|
nodeDependencyEvent?: never;
|
|
3693
3741
|
$unknown: [string, any];
|
|
3694
3742
|
}
|
|
3743
|
+
/**
|
|
3744
|
+
* @deprecated unused in schema-serde mode.
|
|
3745
|
+
*
|
|
3746
|
+
*/
|
|
3695
3747
|
interface Visitor<T> {
|
|
3696
3748
|
flowInputEvent: (value: FlowExecutionInputEvent) => T;
|
|
3697
3749
|
flowOutputEvent: (value: FlowExecutionOutputEvent) => T;
|
|
@@ -3704,7 +3756,6 @@ export declare namespace FlowExecutionEvent {
|
|
|
3704
3756
|
nodeDependencyEvent: (value: NodeDependencyEvent) => T;
|
|
3705
3757
|
_: (name: string, value: any) => T;
|
|
3706
3758
|
}
|
|
3707
|
-
const visit: <T>(value: FlowExecutionEvent, visitor: Visitor<T>) => T;
|
|
3708
3759
|
}
|
|
3709
3760
|
/**
|
|
3710
3761
|
* @public
|
|
@@ -3884,11 +3935,14 @@ export declare namespace FlowInputContent {
|
|
|
3884
3935
|
document?: never;
|
|
3885
3936
|
$unknown: [string, any];
|
|
3886
3937
|
}
|
|
3938
|
+
/**
|
|
3939
|
+
* @deprecated unused in schema-serde mode.
|
|
3940
|
+
*
|
|
3941
|
+
*/
|
|
3887
3942
|
interface Visitor<T> {
|
|
3888
3943
|
document: (value: __DocumentType) => T;
|
|
3889
3944
|
_: (name: string, value: any) => T;
|
|
3890
3945
|
}
|
|
3891
|
-
const visit: <T>(value: FlowInputContent, visitor: Visitor<T>) => T;
|
|
3892
3946
|
}
|
|
3893
3947
|
/**
|
|
3894
3948
|
* <p>Contains information about an input into the prompt flow and where to send it.</p>
|
|
@@ -4107,11 +4161,14 @@ export declare namespace FlowMultiTurnInputContent {
|
|
|
4107
4161
|
document?: never;
|
|
4108
4162
|
$unknown: [string, any];
|
|
4109
4163
|
}
|
|
4164
|
+
/**
|
|
4165
|
+
* @deprecated unused in schema-serde mode.
|
|
4166
|
+
*
|
|
4167
|
+
*/
|
|
4110
4168
|
interface Visitor<T> {
|
|
4111
4169
|
document: (value: __DocumentType) => T;
|
|
4112
4170
|
_: (name: string, value: any) => T;
|
|
4113
4171
|
}
|
|
4114
|
-
const visit: <T>(value: FlowMultiTurnInputContent, visitor: Visitor<T>) => T;
|
|
4115
4172
|
}
|
|
4116
4173
|
/**
|
|
4117
4174
|
* @public
|
|
@@ -4175,11 +4232,14 @@ export declare namespace FlowOutputContent {
|
|
|
4175
4232
|
document?: never;
|
|
4176
4233
|
$unknown: [string, any];
|
|
4177
4234
|
}
|
|
4235
|
+
/**
|
|
4236
|
+
* @deprecated unused in schema-serde mode.
|
|
4237
|
+
*
|
|
4238
|
+
*/
|
|
4178
4239
|
interface Visitor<T> {
|
|
4179
4240
|
document: (value: __DocumentType) => T;
|
|
4180
4241
|
_: (name: string, value: any) => T;
|
|
4181
4242
|
}
|
|
4182
|
-
const visit: <T>(value: FlowOutputContent, visitor: Visitor<T>) => T;
|
|
4183
4243
|
}
|
|
4184
4244
|
/**
|
|
4185
4245
|
* <p>Contains information about an output from prompt flow invoction.</p>
|
|
@@ -4299,11 +4359,14 @@ export declare namespace TraceElements {
|
|
|
4299
4359
|
agentTraces?: never;
|
|
4300
4360
|
$unknown: [string, any];
|
|
4301
4361
|
}
|
|
4362
|
+
/**
|
|
4363
|
+
* @deprecated unused in schema-serde mode.
|
|
4364
|
+
*
|
|
4365
|
+
*/
|
|
4302
4366
|
interface Visitor<T> {
|
|
4303
4367
|
agentTraces: (value: TracePart[]) => T;
|
|
4304
4368
|
_: (name: string, value: any) => T;
|
|
4305
4369
|
}
|
|
4306
|
-
const visit: <T>(value: TraceElements, visitor: Visitor<T>) => T;
|
|
4307
4370
|
}
|
|
4308
4371
|
/**
|
|
4309
4372
|
* <p>Contains information about a dependency trace event in the flow.</p>
|
|
@@ -4350,11 +4413,14 @@ export declare namespace FlowTraceNodeInputContent {
|
|
|
4350
4413
|
document?: never;
|
|
4351
4414
|
$unknown: [string, any];
|
|
4352
4415
|
}
|
|
4416
|
+
/**
|
|
4417
|
+
* @deprecated unused in schema-serde mode.
|
|
4418
|
+
*
|
|
4419
|
+
*/
|
|
4353
4420
|
interface Visitor<T> {
|
|
4354
4421
|
document: (value: __DocumentType) => T;
|
|
4355
4422
|
_: (name: string, value: any) => T;
|
|
4356
4423
|
}
|
|
4357
|
-
const visit: <T>(value: FlowTraceNodeInputContent, visitor: Visitor<T>) => T;
|
|
4358
4424
|
}
|
|
4359
4425
|
/**
|
|
4360
4426
|
* <p>Represents an item in the execution chain for flow trace node input tracking.</p>
|
|
@@ -4479,11 +4545,14 @@ export declare namespace FlowTraceNodeOutputContent {
|
|
|
4479
4545
|
document?: never;
|
|
4480
4546
|
$unknown: [string, any];
|
|
4481
4547
|
}
|
|
4548
|
+
/**
|
|
4549
|
+
* @deprecated unused in schema-serde mode.
|
|
4550
|
+
*
|
|
4551
|
+
*/
|
|
4482
4552
|
interface Visitor<T> {
|
|
4483
4553
|
document: (value: __DocumentType) => T;
|
|
4484
4554
|
_: (name: string, value: any) => T;
|
|
4485
4555
|
}
|
|
4486
|
-
const visit: <T>(value: FlowTraceNodeOutputContent, visitor: Visitor<T>) => T;
|
|
4487
4556
|
}
|
|
4488
4557
|
/**
|
|
4489
4558
|
* <p>Represents the next node that receives output data from a flow trace.</p>
|
|
@@ -4628,6 +4697,10 @@ export declare namespace FlowTrace {
|
|
|
4628
4697
|
nodeDependencyTrace?: never;
|
|
4629
4698
|
$unknown: [string, any];
|
|
4630
4699
|
}
|
|
4700
|
+
/**
|
|
4701
|
+
* @deprecated unused in schema-serde mode.
|
|
4702
|
+
*
|
|
4703
|
+
*/
|
|
4631
4704
|
interface Visitor<T> {
|
|
4632
4705
|
nodeInputTrace: (value: FlowTraceNodeInputEvent) => T;
|
|
4633
4706
|
nodeOutputTrace: (value: FlowTraceNodeOutputEvent) => T;
|
|
@@ -4636,7 +4709,6 @@ export declare namespace FlowTrace {
|
|
|
4636
4709
|
nodeDependencyTrace: (value: FlowTraceDependencyEvent) => T;
|
|
4637
4710
|
_: (name: string, value: any) => T;
|
|
4638
4711
|
}
|
|
4639
|
-
const visit: <T>(value: FlowTrace, visitor: Visitor<T>) => T;
|
|
4640
4712
|
}
|
|
4641
4713
|
/**
|
|
4642
4714
|
* <p>Contains information about a trace, which tracks an input or output for a node in the flow. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/flows-trace.html">Track each step in your prompt flow by viewing its trace in Amazon Bedrock</a>.</p>
|
|
@@ -4937,6 +5009,10 @@ export declare namespace FlowResponseStream {
|
|
|
4937
5009
|
flowMultiTurnInputRequestEvent?: never;
|
|
4938
5010
|
$unknown: [string, any];
|
|
4939
5011
|
}
|
|
5012
|
+
/**
|
|
5013
|
+
* @deprecated unused in schema-serde mode.
|
|
5014
|
+
*
|
|
5015
|
+
*/
|
|
4940
5016
|
interface Visitor<T> {
|
|
4941
5017
|
flowOutputEvent: (value: FlowOutputEvent) => T;
|
|
4942
5018
|
flowCompletionEvent: (value: FlowCompletionEvent) => T;
|
|
@@ -4953,7 +5029,6 @@ export declare namespace FlowResponseStream {
|
|
|
4953
5029
|
flowMultiTurnInputRequestEvent: (value: FlowMultiTurnInputRequestEvent) => T;
|
|
4954
5030
|
_: (name: string, value: any) => T;
|
|
4955
5031
|
}
|
|
4956
|
-
const visit: <T>(value: FlowResponseStream, visitor: Visitor<T>) => T;
|
|
4957
5032
|
}
|
|
4958
5033
|
/**
|
|
4959
5034
|
* @public
|
|
@@ -5165,11 +5240,14 @@ export declare namespace ContentBlock {
|
|
|
5165
5240
|
text?: never;
|
|
5166
5241
|
$unknown: [string, any];
|
|
5167
5242
|
}
|
|
5243
|
+
/**
|
|
5244
|
+
* @deprecated unused in schema-serde mode.
|
|
5245
|
+
*
|
|
5246
|
+
*/
|
|
5168
5247
|
interface Visitor<T> {
|
|
5169
5248
|
text: (value: string) => T;
|
|
5170
5249
|
_: (name: string, value: any) => T;
|
|
5171
5250
|
}
|
|
5172
|
-
const visit: <T>(value: ContentBlock, visitor: Visitor<T>) => T;
|
|
5173
5251
|
}
|
|
5174
5252
|
/**
|
|
5175
5253
|
* @public
|
|
@@ -5440,12 +5518,15 @@ export declare namespace RerankingMetadataSelectiveModeConfiguration {
|
|
|
5440
5518
|
fieldsToExclude?: never;
|
|
5441
5519
|
$unknown: [string, any];
|
|
5442
5520
|
}
|
|
5521
|
+
/**
|
|
5522
|
+
* @deprecated unused in schema-serde mode.
|
|
5523
|
+
*
|
|
5524
|
+
*/
|
|
5443
5525
|
interface Visitor<T> {
|
|
5444
5526
|
fieldsToInclude: (value: FieldForReranking[]) => T;
|
|
5445
5527
|
fieldsToExclude: (value: FieldForReranking[]) => T;
|
|
5446
5528
|
_: (name: string, value: any) => T;
|
|
5447
5529
|
}
|
|
5448
|
-
const visit: <T>(value: RerankingMetadataSelectiveModeConfiguration, visitor: Visitor<T>) => T;
|
|
5449
5530
|
}
|
|
5450
5531
|
/**
|
|
5451
5532
|
* <p>Contains configurations for the metadata to use in reranking.</p>
|
|
@@ -5996,6 +6077,10 @@ export declare namespace ResponseStream {
|
|
|
5996
6077
|
files?: never;
|
|
5997
6078
|
$unknown: [string, any];
|
|
5998
6079
|
}
|
|
6080
|
+
/**
|
|
6081
|
+
* @deprecated unused in schema-serde mode.
|
|
6082
|
+
*
|
|
6083
|
+
*/
|
|
5999
6084
|
interface Visitor<T> {
|
|
6000
6085
|
chunk: (value: PayloadPart) => T;
|
|
6001
6086
|
trace: (value: TracePart) => T;
|
|
@@ -6013,7 +6098,6 @@ export declare namespace ResponseStream {
|
|
|
6013
6098
|
files: (value: FilePart) => T;
|
|
6014
6099
|
_: (name: string, value: any) => T;
|
|
6015
6100
|
}
|
|
6016
|
-
const visit: <T>(value: ResponseStream, visitor: Visitor<T>) => T;
|
|
6017
6101
|
}
|
|
6018
6102
|
/**
|
|
6019
6103
|
* @public
|
|
@@ -6203,11 +6287,14 @@ export declare namespace OrchestrationExecutor {
|
|
|
6203
6287
|
lambda?: never;
|
|
6204
6288
|
$unknown: [string, any];
|
|
6205
6289
|
}
|
|
6290
|
+
/**
|
|
6291
|
+
* @deprecated unused in schema-serde mode.
|
|
6292
|
+
*
|
|
6293
|
+
*/
|
|
6206
6294
|
interface Visitor<T> {
|
|
6207
6295
|
lambda: (value: string) => T;
|
|
6208
6296
|
_: (name: string, value: any) => T;
|
|
6209
6297
|
}
|
|
6210
|
-
const visit: <T>(value: OrchestrationExecutor, visitor: Visitor<T>) => T;
|
|
6211
6298
|
}
|
|
6212
6299
|
/**
|
|
6213
6300
|
* <p>Contains details of the custom orchestration configured for the agent. </p>
|
|
@@ -6630,6 +6717,10 @@ export declare namespace InlineAgentResponseStream {
|
|
|
6630
6717
|
files?: never;
|
|
6631
6718
|
$unknown: [string, any];
|
|
6632
6719
|
}
|
|
6720
|
+
/**
|
|
6721
|
+
* @deprecated unused in schema-serde mode.
|
|
6722
|
+
*
|
|
6723
|
+
*/
|
|
6633
6724
|
interface Visitor<T> {
|
|
6634
6725
|
chunk: (value: InlineAgentPayloadPart) => T;
|
|
6635
6726
|
trace: (value: InlineAgentTracePart) => T;
|
|
@@ -6646,7 +6737,6 @@ export declare namespace InlineAgentResponseStream {
|
|
|
6646
6737
|
files: (value: InlineAgentFilePart) => T;
|
|
6647
6738
|
_: (name: string, value: any) => T;
|
|
6648
6739
|
}
|
|
6649
|
-
const visit: <T>(value: InlineAgentResponseStream, visitor: Visitor<T>) => T;
|
|
6650
6740
|
}
|
|
6651
6741
|
/**
|
|
6652
6742
|
* @public
|
|
@@ -6799,11 +6889,14 @@ export declare namespace Memory {
|
|
|
6799
6889
|
sessionSummary?: never;
|
|
6800
6890
|
$unknown: [string, any];
|
|
6801
6891
|
}
|
|
6892
|
+
/**
|
|
6893
|
+
* @deprecated unused in schema-serde mode.
|
|
6894
|
+
*
|
|
6895
|
+
*/
|
|
6802
6896
|
interface Visitor<T> {
|
|
6803
6897
|
sessionSummary: (value: MemorySessionSummary) => T;
|
|
6804
6898
|
_: (name: string, value: any) => T;
|
|
6805
6899
|
}
|
|
6806
|
-
const visit: <T>(value: Memory, visitor: Visitor<T>) => T;
|
|
6807
6900
|
}
|
|
6808
6901
|
/**
|
|
6809
6902
|
* @public
|
|
@@ -6855,11 +6948,14 @@ export declare namespace InputPrompt {
|
|
|
6855
6948
|
textPrompt?: never;
|
|
6856
6949
|
$unknown: [string, any];
|
|
6857
6950
|
}
|
|
6951
|
+
/**
|
|
6952
|
+
* @deprecated unused in schema-serde mode.
|
|
6953
|
+
*
|
|
6954
|
+
*/
|
|
6858
6955
|
interface Visitor<T> {
|
|
6859
6956
|
textPrompt: (value: TextPrompt) => T;
|
|
6860
6957
|
_: (name: string, value: any) => T;
|
|
6861
6958
|
}
|
|
6862
|
-
const visit: <T>(value: InputPrompt, visitor: Visitor<T>) => T;
|
|
6863
6959
|
}
|
|
6864
6960
|
/**
|
|
6865
6961
|
* @public
|
|
@@ -6911,11 +7007,14 @@ export declare namespace OptimizedPrompt {
|
|
|
6911
7007
|
textPrompt?: never;
|
|
6912
7008
|
$unknown: [string, any];
|
|
6913
7009
|
}
|
|
7010
|
+
/**
|
|
7011
|
+
* @deprecated unused in schema-serde mode.
|
|
7012
|
+
*
|
|
7013
|
+
*/
|
|
6914
7014
|
interface Visitor<T> {
|
|
6915
7015
|
textPrompt: (value: TextPrompt) => T;
|
|
6916
7016
|
_: (name: string, value: any) => T;
|
|
6917
7017
|
}
|
|
6918
|
-
const visit: <T>(value: OptimizedPrompt, visitor: Visitor<T>) => T;
|
|
6919
7018
|
}
|
|
6920
7019
|
/**
|
|
6921
7020
|
* <p>An event in which the prompt was optimized.</p>
|
|
@@ -7071,6 +7170,10 @@ export declare namespace OptimizedPromptStream {
|
|
|
7071
7170
|
badGatewayException?: never;
|
|
7072
7171
|
$unknown: [string, any];
|
|
7073
7172
|
}
|
|
7173
|
+
/**
|
|
7174
|
+
* @deprecated unused in schema-serde mode.
|
|
7175
|
+
*
|
|
7176
|
+
*/
|
|
7074
7177
|
interface Visitor<T> {
|
|
7075
7178
|
optimizedPromptEvent: (value: OptimizedPromptEvent) => T;
|
|
7076
7179
|
analyzePromptEvent: (value: AnalyzePromptEvent) => T;
|
|
@@ -7082,7 +7185,6 @@ export declare namespace OptimizedPromptStream {
|
|
|
7082
7185
|
badGatewayException: (value: BadGatewayException) => T;
|
|
7083
7186
|
_: (name: string, value: any) => T;
|
|
7084
7187
|
}
|
|
7085
|
-
const visit: <T>(value: OptimizedPromptStream, visitor: Visitor<T>) => T;
|
|
7086
7188
|
}
|
|
7087
7189
|
/**
|
|
7088
7190
|
* @public
|
|
@@ -7450,647 +7552,3 @@ export interface S3ObjectDoc {
|
|
|
7450
7552
|
*/
|
|
7451
7553
|
uri: string | undefined;
|
|
7452
7554
|
}
|
|
7453
|
-
/**
|
|
7454
|
-
* @internal
|
|
7455
|
-
*/
|
|
7456
|
-
export declare const ActionGroupInvocationInputFilterSensitiveLog: (obj: ActionGroupInvocationInput) => any;
|
|
7457
|
-
/**
|
|
7458
|
-
* @internal
|
|
7459
|
-
*/
|
|
7460
|
-
export declare const UsageFilterSensitiveLog: (obj: Usage) => any;
|
|
7461
|
-
/**
|
|
7462
|
-
* @internal
|
|
7463
|
-
*/
|
|
7464
|
-
export declare const MetadataFilterSensitiveLog: (obj: Metadata) => any;
|
|
7465
|
-
/**
|
|
7466
|
-
* @internal
|
|
7467
|
-
*/
|
|
7468
|
-
export declare const ActionGroupInvocationOutputFilterSensitiveLog: (obj: ActionGroupInvocationOutput) => any;
|
|
7469
|
-
/**
|
|
7470
|
-
* @internal
|
|
7471
|
-
*/
|
|
7472
|
-
export declare const APISchemaFilterSensitiveLog: (obj: APISchema) => any;
|
|
7473
|
-
/**
|
|
7474
|
-
* @internal
|
|
7475
|
-
*/
|
|
7476
|
-
export declare const FunctionDefinitionFilterSensitiveLog: (obj: FunctionDefinition) => any;
|
|
7477
|
-
/**
|
|
7478
|
-
* @internal
|
|
7479
|
-
*/
|
|
7480
|
-
export declare const FunctionSchemaFilterSensitiveLog: (obj: FunctionSchema) => any;
|
|
7481
|
-
/**
|
|
7482
|
-
* @internal
|
|
7483
|
-
*/
|
|
7484
|
-
export declare const AgentActionGroupFilterSensitiveLog: (obj: AgentActionGroup) => any;
|
|
7485
|
-
/**
|
|
7486
|
-
* @internal
|
|
7487
|
-
*/
|
|
7488
|
-
export declare const ApiResultFilterSensitiveLog: (obj: ApiResult) => any;
|
|
7489
|
-
/**
|
|
7490
|
-
* @internal
|
|
7491
|
-
*/
|
|
7492
|
-
export declare const InvocationResultMemberFilterSensitiveLog: (obj: InvocationResultMember) => any;
|
|
7493
|
-
/**
|
|
7494
|
-
* @internal
|
|
7495
|
-
*/
|
|
7496
|
-
export declare const ReturnControlResultsFilterSensitiveLog: (obj: ReturnControlResults) => any;
|
|
7497
|
-
/**
|
|
7498
|
-
* @internal
|
|
7499
|
-
*/
|
|
7500
|
-
export declare const AgentCollaboratorInputPayloadFilterSensitiveLog: (obj: AgentCollaboratorInputPayload) => any;
|
|
7501
|
-
/**
|
|
7502
|
-
* @internal
|
|
7503
|
-
*/
|
|
7504
|
-
export declare const AgentCollaboratorInvocationInputFilterSensitiveLog: (obj: AgentCollaboratorInvocationInput) => any;
|
|
7505
|
-
/**
|
|
7506
|
-
* @internal
|
|
7507
|
-
*/
|
|
7508
|
-
export declare const ApiInvocationInputFilterSensitiveLog: (obj: ApiInvocationInput) => any;
|
|
7509
|
-
/**
|
|
7510
|
-
* @internal
|
|
7511
|
-
*/
|
|
7512
|
-
export declare const FunctionInvocationInputFilterSensitiveLog: (obj: FunctionInvocationInput) => any;
|
|
7513
|
-
/**
|
|
7514
|
-
* @internal
|
|
7515
|
-
*/
|
|
7516
|
-
export declare const InvocationInputMemberFilterSensitiveLog: (obj: InvocationInputMember) => any;
|
|
7517
|
-
/**
|
|
7518
|
-
* @internal
|
|
7519
|
-
*/
|
|
7520
|
-
export declare const ReturnControlPayloadFilterSensitiveLog: (obj: ReturnControlPayload) => any;
|
|
7521
|
-
/**
|
|
7522
|
-
* @internal
|
|
7523
|
-
*/
|
|
7524
|
-
export declare const AgentCollaboratorOutputPayloadFilterSensitiveLog: (obj: AgentCollaboratorOutputPayload) => any;
|
|
7525
|
-
/**
|
|
7526
|
-
* @internal
|
|
7527
|
-
*/
|
|
7528
|
-
export declare const AgentCollaboratorInvocationOutputFilterSensitiveLog: (obj: AgentCollaboratorInvocationOutput) => any;
|
|
7529
|
-
/**
|
|
7530
|
-
* @internal
|
|
7531
|
-
*/
|
|
7532
|
-
export declare const CustomOrchestrationTraceEventFilterSensitiveLog: (obj: CustomOrchestrationTraceEvent) => any;
|
|
7533
|
-
/**
|
|
7534
|
-
* @internal
|
|
7535
|
-
*/
|
|
7536
|
-
export declare const CustomOrchestrationTraceFilterSensitiveLog: (obj: CustomOrchestrationTrace) => any;
|
|
7537
|
-
/**
|
|
7538
|
-
* @internal
|
|
7539
|
-
*/
|
|
7540
|
-
export declare const FailureTraceFilterSensitiveLog: (obj: FailureTrace) => any;
|
|
7541
|
-
/**
|
|
7542
|
-
* @internal
|
|
7543
|
-
*/
|
|
7544
|
-
export declare const GuardrailContentFilterFilterSensitiveLog: (obj: GuardrailContentFilter) => any;
|
|
7545
|
-
/**
|
|
7546
|
-
* @internal
|
|
7547
|
-
*/
|
|
7548
|
-
export declare const GuardrailContentPolicyAssessmentFilterSensitiveLog: (obj: GuardrailContentPolicyAssessment) => any;
|
|
7549
|
-
/**
|
|
7550
|
-
* @internal
|
|
7551
|
-
*/
|
|
7552
|
-
export declare const GuardrailPiiEntityFilterFilterSensitiveLog: (obj: GuardrailPiiEntityFilter) => any;
|
|
7553
|
-
/**
|
|
7554
|
-
* @internal
|
|
7555
|
-
*/
|
|
7556
|
-
export declare const GuardrailRegexFilterFilterSensitiveLog: (obj: GuardrailRegexFilter) => any;
|
|
7557
|
-
/**
|
|
7558
|
-
* @internal
|
|
7559
|
-
*/
|
|
7560
|
-
export declare const GuardrailSensitiveInformationPolicyAssessmentFilterSensitiveLog: (obj: GuardrailSensitiveInformationPolicyAssessment) => any;
|
|
7561
|
-
/**
|
|
7562
|
-
* @internal
|
|
7563
|
-
*/
|
|
7564
|
-
export declare const GuardrailTopicFilterSensitiveLog: (obj: GuardrailTopic) => any;
|
|
7565
|
-
/**
|
|
7566
|
-
* @internal
|
|
7567
|
-
*/
|
|
7568
|
-
export declare const GuardrailTopicPolicyAssessmentFilterSensitiveLog: (obj: GuardrailTopicPolicyAssessment) => any;
|
|
7569
|
-
/**
|
|
7570
|
-
* @internal
|
|
7571
|
-
*/
|
|
7572
|
-
export declare const GuardrailCustomWordFilterSensitiveLog: (obj: GuardrailCustomWord) => any;
|
|
7573
|
-
/**
|
|
7574
|
-
* @internal
|
|
7575
|
-
*/
|
|
7576
|
-
export declare const GuardrailManagedWordFilterSensitiveLog: (obj: GuardrailManagedWord) => any;
|
|
7577
|
-
/**
|
|
7578
|
-
* @internal
|
|
7579
|
-
*/
|
|
7580
|
-
export declare const GuardrailWordPolicyAssessmentFilterSensitiveLog: (obj: GuardrailWordPolicyAssessment) => any;
|
|
7581
|
-
/**
|
|
7582
|
-
* @internal
|
|
7583
|
-
*/
|
|
7584
|
-
export declare const GuardrailAssessmentFilterSensitiveLog: (obj: GuardrailAssessment) => any;
|
|
7585
|
-
/**
|
|
7586
|
-
* @internal
|
|
7587
|
-
*/
|
|
7588
|
-
export declare const GuardrailTraceFilterSensitiveLog: (obj: GuardrailTrace) => any;
|
|
7589
|
-
/**
|
|
7590
|
-
* @internal
|
|
7591
|
-
*/
|
|
7592
|
-
export declare const KnowledgeBaseLookupInputFilterSensitiveLog: (obj: KnowledgeBaseLookupInput) => any;
|
|
7593
|
-
/**
|
|
7594
|
-
* @internal
|
|
7595
|
-
*/
|
|
7596
|
-
export declare const InvocationInputFilterSensitiveLog: (obj: InvocationInput) => any;
|
|
7597
|
-
/**
|
|
7598
|
-
* @internal
|
|
7599
|
-
*/
|
|
7600
|
-
export declare const ModelInvocationInputFilterSensitiveLog: (obj: ModelInvocationInput) => any;
|
|
7601
|
-
/**
|
|
7602
|
-
* @internal
|
|
7603
|
-
*/
|
|
7604
|
-
export declare const RawResponseFilterSensitiveLog: (obj: RawResponse) => any;
|
|
7605
|
-
/**
|
|
7606
|
-
* @internal
|
|
7607
|
-
*/
|
|
7608
|
-
export declare const ReasoningTextBlockFilterSensitiveLog: (obj: ReasoningTextBlock) => any;
|
|
7609
|
-
/**
|
|
7610
|
-
* @internal
|
|
7611
|
-
*/
|
|
7612
|
-
export declare const ReasoningContentBlockFilterSensitiveLog: (obj: ReasoningContentBlock) => any;
|
|
7613
|
-
/**
|
|
7614
|
-
* @internal
|
|
7615
|
-
*/
|
|
7616
|
-
export declare const OrchestrationModelInvocationOutputFilterSensitiveLog: (obj: OrchestrationModelInvocationOutput) => any;
|
|
7617
|
-
/**
|
|
7618
|
-
* @internal
|
|
7619
|
-
*/
|
|
7620
|
-
export declare const CodeInterpreterInvocationOutputFilterSensitiveLog: (obj: CodeInterpreterInvocationOutput) => any;
|
|
7621
|
-
/**
|
|
7622
|
-
* @internal
|
|
7623
|
-
*/
|
|
7624
|
-
export declare const FinalResponseFilterSensitiveLog: (obj: FinalResponse) => any;
|
|
7625
|
-
/**
|
|
7626
|
-
* @internal
|
|
7627
|
-
*/
|
|
7628
|
-
export declare const RetrievalResultContentColumnFilterSensitiveLog: (obj: RetrievalResultContentColumn) => any;
|
|
7629
|
-
/**
|
|
7630
|
-
* @internal
|
|
7631
|
-
*/
|
|
7632
|
-
export declare const RetrievalResultContentFilterSensitiveLog: (obj: RetrievalResultContent) => any;
|
|
7633
|
-
/**
|
|
7634
|
-
* @internal
|
|
7635
|
-
*/
|
|
7636
|
-
export declare const RetrievalResultLocationFilterSensitiveLog: (obj: RetrievalResultLocation) => any;
|
|
7637
|
-
/**
|
|
7638
|
-
* @internal
|
|
7639
|
-
*/
|
|
7640
|
-
export declare const RetrievedReferenceFilterSensitiveLog: (obj: RetrievedReference) => any;
|
|
7641
|
-
/**
|
|
7642
|
-
* @internal
|
|
7643
|
-
*/
|
|
7644
|
-
export declare const KnowledgeBaseLookupOutputFilterSensitiveLog: (obj: KnowledgeBaseLookupOutput) => any;
|
|
7645
|
-
/**
|
|
7646
|
-
* @internal
|
|
7647
|
-
*/
|
|
7648
|
-
export declare const RepromptResponseFilterSensitiveLog: (obj: RepromptResponse) => any;
|
|
7649
|
-
/**
|
|
7650
|
-
* @internal
|
|
7651
|
-
*/
|
|
7652
|
-
export declare const ObservationFilterSensitiveLog: (obj: Observation) => any;
|
|
7653
|
-
/**
|
|
7654
|
-
* @internal
|
|
7655
|
-
*/
|
|
7656
|
-
export declare const RationaleFilterSensitiveLog: (obj: Rationale) => any;
|
|
7657
|
-
/**
|
|
7658
|
-
* @internal
|
|
7659
|
-
*/
|
|
7660
|
-
export declare const OrchestrationTraceFilterSensitiveLog: (obj: OrchestrationTrace) => any;
|
|
7661
|
-
/**
|
|
7662
|
-
* @internal
|
|
7663
|
-
*/
|
|
7664
|
-
export declare const PostProcessingParsedResponseFilterSensitiveLog: (obj: PostProcessingParsedResponse) => any;
|
|
7665
|
-
/**
|
|
7666
|
-
* @internal
|
|
7667
|
-
*/
|
|
7668
|
-
export declare const PostProcessingModelInvocationOutputFilterSensitiveLog: (obj: PostProcessingModelInvocationOutput) => any;
|
|
7669
|
-
/**
|
|
7670
|
-
* @internal
|
|
7671
|
-
*/
|
|
7672
|
-
export declare const PostProcessingTraceFilterSensitiveLog: (obj: PostProcessingTrace) => any;
|
|
7673
|
-
/**
|
|
7674
|
-
* @internal
|
|
7675
|
-
*/
|
|
7676
|
-
export declare const PreProcessingParsedResponseFilterSensitiveLog: (obj: PreProcessingParsedResponse) => any;
|
|
7677
|
-
/**
|
|
7678
|
-
* @internal
|
|
7679
|
-
*/
|
|
7680
|
-
export declare const PreProcessingModelInvocationOutputFilterSensitiveLog: (obj: PreProcessingModelInvocationOutput) => any;
|
|
7681
|
-
/**
|
|
7682
|
-
* @internal
|
|
7683
|
-
*/
|
|
7684
|
-
export declare const PreProcessingTraceFilterSensitiveLog: (obj: PreProcessingTrace) => any;
|
|
7685
|
-
/**
|
|
7686
|
-
* @internal
|
|
7687
|
-
*/
|
|
7688
|
-
export declare const RoutingClassifierModelInvocationOutputFilterSensitiveLog: (obj: RoutingClassifierModelInvocationOutput) => any;
|
|
7689
|
-
/**
|
|
7690
|
-
* @internal
|
|
7691
|
-
*/
|
|
7692
|
-
export declare const RoutingClassifierTraceFilterSensitiveLog: (obj: RoutingClassifierTrace) => any;
|
|
7693
|
-
/**
|
|
7694
|
-
* @internal
|
|
7695
|
-
*/
|
|
7696
|
-
export declare const TraceFilterSensitiveLog: (obj: Trace) => any;
|
|
7697
|
-
/**
|
|
7698
|
-
* @internal
|
|
7699
|
-
*/
|
|
7700
|
-
export declare const TracePartFilterSensitiveLog: (obj: TracePart) => any;
|
|
7701
|
-
/**
|
|
7702
|
-
* @internal
|
|
7703
|
-
*/
|
|
7704
|
-
export declare const SatisfiedConditionFilterSensitiveLog: (obj: SatisfiedCondition) => any;
|
|
7705
|
-
/**
|
|
7706
|
-
* @internal
|
|
7707
|
-
*/
|
|
7708
|
-
export declare const ConditionResultEventFilterSensitiveLog: (obj: ConditionResultEvent) => any;
|
|
7709
|
-
/**
|
|
7710
|
-
* @internal
|
|
7711
|
-
*/
|
|
7712
|
-
export declare const FlowFailureEventFilterSensitiveLog: (obj: FlowFailureEvent) => any;
|
|
7713
|
-
/**
|
|
7714
|
-
* @internal
|
|
7715
|
-
*/
|
|
7716
|
-
export declare const FlowExecutionContentFilterSensitiveLog: (obj: FlowExecutionContent) => any;
|
|
7717
|
-
/**
|
|
7718
|
-
* @internal
|
|
7719
|
-
*/
|
|
7720
|
-
export declare const FlowInputFieldFilterSensitiveLog: (obj: FlowInputField) => any;
|
|
7721
|
-
/**
|
|
7722
|
-
* @internal
|
|
7723
|
-
*/
|
|
7724
|
-
export declare const FlowExecutionInputEventFilterSensitiveLog: (obj: FlowExecutionInputEvent) => any;
|
|
7725
|
-
/**
|
|
7726
|
-
* @internal
|
|
7727
|
-
*/
|
|
7728
|
-
export declare const FlowOutputFieldFilterSensitiveLog: (obj: FlowOutputField) => any;
|
|
7729
|
-
/**
|
|
7730
|
-
* @internal
|
|
7731
|
-
*/
|
|
7732
|
-
export declare const FlowExecutionOutputEventFilterSensitiveLog: (obj: FlowExecutionOutputEvent) => any;
|
|
7733
|
-
/**
|
|
7734
|
-
* @internal
|
|
7735
|
-
*/
|
|
7736
|
-
export declare const NodeActionEventFilterSensitiveLog: (obj: NodeActionEvent) => any;
|
|
7737
|
-
/**
|
|
7738
|
-
* @internal
|
|
7739
|
-
*/
|
|
7740
|
-
export declare const NodeTraceElementsFilterSensitiveLog: (obj: NodeTraceElements) => any;
|
|
7741
|
-
/**
|
|
7742
|
-
* @internal
|
|
7743
|
-
*/
|
|
7744
|
-
export declare const NodeDependencyEventFilterSensitiveLog: (obj: NodeDependencyEvent) => any;
|
|
7745
|
-
/**
|
|
7746
|
-
* @internal
|
|
7747
|
-
*/
|
|
7748
|
-
export declare const NodeFailureEventFilterSensitiveLog: (obj: NodeFailureEvent) => any;
|
|
7749
|
-
/**
|
|
7750
|
-
* @internal
|
|
7751
|
-
*/
|
|
7752
|
-
export declare const NodeExecutionContentFilterSensitiveLog: (obj: NodeExecutionContent) => any;
|
|
7753
|
-
/**
|
|
7754
|
-
* @internal
|
|
7755
|
-
*/
|
|
7756
|
-
export declare const NodeInputSourceFilterSensitiveLog: (obj: NodeInputSource) => any;
|
|
7757
|
-
/**
|
|
7758
|
-
* @internal
|
|
7759
|
-
*/
|
|
7760
|
-
export declare const NodeInputFieldFilterSensitiveLog: (obj: NodeInputField) => any;
|
|
7761
|
-
/**
|
|
7762
|
-
* @internal
|
|
7763
|
-
*/
|
|
7764
|
-
export declare const NodeInputEventFilterSensitiveLog: (obj: NodeInputEvent) => any;
|
|
7765
|
-
/**
|
|
7766
|
-
* @internal
|
|
7767
|
-
*/
|
|
7768
|
-
export declare const NodeOutputNextFilterSensitiveLog: (obj: NodeOutputNext) => any;
|
|
7769
|
-
/**
|
|
7770
|
-
* @internal
|
|
7771
|
-
*/
|
|
7772
|
-
export declare const NodeOutputFieldFilterSensitiveLog: (obj: NodeOutputField) => any;
|
|
7773
|
-
/**
|
|
7774
|
-
* @internal
|
|
7775
|
-
*/
|
|
7776
|
-
export declare const NodeOutputEventFilterSensitiveLog: (obj: NodeOutputEvent) => any;
|
|
7777
|
-
/**
|
|
7778
|
-
* @internal
|
|
7779
|
-
*/
|
|
7780
|
-
export declare const FlowExecutionEventFilterSensitiveLog: (obj: FlowExecutionEvent) => any;
|
|
7781
|
-
/**
|
|
7782
|
-
* @internal
|
|
7783
|
-
*/
|
|
7784
|
-
export declare const ListFlowExecutionEventsResponseFilterSensitiveLog: (obj: ListFlowExecutionEventsResponse) => any;
|
|
7785
|
-
/**
|
|
7786
|
-
* @internal
|
|
7787
|
-
*/
|
|
7788
|
-
export declare const FlowInputContentFilterSensitiveLog: (obj: FlowInputContent) => any;
|
|
7789
|
-
/**
|
|
7790
|
-
* @internal
|
|
7791
|
-
*/
|
|
7792
|
-
export declare const FlowInputFilterSensitiveLog: (obj: FlowInput) => any;
|
|
7793
|
-
/**
|
|
7794
|
-
* @internal
|
|
7795
|
-
*/
|
|
7796
|
-
export declare const StartFlowExecutionRequestFilterSensitiveLog: (obj: StartFlowExecutionRequest) => any;
|
|
7797
|
-
/**
|
|
7798
|
-
* @internal
|
|
7799
|
-
*/
|
|
7800
|
-
export declare const InvokeFlowRequestFilterSensitiveLog: (obj: InvokeFlowRequest) => any;
|
|
7801
|
-
/**
|
|
7802
|
-
* @internal
|
|
7803
|
-
*/
|
|
7804
|
-
export declare const FlowCompletionEventFilterSensitiveLog: (obj: FlowCompletionEvent) => any;
|
|
7805
|
-
/**
|
|
7806
|
-
* @internal
|
|
7807
|
-
*/
|
|
7808
|
-
export declare const FlowMultiTurnInputRequestEventFilterSensitiveLog: (obj: FlowMultiTurnInputRequestEvent) => any;
|
|
7809
|
-
/**
|
|
7810
|
-
* @internal
|
|
7811
|
-
*/
|
|
7812
|
-
export declare const FlowOutputEventFilterSensitiveLog: (obj: FlowOutputEvent) => any;
|
|
7813
|
-
/**
|
|
7814
|
-
* @internal
|
|
7815
|
-
*/
|
|
7816
|
-
export declare const FlowTraceConditionFilterSensitiveLog: (obj: FlowTraceCondition) => any;
|
|
7817
|
-
/**
|
|
7818
|
-
* @internal
|
|
7819
|
-
*/
|
|
7820
|
-
export declare const FlowTraceConditionNodeResultEventFilterSensitiveLog: (obj: FlowTraceConditionNodeResultEvent) => any;
|
|
7821
|
-
/**
|
|
7822
|
-
* @internal
|
|
7823
|
-
*/
|
|
7824
|
-
export declare const FlowTraceNodeActionEventFilterSensitiveLog: (obj: FlowTraceNodeActionEvent) => any;
|
|
7825
|
-
/**
|
|
7826
|
-
* @internal
|
|
7827
|
-
*/
|
|
7828
|
-
export declare const TraceElementsFilterSensitiveLog: (obj: TraceElements) => any;
|
|
7829
|
-
/**
|
|
7830
|
-
* @internal
|
|
7831
|
-
*/
|
|
7832
|
-
export declare const FlowTraceDependencyEventFilterSensitiveLog: (obj: FlowTraceDependencyEvent) => any;
|
|
7833
|
-
/**
|
|
7834
|
-
* @internal
|
|
7835
|
-
*/
|
|
7836
|
-
export declare const FlowTraceNodeInputContentFilterSensitiveLog: (obj: FlowTraceNodeInputContent) => any;
|
|
7837
|
-
/**
|
|
7838
|
-
* @internal
|
|
7839
|
-
*/
|
|
7840
|
-
export declare const FlowTraceNodeInputExecutionChainItemFilterSensitiveLog: (obj: FlowTraceNodeInputExecutionChainItem) => any;
|
|
7841
|
-
/**
|
|
7842
|
-
* @internal
|
|
7843
|
-
*/
|
|
7844
|
-
export declare const FlowTraceNodeInputSourceFilterSensitiveLog: (obj: FlowTraceNodeInputSource) => any;
|
|
7845
|
-
/**
|
|
7846
|
-
* @internal
|
|
7847
|
-
*/
|
|
7848
|
-
export declare const FlowTraceNodeInputFieldFilterSensitiveLog: (obj: FlowTraceNodeInputField) => any;
|
|
7849
|
-
/**
|
|
7850
|
-
* @internal
|
|
7851
|
-
*/
|
|
7852
|
-
export declare const FlowTraceNodeInputEventFilterSensitiveLog: (obj: FlowTraceNodeInputEvent) => any;
|
|
7853
|
-
/**
|
|
7854
|
-
* @internal
|
|
7855
|
-
*/
|
|
7856
|
-
export declare const FlowTraceNodeOutputNextFilterSensitiveLog: (obj: FlowTraceNodeOutputNext) => any;
|
|
7857
|
-
/**
|
|
7858
|
-
* @internal
|
|
7859
|
-
*/
|
|
7860
|
-
export declare const FlowTraceNodeOutputFieldFilterSensitiveLog: (obj: FlowTraceNodeOutputField) => any;
|
|
7861
|
-
/**
|
|
7862
|
-
* @internal
|
|
7863
|
-
*/
|
|
7864
|
-
export declare const FlowTraceNodeOutputEventFilterSensitiveLog: (obj: FlowTraceNodeOutputEvent) => any;
|
|
7865
|
-
/**
|
|
7866
|
-
* @internal
|
|
7867
|
-
*/
|
|
7868
|
-
export declare const FlowTraceFilterSensitiveLog: (obj: FlowTrace) => any;
|
|
7869
|
-
/**
|
|
7870
|
-
* @internal
|
|
7871
|
-
*/
|
|
7872
|
-
export declare const FlowTraceEventFilterSensitiveLog: (obj: FlowTraceEvent) => any;
|
|
7873
|
-
/**
|
|
7874
|
-
* @internal
|
|
7875
|
-
*/
|
|
7876
|
-
export declare const FlowResponseStreamFilterSensitiveLog: (obj: FlowResponseStream) => any;
|
|
7877
|
-
/**
|
|
7878
|
-
* @internal
|
|
7879
|
-
*/
|
|
7880
|
-
export declare const InvokeFlowResponseFilterSensitiveLog: (obj: InvokeFlowResponse) => any;
|
|
7881
|
-
/**
|
|
7882
|
-
* @internal
|
|
7883
|
-
*/
|
|
7884
|
-
export declare const QueryGenerationInputFilterSensitiveLog: (obj: QueryGenerationInput) => any;
|
|
7885
|
-
/**
|
|
7886
|
-
* @internal
|
|
7887
|
-
*/
|
|
7888
|
-
export declare const GenerateQueryRequestFilterSensitiveLog: (obj: GenerateQueryRequest) => any;
|
|
7889
|
-
/**
|
|
7890
|
-
* @internal
|
|
7891
|
-
*/
|
|
7892
|
-
export declare const GeneratedQueryFilterSensitiveLog: (obj: GeneratedQuery) => any;
|
|
7893
|
-
/**
|
|
7894
|
-
* @internal
|
|
7895
|
-
*/
|
|
7896
|
-
export declare const GenerateQueryResponseFilterSensitiveLog: (obj: GenerateQueryResponse) => any;
|
|
7897
|
-
/**
|
|
7898
|
-
* @internal
|
|
7899
|
-
*/
|
|
7900
|
-
export declare const ContentBlockFilterSensitiveLog: (obj: ContentBlock) => any;
|
|
7901
|
-
/**
|
|
7902
|
-
* @internal
|
|
7903
|
-
*/
|
|
7904
|
-
export declare const MessageFilterSensitiveLog: (obj: Message) => any;
|
|
7905
|
-
/**
|
|
7906
|
-
* @internal
|
|
7907
|
-
*/
|
|
7908
|
-
export declare const ConversationHistoryFilterSensitiveLog: (obj: ConversationHistory) => any;
|
|
7909
|
-
/**
|
|
7910
|
-
* @internal
|
|
7911
|
-
*/
|
|
7912
|
-
export declare const ByteContentFileFilterSensitiveLog: (obj: ByteContentFile) => any;
|
|
7913
|
-
/**
|
|
7914
|
-
* @internal
|
|
7915
|
-
*/
|
|
7916
|
-
export declare const FileSourceFilterSensitiveLog: (obj: FileSource) => any;
|
|
7917
|
-
/**
|
|
7918
|
-
* @internal
|
|
7919
|
-
*/
|
|
7920
|
-
export declare const InputFileFilterSensitiveLog: (obj: InputFile) => any;
|
|
7921
|
-
/**
|
|
7922
|
-
* @internal
|
|
7923
|
-
*/
|
|
7924
|
-
export declare const MetadataAttributeSchemaFilterSensitiveLog: (obj: MetadataAttributeSchema) => any;
|
|
7925
|
-
/**
|
|
7926
|
-
* @internal
|
|
7927
|
-
*/
|
|
7928
|
-
export declare const ImplicitFilterConfigurationFilterSensitiveLog: (obj: ImplicitFilterConfiguration) => any;
|
|
7929
|
-
/**
|
|
7930
|
-
* @internal
|
|
7931
|
-
*/
|
|
7932
|
-
export declare const RerankingMetadataSelectiveModeConfigurationFilterSensitiveLog: (obj: RerankingMetadataSelectiveModeConfiguration) => any;
|
|
7933
|
-
/**
|
|
7934
|
-
* @internal
|
|
7935
|
-
*/
|
|
7936
|
-
export declare const MetadataConfigurationForRerankingFilterSensitiveLog: (obj: MetadataConfigurationForReranking) => any;
|
|
7937
|
-
/**
|
|
7938
|
-
* @internal
|
|
7939
|
-
*/
|
|
7940
|
-
export declare const VectorSearchBedrockRerankingConfigurationFilterSensitiveLog: (obj: VectorSearchBedrockRerankingConfiguration) => any;
|
|
7941
|
-
/**
|
|
7942
|
-
* @internal
|
|
7943
|
-
*/
|
|
7944
|
-
export declare const VectorSearchRerankingConfigurationFilterSensitiveLog: (obj: VectorSearchRerankingConfiguration) => any;
|
|
7945
|
-
/**
|
|
7946
|
-
* @internal
|
|
7947
|
-
*/
|
|
7948
|
-
export declare const TextResponsePartFilterSensitiveLog: (obj: TextResponsePart) => any;
|
|
7949
|
-
/**
|
|
7950
|
-
* @internal
|
|
7951
|
-
*/
|
|
7952
|
-
export declare const GeneratedResponsePartFilterSensitiveLog: (obj: GeneratedResponsePart) => any;
|
|
7953
|
-
/**
|
|
7954
|
-
* @internal
|
|
7955
|
-
*/
|
|
7956
|
-
export declare const CitationFilterSensitiveLog: (obj: Citation) => any;
|
|
7957
|
-
/**
|
|
7958
|
-
* @internal
|
|
7959
|
-
*/
|
|
7960
|
-
export declare const AttributionFilterSensitiveLog: (obj: Attribution) => any;
|
|
7961
|
-
/**
|
|
7962
|
-
* @internal
|
|
7963
|
-
*/
|
|
7964
|
-
export declare const PayloadPartFilterSensitiveLog: (obj: PayloadPart) => any;
|
|
7965
|
-
/**
|
|
7966
|
-
* @internal
|
|
7967
|
-
*/
|
|
7968
|
-
export declare const OutputFileFilterSensitiveLog: (obj: OutputFile) => any;
|
|
7969
|
-
/**
|
|
7970
|
-
* @internal
|
|
7971
|
-
*/
|
|
7972
|
-
export declare const FilePartFilterSensitiveLog: (obj: FilePart) => any;
|
|
7973
|
-
/**
|
|
7974
|
-
* @internal
|
|
7975
|
-
*/
|
|
7976
|
-
export declare const ResponseStreamFilterSensitiveLog: (obj: ResponseStream) => any;
|
|
7977
|
-
/**
|
|
7978
|
-
* @internal
|
|
7979
|
-
*/
|
|
7980
|
-
export declare const InvokeAgentResponseFilterSensitiveLog: (obj: InvokeAgentResponse) => any;
|
|
7981
|
-
/**
|
|
7982
|
-
* @internal
|
|
7983
|
-
*/
|
|
7984
|
-
export declare const CollaboratorConfigurationFilterSensitiveLog: (obj: CollaboratorConfiguration) => any;
|
|
7985
|
-
/**
|
|
7986
|
-
* @internal
|
|
7987
|
-
*/
|
|
7988
|
-
export declare const PromptConfigurationFilterSensitiveLog: (obj: PromptConfiguration) => any;
|
|
7989
|
-
/**
|
|
7990
|
-
* @internal
|
|
7991
|
-
*/
|
|
7992
|
-
export declare const PromptOverrideConfigurationFilterSensitiveLog: (obj: PromptOverrideConfiguration) => any;
|
|
7993
|
-
/**
|
|
7994
|
-
* @internal
|
|
7995
|
-
*/
|
|
7996
|
-
export declare const InlineSessionStateFilterSensitiveLog: (obj: InlineSessionState) => any;
|
|
7997
|
-
/**
|
|
7998
|
-
* @internal
|
|
7999
|
-
*/
|
|
8000
|
-
export declare const InlineAgentPayloadPartFilterSensitiveLog: (obj: InlineAgentPayloadPart) => any;
|
|
8001
|
-
/**
|
|
8002
|
-
* @internal
|
|
8003
|
-
*/
|
|
8004
|
-
export declare const InlineAgentFilePartFilterSensitiveLog: (obj: InlineAgentFilePart) => any;
|
|
8005
|
-
/**
|
|
8006
|
-
* @internal
|
|
8007
|
-
*/
|
|
8008
|
-
export declare const InlineAgentReturnControlPayloadFilterSensitiveLog: (obj: InlineAgentReturnControlPayload) => any;
|
|
8009
|
-
/**
|
|
8010
|
-
* @internal
|
|
8011
|
-
*/
|
|
8012
|
-
export declare const InlineAgentTracePartFilterSensitiveLog: (obj: InlineAgentTracePart) => any;
|
|
8013
|
-
/**
|
|
8014
|
-
* @internal
|
|
8015
|
-
*/
|
|
8016
|
-
export declare const InlineAgentResponseStreamFilterSensitiveLog: (obj: InlineAgentResponseStream) => any;
|
|
8017
|
-
/**
|
|
8018
|
-
* @internal
|
|
8019
|
-
*/
|
|
8020
|
-
export declare const InvokeInlineAgentResponseFilterSensitiveLog: (obj: InvokeInlineAgentResponse) => any;
|
|
8021
|
-
/**
|
|
8022
|
-
* @internal
|
|
8023
|
-
*/
|
|
8024
|
-
export declare const TextPromptFilterSensitiveLog: (obj: TextPrompt) => any;
|
|
8025
|
-
/**
|
|
8026
|
-
* @internal
|
|
8027
|
-
*/
|
|
8028
|
-
export declare const InputPromptFilterSensitiveLog: (obj: InputPrompt) => any;
|
|
8029
|
-
/**
|
|
8030
|
-
* @internal
|
|
8031
|
-
*/
|
|
8032
|
-
export declare const OptimizePromptRequestFilterSensitiveLog: (obj: OptimizePromptRequest) => any;
|
|
8033
|
-
/**
|
|
8034
|
-
* @internal
|
|
8035
|
-
*/
|
|
8036
|
-
export declare const AnalyzePromptEventFilterSensitiveLog: (obj: AnalyzePromptEvent) => any;
|
|
8037
|
-
/**
|
|
8038
|
-
* @internal
|
|
8039
|
-
*/
|
|
8040
|
-
export declare const OptimizedPromptFilterSensitiveLog: (obj: OptimizedPrompt) => any;
|
|
8041
|
-
/**
|
|
8042
|
-
* @internal
|
|
8043
|
-
*/
|
|
8044
|
-
export declare const OptimizedPromptEventFilterSensitiveLog: (obj: OptimizedPromptEvent) => any;
|
|
8045
|
-
/**
|
|
8046
|
-
* @internal
|
|
8047
|
-
*/
|
|
8048
|
-
export declare const OptimizedPromptStreamFilterSensitiveLog: (obj: OptimizedPromptStream) => any;
|
|
8049
|
-
/**
|
|
8050
|
-
* @internal
|
|
8051
|
-
*/
|
|
8052
|
-
export declare const OptimizePromptResponseFilterSensitiveLog: (obj: OptimizePromptResponse) => any;
|
|
8053
|
-
/**
|
|
8054
|
-
* @internal
|
|
8055
|
-
*/
|
|
8056
|
-
export declare const RerankTextDocumentFilterSensitiveLog: (obj: RerankTextDocument) => any;
|
|
8057
|
-
/**
|
|
8058
|
-
* @internal
|
|
8059
|
-
*/
|
|
8060
|
-
export declare const RerankQueryFilterSensitiveLog: (obj: RerankQuery) => any;
|
|
8061
|
-
/**
|
|
8062
|
-
* @internal
|
|
8063
|
-
*/
|
|
8064
|
-
export declare const RerankDocumentFilterSensitiveLog: (obj: RerankDocument) => any;
|
|
8065
|
-
/**
|
|
8066
|
-
* @internal
|
|
8067
|
-
*/
|
|
8068
|
-
export declare const RerankSourceFilterSensitiveLog: (obj: RerankSource) => any;
|
|
8069
|
-
/**
|
|
8070
|
-
* @internal
|
|
8071
|
-
*/
|
|
8072
|
-
export declare const RerankRequestFilterSensitiveLog: (obj: RerankRequest) => any;
|
|
8073
|
-
/**
|
|
8074
|
-
* @internal
|
|
8075
|
-
*/
|
|
8076
|
-
export declare const RerankResultFilterSensitiveLog: (obj: RerankResult) => any;
|
|
8077
|
-
/**
|
|
8078
|
-
* @internal
|
|
8079
|
-
*/
|
|
8080
|
-
export declare const RerankResponseFilterSensitiveLog: (obj: RerankResponse) => any;
|
|
8081
|
-
/**
|
|
8082
|
-
* @internal
|
|
8083
|
-
*/
|
|
8084
|
-
export declare const RetrieveAndGenerateInputFilterSensitiveLog: (obj: RetrieveAndGenerateInput) => any;
|
|
8085
|
-
/**
|
|
8086
|
-
* @internal
|
|
8087
|
-
*/
|
|
8088
|
-
export declare const PromptTemplateFilterSensitiveLog: (obj: PromptTemplate) => any;
|
|
8089
|
-
/**
|
|
8090
|
-
* @internal
|
|
8091
|
-
*/
|
|
8092
|
-
export declare const ExternalSourcesGenerationConfigurationFilterSensitiveLog: (obj: ExternalSourcesGenerationConfiguration) => any;
|
|
8093
|
-
/**
|
|
8094
|
-
* @internal
|
|
8095
|
-
*/
|
|
8096
|
-
export declare const ByteContentDocFilterSensitiveLog: (obj: ByteContentDoc) => any;
|