aws-sdk-bedrockagentruntime 1.48.0 → 1.50.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentruntime/client.rb +71 -13
- data/lib/aws-sdk-bedrockagentruntime/client_api.rb +35 -0
- data/lib/aws-sdk-bedrockagentruntime/types.rb +216 -33
- data/lib/aws-sdk-bedrockagentruntime.rb +1 -1
- data/sig/client.rbs +40 -6
- data/sig/types.rbs +33 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b07bb15ebfa72e4db880d882429d0e4784cab646a17ceb9ee3d3591812f88b05
|
4
|
+
data.tar.gz: d54d82c278c990eeb11280c4e0c4fd5b04856ede5a8a09c29c037f3515f0e75e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f549199dea001edf2dadee757b64b0f5bcb984d0dda2af0a97e49630cccff2c47a5e2431f5c61bd834129f4e9b39441f1e0c317bcae337bbd13e0f92d8a50e91
|
7
|
+
data.tar.gz: fae6b8e9a9a02d10956cb0d20eb022e5b0c1ca3319863684d4d35afe6508158e4b42b28f0ac2b846c8e9d44d417f0f6d26ff98392b2c5e95e2c5a06da731d989
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2025-03-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - bedrock flow now support node action trace.
|
8
|
+
|
9
|
+
1.49.0 (2025-03-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for computer use tools
|
13
|
+
|
4
14
|
1.48.0 (2025-03-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -577,7 +577,7 @@ module Aws::BedrockAgentRuntime
|
|
577
577
|
#
|
578
578
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/sessions.html
|
579
579
|
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/session-encryption.html
|
580
|
-
# [3]: https://docs.aws.amazon.com/bedrock/latest/API_agent-runtime_InvokeAgent.html
|
580
|
+
# [3]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html
|
581
581
|
# [4]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_ListSessions.html
|
582
582
|
# [5]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_GetSession.html
|
583
583
|
# [6]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_EndSession.html
|
@@ -976,15 +976,6 @@ module Aws::BedrockAgentRuntime
|
|
976
976
|
# final result it yielded. For more information, see [Trace
|
977
977
|
# enablement][1].
|
978
978
|
#
|
979
|
-
# * To stream agent responses, make sure that only orchestration prompt
|
980
|
-
# is enabled. Agent streaming is not supported for the following
|
981
|
-
# steps:
|
982
|
-
#
|
983
|
-
# * `Pre-processing`
|
984
|
-
#
|
985
|
-
# * `Post-processing`
|
986
|
-
#
|
987
|
-
# * Agent with 1 Knowledge base and `User Input` not enabled
|
988
979
|
# * End a conversation by setting `endSession` to `true`.
|
989
980
|
#
|
990
981
|
# * In the `sessionState` object, you can include attributes for the
|
@@ -1455,6 +1446,14 @@ module Aws::BedrockAgentRuntime
|
|
1455
1446
|
# response_body: {
|
1456
1447
|
# "String" => {
|
1457
1448
|
# body: "String",
|
1449
|
+
# images: [
|
1450
|
+
# {
|
1451
|
+
# format: "png", # required, accepts png, jpeg, gif, webp
|
1452
|
+
# source: { # required
|
1453
|
+
# bytes: "data",
|
1454
|
+
# },
|
1455
|
+
# },
|
1456
|
+
# ],
|
1458
1457
|
# },
|
1459
1458
|
# },
|
1460
1459
|
# response_state: "FAILURE", # accepts FAILURE, REPROMPT
|
@@ -1467,6 +1466,14 @@ module Aws::BedrockAgentRuntime
|
|
1467
1466
|
# response_body: {
|
1468
1467
|
# "String" => {
|
1469
1468
|
# body: "String",
|
1469
|
+
# images: [
|
1470
|
+
# {
|
1471
|
+
# format: "png", # required, accepts png, jpeg, gif, webp
|
1472
|
+
# source: { # required
|
1473
|
+
# bytes: "data",
|
1474
|
+
# },
|
1475
|
+
# },
|
1476
|
+
# ],
|
1470
1477
|
# },
|
1471
1478
|
# },
|
1472
1479
|
# response_state: "FAILURE", # accepts FAILURE, REPROMPT
|
@@ -1671,6 +1678,9 @@ module Aws::BedrockAgentRuntime
|
|
1671
1678
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.http_status_code #=> Integer
|
1672
1679
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body #=> Hash
|
1673
1680
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].body #=> String
|
1681
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images #=> Array
|
1682
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
1683
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].source.bytes #=> String
|
1674
1684
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
1675
1685
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.action_group #=> String
|
1676
1686
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.agent_id #=> String
|
@@ -1678,6 +1688,9 @@ module Aws::BedrockAgentRuntime
|
|
1678
1688
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.function #=> String
|
1679
1689
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body #=> Hash
|
1680
1690
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].body #=> String
|
1691
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images #=> Array
|
1692
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
1693
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].source.bytes #=> String
|
1681
1694
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
1682
1695
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.text #=> String
|
1683
1696
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.type #=> String, one of "TEXT", "RETURN_CONTROL"
|
@@ -1839,6 +1852,9 @@ module Aws::BedrockAgentRuntime
|
|
1839
1852
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.http_status_code #=> Integer
|
1840
1853
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body #=> Hash
|
1841
1854
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].body #=> String
|
1855
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images #=> Array
|
1856
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
1857
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].source.bytes #=> String
|
1842
1858
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
1843
1859
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.action_group #=> String
|
1844
1860
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.agent_id #=> String
|
@@ -1846,6 +1862,9 @@ module Aws::BedrockAgentRuntime
|
|
1846
1862
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.function #=> String
|
1847
1863
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body #=> Hash
|
1848
1864
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].body #=> String
|
1865
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images #=> Array
|
1866
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
1867
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].source.bytes #=> String
|
1849
1868
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
1850
1869
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.text #=> String
|
1851
1870
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.type #=> String, one of "TEXT", "RETURN_CONTROL"
|
@@ -2267,6 +2286,11 @@ module Aws::BedrockAgentRuntime
|
|
2267
2286
|
# event.trace.condition_node_result_trace.satisfied_conditions #=> Array
|
2268
2287
|
# event.trace.condition_node_result_trace.satisfied_conditions[0].condition_name #=> String
|
2269
2288
|
# event.trace.condition_node_result_trace.timestamp #=> Time
|
2289
|
+
# event.trace.node_action_trace.node_name #=> String
|
2290
|
+
# event.trace.node_action_trace.operation_name #=> String
|
2291
|
+
# event.trace.node_action_trace.request_id #=> String
|
2292
|
+
# event.trace.node_action_trace.service_name #=> String
|
2293
|
+
# event.trace.node_action_trace.timestamp #=> Time
|
2270
2294
|
# event.trace.node_input_trace.fields #=> Array
|
2271
2295
|
# event.trace.node_input_trace.fields[0].node_input_name #=> String
|
2272
2296
|
# event.trace.node_input_trace.node_name #=> String
|
@@ -2685,7 +2709,10 @@ module Aws::BedrockAgentRuntime
|
|
2685
2709
|
# },
|
2686
2710
|
# ],
|
2687
2711
|
# },
|
2688
|
-
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter
|
2712
|
+
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter, ANTHROPIC.Computer, ANTHROPIC.Bash, ANTHROPIC.TextEditor
|
2713
|
+
# parent_action_group_signature_params: {
|
2714
|
+
# "ActionGroupSignatureParamsKeyString" => "ActionGroupSignatureParamsValueString",
|
2715
|
+
# },
|
2689
2716
|
# },
|
2690
2717
|
# ],
|
2691
2718
|
# agent_collaboration: "SUPERVISOR", # accepts SUPERVISOR, SUPERVISOR_ROUTER, DISABLED
|
@@ -2735,7 +2762,10 @@ module Aws::BedrockAgentRuntime
|
|
2735
2762
|
# },
|
2736
2763
|
# ],
|
2737
2764
|
# },
|
2738
|
-
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter
|
2765
|
+
# parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter, ANTHROPIC.Computer, ANTHROPIC.Bash, ANTHROPIC.TextEditor
|
2766
|
+
# parent_action_group_signature_params: {
|
2767
|
+
# "ActionGroupSignatureParamsKeyString" => "ActionGroupSignatureParamsValueString",
|
2768
|
+
# },
|
2739
2769
|
# },
|
2740
2770
|
# ],
|
2741
2771
|
# agent_collaboration: "SUPERVISOR", # accepts SUPERVISOR, SUPERVISOR_ROUTER, DISABLED
|
@@ -2951,6 +2981,14 @@ module Aws::BedrockAgentRuntime
|
|
2951
2981
|
# response_body: {
|
2952
2982
|
# "String" => {
|
2953
2983
|
# body: "String",
|
2984
|
+
# images: [
|
2985
|
+
# {
|
2986
|
+
# format: "png", # required, accepts png, jpeg, gif, webp
|
2987
|
+
# source: { # required
|
2988
|
+
# bytes: "data",
|
2989
|
+
# },
|
2990
|
+
# },
|
2991
|
+
# ],
|
2954
2992
|
# },
|
2955
2993
|
# },
|
2956
2994
|
# response_state: "FAILURE", # accepts FAILURE, REPROMPT
|
@@ -2963,6 +3001,14 @@ module Aws::BedrockAgentRuntime
|
|
2963
3001
|
# response_body: {
|
2964
3002
|
# "String" => {
|
2965
3003
|
# body: "String",
|
3004
|
+
# images: [
|
3005
|
+
# {
|
3006
|
+
# format: "png", # required, accepts png, jpeg, gif, webp
|
3007
|
+
# source: { # required
|
3008
|
+
# bytes: "data",
|
3009
|
+
# },
|
3010
|
+
# },
|
3011
|
+
# ],
|
2966
3012
|
# },
|
2967
3013
|
# },
|
2968
3014
|
# response_state: "FAILURE", # accepts FAILURE, REPROMPT
|
@@ -3298,6 +3344,9 @@ module Aws::BedrockAgentRuntime
|
|
3298
3344
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.http_status_code #=> Integer
|
3299
3345
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body #=> Hash
|
3300
3346
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].body #=> String
|
3347
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images #=> Array
|
3348
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
3349
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].source.bytes #=> String
|
3301
3350
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
3302
3351
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.action_group #=> String
|
3303
3352
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.agent_id #=> String
|
@@ -3305,6 +3354,9 @@ module Aws::BedrockAgentRuntime
|
|
3305
3354
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.function #=> String
|
3306
3355
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body #=> Hash
|
3307
3356
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].body #=> String
|
3357
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images #=> Array
|
3358
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
3359
|
+
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].source.bytes #=> String
|
3308
3360
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
3309
3361
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.text #=> String
|
3310
3362
|
# event.trace.orchestration_trace.invocation_input.agent_collaborator_invocation_input.input.type #=> String, one of "TEXT", "RETURN_CONTROL"
|
@@ -3466,6 +3518,9 @@ module Aws::BedrockAgentRuntime
|
|
3466
3518
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.http_status_code #=> Integer
|
3467
3519
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body #=> Hash
|
3468
3520
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].body #=> String
|
3521
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images #=> Array
|
3522
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
3523
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_body["String"].images[0].source.bytes #=> String
|
3469
3524
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].api_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
3470
3525
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.action_group #=> String
|
3471
3526
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.agent_id #=> String
|
@@ -3473,6 +3528,9 @@ module Aws::BedrockAgentRuntime
|
|
3473
3528
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.function #=> String
|
3474
3529
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body #=> Hash
|
3475
3530
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].body #=> String
|
3531
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images #=> Array
|
3532
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].format #=> String, one of "png", "jpeg", "gif", "webp"
|
3533
|
+
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_body["String"].images[0].source.bytes #=> String
|
3476
3534
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.return_control_results.return_control_invocation_results[0].function_result.response_state #=> String, one of "FAILURE", "REPROMPT"
|
3477
3535
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.text #=> String
|
3478
3536
|
# event.trace.routing_classifier_trace.invocation_input.agent_collaborator_invocation_input.input.type #=> String, one of "TEXT", "RETURN_CONTROL"
|
@@ -5369,7 +5427,7 @@ module Aws::BedrockAgentRuntime
|
|
5369
5427
|
tracer: tracer
|
5370
5428
|
)
|
5371
5429
|
context[:gem_name] = 'aws-sdk-bedrockagentruntime'
|
5372
|
-
context[:gem_version] = '1.
|
5430
|
+
context[:gem_version] = '1.50.0'
|
5373
5431
|
Seahorse::Client::Request.new(handlers, context)
|
5374
5432
|
end
|
5375
5433
|
|
@@ -23,6 +23,9 @@ module Aws::BedrockAgentRuntime
|
|
23
23
|
ActionGroupName = Shapes::StringShape.new(name: 'ActionGroupName')
|
24
24
|
ActionGroupOutputString = Shapes::StringShape.new(name: 'ActionGroupOutputString')
|
25
25
|
ActionGroupSignature = Shapes::StringShape.new(name: 'ActionGroupSignature')
|
26
|
+
ActionGroupSignatureParams = Shapes::MapShape.new(name: 'ActionGroupSignatureParams')
|
27
|
+
ActionGroupSignatureParamsKeyString = Shapes::StringShape.new(name: 'ActionGroupSignatureParamsKeyString')
|
28
|
+
ActionGroupSignatureParamsValueString = Shapes::StringShape.new(name: 'ActionGroupSignatureParamsValueString')
|
26
29
|
ActionInvocationType = Shapes::StringShape.new(name: 'ActionInvocationType')
|
27
30
|
AdditionalModelRequestFields = Shapes::MapShape.new(name: 'AdditionalModelRequestFields')
|
28
31
|
AdditionalModelRequestFieldsKey = Shapes::StringShape.new(name: 'AdditionalModelRequestFieldsKey')
|
@@ -145,6 +148,7 @@ module Aws::BedrockAgentRuntime
|
|
145
148
|
FlowTraceConditionNodeResultEvent = Shapes::StructureShape.new(name: 'FlowTraceConditionNodeResultEvent')
|
146
149
|
FlowTraceConditions = Shapes::ListShape.new(name: 'FlowTraceConditions')
|
147
150
|
FlowTraceEvent = Shapes::StructureShape.new(name: 'FlowTraceEvent')
|
151
|
+
FlowTraceNodeActionEvent = Shapes::StructureShape.new(name: 'FlowTraceNodeActionEvent')
|
148
152
|
FlowTraceNodeInputContent = Shapes::UnionShape.new(name: 'FlowTraceNodeInputContent')
|
149
153
|
FlowTraceNodeInputEvent = Shapes::StructureShape.new(name: 'FlowTraceNodeInputEvent')
|
150
154
|
FlowTraceNodeInputField = Shapes::StructureShape.new(name: 'FlowTraceNodeInputField')
|
@@ -215,6 +219,11 @@ module Aws::BedrockAgentRuntime
|
|
215
219
|
Identifier = Shapes::StringShape.new(name: 'Identifier')
|
216
220
|
ImageBlock = Shapes::StructureShape.new(name: 'ImageBlock')
|
217
221
|
ImageFormat = Shapes::StringShape.new(name: 'ImageFormat')
|
222
|
+
ImageInput = Shapes::StructureShape.new(name: 'ImageInput')
|
223
|
+
ImageInputFormat = Shapes::StringShape.new(name: 'ImageInputFormat')
|
224
|
+
ImageInputSource = Shapes::UnionShape.new(name: 'ImageInputSource')
|
225
|
+
ImageInputSourceBytesBlob = Shapes::BlobShape.new(name: 'ImageInputSourceBytesBlob')
|
226
|
+
ImageInputs = Shapes::ListShape.new(name: 'ImageInputs')
|
218
227
|
ImageSource = Shapes::UnionShape.new(name: 'ImageSource')
|
219
228
|
ImageSourceBytesBlob = Shapes::BlobShape.new(name: 'ImageSourceBytesBlob')
|
220
229
|
ImplicitFilterConfiguration = Shapes::StructureShape.new(name: 'ImplicitFilterConfiguration')
|
@@ -538,6 +547,9 @@ module Aws::BedrockAgentRuntime
|
|
538
547
|
ActionGroupInvocationOutput.add_member(:text, Shapes::ShapeRef.new(shape: ActionGroupOutputString, location_name: "text"))
|
539
548
|
ActionGroupInvocationOutput.struct_class = Types::ActionGroupInvocationOutput
|
540
549
|
|
550
|
+
ActionGroupSignatureParams.key = Shapes::ShapeRef.new(shape: ActionGroupSignatureParamsKeyString)
|
551
|
+
ActionGroupSignatureParams.value = Shapes::ShapeRef.new(shape: ActionGroupSignatureParamsValueString)
|
552
|
+
|
541
553
|
AdditionalModelRequestFields.key = Shapes::ShapeRef.new(shape: AdditionalModelRequestFieldsKey)
|
542
554
|
AdditionalModelRequestFields.value = Shapes::ShapeRef.new(shape: AdditionalModelRequestFieldsValue)
|
543
555
|
|
@@ -547,6 +559,7 @@ module Aws::BedrockAgentRuntime
|
|
547
559
|
AgentActionGroup.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
548
560
|
AgentActionGroup.add_member(:function_schema, Shapes::ShapeRef.new(shape: FunctionSchema, location_name: "functionSchema"))
|
549
561
|
AgentActionGroup.add_member(:parent_action_group_signature, Shapes::ShapeRef.new(shape: ActionGroupSignature, location_name: "parentActionGroupSignature"))
|
562
|
+
AgentActionGroup.add_member(:parent_action_group_signature_params, Shapes::ShapeRef.new(shape: ActionGroupSignatureParams, location_name: "parentActionGroupSignatureParams"))
|
550
563
|
AgentActionGroup.struct_class = Types::AgentActionGroup
|
551
564
|
|
552
565
|
AgentActionGroups.member = Shapes::ShapeRef.new(shape: AgentActionGroup)
|
@@ -708,6 +721,7 @@ module Aws::BedrockAgentRuntime
|
|
708
721
|
ContentBlocks.member = Shapes::ShapeRef.new(shape: ContentBlock)
|
709
722
|
|
710
723
|
ContentBody.add_member(:body, Shapes::ShapeRef.new(shape: String, location_name: "body"))
|
724
|
+
ContentBody.add_member(:images, Shapes::ShapeRef.new(shape: ImageInputs, location_name: "images"))
|
711
725
|
ContentBody.struct_class = Types::ContentBody
|
712
726
|
|
713
727
|
ContentMap.key = Shapes::ShapeRef.new(shape: String)
|
@@ -869,10 +883,12 @@ module Aws::BedrockAgentRuntime
|
|
869
883
|
FlowResponseStream.struct_class = Types::FlowResponseStream
|
870
884
|
|
871
885
|
FlowTrace.add_member(:condition_node_result_trace, Shapes::ShapeRef.new(shape: FlowTraceConditionNodeResultEvent, location_name: "conditionNodeResultTrace"))
|
886
|
+
FlowTrace.add_member(:node_action_trace, Shapes::ShapeRef.new(shape: FlowTraceNodeActionEvent, location_name: "nodeActionTrace"))
|
872
887
|
FlowTrace.add_member(:node_input_trace, Shapes::ShapeRef.new(shape: FlowTraceNodeInputEvent, location_name: "nodeInputTrace"))
|
873
888
|
FlowTrace.add_member(:node_output_trace, Shapes::ShapeRef.new(shape: FlowTraceNodeOutputEvent, location_name: "nodeOutputTrace"))
|
874
889
|
FlowTrace.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
875
890
|
FlowTrace.add_member_subclass(:condition_node_result_trace, Types::FlowTrace::ConditionNodeResultTrace)
|
891
|
+
FlowTrace.add_member_subclass(:node_action_trace, Types::FlowTrace::NodeActionTrace)
|
876
892
|
FlowTrace.add_member_subclass(:node_input_trace, Types::FlowTrace::NodeInputTrace)
|
877
893
|
FlowTrace.add_member_subclass(:node_output_trace, Types::FlowTrace::NodeOutputTrace)
|
878
894
|
FlowTrace.add_member_subclass(:unknown, Types::FlowTrace::Unknown)
|
@@ -891,6 +907,13 @@ module Aws::BedrockAgentRuntime
|
|
891
907
|
FlowTraceEvent.add_member(:trace, Shapes::ShapeRef.new(shape: FlowTrace, required: true, location_name: "trace"))
|
892
908
|
FlowTraceEvent.struct_class = Types::FlowTraceEvent
|
893
909
|
|
910
|
+
FlowTraceNodeActionEvent.add_member(:node_name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "nodeName"))
|
911
|
+
FlowTraceNodeActionEvent.add_member(:operation_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "operationName"))
|
912
|
+
FlowTraceNodeActionEvent.add_member(:request_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "requestId"))
|
913
|
+
FlowTraceNodeActionEvent.add_member(:service_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceName"))
|
914
|
+
FlowTraceNodeActionEvent.add_member(:timestamp, Shapes::ShapeRef.new(shape: DateTimestamp, required: true, location_name: "timestamp"))
|
915
|
+
FlowTraceNodeActionEvent.struct_class = Types::FlowTraceNodeActionEvent
|
916
|
+
|
894
917
|
FlowTraceNodeInputContent.add_member(:document, Shapes::ShapeRef.new(shape: Document, location_name: "document"))
|
895
918
|
FlowTraceNodeInputContent.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
896
919
|
FlowTraceNodeInputContent.add_member_subclass(:document, Types::FlowTraceNodeInputContent::Document)
|
@@ -1102,6 +1125,18 @@ module Aws::BedrockAgentRuntime
|
|
1102
1125
|
ImageBlock.add_member(:source, Shapes::ShapeRef.new(shape: ImageSource, required: true, location_name: "source"))
|
1103
1126
|
ImageBlock.struct_class = Types::ImageBlock
|
1104
1127
|
|
1128
|
+
ImageInput.add_member(:format, Shapes::ShapeRef.new(shape: ImageInputFormat, required: true, location_name: "format"))
|
1129
|
+
ImageInput.add_member(:source, Shapes::ShapeRef.new(shape: ImageInputSource, required: true, location_name: "source"))
|
1130
|
+
ImageInput.struct_class = Types::ImageInput
|
1131
|
+
|
1132
|
+
ImageInputSource.add_member(:bytes, Shapes::ShapeRef.new(shape: ImageInputSourceBytesBlob, location_name: "bytes"))
|
1133
|
+
ImageInputSource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1134
|
+
ImageInputSource.add_member_subclass(:bytes, Types::ImageInputSource::Bytes)
|
1135
|
+
ImageInputSource.add_member_subclass(:unknown, Types::ImageInputSource::Unknown)
|
1136
|
+
ImageInputSource.struct_class = Types::ImageInputSource
|
1137
|
+
|
1138
|
+
ImageInputs.member = Shapes::ShapeRef.new(shape: ImageInput)
|
1139
|
+
|
1105
1140
|
ImageSource.add_member(:bytes, Shapes::ShapeRef.new(shape: ImageSourceBytesBlob, location_name: "bytes"))
|
1106
1141
|
ImageSource.add_member(:s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3Location"))
|
1107
1142
|
ImageSource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
@@ -205,28 +205,57 @@ module Aws::BedrockAgentRuntime
|
|
205
205
|
# @return [Types::FunctionSchema]
|
206
206
|
#
|
207
207
|
# @!attribute [rw] parent_action_group_signature
|
208
|
-
#
|
209
|
-
#
|
210
|
-
# `
|
211
|
-
#
|
212
|
-
#
|
213
|
-
#
|
214
|
-
#
|
215
|
-
#
|
216
|
-
#
|
217
|
-
#
|
208
|
+
# Specify a built-in or computer use action for this action group. If
|
209
|
+
# you specify a value, you must leave the `description`, `apiSchema`,
|
210
|
+
# and `actionGroupExecutor` fields empty for this action group.
|
211
|
+
#
|
212
|
+
# * To allow your agent to request the user for additional information
|
213
|
+
# when trying to complete a task, set this field to
|
214
|
+
# `AMAZON.UserInput`.
|
215
|
+
#
|
216
|
+
# * To allow your agent to generate, run, and troubleshoot code when
|
217
|
+
# trying to complete a task, set this field to
|
218
|
+
# `AMAZON.CodeInterpreter`.
|
219
|
+
#
|
220
|
+
# * To allow your agent to use an Anthropic computer use tool, specify
|
221
|
+
# one of the following values.
|
222
|
+
#
|
223
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
224
|
+
# available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet
|
225
|
+
# v2 only. When operating computer use functionality, we recommend
|
226
|
+
# taking additional security precautions, such as executing computer
|
227
|
+
# actions in virtual environments with restricted data access and
|
228
|
+
# limited internet connectivity. For more information, see
|
229
|
+
# [Configure an Amazon Bedrock Agent to complete tasks with computer
|
230
|
+
# use tools][1].
|
231
|
+
#
|
232
|
+
# * `ANTHROPIC.Computer` - Gives the agent permission to use the
|
233
|
+
# mouse and keyboard and take screenshots.
|
218
234
|
#
|
219
|
-
#
|
220
|
-
#
|
221
|
-
# information to complete the API request, it will invoke this action
|
222
|
-
# group instead and return an [Observation][1] reprompting the user
|
223
|
-
# for more information.
|
235
|
+
# * `ANTHROPIC.TextEditor` - Gives the agent permission to view,
|
236
|
+
# create and edit files.
|
224
237
|
#
|
238
|
+
# * `ANTHROPIC.Bash` - Gives the agent permission to run commands in
|
239
|
+
# a bash shell.
|
225
240
|
#
|
226
241
|
#
|
227
|
-
#
|
242
|
+
#
|
243
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
228
244
|
# @return [String]
|
229
245
|
#
|
246
|
+
# @!attribute [rw] parent_action_group_signature_params
|
247
|
+
# The configuration settings for a computer use action.
|
248
|
+
#
|
249
|
+
# Computer use is a new Anthropic Claude model capability (in beta)
|
250
|
+
# available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For
|
251
|
+
# more information, see [Configure an Amazon Bedrock Agent to complete
|
252
|
+
# tasks with computer use tools][1].
|
253
|
+
#
|
254
|
+
#
|
255
|
+
#
|
256
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
257
|
+
# @return [Hash<String,String>]
|
258
|
+
#
|
230
259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/AgentActionGroup AWS API Documentation
|
231
260
|
#
|
232
261
|
class AgentActionGroup < Struct.new(
|
@@ -235,7 +264,8 @@ module Aws::BedrockAgentRuntime
|
|
235
264
|
:api_schema,
|
236
265
|
:description,
|
237
266
|
:function_schema,
|
238
|
-
:parent_action_group_signature
|
267
|
+
:parent_action_group_signature,
|
268
|
+
:parent_action_group_signature_params)
|
239
269
|
SENSITIVE = [:action_group_name, :description]
|
240
270
|
include Aws::Structure
|
241
271
|
end
|
@@ -1013,10 +1043,23 @@ module Aws::BedrockAgentRuntime
|
|
1013
1043
|
# The body of the API response.
|
1014
1044
|
# @return [String]
|
1015
1045
|
#
|
1046
|
+
# @!attribute [rw] images
|
1047
|
+
# Lists details, including format and source, for the image in the
|
1048
|
+
# response from the function call. You can specify only one image and
|
1049
|
+
# the function in the `returnControlInvocationResults` must be a
|
1050
|
+
# computer use action. For more information, see [Configure an Amazon
|
1051
|
+
# Bedrock Agent to complete tasks with computer use tools][1].
|
1052
|
+
#
|
1053
|
+
#
|
1054
|
+
#
|
1055
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
1056
|
+
# @return [Array<Types::ImageInput>]
|
1057
|
+
#
|
1016
1058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ContentBody AWS API Documentation
|
1017
1059
|
#
|
1018
1060
|
class ContentBody < Struct.new(
|
1019
|
-
:body
|
1061
|
+
:body,
|
1062
|
+
:images)
|
1020
1063
|
SENSITIVE = []
|
1021
1064
|
include Aws::Structure
|
1022
1065
|
end
|
@@ -1674,6 +1717,16 @@ module Aws::BedrockAgentRuntime
|
|
1674
1717
|
# Contains information about an output from a condition node.
|
1675
1718
|
# @return [Types::FlowTraceConditionNodeResultEvent]
|
1676
1719
|
#
|
1720
|
+
# @!attribute [rw] node_action_trace
|
1721
|
+
# Contains information about an action (operation) called by a node.
|
1722
|
+
# For more information, see [Track each step in your prompt flow by
|
1723
|
+
# viewing its trace in Amazon Bedrock][1].
|
1724
|
+
#
|
1725
|
+
#
|
1726
|
+
#
|
1727
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/flows-trace.html
|
1728
|
+
# @return [Types::FlowTraceNodeActionEvent]
|
1729
|
+
#
|
1677
1730
|
# @!attribute [rw] node_input_trace
|
1678
1731
|
# Contains information about the input into a node.
|
1679
1732
|
# @return [Types::FlowTraceNodeInputEvent]
|
@@ -1686,14 +1739,16 @@ module Aws::BedrockAgentRuntime
|
|
1686
1739
|
#
|
1687
1740
|
class FlowTrace < Struct.new(
|
1688
1741
|
:condition_node_result_trace,
|
1742
|
+
:node_action_trace,
|
1689
1743
|
:node_input_trace,
|
1690
1744
|
:node_output_trace,
|
1691
1745
|
:unknown)
|
1692
|
-
SENSITIVE = [:condition_node_result_trace, :node_input_trace, :node_output_trace]
|
1746
|
+
SENSITIVE = [:condition_node_result_trace, :node_action_trace, :node_input_trace, :node_output_trace]
|
1693
1747
|
include Aws::Structure
|
1694
1748
|
include Aws::Structure::Union
|
1695
1749
|
|
1696
1750
|
class ConditionNodeResultTrace < FlowTrace; end
|
1751
|
+
class NodeActionTrace < FlowTrace; end
|
1697
1752
|
class NodeInputTrace < FlowTrace; end
|
1698
1753
|
class NodeOutputTrace < FlowTrace; end
|
1699
1754
|
class Unknown < FlowTrace; end
|
@@ -1772,6 +1827,43 @@ module Aws::BedrockAgentRuntime
|
|
1772
1827
|
include Aws::Structure
|
1773
1828
|
end
|
1774
1829
|
|
1830
|
+
# Contains information about an action (operation) called by a node in
|
1831
|
+
# an Amazon Bedrock flow. The service generates action events for calls
|
1832
|
+
# made by prompt nodes, agent nodes, and Amazon Web Services Lambda
|
1833
|
+
# nodes.
|
1834
|
+
#
|
1835
|
+
# @!attribute [rw] node_name
|
1836
|
+
# The name of the node that called the operation.
|
1837
|
+
# @return [String]
|
1838
|
+
#
|
1839
|
+
# @!attribute [rw] operation_name
|
1840
|
+
# The name of the operation that the node called.
|
1841
|
+
# @return [String]
|
1842
|
+
#
|
1843
|
+
# @!attribute [rw] request_id
|
1844
|
+
# The ID of the request that the node made to the operation.
|
1845
|
+
# @return [String]
|
1846
|
+
#
|
1847
|
+
# @!attribute [rw] service_name
|
1848
|
+
# The name of the service that the node called.
|
1849
|
+
# @return [String]
|
1850
|
+
#
|
1851
|
+
# @!attribute [rw] timestamp
|
1852
|
+
# The date and time that the operation was called.
|
1853
|
+
# @return [Time]
|
1854
|
+
#
|
1855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/FlowTraceNodeActionEvent AWS API Documentation
|
1856
|
+
#
|
1857
|
+
class FlowTraceNodeActionEvent < Struct.new(
|
1858
|
+
:node_name,
|
1859
|
+
:operation_name,
|
1860
|
+
:request_id,
|
1861
|
+
:service_name,
|
1862
|
+
:timestamp)
|
1863
|
+
SENSITIVE = []
|
1864
|
+
include Aws::Structure
|
1865
|
+
end
|
1866
|
+
|
1775
1867
|
# Contains the content of the node input. For more information, see
|
1776
1868
|
# [Track each step in your prompt flow by viewing its trace in Amazon
|
1777
1869
|
# Bedrock][1].
|
@@ -2086,10 +2178,18 @@ module Aws::BedrockAgentRuntime
|
|
2086
2178
|
# @return [String]
|
2087
2179
|
#
|
2088
2180
|
# @!attribute [rw] response_body
|
2089
|
-
# The response from the function call using the parameters. The
|
2090
|
-
#
|
2091
|
-
#
|
2092
|
-
#
|
2181
|
+
# The response from the function call using the parameters. The
|
2182
|
+
# response might be returned directly or from the Lambda function.
|
2183
|
+
# Specify `TEXT` or `IMAGES`. The key of the object is the content
|
2184
|
+
# type. You can only specify one type. If you specify `IMAGES`, you
|
2185
|
+
# can specify only one image. You can specify images only when the
|
2186
|
+
# function in the `returnControlInvocationResults` is a computer use
|
2187
|
+
# action. For more information, see [Configure an Amazon Bedrock Agent
|
2188
|
+
# to complete tasks with computer use tools][1].
|
2189
|
+
#
|
2190
|
+
#
|
2191
|
+
#
|
2192
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
2093
2193
|
# @return [Hash<String,Types::ContentBody>]
|
2094
2194
|
#
|
2095
2195
|
# @!attribute [rw] response_state
|
@@ -2778,6 +2878,57 @@ module Aws::BedrockAgentRuntime
|
|
2778
2878
|
include Aws::Structure
|
2779
2879
|
end
|
2780
2880
|
|
2881
|
+
# Details about an image in the result from a function in the action
|
2882
|
+
# group invocation. You can specify images only when the function is a
|
2883
|
+
# computer use action. For more information, see [Configure an Amazon
|
2884
|
+
# Bedrock Agent to complete tasks with computer use tools][1].
|
2885
|
+
#
|
2886
|
+
#
|
2887
|
+
#
|
2888
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agent-computer-use.html
|
2889
|
+
#
|
2890
|
+
# @!attribute [rw] format
|
2891
|
+
# The type of image in the result.
|
2892
|
+
# @return [String]
|
2893
|
+
#
|
2894
|
+
# @!attribute [rw] source
|
2895
|
+
# The source of the image in the result.
|
2896
|
+
# @return [Types::ImageInputSource]
|
2897
|
+
#
|
2898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ImageInput AWS API Documentation
|
2899
|
+
#
|
2900
|
+
class ImageInput < Struct.new(
|
2901
|
+
:format,
|
2902
|
+
:source)
|
2903
|
+
SENSITIVE = []
|
2904
|
+
include Aws::Structure
|
2905
|
+
end
|
2906
|
+
|
2907
|
+
# Details about the source of an input image in the result from a
|
2908
|
+
# function in the action group invocation.
|
2909
|
+
#
|
2910
|
+
# @note ImageInputSource is a union - when making an API calls you must set exactly one of the members.
|
2911
|
+
#
|
2912
|
+
# @note ImageInputSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ImageInputSource corresponding to the set member.
|
2913
|
+
#
|
2914
|
+
# @!attribute [rw] bytes
|
2915
|
+
# The raw image bytes for the image. If you use an Amazon Web Services
|
2916
|
+
# SDK, you don't need to encode the image bytes in base64.
|
2917
|
+
# @return [String]
|
2918
|
+
#
|
2919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/ImageInputSource AWS API Documentation
|
2920
|
+
#
|
2921
|
+
class ImageInputSource < Struct.new(
|
2922
|
+
:bytes,
|
2923
|
+
:unknown)
|
2924
|
+
SENSITIVE = []
|
2925
|
+
include Aws::Structure
|
2926
|
+
include Aws::Structure::Union
|
2927
|
+
|
2928
|
+
class Bytes < ImageInputSource; end
|
2929
|
+
class Unknown < ImageInputSource; end
|
2930
|
+
end
|
2931
|
+
|
2781
2932
|
# The source for an image.
|
2782
2933
|
#
|
2783
2934
|
# @note ImageSource is a union - when making an API calls you must set exactly one of the members.
|
@@ -5819,9 +5970,12 @@ module Aws::BedrockAgentRuntime
|
|
5819
5970
|
# @return [Types::FilterAttribute]
|
5820
5971
|
#
|
5821
5972
|
# @!attribute [rw] not_equals
|
5822
|
-
# Knowledge base data sources
|
5823
|
-
#
|
5824
|
-
#
|
5973
|
+
# Knowledge base data sources are returned when:
|
5974
|
+
#
|
5975
|
+
# * It contains a metadata attribute whose name matches the `key` and
|
5976
|
+
# whose value doesn't match the `value` in this object.
|
5977
|
+
#
|
5978
|
+
# * The key is not present in the document.
|
5825
5979
|
#
|
5826
5980
|
# The following example would return data sources that don't contain
|
5827
5981
|
# an `animal` attribute whose value is `cat`.
|
@@ -6210,8 +6364,10 @@ module Aws::BedrockAgentRuntime
|
|
6210
6364
|
# The type of resource that contains your data for retrieving
|
6211
6365
|
# information and generating responses.
|
6212
6366
|
#
|
6213
|
-
# If you choose to use `EXTERNAL_SOURCES`, then currently only
|
6367
|
+
# <note markdown="1"> If you choose to use `EXTERNAL_SOURCES`, then currently only
|
6214
6368
|
# Anthropic Claude 3 Sonnet models for knowledge bases are supported.
|
6369
|
+
#
|
6370
|
+
# </note>
|
6215
6371
|
# @return [String]
|
6216
6372
|
#
|
6217
6373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/RetrieveAndGenerateConfiguration AWS API Documentation
|
@@ -6775,14 +6931,20 @@ module Aws::BedrockAgentRuntime
|
|
6775
6931
|
#
|
6776
6932
|
# @!attribute [rw] prompt_session_attributes
|
6777
6933
|
# Contains attributes that persist across a prompt and the values of
|
6778
|
-
# those attributes.
|
6779
|
-
#
|
6780
|
-
# orchestration prompt template
|
6781
|
-
#
|
6934
|
+
# those attributes.
|
6935
|
+
#
|
6936
|
+
# * In orchestration prompt template, these attributes replace the
|
6937
|
+
# $prompt\_session\_attributes$ placeholder variable. For more
|
6938
|
+
# information, see [Prompt template placeholder variables][1].
|
6939
|
+
#
|
6940
|
+
# * In [multi-agent collaboration][2], the `promptSessionAttributes`
|
6941
|
+
# will only be used by supervisor agent when
|
6942
|
+
# $prompt\_session\_attributes$ is present in prompt template.
|
6782
6943
|
#
|
6783
6944
|
#
|
6784
6945
|
#
|
6785
6946
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-placeholders.html
|
6947
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-multi-agent-collaboration.html
|
6786
6948
|
# @return [Hash<String,String>]
|
6787
6949
|
#
|
6788
6950
|
# @!attribute [rw] return_control_invocation_results
|
@@ -6802,7 +6964,13 @@ module Aws::BedrockAgentRuntime
|
|
6802
6964
|
#
|
6803
6965
|
# @!attribute [rw] session_attributes
|
6804
6966
|
# Contains attributes that persist across a session and the values of
|
6805
|
-
# those attributes.
|
6967
|
+
# those attributes. If `sessionAttributes` are passed to a supervisor
|
6968
|
+
# agent in [multi-agent collaboration][1], it will be forwarded to all
|
6969
|
+
# agent collaborators.
|
6970
|
+
#
|
6971
|
+
#
|
6972
|
+
#
|
6973
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/agents-multi-agent-collaboration.html
|
6806
6974
|
# @return [Hash<String,String>]
|
6807
6975
|
#
|
6808
6976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/SessionState AWS API Documentation
|
@@ -6893,7 +7061,22 @@ module Aws::BedrockAgentRuntime
|
|
6893
7061
|
# Configurations for streaming.
|
6894
7062
|
#
|
6895
7063
|
# @!attribute [rw] apply_guardrail_interval
|
6896
|
-
# The guardrail interval to apply as response is generated.
|
7064
|
+
# The guardrail interval to apply as response is generated. By
|
7065
|
+
# default, the guardrail interval is set to 50 characters. If a larger
|
7066
|
+
# interval is specified, the response will be generated in larger
|
7067
|
+
# chunks with fewer `ApplyGuardrail` calls. The following examples
|
7068
|
+
# show the response generated for *Hello, I am an agent* input string.
|
7069
|
+
#
|
7070
|
+
# **Example response in chunks: Interval set to 3 characters**
|
7071
|
+
#
|
7072
|
+
# `'Hel', 'lo, ','I am', ' an', ' Age', 'nt'`
|
7073
|
+
#
|
7074
|
+
# Each chunk has at least 3 characters except for the last chunk
|
7075
|
+
#
|
7076
|
+
# **Example response in chunks: Interval set to 20 or more
|
7077
|
+
# characters**
|
7078
|
+
#
|
7079
|
+
# `Hello, I am an Agent`
|
6897
7080
|
# @return [Integer]
|
6898
7081
|
#
|
6899
7082
|
# @!attribute [rw] stream_final_response
|
data/sig/client.rbs
CHANGED
@@ -380,7 +380,15 @@ module Aws
|
|
380
380
|
http_method: ::String?,
|
381
381
|
http_status_code: ::Integer?,
|
382
382
|
response_body: Hash[::String, {
|
383
|
-
body: ::String
|
383
|
+
body: ::String?,
|
384
|
+
images: Array[
|
385
|
+
{
|
386
|
+
format: ("png" | "jpeg" | "gif" | "webp"),
|
387
|
+
source: {
|
388
|
+
bytes: ::String?
|
389
|
+
}
|
390
|
+
},
|
391
|
+
]?
|
384
392
|
}]?,
|
385
393
|
response_state: ("FAILURE" | "REPROMPT")?
|
386
394
|
}?,
|
@@ -390,7 +398,15 @@ module Aws
|
|
390
398
|
confirmation_state: ("CONFIRM" | "DENY")?,
|
391
399
|
function: ::String?,
|
392
400
|
response_body: Hash[::String, {
|
393
|
-
body: ::String
|
401
|
+
body: ::String?,
|
402
|
+
images: Array[
|
403
|
+
{
|
404
|
+
format: ("png" | "jpeg" | "gif" | "webp"),
|
405
|
+
source: {
|
406
|
+
bytes: ::String?
|
407
|
+
}
|
408
|
+
},
|
409
|
+
]?
|
394
410
|
}]?,
|
395
411
|
response_state: ("FAILURE" | "REPROMPT")?
|
396
412
|
}?
|
@@ -473,7 +489,8 @@ module Aws
|
|
473
489
|
},
|
474
490
|
]?
|
475
491
|
}?,
|
476
|
-
parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
492
|
+
parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")?,
|
493
|
+
parent_action_group_signature_params: Hash[::String, ::String]?
|
477
494
|
},
|
478
495
|
],
|
479
496
|
?agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED"),
|
@@ -521,7 +538,8 @@ module Aws
|
|
521
538
|
},
|
522
539
|
]?
|
523
540
|
}?,
|
524
|
-
parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
541
|
+
parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")?,
|
542
|
+
parent_action_group_signature_params: Hash[::String, ::String]?
|
525
543
|
},
|
526
544
|
]?,
|
527
545
|
agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")?,
|
@@ -727,7 +745,15 @@ module Aws
|
|
727
745
|
http_method: ::String?,
|
728
746
|
http_status_code: ::Integer?,
|
729
747
|
response_body: Hash[::String, {
|
730
|
-
body: ::String
|
748
|
+
body: ::String?,
|
749
|
+
images: Array[
|
750
|
+
{
|
751
|
+
format: ("png" | "jpeg" | "gif" | "webp"),
|
752
|
+
source: {
|
753
|
+
bytes: ::String?
|
754
|
+
}
|
755
|
+
},
|
756
|
+
]?
|
731
757
|
}]?,
|
732
758
|
response_state: ("FAILURE" | "REPROMPT")?
|
733
759
|
}?,
|
@@ -737,7 +763,15 @@ module Aws
|
|
737
763
|
confirmation_state: ("CONFIRM" | "DENY")?,
|
738
764
|
function: ::String?,
|
739
765
|
response_body: Hash[::String, {
|
740
|
-
body: ::String
|
766
|
+
body: ::String?,
|
767
|
+
images: Array[
|
768
|
+
{
|
769
|
+
format: ("png" | "jpeg" | "gif" | "webp"),
|
770
|
+
source: {
|
771
|
+
bytes: ::String?
|
772
|
+
}
|
773
|
+
},
|
774
|
+
]?
|
741
775
|
}]?,
|
742
776
|
response_state: ("FAILURE" | "REPROMPT")?
|
743
777
|
}?
|
data/sig/types.rbs
CHANGED
@@ -65,7 +65,8 @@ module Aws::BedrockAgentRuntime
|
|
65
65
|
attr_accessor api_schema: Types::APISchema
|
66
66
|
attr_accessor description: ::String
|
67
67
|
attr_accessor function_schema: Types::FunctionSchema
|
68
|
-
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter")
|
68
|
+
attr_accessor parent_action_group_signature: ("AMAZON.UserInput" | "AMAZON.CodeInterpreter" | "ANTHROPIC.Computer" | "ANTHROPIC.Bash" | "ANTHROPIC.TextEditor")
|
69
|
+
attr_accessor parent_action_group_signature_params: ::Hash[::String, ::String]
|
69
70
|
SENSITIVE: [:action_group_name, :description]
|
70
71
|
end
|
71
72
|
|
@@ -276,6 +277,7 @@ module Aws::BedrockAgentRuntime
|
|
276
277
|
|
277
278
|
class ContentBody
|
278
279
|
attr_accessor body: ::String
|
280
|
+
attr_accessor images: ::Array[Types::ImageInput]
|
279
281
|
SENSITIVE: []
|
280
282
|
end
|
281
283
|
|
@@ -485,13 +487,16 @@ module Aws::BedrockAgentRuntime
|
|
485
487
|
|
486
488
|
class FlowTrace
|
487
489
|
attr_accessor condition_node_result_trace: Types::FlowTraceConditionNodeResultEvent
|
490
|
+
attr_accessor node_action_trace: Types::FlowTraceNodeActionEvent
|
488
491
|
attr_accessor node_input_trace: Types::FlowTraceNodeInputEvent
|
489
492
|
attr_accessor node_output_trace: Types::FlowTraceNodeOutputEvent
|
490
493
|
attr_accessor unknown: untyped
|
491
|
-
SENSITIVE: [:condition_node_result_trace, :node_input_trace, :node_output_trace]
|
494
|
+
SENSITIVE: [:condition_node_result_trace, :node_action_trace, :node_input_trace, :node_output_trace]
|
492
495
|
|
493
496
|
class ConditionNodeResultTrace < FlowTrace
|
494
497
|
end
|
498
|
+
class NodeActionTrace < FlowTrace
|
499
|
+
end
|
495
500
|
class NodeInputTrace < FlowTrace
|
496
501
|
end
|
497
502
|
class NodeOutputTrace < FlowTrace
|
@@ -518,6 +523,15 @@ module Aws::BedrockAgentRuntime
|
|
518
523
|
SENSITIVE: [:trace]
|
519
524
|
end
|
520
525
|
|
526
|
+
class FlowTraceNodeActionEvent
|
527
|
+
attr_accessor node_name: ::String
|
528
|
+
attr_accessor operation_name: ::String
|
529
|
+
attr_accessor request_id: ::String
|
530
|
+
attr_accessor service_name: ::String
|
531
|
+
attr_accessor timestamp: ::Time
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
521
535
|
class FlowTraceNodeInputContent
|
522
536
|
attr_accessor document: untyped
|
523
537
|
attr_accessor unknown: untyped
|
@@ -791,6 +805,23 @@ module Aws::BedrockAgentRuntime
|
|
791
805
|
SENSITIVE: []
|
792
806
|
end
|
793
807
|
|
808
|
+
class ImageInput
|
809
|
+
attr_accessor format: ("png" | "jpeg" | "gif" | "webp")
|
810
|
+
attr_accessor source: Types::ImageInputSource
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
814
|
+
class ImageInputSource
|
815
|
+
attr_accessor bytes: ::String
|
816
|
+
attr_accessor unknown: untyped
|
817
|
+
SENSITIVE: []
|
818
|
+
|
819
|
+
class Bytes < ImageInputSource
|
820
|
+
end
|
821
|
+
class Unknown < ImageInputSource
|
822
|
+
end
|
823
|
+
end
|
824
|
+
|
794
825
|
class ImageSource
|
795
826
|
attr_accessor bytes: ::String
|
796
827
|
attr_accessor s3_location: Types::S3Location
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockagentruntime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|