aws-sdk-bedrock 1.90.0 → 1.91.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-bedrock/client.rb +2 -2
- data/lib/aws-sdk-bedrock/client_api.rb +2 -1
- data/lib/aws-sdk-bedrock/types.rb +20 -2
- data/lib/aws-sdk-bedrock.rb +1 -1
- 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: 468a384d9e87b708d200ddf9f485b9ef779cca3d38e384a6e89d35e4080a20fe
|
|
4
|
+
data.tar.gz: bb7658cf9aa8190e4df2a6de1f2b492a9d5ba41808bd4ddcaceda877819ed34e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f821805bfd53681c147965148177f97f9051e1cb31a0d934256132cb5f62d83cbaa5374c090afd181ba24ebbafca66ae1f7411afd895af484a10b0bddc43aae
|
|
7
|
+
data.tar.gz: 8b88a369cdd356318eaca8843e650401199db4d3506971013aa0d17ab21c7f884049f10e3f58562aba8d287b97e8a5a777c4bc9c75c13ca17e499b4d64b1a5f2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.91.0 (2026-08-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for specifying an inference profile ID or ARN, or an application inference profile ARN as the target model in CreateAdvancedPromptOptimizationJob.
|
|
8
|
+
|
|
4
9
|
1.90.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -674,7 +674,7 @@ module Aws::Bedrock
|
|
|
674
674
|
# ],
|
|
675
675
|
# model_configurations: [ # required
|
|
676
676
|
# {
|
|
677
|
-
# model_id: "
|
|
677
|
+
# model_id: "AdvancedPromptOptimizationModelIdentifier", # required
|
|
678
678
|
# inference_config: {
|
|
679
679
|
# max_tokens: 1,
|
|
680
680
|
# temperature: 1.0,
|
|
@@ -8346,7 +8346,7 @@ module Aws::Bedrock
|
|
|
8346
8346
|
tracer: tracer
|
|
8347
8347
|
)
|
|
8348
8348
|
context[:gem_name] = 'aws-sdk-bedrock'
|
|
8349
|
-
context[:gem_version] = '1.
|
|
8349
|
+
context[:gem_version] = '1.91.0'
|
|
8350
8350
|
Seahorse::Client::Request.new(handlers, context)
|
|
8351
8351
|
end
|
|
8352
8352
|
|
|
@@ -34,6 +34,7 @@ module Aws::Bedrock
|
|
|
34
34
|
AdvancedPromptOptimizationJobStatus = Shapes::StringShape.new(name: 'AdvancedPromptOptimizationJobStatus')
|
|
35
35
|
AdvancedPromptOptimizationJobSummaries = Shapes::ListShape.new(name: 'AdvancedPromptOptimizationJobSummaries')
|
|
36
36
|
AdvancedPromptOptimizationJobSummary = Shapes::StructureShape.new(name: 'AdvancedPromptOptimizationJobSummary')
|
|
37
|
+
AdvancedPromptOptimizationModelIdentifier = Shapes::StringShape.new(name: 'AdvancedPromptOptimizationModelIdentifier')
|
|
37
38
|
AdvancedPromptOptimizationOutputConfig = Shapes::StructureShape.new(name: 'AdvancedPromptOptimizationOutputConfig')
|
|
38
39
|
AgreementAvailability = Shapes::StructureShape.new(name: 'AgreementAvailability')
|
|
39
40
|
AgreementStatus = Shapes::StringShape.new(name: 'AgreementStatus')
|
|
@@ -3231,7 +3232,7 @@ module Aws::Bedrock
|
|
|
3231
3232
|
MetadataConfigurationForReranking.add_member(:selective_mode_configuration, Shapes::ShapeRef.new(shape: RerankingMetadataSelectiveModeConfiguration, location_name: "selectiveModeConfiguration"))
|
|
3232
3233
|
MetadataConfigurationForReranking.struct_class = Types::MetadataConfigurationForReranking
|
|
3233
3234
|
|
|
3234
|
-
ModelConfiguration.add_member(:model_id, Shapes::ShapeRef.new(shape:
|
|
3235
|
+
ModelConfiguration.add_member(:model_id, Shapes::ShapeRef.new(shape: AdvancedPromptOptimizationModelIdentifier, required: true, location_name: "modelId"))
|
|
3235
3236
|
ModelConfiguration.add_member(:inference_config, Shapes::ShapeRef.new(shape: InferenceConfiguration, location_name: "inferenceConfig"))
|
|
3236
3237
|
ModelConfiguration.add_member(:additional_model_request_fields, Shapes::ShapeRef.new(shape: AdditionalModelRequestFields, location_name: "additionalModelRequestFields"))
|
|
3237
3238
|
ModelConfiguration.struct_class = Types::ModelConfiguration
|
|
@@ -11659,7 +11659,25 @@ module Aws::Bedrock
|
|
|
11659
11659
|
# optimization job, including the model ID and inference parameters.
|
|
11660
11660
|
#
|
|
11661
11661
|
# @!attribute [rw] model_id
|
|
11662
|
-
# The
|
|
11662
|
+
# The model to use for optimization. The value depends on the resource
|
|
11663
|
+
# that you use:
|
|
11664
|
+
#
|
|
11665
|
+
# * If you use a base model, specify the model ID or its ARN. For a
|
|
11666
|
+
# list of model IDs, see [Models at a glance][1] in the Amazon
|
|
11667
|
+
# Bedrock User Guide.
|
|
11668
|
+
#
|
|
11669
|
+
# * If you use a cross-Region (system-defined) inference profile,
|
|
11670
|
+
# specify the inference profile ID or its ARN. For a list of
|
|
11671
|
+
# inference profile IDs, see [Supported Regions and models for
|
|
11672
|
+
# inference profiles][2] in the Amazon Bedrock User Guide.
|
|
11673
|
+
#
|
|
11674
|
+
# * If you use an application inference profile, specify its full ARN,
|
|
11675
|
+
# including the account ID and Region.
|
|
11676
|
+
#
|
|
11677
|
+
#
|
|
11678
|
+
#
|
|
11679
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/model-cards.html
|
|
11680
|
+
# [2]: https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference-support.html
|
|
11663
11681
|
# @return [String]
|
|
11664
11682
|
#
|
|
11665
11683
|
# @!attribute [rw] inference_config
|
|
@@ -13070,7 +13088,7 @@ module Aws::Bedrock
|
|
|
13070
13088
|
#
|
|
13071
13089
|
# The following example would return data sources with an animals
|
|
13072
13090
|
# attribute that is a list containing a cat member (for example,
|
|
13073
|
-
# `["dog", "cat"]`): `"listContains": { "key": "animals", "value":
|
|
13091
|
+
# `["dog", "cat"] `): `"listContains": { "key": "animals", "value":
|
|
13074
13092
|
# "cat" }`
|
|
13075
13093
|
# @return [Types::FilterAttribute]
|
|
13076
13094
|
#
|
data/lib/aws-sdk-bedrock.rb
CHANGED