Skip to content
Prompty

RetryPayload

Payload for “retry” events — a transient operation will be retried.

---
title: RetryPayload
config:
  look: handDrawn
  theme: colorful
  class:
    hideEmptyMembersBox: true
---
classDiagram
    class RetryPayload {
        +string operation
        +int32 attempt
        +int32 maxAttempts
        +float64 delayMs
        +string reason
    }
operation: llm
attempt: 2
maxAttempts: 3
delayMs: 1250
reason: rate_limit
Name Type Description
operation string Operation being retried
attempt int32 Attempt number about to run
maxAttempts int32 Maximum configured attempts
delayMs float64 Backoff delay before the next attempt in milliseconds
reason string Reason for the retry