timesfm-ts - v1.0.0
    Preparing search index...

    Proxy configuration for downloading models through corporate firewalls.

    Resolution priority:

    1. Explicit DownloadOptions.proxy parameter
    2. TIMESFM_PROXY_URL environment variable (+ optional TIMESFM_PROXY_USERNAME / TIMESFM_PROXY_PASSWORD)
    3. Standard HTTPS_PROXY / https_proxy / HTTP_PROXY / http_proxy environment variables
    interface ProxyConfig {
        url: string;
        username?: string;
        password?: string;
    }
    Index

    Properties

    url: string

    Proxy URL (e.g., http://proxy.company.com:8080 or socks5://proxy:1080)

    username?: string

    Username for proxy authentication

    password?: string

    Password for proxy authentication.

    Security: This field is a plain string property and will be serialized by JSON.stringify() or structured logging. Prefer environment variables (TIMESFM_PROXY_PASSWORD) or file-based secrets (TIMESFM_PROXY_PASSWORD_FILE) over programmatic construction of ProxyConfig objects containing passwords.