You need to make sure you have this box checked. It will break the current workflow though. You will also have to re-initialize it. Then the workflow will continue even if it comes back with an error. Hope that helps
Yes sorry,
Here’s the workflow, basically i am asking gpt to create a meal for me, first i create a data meal, then i send the request then i edit the meal with the data from gpt ( mesage_content and error reponse ), 20% of the time the request fail and i don’t even have the error response.
How are you triggering your ‘simple’ workflow? Are you scheduling an API workflow on a list?
If so, this won’t really work well because at some point you will have too many calls happening at once.
It is better to loop the workflow once it is actually done, using a recursive loop with an iteration number. ChatGPT takes a while to get back to you. So if you are doing this 16 times all within 5 seconds or less of each other it will eventually overlap causing your workflows to fail.
Last time i tried with a loop that schedule the workflow with a current date time + 20s ( each loop ) to get 20s btw each request but i was still crashing for some loops