Module Values.EvaluationModelConfigSource

Defines the models used in the model evaluation job.

Sourcetype nonrec t = {
  1. bedrockModel : EvaluationBedrockModel.t option;
    (*

    Defines the Amazon Bedrock model or inference profile and inference parameters you want used.

    *)
  2. precomputedInferenceSource : EvaluationPrecomputedInferenceSource.t option;
    (*

    Defines the model used to generate inference response data for a model evaluation job where you provide your own inference response data.

    *)
}
Sourceval make : ?bedrockModel:??? -> ?precomputedInferenceSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of EvaluationBedrockModelIdentifier.t | `Structure of (string * [> `Enum of string ]) 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