aws-sdk-bedrockagentcore 1.22.0 → 1.23.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcore/client.rb +3 -2
- data/lib/aws-sdk-bedrockagentcore/client_api.rb +2 -0
- data/lib/aws-sdk-bedrockagentcore/types.rb +9 -4
- data/lib/aws-sdk-bedrockagentcore.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d7585daa8e3d30666691dff8d13b97aa7c6cbb9947b2bd1fdce60cbfece5e5d0
|
|
4
|
+
data.tar.gz: a3b4336d566eeb26f178d22203c22ecc1b5b2539f9b2aee1fbbc0a558225c088
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af6d2ae93e5a16a39748b23ece7b8b0c60161bc36d8a2e513474e4a2c0bb876ebe976774fa99eeabd86b4b6d09512b0e93b2b171445686dfc06ca6999d8a4070
|
|
7
|
+
data.tar.gz: 0dee934a0c1c78c6408b7921c945afb8136753f1a5dbd0f9d2a5dd74b8a5a2b0719c925b51b3c07cdde345f291cdd84c86f1c01f578593cae053f15f77182730
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.23.0
|
|
@@ -885,7 +885,7 @@ module Aws::BedrockAgentCore
|
|
|
885
885
|
# @option params [required, String] :evaluator_id
|
|
886
886
|
# The unique identifier of the evaluator to use for scoring. Can be a
|
|
887
887
|
# built-in evaluator (e.g., `Builtin.Helpfulness`,
|
|
888
|
-
# `Builtin.Correctness`) or a custom evaluator
|
|
888
|
+
# `Builtin.Correctness`) or a custom evaluator Id created through the
|
|
889
889
|
# control plane API.
|
|
890
890
|
#
|
|
891
891
|
# @option params [required, Types::EvaluationInput] :evaluation_input
|
|
@@ -2138,6 +2138,7 @@ module Aws::BedrockAgentCore
|
|
|
2138
2138
|
# ],
|
|
2139
2139
|
# directory_path: "MaxLenString",
|
|
2140
2140
|
# task_id: "MaxLenString",
|
|
2141
|
+
# runtime: "nodejs", # accepts nodejs, deno, python
|
|
2141
2142
|
# },
|
|
2142
2143
|
# })
|
|
2143
2144
|
#
|
|
@@ -3492,7 +3493,7 @@ module Aws::BedrockAgentCore
|
|
|
3492
3493
|
tracer: tracer
|
|
3493
3494
|
)
|
|
3494
3495
|
context[:gem_name] = 'aws-sdk-bedrockagentcore'
|
|
3495
|
-
context[:gem_version] = '1.
|
|
3496
|
+
context[:gem_version] = '1.23.0'
|
|
3496
3497
|
Seahorse::Client::Request.new(handlers, context)
|
|
3497
3498
|
end
|
|
3498
3499
|
|
|
@@ -167,6 +167,7 @@ module Aws::BedrockAgentCore
|
|
|
167
167
|
InvokeCodeInterpreterRequestTraceIdString = Shapes::StringShape.new(name: 'InvokeCodeInterpreterRequestTraceIdString')
|
|
168
168
|
InvokeCodeInterpreterRequestTraceParentString = Shapes::StringShape.new(name: 'InvokeCodeInterpreterRequestTraceParentString')
|
|
169
169
|
InvokeCodeInterpreterResponse = Shapes::StructureShape.new(name: 'InvokeCodeInterpreterResponse')
|
|
170
|
+
LanguageRuntime = Shapes::StringShape.new(name: 'LanguageRuntime')
|
|
170
171
|
LeftExpression = Shapes::UnionShape.new(name: 'LeftExpression')
|
|
171
172
|
ListActorsInput = Shapes::StructureShape.new(name: 'ListActorsInput')
|
|
172
173
|
ListActorsOutput = Shapes::StructureShape.new(name: 'ListActorsOutput')
|
|
@@ -1213,6 +1214,7 @@ module Aws::BedrockAgentCore
|
|
|
1213
1214
|
ToolArguments.add_member(:content, Shapes::ShapeRef.new(shape: InputContentBlockList, location_name: "content"))
|
|
1214
1215
|
ToolArguments.add_member(:directory_path, Shapes::ShapeRef.new(shape: MaxLenString, location_name: "directoryPath"))
|
|
1215
1216
|
ToolArguments.add_member(:task_id, Shapes::ShapeRef.new(shape: MaxLenString, location_name: "taskId"))
|
|
1217
|
+
ToolArguments.add_member(:runtime, Shapes::ShapeRef.new(shape: LanguageRuntime, location_name: "runtime"))
|
|
1216
1218
|
ToolArguments.struct_class = Types::ToolArguments
|
|
1217
1219
|
|
|
1218
1220
|
ToolResultStructuredContent.add_member(:task_id, Shapes::ShapeRef.new(shape: String, location_name: "taskId"))
|
|
@@ -891,7 +891,7 @@ module Aws::BedrockAgentCore
|
|
|
891
891
|
# @!attribute [rw] evaluator_id
|
|
892
892
|
# The unique identifier of the evaluator to use for scoring. Can be a
|
|
893
893
|
# built-in evaluator (e.g., `Builtin.Helpfulness`,
|
|
894
|
-
# `Builtin.Correctness`) or a custom evaluator
|
|
894
|
+
# `Builtin.Correctness`) or a custom evaluator Id created through the
|
|
895
895
|
# control plane API.
|
|
896
896
|
# @return [String]
|
|
897
897
|
#
|
|
@@ -4059,8 +4059,7 @@ module Aws::BedrockAgentCore
|
|
|
4059
4059
|
#
|
|
4060
4060
|
# @!attribute [rw] language
|
|
4061
4061
|
# The programming language of the code to execute. This tells the code
|
|
4062
|
-
# interpreter which language runtime to use for execution.
|
|
4063
|
-
# values include 'python', 'javascript', and 'r'.
|
|
4062
|
+
# interpreter which language runtime to use for execution.
|
|
4064
4063
|
# @return [String]
|
|
4065
4064
|
#
|
|
4066
4065
|
# @!attribute [rw] clear_context
|
|
@@ -4091,6 +4090,11 @@ module Aws::BedrockAgentCore
|
|
|
4091
4090
|
# The identifier of the task for the tool operation.
|
|
4092
4091
|
# @return [String]
|
|
4093
4092
|
#
|
|
4093
|
+
# @!attribute [rw] runtime
|
|
4094
|
+
# The runtime environment to use for code execution. If not specified,
|
|
4095
|
+
# defaults to `deno` for JavaScript and TypeScript.
|
|
4096
|
+
# @return [String]
|
|
4097
|
+
#
|
|
4094
4098
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/ToolArguments AWS API Documentation
|
|
4095
4099
|
#
|
|
4096
4100
|
class ToolArguments < Struct.new(
|
|
@@ -4102,7 +4106,8 @@ module Aws::BedrockAgentCore
|
|
|
4102
4106
|
:paths,
|
|
4103
4107
|
:content,
|
|
4104
4108
|
:directory_path,
|
|
4105
|
-
:task_id
|
|
4109
|
+
:task_id,
|
|
4110
|
+
:runtime)
|
|
4106
4111
|
SENSITIVE = []
|
|
4107
4112
|
include Aws::Structure
|
|
4108
4113
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -465,7 +465,8 @@ module Aws
|
|
|
465
465
|
},
|
|
466
466
|
]?,
|
|
467
467
|
directory_path: ::String?,
|
|
468
|
-
task_id: ::String
|
|
468
|
+
task_id: ::String?,
|
|
469
|
+
runtime: ("nodejs" | "deno" | "python")?
|
|
469
470
|
}
|
|
470
471
|
) ?{ (*untyped) -> void } -> _InvokeCodeInterpreterResponseSuccess
|
|
471
472
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _InvokeCodeInterpreterResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -1154,6 +1154,7 @@ module Aws::BedrockAgentCore
|
|
|
1154
1154
|
attr_accessor content: ::Array[Types::InputContentBlock]
|
|
1155
1155
|
attr_accessor directory_path: ::String
|
|
1156
1156
|
attr_accessor task_id: ::String
|
|
1157
|
+
attr_accessor runtime: ("nodejs" | "deno" | "python")
|
|
1157
1158
|
SENSITIVE: []
|
|
1158
1159
|
end
|
|
1159
1160
|
|