Representation of a single LoRA model entry.

interface LoraEntry {
    alias?: string;
    metadata: LoraMetadata;
    name: string;
    path: string;
}

Properties

alias?: string

Alias used in prompts, e.g. "coolstyle"

metadata: LoraMetadata

Arbitrary metadata object with properties describing the model

name: string

Filename or identifier, e.g. "CoolStyle-Lora.safetensors"

path: string

Filesystem path to the LoRA model file