Module Values.EvaluationPrecomputedRagSourceConfigSource

A summary of a RAG source used for a Knowledge Base evaluation job where you provide your own inference response data.

Sourcetype nonrec t = {
  1. retrieveSourceConfig : EvaluationPrecomputedRetrieveSourceConfig.t option;
    (*

    A summary of a RAG source used for a retrieve-only Knowledge Base evaluation job where you provide your own inference response data.

    *)
  2. retrieveAndGenerateSourceConfig : EvaluationPrecomputedRetrieveAndGenerateSourceConfig.t option;
    (*

    A summary of a RAG source used for a retrieve-and-generate Knowledge Base evaluation job where you provide your own inference response data.

    *)
}
Sourceval make : ?retrieveSourceConfig:??? -> ?retrieveAndGenerateSourceConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of EvaluationPrecomputedRagSourceIdentifier.t ]) 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