> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Retry Utils • AI Agent SDK

> Retry utilities with jittered exponential backoff for the PraisonAI SDK.

# retry\_utils

<Badge color="blue">AI Agent</Badge>

Retry utilities with jittered exponential backoff for the PraisonAI SDK.

Provides interrupt-aware retry mechanisms for LLM API calls and tool execution
with configurable backoff strategies, jitter, and buffered status reporting.

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents.agent import retry_utils
```

## Classes

<CardGroup cols={2}>
  <Card title="RetryBackoffConfig" icon="brackets-curly" href="../classes/RetryBackoffConfig">
    Configuration for jittered exponential backoff retry behavior.
  </Card>
</CardGroup>

## Functions

<CardGroup cols={2}>
  <Card title="jittered_backoff()" icon="function" href="../functions/jittered_backoff">
    Calculate delay for jittered exponential backoff.
  </Card>

  <Card title="interruptible_sleep()" icon="function" href="../functions/interruptible_sleep">
    Sleep with periodic interruption checks.
  </Card>
</CardGroup>
