AgentOS Extensions API - v1.0.3
    Preparing search index...

    http-client.ts

    Shared HTTP fetch wrapper with retry and timeout for anchor providers.

    interface HttpRequestOptions {
        retries?: number;
        retryDelayMs?: number;
        timeoutMs?: number;
    }
    Index

    Properties

    retries?: number

    Number of retries on transient failures (5xx, network errors).

    retryDelayMs?: number

    Base delay between retries in milliseconds (exponential backoff).

    timeoutMs?: number

    Request timeout in milliseconds.