Skip to content

Commit 6002417

Browse files
Merge pull request #3985 from mrbullwinkle/mrb_04_08_2025_quota_updates
[Azure OpenAI] Quota & limits updates
2 parents bc87b2a + a00540e commit 6002417

File tree

1 file changed

+54
-5
lines changed

1 file changed

+54
-5
lines changed

articles/ai-services/openai/quotas-limits.md

Lines changed: 54 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom:
99
- ignite-2023
1010
- references_regions
1111
ms.topic: conceptual
12-
ms.date: 4/04/2025
12+
ms.date: 4/08/2025
1313
ms.author: mbullwin
1414
---
1515

@@ -199,16 +199,65 @@ The Usage Limit determines the level of usage above which customers might see la
199199

200200
If your Azure subscription is linked to certain [offer types](https://azure.microsoft.com/support/legal/offer-details/) your max quota values are lower than the values indicated in the above tables.
201201

202-
203202
|Tier| Quota Limit in tokens per minute (TPM) |
204203
|---|:---|
205204
|Azure for Students, Free Trials | 1 K (all models) <br>Exception o-series & GPT 4.5 Preview: 0|
206205
| MSDN | GPT 3.5 Turbo Series: 30 K <br> GPT-4 series: 8 K <br>computer-use-preview: 30 K <br> gpt-4o-realtime-preview: 1 K <br> o-series: 0 <br> GPT 4.5 Preview: 0 |
207-
| Monthly credit card based subscriptions <sup>1</sup> | GPT 3.5 Turbo Series: 30 K <br> GPT-4 series: 8 K <br>computer-use-preview: 30 K <br> o-series: 0 <br> GPT 4.5 Preview: 0 |
206+
|Pay-as-you-go | GPT 3.5 Turbo Series: 30 K <br> GPT-4 series: 8 K <br>computer-use-preview: 30 K <br> o-series: 0 <br> GPT 4.5 Preview: 0 |
207+
| CSP Dev Test<sup>*</sup> | All models: 0 |
208+
209+
<sup>*</sup>This only applies to a small number of dev/test CSP subscriptions. Use the query below to determine what `quotaId` is associated with your subscription.
210+
211+
To determine the offer type that is associated with your subscription you can check your `quotaId`. If your `quotaId` is not listed in this table your subscription qualifies for default quota.
212+
213+
# [REST](#tab/REST)
214+
215+
[API reference](/rest/api/subscription/subscriptions/get)
208216

209-
<sup>1</sup> This currently applies to [offer type 0003P](https://azure.microsoft.com/support/legal/offer-details/)
217+
```bash
218+
az login
219+
access_token=$(az account get-access-token --query accessToken -o tsv)
220+
```
221+
222+
```bash
223+
curl -X GET "https://management.azure.com/subscriptions/{subscriptionId}?api-version=2020-01-01" \
224+
-H "Authorization: Bearer $access_token" \
225+
-H "Content-Type: application/json"
226+
```
227+
228+
# [CLI](#tab/CLI)
229+
230+
```azurecli
231+
az rest --method GET --uri "https://management.azure.com/subscriptions/{sub-id}?api-version=2020-01-01"
232+
```
233+
---
210234

211-
In the Azure portal you can view what offer type is associated with your subscription by navigating to your subscription and checking the subscriptions overview pane. Offer type corresponds to the plan field in the subscription overview.
235+
### Output
236+
237+
```json
238+
{
239+
"authorizationSource": "Legacy",
240+
"displayName": "Pay-As-You-Go",
241+
"id": "/subscriptions/aaaaaa-bbbbb-cccc-ddddd-eeeeee",
242+
"state": "Enabled",
243+
"subscriptionId": "aaaaaa-bbbbb-cccc-ddddd-eeeeee",
244+
"subscriptionPolicies": {
245+
"locationPlacementId": "Public_2014-09-01",
246+
"quotaId": "PayAsYouGo_2014-09-01",
247+
"spendingLimit": "Off"
248+
}
249+
}
250+
```
251+
252+
| Quota allocation | Subscription quota ID |
253+
|:---|:----|
254+
| Enterprise | `EnterpriseAgreement_2014-09-01` |
255+
| Pay-as-you-go | `PayAsYouGo_2014-09-01`|
256+
| MSDN | `MSDN_2014-09-01` |
257+
| CSP Dev/Test | `CSPDEVTEST_2018-05-01` |
258+
| Azure for Students | `AzureForStudents_2018-01-01` |
259+
| Free Trial | `FreeTrial_2014-09-01` |
260+
| Default | Any quota ID not listed in this table |
212261

213262
### General best practices to remain within rate limits
214263

0 commit comments

Comments
 (0)