Represents a single model checkpoint or LoRA model entry.

interface ModelEntry {
    config: string;
    filename: string;
    hash: string;
    model_name: string;
    sha256: string;
    title: string;
}

Properties

config: string

Path to the configuration file or a config identifier (e.g., "v1-inference.yaml")

filename: string

Filename of the model, including extension (e.g., .safetensors, .ckpt)

hash: string

Short hash (typically MD5 or similar) for quick reference

model_name: string

Internal model identifier or name used by the backend

sha256: string

Full SHA-256 checksum of the model file

title: string

Human-readable title of the model, shown in UI dropdowns