llmwire - v2.2.0
    Preparing search index...

    Interface OllamaCLIResult

    Result of running an Ollama CLI command

    interface OllamaCLIResult {
        code: number;
        ok: boolean;
        stderr: string;
        stdout: string;
    }
    Index
    code: number

    Exit code (0 = success)

    ok: boolean

    Whether the command succeeded

    stderr: string

    Standard error

    stdout: string

    Standard output