Simple Pipeline
A simple pipeline chains a Document to Annotate node, one or more AI Agent nodes in "solo" mode, and an Output node. Each agent analyzes the document (or the segments produced by an upstream chunking node) and produces its own annotations directly, without any arbitration between agents.
This is the most direct structure: suitable when a single type of check is enough, or when several independent agents can coexist without risk of duplicate or contradictory annotations.
To run several agents at the same time (rather than one after another) without reconciling their results, you can group them inside a Parallel node: they run simultaneously on the document, and their annotations are simply merged on output (without deduplication or arbitration — for that, see the supervised pipeline).