Values.VectorSearchBedrockRerankingModelConfigurationSourceConfiguration for the Amazon Bedrock foundation model used for reranking vector search results. This specifies which model to use and any additional parameters required by the model.
type nonrec t = {modelArn : BedrockRerankingModelArn.t;The Amazon Resource Name (ARN) of the foundation model to use for reranking. This model processes the query and search results to determine a more relevant ordering.
*)additionalModelRequestFields : AdditionalModelRequestFields.t option;A list of additional fields to include in the model request during reranking. These fields provide extra context or configuration options specific to the selected foundation model.
*)}val make :
?additionalModelRequestFields:??? ->
modelArn:BedrockRerankingModelArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of AdditionalModelRequestFieldsKey.t ]
* [> `Structure of 'a list ])
list
| `String of BedrockRerankingModelArn.t ])
list ]