Skip to content

ModelRetrySettings

type ModelRetrySettings = object;
optional backoff: ModelRetryBackoffSettings;

Backoff configuration used when the retry policy requests a retry without returning an explicit delay.


optional maxRetries: number;

Number of retries allowed after the initial model request. Retries remain opt-in; no retries occur unless policy returns true.


optional policy: RetryPolicy;

Runtime-only retry policy. This callback is not serialized into persisted run state.