Reputation: 308
I have a logic app that sends a request to copilot to reformat a piece of code. I have a large number of code blocks to convert using copilot (~1000) so I am trying to query copilot in a loop however it is only doing 5 requests per hour then timing out and failing. I was wondering whether anyone knew how to avoid this and send more requests to copilot every hour?
Upvotes: 0
Views: 150
Reputation: 650
the logic app connector for Microsoft copilot foe security allows a total of 600 calls per 60 seconds for a single API connection. Here is a reference to the Throttling limits
Based on the observed behavior, it is likely that you are reaching security compute unit(SCU)
limit or your Microsoft Copilot for Security. Once the limit has been reached, the copilot cannot process any additional prompts, and the capacity would be available in the next hour.
You can monitor and view the usage of these compute units by following the steps in the article - Monitor security compute units use. If you identify this to be the cause of your issue, you can update the SCU limit by following the steps under section Update the provisioned security compute units (SCUs)
If you still encounter issues after trying the above steps, you can contact support by creating a ticket
Upvotes: 0