Interface ModelStatus

The status of the underlying model. This is used to indicate the stage of the underlying model and the retirement time if applicable. This data type is not supported in Vertex AI.

interface ModelStatus {
    message?: string;
    modelStage?: ModelStage;
    retirementTime?: string;
}

Properties

message?: string

A message explaining the model status.

modelStage?: ModelStage

The stage of the underlying model.

retirementTime?: string

The time at which the model will be retired.