LocalLm types documentation
    Preparing search index...

    Interface ModelStatusFailed

    Represents the failed model status.

    ModelStatusFailed

    const failedStatus: ModelStatusFailed = {
    value: "failed",
    args: ["--model", "qwen4b"],
    failed: true,
    exit_code: 1
    };
    interface ModelStatusFailed {
        args: string[];
        exit_code: number;
        failed: true;
        value: "failed";
    }
    Index

    Properties

    args: string[]

    Arguments used during the loading process.

    exit_code: number

    The exit code from the failed loading process.

    failed: true

    Indicates that the model loading failed.

    value: "failed"

    The status value indicating the model failed to load.