5 AI Studio Techniques Every Low-Code Developer Should Know

Vonage Dev
Nerd For Tech
Published in
9 min readJan 10, 2025

Article written by Benjamin Aronov

Introduction

When working with AI Studio, there are a few useful flows that come up time and again. In this article, you will learn how to improve your Conversational AI Agents with 5 simple but powerful flows that are useful in every agent!

You’ll learn how to (1) create a flow to send emails, (2) how to organize your agent to be nice and neat, (3) how to create a loop to accept multiple questions from your user, (4) how to handle broad questions that might confuse your agent, and finally (5) how to create fallbacks if the user gives troublesome questions!

Prerequisites

  • Vonage API Account

To complete this tutorial, you will need a Vonage API account. If you don’t have one already, you can sign up today and start building with free credit. Once you have an account, you can find your API Key and API Secret at the top of the Vonage API Dashboard.

Basic Inbound WhatsApp agent to follow along. First, to create your agent, follow the instructions found in the AI Studio documentation. There are three important options for our agent, select:

  • Type: WhatsApp
  • Template: Start From Scratch
  • Event: Inbound

Then add the following 3 nodes:

  • Send Message Node: send a greeting to our user
  • Collect Input Node: collect a user question and store to a parameter called $user_query, this will be referred to as Collect User Query
  • Classification Node: classify for $user_query, this will be referred to as Main Classification
Starting Boilerplate WhatsApp Flow

How to Use the Send Email Node in AI Studio

Allowing users to email your company from a Conversational AI agent offers a reliable and secure communication channel that users trust, ensuring inquiries are handled professionally. Additionally, it allows your team to manage responses at their own pace, integrating seamlessly with existing workflows since email is already widely used within most organizations.

You’ll first need to create an Email Support Intent for our classification node. Intents are how the AI agent knows the purpose of your user’s question and which flow to route them to.

Open the Classification Node and click Create Intent. Name the intent “Email Support” at the top and then add 5–10 user expressions like “Email help”, “Email support”, and “I want to email support”. User expressions are the data that help train the agent to understand different intents.

Intent Training Set for Send Email Flow

Next, we’re going to need 2 additional pieces of information from the user before we can use the Send Email node:

  • Collect Address
  • Using a Collect Input node, ask the user for their email address.
  • E.g., “Great! Can I have your email address?”
  • Store it inside a new Parameter $email_address.
  • Set this parameter to @sys.email so that AI Studio will only accept valid email addresses.
  • Collect Email
  • Using a Collect Input node, ask the user for the question that was unanswerable by the agent
  • E.g., “Please explain the question you have, and I’ll pass it along to support 💌”
  • Store it inside a new Parameter called $email_content

Now we are ready for the Send Email node. The configuration for our node will be:

  • To: add your email here
  • Make sure to hit enter so that the address is saved. It should turn into a grey block.
  • You can add more than one email recipient.
  • Subject: New AI Agent Question: $PROFILE_NAME
  • $PROFILE_NAME is a System Parameter that allows us to access the user’s profile name they set in WhatsApp. (Note: not everyone uses their real name as a profile name.)
  • Body:

Contact Info:

  • Respondent Name: $PROFILE_NAME
  • Respondent Phone Number: $SENDER_PHONE_NUMBER
  • Respondent Email: $email_address

User Submitted Question: $email_content

Conversation Time: $CONVERSATION_START_TIME

Your node should look like this:

Send Email Node

Great! Our Email flow is now complete. You can now use the Chat Tester and try it out with your email address!

How to Organize Your Agents With Subflows

Our canvas is starting to get a bit messy, and this is just for a short flow! Imagine with flows that can be dozens of nodes! To keep our agents clean, we can organize them with subflows.

Protip: Start with a Mockup before building and organizing is much easier

To create a new flow, click the Flows tab in the most leftward panel. Then click Add flow. You can rename your flow to Send Email by right-clicking.

How to Rename SubflowsNow recreate the Email flow portion from before; everything after the Classification node (Collect Address node, Collect Email node, Send Email node). However, now use the Start node in your new sub-flow, as your beginning.. You can duplicate your previous nodes and copy/paste them into the subflow.

Now, from the Flow Control section of the Node panel, add an Exit Flow node. Click on the node and rename it Exit Send Email. We can now use our subflow to clean up our Main Flow! Click on the Events tab (the one with the lightning bolt) and then click on Inbound Session. This will bring you back to our Main Flow.

Now delete all the nodes we created in the previous section How to Use the Send Email Node (everything after the Classification node). Next, from the Flow Control section, add a Flow node and select the Send Email Flow. You can connect your Classification node to the Send Email Flow node, and that’s it! Your agent has the same functionality but in a much cleaner way.

Agent Main Flow with Send Email Subflow

How to Loop for Multiple User Inquiries

