Module Values.RerankingMetadataSelectiveModeConfigurationSource

Configures the metadata fields to include or exclude during the reranking process when using selective mode.

Sourcetype nonrec t = {
  1. fieldsToInclude : FieldsForReranking.t option;
    (*

    Specifies the metadata fields to include in the reranking process.

    *)
  2. fieldsToExclude : FieldsForReranking.t option;
    (*

    Specifies the metadata fields to exclude from the reranking process.

    *)
}
Sourceval make : ?fieldsToInclude:??? -> ?fieldsToExclude:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldForRerankingFieldNameString.t ]) list ] list ]) 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