aws-sdk-bedrockagentruntime 1.28.0 → 1.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4338575e5e4e1c40786134c71bd8381feff99a7dbf001e0b9c24bff649e80617
4
- data.tar.gz: f6f86d4d746e7ddac1dcaab2c74c9d0abaf8a63f636cadf0290206666e5f1cab
3
+ metadata.gz: ddd19c39eedacc41d2bef21c75ff2669e9badf69d4b784b9b828ef5c9482d225
4
+ data.tar.gz: b3b78d61228b5a8db3fbe3efa336e94f11b1f83b453c7aa1f726d7ffab940ef5
5
5
  SHA512:
6
- metadata.gz: d3385e7ef442ceff7f263840efb5343a58d981b2b777851e27c0ff3cf662ee2d399abd15feb80e26e601d9684d0c61676d7713cef23fed87741e690d36fd056c
7
- data.tar.gz: 5a9131c582f6526d88951088e05a86eb45b4d968e91ad17d4b207f8e2b1185638989552b3bb18a8323434d7f99bde1e756e39161848d484db4e720470e149100
6
+ metadata.gz: 3ce22f6888e86e1c8303524cbd67791e688f760182d326fb88f856c98aabefe428310b52b954d243f0d7a8e8a46e79c2e3eae70e8f0acde4d47e24d9b7ef1543
7
+ data.tar.gz: 9fae515be407940cd0821112ef9248f5f714e139d332da4f3d6a222ca589332c59cf161729493ae69a309ac894fd614664d7fba3e9bb967f7630aa4ae35402d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.29.0 (2024-10-21)
10
+ ------------------
11
+
12
+ * Feature - Knowledge Bases for Amazon Bedrock now supports custom prompts and model parameters in the orchestrationConfiguration of the RetrieveAndGenerate API. The modelArn field accepts Custom Models and Imported Models ARNs.
13
+
4
14
  1.28.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.30.0
@@ -1773,7 +1773,22 @@ module Aws::BedrockAgentRuntime
1773
1773
  # knowledge_base_id: "KnowledgeBaseId", # required
1774
1774
  # model_arn: "BedrockModelArn", # required
1775
1775
  # orchestration_configuration: {
1776
- # query_transformation_configuration: { # required
1776
+ # additional_model_request_fields: {
1777
+ # "AdditionalModelRequestFieldsKey" => {
1778
+ # },
1779
+ # },
1780
+ # inference_config: {
1781
+ # text_inference_config: {
1782
+ # max_tokens: 1,
1783
+ # stop_sequences: ["RAGStopSequencesMemberString"],
1784
+ # temperature: 1.0,
1785
+ # top_p: 1.0,
1786
+ # },
1787
+ # },
1788
+ # prompt_template: {
1789
+ # text_prompt_template: "TextPromptTemplate",
1790
+ # },
1791
+ # query_transformation_configuration: {
1777
1792
  # type: "QUERY_DECOMPOSITION", # required, accepts QUERY_DECOMPOSITION
1778
1793
  # },
1779
1794
  # },
@@ -1905,7 +1920,7 @@ module Aws::BedrockAgentRuntime
1905
1920
  tracer: tracer
1906
1921
  )
1907
1922
  context[:gem_name] = 'aws-sdk-bedrockagentruntime'
1908
- context[:gem_version] = '1.28.0'
1923
+ context[:gem_version] = '1.30.0'
1909
1924
  Seahorse::Client::Request.new(handlers, context)
1910
1925
  end
1911
1926
 
@@ -713,7 +713,10 @@ module Aws::BedrockAgentRuntime
713
713
  Observation.add_member(:type, Shapes::ShapeRef.new(shape: Type, location_name: "type"))
714
714
  Observation.struct_class = Types::Observation
715
715
 
716
- OrchestrationConfiguration.add_member(:query_transformation_configuration, Shapes::ShapeRef.new(shape: QueryTransformationConfiguration, required: true, location_name: "queryTransformationConfiguration"))
716
+ OrchestrationConfiguration.add_member(:additional_model_request_fields, Shapes::ShapeRef.new(shape: AdditionalModelRequestFields, location_name: "additionalModelRequestFields"))
717
+ OrchestrationConfiguration.add_member(:inference_config, Shapes::ShapeRef.new(shape: InferenceConfig, location_name: "inferenceConfig"))
718
+ OrchestrationConfiguration.add_member(:prompt_template, Shapes::ShapeRef.new(shape: PromptTemplate, location_name: "promptTemplate"))
719
+ OrchestrationConfiguration.add_member(:query_transformation_configuration, Shapes::ShapeRef.new(shape: QueryTransformationConfiguration, location_name: "queryTransformationConfiguration"))
717
720
  OrchestrationConfiguration.struct_class = Types::OrchestrationConfiguration
