Module Values.EvaluationSummarySource

Summary information of an evaluation job.

Sourcetype nonrec t = {
  1. jobArn : EvaluationJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the evaluation job.

    *)
  2. jobName : EvaluationJobName.t option;
    (*

    The name for the evaluation job.

    *)
  3. status : EvaluationJobStatus.t option;
    (*

    The current status of the evaluation job.

    *)
  4. creationTime : Timestamp.t option;
    (*

    The time the evaluation job was created.

    *)
  5. jobType : EvaluationJobType.t option;
    (*

    Specifies whether the evaluation job is automated or human-based.

    *)
  6. evaluationTaskTypes : EvaluationTaskTypes.t option;
    (*

    The type of task for model evaluation.

    *)
  7. modelIdentifiers : EvaluationBedrockModelIdentifiers.t option;
    (*

    The Amazon Resource Names (ARNs) of the model(s) used for the evaluation job.

    *)
  8. ragIdentifiers : EvaluationBedrockKnowledgeBaseIdentifiers.t option;
    (*

    The Amazon Resource Names (ARNs) of the knowledge base resources used for a knowledge base evaluation job.

    *)
  9. evaluatorModelIdentifiers : EvaluatorModelIdentifiers.t option;
    (*

    The Amazon Resource Names (ARNs) of the models used to compute the metrics for a knowledge base evaluation job.

    *)
  10. customMetricsEvaluatorModelIdentifiers : EvaluatorModelIdentifiers.t option;
    (*

    The Amazon Resource Names (ARNs) of the models used to compute custom metrics in an Amazon Bedrock evaluation job.

    *)
  11. inferenceConfigSummary : EvaluationInferenceConfigSummary.t option;
    (*

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

    *)
  12. applicationType : ApplicationType.t option;
    (*

    Specifies whether the evaluation job is for evaluating a model or evaluating a knowledge base (retrieval and response generation).

    *)
}
Sourceval make : ?jobArn:??? -> ?jobName:??? -> ?status:??? -> ?creationTime:??? -> ?jobType:??? -> ?evaluationTaskTypes:??? -> ?modelIdentifiers:??? -> ?ragIdentifiers:??? -> ?evaluatorModelIdentifiers:??? -> ?customMetricsEvaluatorModelIdentifiers:??? -> ?inferenceConfigSummary:??? -> ?applicationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of EvaluationBedrockModelIdentifier.t ] list | `String of EvaluationJobArn.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of EvaluationBedrockModelIdentifier.t ] list ]) list ]) list | `Timestamp of Timestamp.t ]) 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