A deep dive into the Intervo.ai Workflow Canvas. Learn how to design complex, multi-step conversational flows using triggers, intent routing, and specialized sub-agents.
Greeting Agent
), whose only job is to welcome the user.Lead qualification
), focused solely on gathering contact information.Customer Support Agent
), trained to answer questions on specific topics.Ending Agent
), who politely concludes the conversation.# Trigger
: This is the universal entry point. Every conversation, whether it’s an incoming phone call, a website chat, or an API-initiated call, begins here. It is the fixed starting point of every workflow.# Start with / # End with
: These are structural best practices. The # Start with
node typically handles the initial greeting by passing control to a Greeting Agent
. The # End with
node ensures a consistent and polite conclusion by passing control to an Ending Agent
.# When user asks about
: This is the most important logic node in your arsenal. It acts as the central router for the conversation. Powered by a sophisticated Intent Classifier, this node analyzes the user’s speech or text to understand their goal. You can define various conversational paths based on topics. These topics are automatically suggested from your Knowledge Base, but you can also add custom keywords or phrases. When the user’s query matches a topic (e.g., “Pricing” or “Billing”), the workflow directs the conversation to the specialist sub-agent connected to that path.+
icon on the canvas, allowing for complex, branching conversations.
Customer Support Agent
.Lead Qualification Agent
, ensuring it doesn’t get sidetracked.firstName
, lastName
, email
, or issue_description
.
required
makes the sub-agent persistent. It will not consider its task complete and will not move on until it has successfully collected that piece of information from the user.