Values.ModelSummarySourceThe summary of a model available to an Amazon Q in Connect assistant.
type nonrec t = {modelId : ModelId.t option;The identifier of the model.
*)displayName : ModelDisplayName.t option;The display name of the model.
*)crossRegionStatus : CrossRegionStatus.t option;The cross-region availability status of the model. NONE indicates the model is only available in a single region, REGIONAL indicates the model is available through regional inference, and GLOBAL indicates the model is available through global cross-region inference.
*)supportsPromptCaching : Boolean.t option;Whether the model supports prompt caching.
*)supportedAIPromptTypes : AIPromptTypeList.t option;The list of AI Prompt types that the model supports.
*)modelLifecycle : ModelLifecycle.t option;The current lifecycle of the model. ACTIVE indicates the model is recommended for use and LEGACY indicates the model is still usable but is deprecated.
*)legacyTimestamp : Timestamp.t option;The timestamp when the model lifecycle will transition from ACTIVE to LEGACY.
*)endOfLifeTimestamp : Timestamp.t option;The timestamp when the model will reach end of life and no longer be available for use.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `List of [> `Enum of string ] list
| `String of ModelId.t
| `Timestamp of Timestamp.t ])
list ]