llmwire - v2.2.0
    Preparing search index...

    Interface OllamaCLIOptions

    Options for running Ollama CLI commands

    interface OllamaCLIOptions {
        executablePath?: string;
        onStderr?: (chunk: string) => void;
        timeout?: number;
    }
    Index
    executablePath?: string

    Optional path to the ollama executable (default: "ollama" from PATH)

    onStderr?: (chunk: string) => void

    Callback for progress output (e.g. pull progress on stderr)

    timeout?: number

    Timeout in milliseconds (default: none for pull, 30s for others)