Module Values.RerankingMetadataSelectiveModeConfigurationSource

Configuration for selectively including or excluding metadata fields during the reranking process. This allows you to control which metadata attributes are considered when reordering search results.

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

    A list of metadata field names to explicitly include in the reranking process. Only these fields will be considered when reordering search results. This parameter cannot be used together with fieldsToExclude.

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

    A list of metadata field names to explicitly exclude from the reranking process. All metadata fields except these will be considered when reordering search results. This parameter cannot be used together with fieldsToInclude.

    *)
}
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