Module Values.ModelSummarySource

Summary information about an available AI model.

Sourcetype nonrec t = {
  1. modelId : ModelId.t option;
    (*

    The unique identifier of the model.

    *)
  2. modelLifecycle : ModelLifecycle.t option;
    (*

    The lifecycle information for the model.

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

    The minimum client compatibility version required to use this model.

    *)
}
Sourceval make : ?modelId:??? -> ?modelLifecycle:??? -> ?minimumCompatibilityVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of ModelId.t | `Structure of (string * [> `Enum of string ]) 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