LocalLm types documentation
    Preparing search index...

    Interface ModelStatusLoaded

    Represents the loaded model status.

    ModelStatusLoaded

    const loadedStatus: ModelStatusLoaded = {
    value: "loaded",
    args: ["--model", "qwen4b"]
    };
    interface ModelStatusLoaded {
        args: string[];
        value: "loaded";
    }
    Index

    Properties

    Properties

    args: string[]

    Arguments used during the loading process.

    value: "loaded"

    The status value indicating the model is loaded.