Module Values.FoundationModelSummarySource

Summary information for a foundation model.

Sourcetype nonrec t = {
  1. modelArn : FoundationModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the foundation model.

    *)
  2. modelId : BedrockModelId.t option;
    (*

    The model ID of the foundation model.

    *)
  3. modelName : BrandedName.t option;
    (*

    The name of the model.

    *)
  4. providerName : BrandedName.t option;
    (*

    The model's provider name.

    *)
  5. inputModalities : ModelModalityList.t option;
    (*

    The input modalities that the model supports.

    *)
  6. outputModalities : ModelModalityList.t option;
    (*

    The output modalities that the model supports.

    *)
  7. responseStreamingSupported : Boolean.t option;
    (*

    Indicates whether the model supports streaming.

    *)
  8. customizationsSupported : ModelCustomizationList.t option;
    (*

    Whether the model supports fine-tuning or continual pre-training.

    *)
  9. inferenceTypesSupported : InferenceTypeList.t option;
    (*

    The inference types that the model supports.

    *)
  10. modelLifecycle : FoundationModelLifecycle.t option;
    (*

    Contains details about whether a model version is available or deprecated.

    *)
}
Sourceval make : ?modelArn:??? -> ?modelId:??? -> ?modelName:??? -> ?providerName:??? -> ?inputModalities:??? -> ?outputModalities:??? -> ?responseStreamingSupported:??? -> ?customizationsSupported:??? -> ?inferenceTypesSupported:??? -> ?modelLifecycle:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] list | `String of FoundationModelArn.t | `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.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