retry_operation
Retry potentially failing operations like API calls or network requests with exponential backoff. Configure max retries, initial delay, and operation details. Optionally preview retry metadata without execution.
Instructions
Retry an operation with exponential backoff. Use this for operations that might fail temporarily (API calls, network requests, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation_id | Yes | Unique identifier for this operation (used for tracking retries) | |
| operation_type | Yes | Type of operation being retried | |
| operation_data | Yes | Data specific to the operation (e.g., URL for HTTP, query for DB) | |
| max_retries | No | ||
| initial_delay_ms | No | ||
| should_execute | No | If false, just returns retry metadata without executing |