LocalLm types documentation
    Preparing search index...

    Interface ModelData

    Represents data about a model.

    ModelData

    const modelData: ModelData = {
    id: "model-123",
    in_cache: true,
    path: "/models/qwen4b",
    status: { value: "loaded", args: ["--model", "qwen4b"] }
    };
    interface ModelData {
        id: string;
        in_cache: boolean;
        path: string;
        status: ModelStatus;
    }
    Index

    Properties

    Properties

    id: string

    The unique identifier of the model.

    in_cache: boolean

    Indicates if the model is in cache.

    path: string

    The file path of the model.

    status: ModelStatus

    The current status of the model.