Skip to main content
The route node sends data down different pipeline paths based on configurable conditions. Use it to handle different document types, apply different processing logic based on content, or filter out unwanted documents.

Configuration

FieldTypeRequiredDescription
ModeselectYesRouting mode: Classify, Keep, Drop, or Group
Rulesrule editorWhen applicableConditions that determine which output path to follow
Filtersfilter editorWhen applicableFilter criteria for keep/drop modes
Groupinggroup editorWhen applicableGrouping configuration for group mode

Modes

Classify

Sends each document to a specific output branch based on classification rules. Define conditions that match document properties or content, and each condition maps to a different output edge.

Keep

Passes documents through only if they match the filter criteria. Documents that don’t match are dropped from the pipeline.

Drop

The inverse of Keep. Drops documents that match the filter criteria and passes everything else through.

Group

Groups related documents together before passing them downstream. Useful for batching documents by type, sender, or other properties.

Inputs and outputs

Allowed inputs: Trigger nodes, route, parse, review. Output: Data passed to the matching output edge(s) based on the routing conditions.

Credit cost

0 credits for rule-based routing. 0.5 credits per document when using text-matching classification.