Interface: RetryPolicy
Defined in: packages/agentos/src/orchestration/ir/types.ts:276
Governs automatic retry behaviour for transient node failures.
Properties
backoff
backoff:
"exponential"|"linear"|"fixed"
Defined in: packages/agentos/src/orchestration/ir/types.ts:278
Wait time growth strategy between attempts.
backoffMs
backoffMs:
number
Defined in: packages/agentos/src/orchestration/ir/types.ts:279
Base wait duration in milliseconds.
maxAttempts
maxAttempts:
number
Defined in: packages/agentos/src/orchestration/ir/types.ts:277
Total number of attempts (including the first).
retryOn?
optionalretryOn:string[]
Defined in: packages/agentos/src/orchestration/ir/types.ts:280
Optional allowlist of error codes/names that trigger retry.
When absent, all errors are retried up to maxAttempts.