Module Values.RetrievalConfigurationSource

Configuration for content retrieval operations.

Sourcetype nonrec t = {
  1. knowledgeSource : KnowledgeSource.t;
    (*

    The knowledge source configuration for content retrieval.

    *)
  2. filter : RetrievalFilterConfiguration.t option;
    (*

    The filter configuration for content retrieval.

    *)
  3. numberOfResults : Integer.t option;
    (*

    The number of results to retrieve.

    *)
  4. overrideKnowledgeBaseSearchType : KnowledgeBaseSearchType.t option;
    (*

    Override setting for the knowledge base search type during retrieval.

    *)
}
Sourceval context_ : string
Sourceval make : ?filter:??? -> ?numberOfResults:??? -> ?overrideKnowledgeBaseSearchType:??? -> knowledgeSource:KnowledgeSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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