matcastro
matcastro2w ago

Block

How can I make my agent block, after responding with what it should say, immediately follow the (only) exit condition without waiting for the user’s reply? I just need my flow to continue. However the agent step cant continue it without waiting for the next answer. I want my agent to only answer the customer’s question and continue the flow, without waiting for the next input. How can I do this?
1 Reply
Tico | Voiceflow Assistant
Add an exit-condition path and tell the LLM to take it 1. Open the Agent step ➜ Paths tab.
2. Create a new path, e.g. continue_flow, and connect it to the block you want to run next.
3. In the Agent’s instructions add a line such as:
After you finish answering the user’s question, immediately route to the path “continue_flow” without waiting for any further user input.
After you finish answering the user’s question, immediately route to the path “continue_flow” without waiting for any further user input.
The Agent can trigger its own paths, so it will: • send the reply (text trace)
• instantly fire the continue_flow exit condition
• move on to the next block – no user message required. If your goal is just to show a fixed message you can skip the Agent step entirely and use a normal “Send Message” block, but the above is the recommended pattern when you still want the Agent’s reasoning and KB access. Docs: https://docs.voiceflow.com/docs/agents#exit-conditions

Did you find this page helpful?