LocalLm types documentation
    Preparing search index...

    Interface ModelStatusLoading

    Represents the loading model status.

    ModelStatusLoading

    const loadingStatus: ModelStatusLoading = {
    value: "loading",
    args: ["--model", "qwen4b"]
    };
    interface ModelStatusLoading {
        args: string[];
        value: "loading";
    }
    Index

    Properties

    Properties

    args: string[]

    Arguments used during the loading process.

    value: "loading"

    The status value indicating the model is loading.