You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Customer reported on the "I ran into an issue" button that they were seeing hanging with the sentiment API when they exceeded the 5000 calls/month quota. It's likely that the service is sending a 403/Retry-After and we're trying to retry on that. We should inject a custom policy that instead throws an exception in this case.
The text was updated successfully, but these errors were encountered:
Label prediction was below confidence level 0.6 for Model:ServiceLabels: 'Event Hubs:0.20153065,Cognitive - Text Analytics:0.09220232,Service Bus:0.067519926'
{"error": {"code": "403", "message": "Out of call volume quota for TextAnalytics F0 pricing tier. Please retry after 15 days. To increase your call volume switch to a paid tier."}}
We don't normally retry on a 403, but since a Retry-After is included in the headers we do. This is problematic because the Retry-After is set for 15 days (in seconds).
Customer reported on the "I ran into an issue" button that they were seeing hanging with the sentiment API when they exceeded the 5000 calls/month quota. It's likely that the service is sending a 403/Retry-After and we're trying to retry on that. We should inject a custom policy that instead throws an exception in this case.
The text was updated successfully, but these errors were encountered: