aws-sdk-bedrockagentruntime 1.28.0 → 1.29.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4338575e5e4e1c40786134c71bd8381feff99a7dbf001e0b9c24bff649e80617
4
- data.tar.gz: f6f86d4d746e7ddac1dcaab2c74c9d0abaf8a63f636cadf0290206666e5f1cab
3
+ metadata.gz: 874f1f6793b18532bc35891baa80c7ba272f425884814271fca7df08b2e5a5be
4
+ data.tar.gz: fd3769ce8236cff70661e686fb9d39bd37a43ffcb47ad06c6e229933e3f4e416
5
5
  SHA512:
6
- metadata.gz: d3385e7ef442ceff7f263840efb5343a58d981b2b777851e27c0ff3cf662ee2d399abd15feb80e26e601d9684d0c61676d7713cef23fed87741e690d36fd056c
7
- data.tar.gz: 5a9131c582f6526d88951088e05a86eb45b4d968e91ad17d4b207f8e2b1185638989552b3bb18a8323434d7f99bde1e756e39161848d484db4e720470e149100
6
+ metadata.gz: 3997c97c9d6484bdb249afc314d0c254db21297ca85b912b653801b84bb48b61ee224da8a2ae7e286774e90755ba1bfb4345fa22062f1d31545ea0db764a1ad7
7
+ data.tar.gz: fb395ef3e0549e25c726e6bbe7a168eb19ff580ee2c4c6b44d9ee55fb4e38026912c212c82c13b451545c37f3f7b71289709041c08080a217f7d7f362e1d4cf6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.28.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.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.28.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"))
@@ -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.28.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.28.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-18 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