Skip to content

Commit 3fc48df

Browse files
Merge pull request #5189 from PatrickFarley/sora-build
Sora build
2 parents f815a65 + 3ee2572 commit 3fc48df

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ The following sections provide you with a quick guide to the default quotas and
2626
| Default DALL-E 2 quota limits | 2 concurrent requests |
2727
| Default DALL-E 3 quota limits| 2 capacity units (6 requests per minute)|
2828
| Default GPT-image-1 quota limits | 2 capacity units (6 requests per minute) |
29+
| Default Sora quota limits | 60 requests per minute |
2930
| Default speech to text audio API quota limits | 3 requests per minute |
3031
| Maximum prompt tokens per request | Varies per model. For more information, see [Azure OpenAI models](./concepts/models.md)|
3132
| Max Standard deployments per resource | 32 |
@@ -195,7 +196,7 @@ M = million | K = thousand
195196

196197
### gpt-4o audio
197198

198-
The rate limits for each `gpt-4o` audio model deployment are 100 K TPM and 1 K RPM. During the preview, [Azure AI Foundry portal](https://ai.azure.com/) and APIs might inaccurately show different rate limits. Even if you try to set a different rate limit, the actual rate limit will be 100 K TPM and 1 K RPM.
199+
The rate limits for each `gpt-4o` audio model deployment are 100 K TPM and 1 K RPM. During the preview, [Azure AI Foundry portal](https://ai.azure.com/) and APIs might inaccurately show different rate limits. Even if you try to set a different rate limit, the actual rate limit is 100 K TPM and 1 K RPM.
199200

200201
| Model|Tier| Quota Limit in tokens per minute (TPM) | Requests per minute |
201202
|---|---|:---:|:---:|
@@ -231,7 +232,7 @@ The Usage Limit determines the level of usage above which customers might see la
231232

232233
## Other offer types
233234

234-
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.
235+
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.
235236

236237
|Tier| Quota Limit in tokens per minute (TPM) |
237238
|---|:---|
@@ -246,7 +247,7 @@ If your Azure subscription is linked to certain [offer types](https://azure.micr
246247

247248
<sup>*</sup>This only applies to a small number of legacy CSP sandbox subscriptions. Use the query below to determine what `quotaId` is associated with your subscription.
248249

249-
To determine the offer type that is associated with your subscription. you can check your `quotaId`. If your `quotaId` isn't listed in this table your subscription qualifies for default quota.
250+
To determine the offer type that is associated with your subscription, you can check your `quotaId`. If your `quotaId` isn't listed in this table, your subscription qualifies for default quota.
250251

251252
# [REST](#tab/REST)
252253

@@ -313,15 +314,15 @@ To minimize issues related to rate limits, it's a good idea to use the following
313314

314315
## How to request quota increases
315316

316-
Quota increase requests can be submitted via the [quota increase request form](https://aka.ms/oai/stuquotarequest). Due to high demand, quota increase requests are being accepted and will be filled in the order they're received. Priority is given to customers who generate traffic that consumes the existing quota allocation, and your request might be denied if this condition isn't met.
317+
Quota increase requests can be submitted via the [quota increase request form](https://aka.ms/oai/stuquotarequest). Due to high demand, quota increase requests are being accepted and are filled in the order they're received. Priority is given to customers who generate traffic that consumes the existing quota allocation, and your request might be denied if this condition isn't met.
317318

318319
For other rate limits, [submit a service request](../cognitive-services-support-options.md?context=/azure/ai-services/openai/context/context).
319320

320321
## Regional quota capacity limits
321322

322323
You can view quota availability by region for your subscription in the [Azure AI Foundry portal](https://ai.azure.com/resource/quota).
323324

324-
Alternatively to view quota capacity by region for a specific model/version you can query the [capacity API](/rest/api/aiservices/accountmanagement/model-capacities/list) for your subscription. Provide a `subscriptionId`, `model_name`, and `model_version` and the API will return the available capacity for that model across all regions, and deployment types for your subscription.
325+
Alternatively to view quota capacity by region for a specific model/version you can query the [capacity API](/rest/api/aiservices/accountmanagement/model-capacities/list) for your subscription. Provide a `subscriptionId`, `model_name`, and `model_version` and the API returns the available capacity for that model across all regions, and deployment types for your subscription.
325326

326327
> [!NOTE]
327328
> Currently both the Azure AI Foundry portal and the capacity API return quota/capacity information for models that are [retired](./concepts/model-retirements.md) and no longer available.

articles/ai-services/openai/video-generation-quickstart.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ ms.date: 05/22/2025
1212

1313
# Quickstart: Generate a video with Sora (preview)
1414

15-
In this Quickstart, you generate video clips using the Azure OpenAI service. The example uses the Sora model, which is a video generation model that creates realistic and imaginative video scenes from text instructions. This guide shows you how to create a video generation job, poll for its status, and retrieve the generated video.
15+
In this quickstart, you generate video clips using the Azure OpenAI service. The example uses the Sora model, which is a video generation model that creates realistic and imaginative video scenes from text instructions. This guide shows you how to create a video generation job, poll for its status, and retrieve the generated video.
16+
17+
For more information on video generation, see [Video generation concepts](./concepts/video-generation.md).
1618

1719

1820
## Prerequisites
@@ -71,7 +73,10 @@ Create a new Python file named `quickstart.py`. Open the new file in your prefer
7173
create_url = f"{endpoint}/openai/v1/video/generations/jobs?api-version=preview"
7274
payload = {
7375
"prompt": "A cat playing piano in a jazz bar.",
74-
"model": "sora"
76+
"model": "sora",
77+
"width": 1080,
78+
"height": 1080,
79+
"n_seconds": 10
7580
}
7681
response = requests.post(create_url, headers=headers, json=payload)
7782
response.raise_for_status()

0 commit comments

Comments
 (0)