Skip to content

ModelRetryBackoffSettings

type ModelRetryBackoffSettings = object;
optional initialDelayMs: number;

Delay for the first retry in milliseconds.


optional jitter: boolean;

Whether to apply jitter to the computed backoff delay.


optional maxDelayMs: number;

Maximum delay between retries in milliseconds.


optional multiplier: number;

Multiplier applied after each retry attempt.