718
721
 
719
722
  OrchestrationModelInvocationOutput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "metadata"))
@@ -2284,6 +2284,23 @@ module Aws::BedrockAgentRuntime
2284
2284
  # Settings for how the model processes the prompt prior to retrieval and
2285
2285
  # generation.
2286
2286
  #
2287
+ # @!attribute [rw] additional_model_request_fields
2288
+ # Additional model parameters and corresponding values not included in
2289
+ # the textInferenceConfig structure for a knowledge base. This allows
2290
+ # users to provide custom model parameters specific to the language
2291
+ # model being used.
2292
+ # @return [Hash<String,Hash,Array,String,Numeric,Boolean>]
2293
+ #
2294
+ # @!attribute [rw] inference_config
2295
+ # Configuration settings for inference when using RetrieveAndGenerate
2296
+ # to generate responses while using a knowledge base as a source.
2297
+ # @return [Types::InferenceConfig]
2298
+ #
2299
+ # @!attribute [rw] prompt_template
2300
+ # Contains the template for the prompt that's sent to the model for
2301
+ # response generation.
2302
+ # @return [Types::PromptTemplate]
2303
+ #
2287
2304
  # @!attribute [rw] query_transformation_configuration
2288
2305
  # To split up the prompt and retrieve multiple sources, set the
2289
2306
  # transformation type to `QUERY_DECOMPOSITION`.
@@ -2292,6 +2309,9 @@ module Aws::BedrockAgentRuntime
2292
2309
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/OrchestrationConfiguration AWS API Documentation
2293
2310
  #
2294
2311
  class OrchestrationConfiguration < Struct.new(
2312
+ :additional_model_request_fields,
2313
+ :inference_config,
2314
+ :prompt_template,
2295
2315
  :query_transformation_configuration)
2296
2316
  SENSITIVE = []
2297
2317
  include Aws::Structure
@@ -2300,7 +2320,8 @@ module Aws::BedrockAgentRuntime
2300
2320
  # The foundation model output from the orchestration step.
2301
2321
  #
2302
2322
  # @!attribute [rw] metadata
2303
- # Contains information about the foundation model output.
2323
+ # Contains information about the foundation model output from the
2324
+ # orchestration step.
2304
2325
  # @return [Types::Metadata]
2305
2326
  #
2306
2327
  # @!attribute [rw] raw_response
@@ -2458,7 +2479,8 @@ module Aws::BedrockAgentRuntime
2458
2479
  # The foundation model output from the post-processing step.
2459
2480
  #
2460
2481
  # @!attribute [rw] metadata
2461
- # Provides details of the foundation model.
2482
+ # Contains information about the foundation model output from the
2483
+ # post-processing step.
2462
2484
  # @return [Types::Metadata]
2463
2485
  #
2464
2486
  # @!attribute [rw] parsed_response
@@ -2467,7 +2489,7 @@ module Aws::BedrockAgentRuntime
2467
2489
  # @return [Types::PostProcessingParsedResponse]
2468
2490
  #
2469
2491
  # @!attribute [rw] raw_response
2470
- # Contains the raw output from the foundation model.
2492
+ # Details of the raw response from the foundation model output.
2471
2493
  # @return [Types::RawResponse]
2472
2494
  #
2473
2495
  # @!attribute [rw] trace_id
@@ -2543,7 +2565,8 @@ module Aws::BedrockAgentRuntime
2543
2565
  # The foundation model output from the pre-processing step.
2544
2566
  #
2545
2567
  # @!attribute [rw] metadata
2546
- # Provides details of the foundation model.
2568
+ # Contains information about the foundation model output from the
2569
+ # pre-processing step.
2547
2570
  # @return [Types::Metadata]
2548
2571
  #
2549
2572
  # @!attribute [rw] parsed_response
