Router Node
The Router node sends requests to an AI model. It’s the core building block for making LLM calls within a workflow.Settings
Routing Targets
Each Router node can have multiple Routing Targets. If the primary target fails, Traceport automatically falls back to the next target. Click + Add Target to add fallback models. Each target shows:- Provider badge (e.g.,
gpt-5.2) - Linked Prompt (e.g.,
mail_writer)
Branch Node
The Branch node implements conditional logic based on the output of upstream nodes. It evaluates expressions and routes traffic to different downstream paths.Conditions
Branches support multiple condition types:Example
In theemail_job_listings workflow, the score_route Branch node evaluates the cv_scorer Router output:
Branch expressions reference upstream node outputs using dot notation:
node_name.output.
