ModelRetryBackoffSettings
type ModelRetryBackoffSettings = object;Properties
Section titled “Properties”initialDelayMs?
Section titled “initialDelayMs?”optional initialDelayMs: number;Delay for the first retry in milliseconds.
jitter?
Section titled “jitter?”optional jitter: boolean;Whether to apply jitter to the computed backoff delay.
maxDelayMs?
Section titled “maxDelayMs?”optional maxDelayMs: number;Maximum delay between retries in milliseconds.
multiplier?
Section titled “multiplier?”optional multiplier: number;Multiplier applied after each retry attempt.