Go to Flow
The Go To Flow node enables modular conversation design by connecting different flows together.
Using separate flows for distinct conversation paths keeps your flows organized, maintainable, and reusable – a highly recommended practice for any non-trivial virtual being implementation.
Setting up flow transitions:
Create a dedicated flow for specific conversation paths
Use Go To Flow node to connect to that flow
Select the target flow from your flows list
Flow returns to original path when completed
Example: Rather than handling technical support queries in your main flow, create a dedicated "Technical support" flow:

Main Flow:
- Check if user has technical issues
- Go To Flow: Technical support
- Continue with personalized interaction
Technical support Flow:
- Collect device details
- Get issue description
- Provide troubleshooting steps
- If unresolved: collect contact info
- Return to main flow
Common use cases:
Authentication flows
Data collection sequences
Common response patterns
Multi-step processes
Reusable conversation segments
Last updated
Was this helpful?