Error Handling
Continue workflow using branched logic if the step returns an error
What is error handling?
Error handling allows the user to continue a workflow even if a step returned an error. Instead of terminating the workflow, you can choose to continue and instead
Which steps allow error handling?
LLM Step
Code Step
API Step
Web Scrape Step
How to retry if the step fails
Select
Continue
instead ofTerminate Workflow
if the step failsAdd a conditional where the condition checks if the
error
from the step exists e.g.step_1.error
Add the step that you want to retry if there was an error
Last updated