interface Model {
    createdAt?: Date;
    description: string;
    errorMessage?: string;
    hasEula: boolean;
    id: string;
    name: string;
    nodesSupport: ModelSupportInfo[];
    parameterSizeBits: number;
    projectId: string;
    region: Region;
    sizeBytes: number;
    status: ModelStatus;
    tags: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of the model.

description: string

Purpose of the model.

errorMessage?: string

Displays information if your model is in error state.

hasEula: boolean

Defines whether the model has an end user license agreement.

id: string

Unique identifier.

name: string

Unique Name identifier.

nodesSupport: ModelSupportInfo[]

Supported nodes types with quantization options and context lengths.

parameterSizeBits: number

Size, in bits, of the model parameters.

projectId: string

Project ID.

region: Region

Region of the model.

sizeBytes: number

Total size, in bytes, of the model files.

status: ModelStatus

Status of the model.

tags: string[]

List of tags applied to the model.

updatedAt?: Date

Last modification date of the model.