Class: Aws::BedrockAgent::Types::VectorSearchRerankingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::VectorSearchRerankingConfiguration
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Specifies how retrieved results from a knowledge base are reranked to improve relevance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bedrock_reranking_configuration ⇒ Types::VectorSearchBedrockRerankingConfiguration
Specifies the configuration for using an Amazon Bedrock reranker model to rerank retrieved results.
-
#type ⇒ String
Specifies the type of reranking model to use.
Instance Attribute Details
#bedrock_reranking_configuration ⇒ Types::VectorSearchBedrockRerankingConfiguration
Specifies the configuration for using an Amazon Bedrock reranker model to rerank retrieved results.
11572 11573 11574 11575 11576 11577 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 11572 class VectorSearchRerankingConfiguration < Struct.new( :bedrock_reranking_configuration, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Specifies the type of reranking model to use. Currently, the only
supported value is BEDROCK_RERANKING_MODEL
.
11572 11573 11574 11575 11576 11577 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 11572 class VectorSearchRerankingConfiguration < Struct.new( :bedrock_reranking_configuration, :type) SENSITIVE = [] include Aws::Structure end |