Module Values.VectorSearchBedrockRerankingModelConfigurationSource

Configuration 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?additionalModelRequestFields:??? -> modelArn:BedrockRerankingModelArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AdditionalModelRequestFieldsKey.t ] * [> `Structure of 'a list ]) list | `String of BedrockRerankingModelArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t