Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface NormalRetryPolicyConfig

    Retry only the configured transient failure codes.

    interface NormalRetryPolicyConfig {
        backoff?: BackoffConfig;
        maxRetries?: number;
        mode: "normal";
        retryableCodes?: readonly string[];
    }
    Index
    backoff?: BackoffConfig
    maxRetries?: number

    Maximum eligible retries after the first request (default 5).

    mode: "normal"
    retryableCodes?: readonly string[]

    Failure codes eligible under this policy.