Out of quota after adding data source to model

ZenbitTech 5 Reputation points
2024-11-14T18:49:02.03+00:00

After deploying of Azure OpenAI model and making test request as "Hello" I successfully receive answer.
But when i use "add You data" and downloading a .docx document with single word "test" I'm receiving message "An error occurred when calling Azure OpenAI: Server responded with status 429. Error message: {'error': {'code': '429', 'message': 'Rate limit is exceeded. Try again in 10 seconds.'}}"

Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
3,398 questions
{count} votes

1 answer

Sort by: Most helpful
  1. navba-MSFT 26,480 Reputation points Microsoft Employee
    2024-11-15T10:42:01.09+00:00

    @ZenbitTech Greetings & Welcome to Microsoft Q&A forum!

    .

    The error message is related to rate limits, which is a common practice in APIs to prevent abuse and ensure fair usage.

    .

    In your case, the error message indicates that you’ve exceeded the token rate limit of your current AI Services pricing tier. If you are on free tier, please upgrade to standard tier.

    More info here.

    .

    Azure OpenAI’s quota feature enables assignment of rate limits to your deployments, up-to a global limit called your “quota.” Quota is assigned to your subscription on a per-region, per-model basis in units of Tokens-per-Minute (TPM).

    You can check this documentation for more details.

    User's image

    To give more context, Tokens-Per-Minute (TPM) and Requests-Per-Minute (RPM) rate limits for the deployment.

    TPM rate limits are based on the maximum number of tokens that are estimated to be processed by a request at the time the request is received.

    RPM rate limits are based on the number of requests received over time. The rate limit expects that requests be evenly distributed over a one-minute period. If this average flow isn't maintained, then requests may receive a 429 response even though the limit isn't met when measured over the course of a minute.

    Please see Manage Azure OpenAI Service quota for more details.

    To view your quota allocations across deployments in a given region, select Shared Resources> Quota in Azure OpenAI studio and click on the link to increase the quota*.*

    User's image

    I hope this helps. If you have any other questions, please let me know.

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.