@@ -2552,7 +2575,7 @@ module Aws::BedrockAgentRuntime
2552
2575
  # @return [Types::PreProcessingParsedResponse]
2553
2576
  #
2554
2577
  # @!attribute [rw] raw_response
2555
- # Contains the raw output from the foundation model.
2578
+ # Details of the raw response from the foundation model output.
2556
2579
  # @return [Types::RawResponse]
2557
2580
  #
2558
2581
  # @!attribute [rw] trace_id
@@ -2819,7 +2842,7 @@ module Aws::BedrockAgentRuntime
2819
2842
  # The following example would return data sources with an `animal`
2820
2843
  # attribute whose value is `cat`:
2821
2844
  #
2822
- # `"equals": \{ "key": "animal", "value": "cat" \}`
2845
+ # `"equals": { "key": "animal", "value": "cat" }`
2823
2846
  # @return [Types::FilterAttribute]
2824
2847
  #
2825
2848
  # @!attribute [rw] greater_than
@@ -2830,7 +2853,7 @@ module Aws::BedrockAgentRuntime
2830
2853
  # The following example would return data sources with an `year`
2831
2854
  # attribute whose value is greater than `1989`:
2832
2855
  #
2833
- # `"greaterThan": \{ "key": "year", "value": 1989 \}`
2856
+ # `"greaterThan": { "key": "year", "value": 1989 }`
2834
2857
  # @return [Types::FilterAttribute]
2835
2858
  #
2836
2859
  # @!attribute [rw] greater_than_or_equals
@@ -2841,7 +2864,7 @@ module Aws::BedrockAgentRuntime
2841
2864
  # The following example would return data sources with an `year`
2842
2865
  # attribute whose value is greater than or equal to `1989`:
2843
2866
  #
2844
- # `"greaterThanOrEquals": \{ "key": "year", "value": 1989 \}`
2867
+ # `"greaterThanOrEquals": { "key": "year", "value": 1989 }`
2845
2868
  # @return [Types::FilterAttribute]
2846
2869
  #
2847
2870
  # @!attribute [rw] in
@@ -2852,7 +2875,7 @@ module Aws::BedrockAgentRuntime
2852
2875
  # The following example would return data sources with an `animal`
2853
2876
  # attribute that is either `cat` or `dog`:
2854
2877
  #
2855
- # `"in": \{ "key": "animal", "value": ["cat", "dog"] \}`
2878
+ # `"in": { "key": "animal", "value": ["cat", "dog"] }`
2856
2879
  # @return [Types::FilterAttribute]
2857
2880
  #
2858
2881
  # @!attribute [rw] less_than
@@ -2863,7 +2886,7 @@ module Aws::BedrockAgentRuntime
2863
2886
  # The following example would return data sources with an `year`
2864
2887
  # attribute whose value is less than to `1989`.
2865
2888
  #
2866
- # `"lessThan": \{ "key": "year", "value": 1989 \}`
2889
+ # `"lessThan": { "key": "year", "value": 1989 }`
2867
2890
  # @return [Types::FilterAttribute]
2868
2891
  #
2869
2892
  # @!attribute [rw] less_than_or_equals
@@ -2874,7 +2897,7 @@ module Aws::BedrockAgentRuntime
2874
2897
  # The following example would return data sources with an `year`
2875
2898
  # attribute whose value is less than or equal to `1989`.
2876
2899
  #
2877
- # `"lessThanOrEquals": \{ "key": "year", "value": 1989 \}`
2900
+ # `"lessThanOrEquals": { "key": "year", "value": 1989 }`
2878
2901
  # @return [Types::FilterAttribute]
2879
2902
  #
2880
2903
  # @!attribute [rw] list_contains
@@ -2886,7 +2909,7 @@ module Aws::BedrockAgentRuntime
2886
2909
  # attribute that is a list containing a `cat` member (for example
2887
2910
  # `["dog", "cat"]`).
2888
2911
  #
2889
- # `"listContains": \{ "key": "animals", "value": "cat" \}`
2912
+ # `"listContains": { "key": "animals", "value": "cat" }`
2890
2913
  # @return [Types::FilterAttribute]
2891
2914
  #
2892
2915
  # @!attribute [rw] not_equals
@@ -2897,7 +2920,7 @@ module Aws::BedrockAgentRuntime
2897
2920
  # The following example would return data sources that don't contain
