Member Junction
    Preparing search index...

    Constructor options for MLSidecar.

    interface MLSidecarOptions {
        pythonPath?: string;
        requestTimeoutMs?: number;
        startupTimeoutMs?: number;
        url?: string;
    }
    Index

    Properties

    pythonPath?: string

    Path to the Python executable used in managed mode. Defaults to the package's bundled venv python (…/Sidecar/.venv/bin/python) when present, otherwise python3.

    requestTimeoutMs?: number

    Per-request timeout in ms (default: 300000 — training can be slow).

    startupTimeoutMs?: number

    Startup timeout in ms (default: 30000).

    url?: string

    Base URL of an already-running sidecar (e.g. http://localhost:8000). When provided — or when PREDICTIVE_STUDIO_SIDECAR_URL is set — the client runs in remote mode: it connects only and never spawns a child process.