AskHandle

AI & Workflows

Do I need to use the Router or Dispatcher nodes in my flow?

Updated May 5, 2026

No — you don’t need to use Router or Dispatcher if your flow is simple.

When you DON’T need them

If you only have one node connected to the Start node, you can skip orchestration completely.

For example:

  • Document Search
  • Data Search
  • Question Flow
  • Any single action node

In this setup, every user message goes directly to that node.

How it works

  • User sends a message
  • Message goes straight from Start → your node
  • The node handles everything (answers, actions, responses)

When you SHOULD use Router or Dispatcher

You only need Router or Dispatcher when:

  • You have multiple possible paths
  • You want to route users based on intent
  • You need different behaviors for different questions

If there’s only one path, adding orchestration just adds unnecessary complexity.

Simple rule

One node after Start → No Router/Dispatcher needed
Multiple paths → Use Router or Dispatcher