Sandip
Sandip

Reputation: 262

Is LUIS limited for use?

I have been receiving exception in my application saying

Exception: Response status code does not indicate success: 403 (Quota Exceeded).

Does this means we are only allowed 1000 hits per application per month on the LUIS?

Anyother justification are welcomed around this exceptions.

Upvotes: 2

Views: 1392

Answers (3)

Nicolas R
Nicolas R

Reputation: 14619

There are several quotas on LUIS's keys usage:

  • Free key:

  • 5 calls / second

  • 10 000 calls / month

  • Standard key:

  • 50 calls / second

See Azure portal's capture below where the 5/second is visible for free plan:

Azure capture

And link to LUIS pricing here

Upvotes: 6

Vinod kumar G
Vinod kumar G

Reputation: 655

It is also depending on the starter key that was created for each user when using LUIS free from first time, we need to migrate the luis model to a Azure resource, only then we can use 10,000 message free per month as per F0 plan, else it will be 1000 for each user authorizing key.

Reference link https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-concept-keys

Upvotes: 0

Jim Lewallen
Jim Lewallen

Reputation: 1006

There is also (or was) an out of Azure preview key good for only 1000 messages per month on a rolling daily window. Not sure if it’s still there but it could be what you’re running into. It was called the bootstrap key and was just using your programmatic api key as the runtime key.

Upvotes: 0

Related Questions