Virtual agent NLU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2025 01:59 AM
I have created a VA flow which runs based on choice selected by users. Can we create a NLU intent in VA so that directly navigate to step no:X of flow based on text with skips rest steps in flow designer??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2025 03:33 AM
Hi @servicenow_devo,
yes, you can configure pretty much anything. Please can you share more details, this is too vague to understand it
/* If my response wasn’t a total disaster ↙️ ⭐ drop a Kudos or Accept as Solution ✅ ↘️ Cheers! */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2025 07:31 AM
hi @servicenow_devo ,\
You can’t directly jump to step X in a Virtual Agent (VA) topic flow just by triggering an NLU intent — the VA framework doesn’t natively support “skip to a specific step” inside a flow once it’s running.
What you can do architecturally:
✅ Create separate VA topics for different scenarios (each starting from the step you want).
✅ Train NLU intents to trigger those topics directly based on user input.
✅ Optionally, use a parent topic to ask the choice, then dynamically trigger the sub-topic via the Topic block based on user’s NLU-detected intent.
This way, you keep flows clean, modular, and let NLU decide which branch to start — rather than jumping inside an existing running flow.
If you'd like, I can sketch the design for that parent-child topic structure too!