This is my first post. I cant find the answer to this question: Is it possible to make a parallel concurrent AI Agents workflow? And then use the output of all ai agents? I know I need to wait until the last agent, but I want to start them at the same time to save time in the overall workflow. This is the workflow I want to run in parallel:
I want AI agent 1, 2 and 3 to start at the same time, because next I will merge all outputs and process the result further down.,
for the explanation and discussion about this topic, you can try and follow this discussion, the difference is basically
The difference is
v0 (legacy) executes the first node of each branch, then the second node of each branch, and so on.
v1 (recommended) executes each branch in turn, completing one branch before starting another. n8n orders the branches based on their position on the canvas, from topmost to bottommost. If two branches are at the same height, the leftmost branch executes first.
If it answers your question, please mark my answer as the solution thank you