Core concepts

A Flow workflow is a graph: nodes do the work, edges decide what follows what and what is passed along. Everything else follows from those two things.

Entry
RAG Query
AI Agent
LLM
Exit
  • Execute + Data
  • LLM
Four nodes and three edges: entry, knowledge-base search, agent, answer.

The one property that makes Flow behave unlike a familiar flowchart: the engine does not plan the order of steps in advance. A node runs when an incoming edge activates it. That is where branching without skipping half the graph comes from, and parallel branches, and the fact that the untaken side of an if is not an error.

Read in this order