AI Agent quick tutorial¶
1. Open the Start Dialog¶
- In your instance, go to Dialogs in the left menu.
- Open the ⭐ Start dialog.
Info
⭐ Start dialog is always triggered at the beginning of each conversation.
2. Add a Welcome Message¶
- From the right-side Modules panel, drag a Message module into the workspace.
- Add your welcome text. Example:
- Connect this Message module to the Dialog Entry input (so the bot knows what to do when a chat starts).

3. Add an Agent Module¶
Now let’s add the AI Agent that will handle conversations.
- Drag the Agent module into the workspace.
- Insert your prompt. Example prompt structure:
-
Add Output Paths (topics the Agent should detect and trigger specific actions):
-
Appointment scheduled → Appointment was successfully scheduled and confirmed.
- Escalation/Transfer → Customer requests human support, complains, or asks something not covered.
-
Call/Chat End → Customer indicates the conversation is finished.

4. Connect the Modules¶
- Connect the Welcome Message to the Agent module (as shown on picture above).
- ⚠️ Important: after connecting, click the arrow and press the Pause button.
→ This ensures the bot waits for user input after showing the welcome message.
5. Add output paths logic¶
Finish the dialog to match your use-case:
- Process the results if needed (e.g. send result to email, API request)
- Add Discussion/Call end module to Ending output (Bot will terminate the call or chat)
- Handle errors and exceptions (Agent module Other output) with message to user and escalation (e.g. send email, create ticket, redirect to human agent)
Your Agent is almost ready! The dialog is already functional now just connect the outputs to complete your logic.
- Process results – Send collected info (like booking details) via email or API.
- End conversation – Link the Call End output to a Discussion/Call End module so the bot closes the chat or call properly.
- Handle errors – Use the Other output (triggers on exceptions or errors) to reply with message or escalate to a human agent, create ticket or send email. Just to be sure, this shouldn’t happen normally.
✅ That’s it! Your AI Agent is now fully operational! Navigate to test page to try it out (message bubble icon at top right corner)
