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.
11609 11610 11611 11612 11613 11614 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 11609 class VectorSearchRerankingConfiguration < Struct.new( :type, :bedrock_reranking_configuration) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Specifies the type of reranking model to use. Currently, the only
supported value is BEDROCK_RERANKING_MODEL
.
11609 11610 11611 11612 11613 11614 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 11609 class VectorSearchRerankingConfiguration < Struct.new( :type, :bedrock_reranking_configuration) SENSITIVE = [] include Aws::Structure end |