interface Model {
    compatibleNodeTypes: string[];
    createdAt?: Date;
    description: string;
    hasEula: boolean;
    id: string;
    isPublic: boolean;
    name: string;
    projectId: string;
    provider: string;
    quantizationLevel: string;
    region: Region;
    s3Model?: Inference.v1beta1.ModelS3Model;
    tags: string[];
    updatedAt?: Date;
}

Properties

compatibleNodeTypes: string[]

Names of the node types compatible with the model.

createdAt?: Date

Creation date of the model.

description: string

Purpose of the model.

hasEula: boolean

Defines whether the model has an end user license agreement.

id: string

Unique identifier.

isPublic: boolean

Defines whether the model is public or not.

name: string

Unique Name identifier.

projectId: string

Project ID.

provider: string

Name of the model provider.

quantizationLevel: string

Quantization level of the model.

region: Region

Region of the model.

Object Storage URL pointing to the model source weight.

One-of ('source'): at most one of 's3Model' could be set.

tags: string[]

List of tags applied to the model.

updatedAt?: Date

Last modification date of the model.