2898
2921
  # an `animal` attribute whose value is `cat`.
2899
2922
  #
2900
- # `"notEquals": \{ "key": "animal", "value": "cat" \}`
2923
+ # `"notEquals": { "key": "animal", "value": "cat" }`
2901
2924
  # @return [Types::FilterAttribute]
2902
2925
  #
2903
2926
  # @!attribute [rw] not_in
@@ -2908,7 +2931,7 @@ module Aws::BedrockAgentRuntime
2908
2931
  # The following example would return data sources whose `animal`
2909
2932
  # attribute is neither `cat` nor `dog`.
2910
2933
  #
2911
- # `"notIn": \{ "key": "animal", "value": ["cat", "dog"] \}`
2934
+ # `"notIn": { "key": "animal", "value": ["cat", "dog"] }`
2912
2935
  # @return [Types::FilterAttribute]
2913
2936
  #
2914
2937
  # @!attribute [rw] or_all
@@ -2926,7 +2949,7 @@ module Aws::BedrockAgentRuntime
2926
2949
  # The following example would return data sources with an `animal`
2927
2950
  # attribute starts with `ca` (for example, `cat` or `camel`).
2928
2951
  #
2929
- # `"startsWith": \{ "key": "animal", "value": "ca" \}`
2952
+ # `"startsWith": { "key": "animal", "value": "ca" }`
2930
2953
  # @return [Types::FilterAttribute]
2931
2954
  #
2932
2955
  # @!attribute [rw] string_contains
@@ -2938,14 +2961,14 @@ module Aws::BedrockAgentRuntime
2938
2961
  # example would return data sources with an `animal` attribute that
2939
2962
  # contains the substring `at` (for example `cat`).
2940
2963
  #
2941
- # `"stringContains": \{ "key": "animal", "value": "at" \}`
2964
+ # `"stringContains": { "key": "animal", "value": "at" }`
2942
2965
  #
2943
2966
  # * A list with a member that contains the `value` as a substring. The
2944
2967
  # following example would return data sources with an `animals`
2945
2968
  # attribute that is a list containing a member that contains the
2946
2969
  # substring `at` (for example `["dog", "cat"]`).
2947
2970
  #
2948
- # `"stringContains": \{ "key": "animals", "value": "at" \}`
2971
+ # `"stringContains": { "key": "animals", "value": "at" }`
2949
2972
  # @return [Types::FilterAttribute]
2950
2973
  #
2951
2974
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-runtime-2023-07-26/RetrievalFilter AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::BedrockAgentRuntime
55
55
  autoload :Endpoints, 'aws-sdk-bedrockagentruntime/endpoints'
56
56
  autoload :EventStreams, 'aws-sdk-bedrockagentruntime/event_streams'
57
57
 
58
- GEM_VERSION = '1.28.0'
58
+ GEM_VERSION = '1.30.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -419,9 +419,22 @@ module Aws
419
419
  knowledge_base_id: ::String,
420
420
  model_arn: ::String,
421
421
  orchestration_configuration: {
422
+ additional_model_request_fields: Hash[::String, {
423
+ }]?,
424
+ inference_config: {
425
+ text_inference_config: {
426
+ max_tokens: ::Integer?,
427
+ stop_sequences: Array[::String]?,
428
+ temperature: ::Float?,
429
+ top_p: ::Float?
430
+ }?
431
+ }?,
432
+ prompt_template: {
433
+ text_prompt_template: ::String?
434
+ }?,
422
435
  query_transformation_configuration: {
423
436
  type: ("QUERY_DECOMPOSITION")
424
- }
437
+ }?
425
438
  }?,
426
439
  retrieval_configuration: {
427
440
  vector_search_configuration: {
data/sig/types.rbs CHANGED
@@ -566,6 +566,9 @@ module Aws::BedrockAgentRuntime
566
566
  end
567
567
 
568
568
  class OrchestrationConfiguration
569
+ attr_accessor additional_model_request_fields: ::Hash[::String, untyped]
570
+ attr_accessor inference_config: Types::InferenceConfig
571
+ attr_accessor prompt_template: Types::PromptTemplate
569
572
  attr_accessor query_transformation_configuration: Types::QueryTransformationConfiguration
570
573
  SENSITIVE: []
571
574
  end
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.28.0
4
+ version: 1.30.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core