Our email flow is nice, but what if the user wants to email support and ask more questions? We don’t want them to start the whole agent over! We want to allow the user to ask our chatbot multiple questions.

Create another subflow called “Repeat?”. Add a Collect Input node called Collect Repeat that will save a new Parameter called $repeat of type @sys.confirmation. The node will receive Reply Button inputs. One button should have a title Yes and a value of yes. The other button should have a title of No and a value of no.

Collect Repeat Node Details

Now, we’ll use a Condition Node to check against $repeat. Create one condition to check if $repeat is equal to yes, and another to check if $repeat is equal to no. Now add two separate Exit Flow nodes; one for REPEAT = YES and another one for REPEAT = NO.

Complete Repeat? Subflow

Now, back in our Main Flow, we’ll finish our repeat logic. Connect the yes condition again to your original Collect User Query node, the first collect input node we used.

So that our users know the flow is over, and our agent is “asleep”, let’s create one final Send Message node with a simple Goodbye Message, “Thanks for using AI Studio!” Connect our false condition to this node. Connect the Goodbye Message node to an End Conversation node.

Repeat? Subflow Within the Main Flow

How to Handle for Broad User Queries

The rest of the article all takes place in our main flow.

So far we’ve created one intent for our users: sending emails. Your agent may have many intents. Sometimes, users may ask broad questions that match multiple intents, confusing the virtual agent. Instead of the agent saying, “I’m sorry, I didn’t understand that,” which can frustrate users, a better approach is to create a “Broad Queries” intent. This intent gives a polite, clarifying response and prompts the user to rephrase, helping maintain their confidence in the agent’s ability to assist.

Broad queries for a travel booking agent may look like “flights,” “assistance,” “details,” “booking question,” etc.

Intent Training Set for Broad Queries

First, add a “Broad Queries” Intent to your Main Classification Node. Then add possible broad queries in the User Expressions field. Try to add possible words or phrases that might confuse an agent and end up in multiple intents.

Second, create a new Collect Input node and connect to it from the Broad Queries intent. We’ll use this Collect Input node to collect our $user_query parameter. However, here we’ll say something like, “That’s a great question! Can you be more specific?” or, “I’m happy to help. What’s your question?”.Lastly, loop back to your Classification Node.

Overview of Broad Queries Loop

How to Create Fallbacks for Unexpected User Input

When handling user input, a few common errors can occur. For instance, when using a Collect Input node in WhatsApp, users may enter text when the Agent expects an Image. Or they may send an empty message. Additionally, Classification nodes may get confused if an inquiry doesn’t match existing intents. We’ll build two fallback flows to cover these two potential scenarios.

How to Create a Fallback Flow for Unexpected Input Type

Our first Collect Input node expects users to submit a question as text. We can create a fallback for by adding a new Collect Input node called Fallback:Text. The value is stored again to $user_query and the prompt is “Sorry, questions must be typed. Please ask again.” Then, this node can be connected to our Classification Node and the Unexpected Input Type exit point.

Fallback for Unexpected Input Type

How to Create a Fallback Flow for Misclassification

In our Classification node, we need to handle the Missed case. We can again add a new Collect Input node called “Fallback: Missed Intent”. The value is stored again to $user_query. The prompt is, “Sorry, I didn’t understand that. Please try a more detailed question.” Then this node is connected back to our Classification node.

Missed Classification Fallback Flow

How to Avoid Endless Loops in Fallbacks

You might have noticed that these fallbacks have a potential pitfall. If the user gave problematic input the first time, why wouldn’t they give problematic feedback in our follow-up question? They could! And they would end up in an endless loop. Learn how to avoid endless loops with a well-structured fallback flow.

Conclusion

And that’s a wrap! 5 simple but powerful AI Studio flows that can really level up your conversational AI agents. By setting up email functionality, keeping things tidy with subflows, allowing users to ask multiple questions, handling those tricky broad queries, and creating smart fallbacks, you can build more responsive and user-friendly agents.

These tips are all about making your life easier as a low-code developer while ensuring your users have a smooth experience. So go ahead, give these flows a try, and see how they can make your agents smarter and your workflow cleaner. Have fun experimenting with AI Studio, and be sure to let us know what you are building. Please reach out in our Developer Community Slack or on X, formerly known as Twitter.

Originally published at https://developer.vonage.com/en/blog/5-ai-studio-techniques-every-low-code-developer-should-know

--

--

Nerd For Tech
Nerd For Tech

Published in Nerd For Tech

NFT is an Educational Media House. Our mission is to bring the invaluable knowledge and experiences of experts from all over the world to the novice. To know more about us, visit https://www.nerdfortech.org/.

Vonage Dev
Vonage Dev

Written by Vonage Dev

Developer content from the team at Vonage, including posts on our Java, Node.js, Python, DotNet, Ruby and Go SDKs. https://developer.vonage.com

No responses yet