timesfm-ts - v1.0.0
    Preparing search index...
    interface DownloadOptions {
        dest?: string;
        force?: boolean;
        onProgress?: (received: number, total: number, speed: number) => void;
        url?: string;
        logger?: (msg: string) => void;
        proxy?: ProxyConfig;
        precision?: string;
    }
    Index

    Properties

    dest?: string

    Target file path (default: ~/.cache/timesfm-ts/timesfm-2.5.onnx)

    force?: boolean

    Force re-download even if file exists

    onProgress?: (received: number, total: number, speed: number) => void

    Progress callback: (receivedMB, totalMB, speedMBs)

    url?: string

    Alternative download URL (for mirrors)

    logger?: (msg: string) => void

    Custom logger (defaults to console.error)

    proxy?: ProxyConfig

    Proxy configuration for restricted network environments

    precision?: string

    Precision variant to download. Default 'fp32'. 'int8' for quantized models.