I’m using a icebreaker generator to create an icebreaker from information of a Google sheet but everytime start the workflow it reached until 60 and the rate limit error appears. I dont understand because ive used this workflow before and now is giving me this error. I have founds in my api account. How can I solve this?
Well OpenAI has rate limits, and it has little to do with whether you do or do not have funds.
Rate limits are measured in five ways: RPM (requests per minute), RPD (requests per day), TPM (tokens per minute), TPD (tokens per day), and IPM (images per minute). Rate limits can be hit across any of the options depending on what occurs first.
If you are encountering rate limits by RPM (requests per minute), you can do batch processing instead. Seeing your workflow, you have batch processing set at 5, which should work fine. If you are still encountering issues, you can try using the Loop node to set the batch size and a Wait node to have a pause between each call.