Module Values.EvaluationInferenceConfigSummarySource

Identifies the models, Knowledge Bases, or other RAG sources evaluated in a model or Knowledge Base evaluation job.

Sourcetype nonrec t = {
  1. modelConfigSummary : EvaluationModelConfigSummary.t option;
    (*

    A summary of the models used in an Amazon Bedrock model evaluation job. These resources can be models in Amazon Bedrock or models outside of Amazon Bedrock that you use to generate your own inference response data.

    *)
  2. ragConfigSummary : EvaluationRagConfigSummary.t option;
    (*

    A summary of the RAG resources used in an Amazon Bedrock Knowledge Base evaluation job. These resources can be Knowledge Bases in Amazon Bedrock or RAG sources outside of Amazon Bedrock that you use to generate your own inference response data.

    *)
}
Sourceval make : ?modelConfigSummary:??? -> ?ragConfigSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of EvaluationBedrockModelIdentifier.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