aws-sdk-bedrockagentruntime 1.27.0 → 1.29.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: 4e7448cbe295f831a06c04f2bdb7bd006b193c4317d4961d8a3b1543bc008b46
4
- data.tar.gz: 9362b237ea89785d4e402e2a27ac8fcf5e566a341c22e70da5da92fc1e1a8c67
3
+ metadata.gz: 874f1f6793b18532bc35891baa80c7ba272f425884814271fca7df08b2e5a5be
4
+ data.tar.gz: fd3769ce8236cff70661e686fb9d39bd37a43ffcb47ad06c6e229933e3f4e416
5
5
  SHA512:
6
- metadata.gz: '059bcc004b19a3ac1457b915bf272703043bc086e068a125d5dc7d20efcacbb17edcb2ba55091c17bbb844a79342ad856e202de9290f4368b16b32d05e1c5333'
7
- data.tar.gz: d531fcd88a45991466c06d6fee6227dc252fe7a8b0519a133b529470dc8224a71d67221fa6c6ca36f40180a92217e2cf8d4c00552e2b171b3354216921edd008
6
+ metadata.gz: 3997c97c9d6484bdb249afc314d0c254db21297ca85b912b653801b84bb48b61ee224da8a2ae7e286774e90755ba1bfb4345fa22062f1d31545ea0db764a1ad7
7
+ data.tar.gz: fb395ef3e0549e25c726e6bbe7a168eb19ff580ee2c4c6b44d9ee55fb4e38026912c212c82c13b451545c37f3f7b71289709041c08080a217f7d7f362e1d4cf6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2024-10-21)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.28.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.27.0 (2024-10-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.29.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.27.0'
1923
+ context[:gem_version] = '1.29.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"))
@@ -52,15 +52,18 @@ module Aws::BedrockAgentRuntime
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end
@@ -12,71 +12,9 @@ module Aws::BedrockAgentRuntime
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class DeleteAgentMemory
16
- def self.build(context)
17
- Aws::BedrockAgentRuntime::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
-
26
- class GetAgentMemory
27
- def self.build(context)
28
- Aws::BedrockAgentRuntime::EndpointParameters.new(
29
- region: context.config.region,
30
- use_dual_stack: context.config.use_dualstack_endpoint,
31
- use_fips: context.config.use_fips_endpoint,
32
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
33
- )
34
- end
35
- end
36
-
37
- class InvokeAgent
38
- def self.build(context)
39
- Aws::BedrockAgentRuntime::EndpointParameters.new(
40
- region: context.config.region,
41
- use_dual_stack: context.config.use_dualstack_endpoint,
42
- use_fips: context.config.use_fips_endpoint,
43
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
- )
45
- end
46
- end
47
15
 
48
- class InvokeFlow
49
- def self.build(context)
50
- Aws::BedrockAgentRuntime::EndpointParameters.new(
51
- region: context.config.region,
52
- use_dual_stack: context.config.use_dualstack_endpoint,
53
- use_fips: context.config.use_fips_endpoint,
54
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
55
- )
56
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::BedrockAgentRuntime::EndpointParameters.create(context.config)
57
18
  end
58
-
59
- class Retrieve
60
- def self.build(context)
61
- Aws::BedrockAgentRuntime::EndpointParameters.new(
62
- region: context.config.region,
63
- use_dual_stack: context.config.use_dualstack_endpoint,
64
- use_fips: context.config.use_fips_endpoint,
65
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
66
- )
67
- end
68
- end
69
-
70
- class RetrieveAndGenerate
71
- def self.build(context)
72
- Aws::BedrockAgentRuntime::EndpointParameters.new(
73
- region: context.config.region,
74
- use_dual_stack: context.config.use_dualstack_endpoint,
75
- use_fips: context.config.use_fips_endpoint,
76
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
77
- )
78
- end
79
- end
80
-
81
19
  end
82
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::BedrockAgentRuntime::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,23 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :delete_agent_memory
74
- Aws::BedrockAgentRuntime::Endpoints::DeleteAgentMemory.build(context)
75
- when :get_agent_memory
76
- Aws::BedrockAgentRuntime::Endpoints::GetAgentMemory.build(context)
77
- when :invoke_agent
78
- Aws::BedrockAgentRuntime::Endpoints::InvokeAgent.build(context)
79
- when :invoke_flow
80
- Aws::BedrockAgentRuntime::Endpoints::InvokeFlow.build(context)
81
- when :retrieve
82
- Aws::BedrockAgentRuntime::Endpoints::Retrieve.build(context)
83
- when :retrieve_and_generate
84
- Aws::BedrockAgentRuntime::Endpoints::RetrieveAndGenerate.build(context)
85
- end
86
- end
87
70
  end
88
71
 
89
72
  def add_handlers(handlers, _config)
@@ -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
@@ -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.27.0'
58
+ GEM_VERSION = '1.29.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.27.0
4
+ version: 1.29.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-02 00:00:00.000000000 Z
11
+ date: 2024-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.210.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement