---
title: Request timeouts and retries with AI Gateway
description: AI Gateway has added additional request handling, with request timeouts and request retries
image: https://edgetunnel-b2h.pages.dev/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://edgetunnel-b2h.pages.dev/changelog/rss/index.xml) [ View RSS feeds ](https://edgetunnel-b2h.pages.dev/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://edgetunnel-b2h.pages.dev/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://edgetunnel-b2h.pages.dev/changelog/) 

## Request timeouts and retries with AI Gateway

Feb 06, 2025 

[ AI Gateway ](https://edgetunnel-b2h.pages.dev/ai-gateway/) 

AI Gateway adds additional ways to handle requests - [Request Timeouts](https://edgetunnel-b2h.pages.dev/ai-gateway/configuration/request-handling/#request-timeouts) and [Request Retries](https://edgetunnel-b2h.pages.dev/ai-gateway/configuration/request-handling/#request-retries), making it easier to keep your applications responsive and reliable.

Timeouts and retries can be used on both the [Universal Endpoint](https://edgetunnel-b2h.pages.dev/ai-gateway/usage/universal/) or directly to a [supported provider](https://edgetunnel-b2h.pages.dev/ai-gateway/usage/providers/).

**Request timeouts**A [request timeout](https://edgetunnel-b2h.pages.dev/ai-gateway/configuration/request-handling/#request-timeouts) allows you to trigger [fallbacks](https://edgetunnel-b2h.pages.dev/ai-gateway/configuration/fallbacks/) or a retry if a provider takes too long to respond.

To set a request timeout directly to a provider, add a `cf-aig-request-timeout` header.

**Provider-specific endpoint example**

```bash
curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/workers-ai/@cf/meta/llama-3.1-8b-instruct \
 --header 'Authorization: Bearer {cf_api_token}' \
 --header 'Content-Type: application/json' \
 --header 'cf-aig-request-timeout: 5000'
 --data '{"prompt": "What is Cloudflare?"}'
```

**Request retries**A [request retry](https://edgetunnel-b2h.pages.dev/ai-gateway/configuration/request-handling/#request-retries) automatically retries failed requests, so you can recover from temporary issues without intervening.

To set up request retries directly to a provider, add the following headers:

* cf-aig-max-attempts (number)
* cf-aig-retry-delay (number)
* cf-aig-backoff ("constant" | "linear" | "exponential)

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://edgetunnel-b2h.pages.dev/changelog/post/2025-02-05-aig-request-handling/#page","headline":"Request timeouts and retries with AI Gateway · Changelog","description":"AI Gateway has added additional request handling, with request timeouts and request retries","url":"https://edgetunnel-b2h.pages.dev/changelog/post/2025-02-05-aig-request-handling/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/changelog-preview.png","dateModified":"2025-02-06","datePublished":"2025-02-06","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
```
