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

# Retrying Evaluations

> Retry one or more failed evaluations.

## Returns

Returns a dictionary containing retry results:

* `retried` (int): Number of evaluations successfully queued for retry.
* `skipped` (int): Number of evaluations skipped (not FAILED or exceeded max retries).
* `errors` (list\[str]): Error messages for any failed retries.

## Example

```python theme={"system"}
    retry_result = galtea.evaluations.retry(id=evaluation_id)
    print(f"Retried: {retry_result['retried']}, Skipped: {retry_result['skipped']}")
```

## Parameters

<ResponseField name="id" type="str | list[str]" required>
  Single evaluation ID or list of evaluation IDs to retry. Only evaluations with status `FAILED` can be retried.
</ResponseField>

## Retry Limits

<Note>
  Non-admin users are limited to a fixed number of retries per evaluation (default: 5). Once exceeded, the evaluation cannot be retried by regular users. For additional support or to increase retry limits, contact [support@galtea.ai](mailto:support@galtea.ai).
</Note>
