Last Updated: 2020-03-06
Quite simply, a chatbot is a tool that can either provide access to information or perform certain tasks by interacting with the end-user using either text or voice. Think of it like a customer service call centre where users call in to ask questions, except that instead of communicating customer service representatives, users are interacting with a bot. Having a conversation with a computer might have seemed like science fiction especially in the 1980s:
But now, chatbots are almost everywhere, from small businesses to large enterprises, even the universities and polytechnics have jumped on board! Some notable examples include Bus Uncle 🚍, Ask Jamie 👩, and even AskNYP (It's missing on the NYP Website at the time of writing, but it is still available on the Student Portal 🤷)
Chatbots are not intended to replace websites that already provide information to users, or replace existing workflows to accomplish a task, but instead complement them as an additional way to access them.
With the rise of messaging apps such as WhatsApp and Facebook Messenger, more and more people begin using them and they provide a new avenue for companies and brands to engage with them.
Sometimes, users just want to know a particular piece of information. Instead of scouring through the website to find it, they can just ask and the chatbot will give it to them.
Leaps in artificial intelligence and machine learning, as well as the introduction of cloud providers such as Amazon Web Services (AWS) and Microsoft Azure, have made it possible for chatbots to be available to the masses.
Think of virtual assistants such as Google Assistant, Alexa and Siri... They simulate how a human would respond in a conversation and you are not confined to use exact words/phrases so that they can understand you. They first try to guess what the user is trying to ask for using either rules or natural language processing. Next, they match to a list of actions that the bot is programmed to perform and finally executes the action that best matches the user's request.
Did you know that 65% of all calls to a customer service call centre were all enquiries regarding publicly available information? 🤯
By using chatbots, customer service representatives can focus on tasks where human intervention is needed. For example, when a user wants to pay their credit card bills:
As you can see, the customer service representative only comes into play when it is an action that the bot cannot handle both accurately and predictively. This reduces the number of representatives required as well as improves their productivity.
In this codelab, you're going to build a simple chatbot on the Microsoft Azure cloud platform. Your chatbot will:
This codelab is focused on chatbots. Non-relevant concepts are glossed over and are provided for your reference.
To create the resources needed to build and run the chatbot on Microsoft Azure, an Azure subscription is required. Think of an Azure subscription to be like a pre-paid SIM activation with or without credit, it fuels the Azure resources in your account. Without it, everything stops working. Luckily for students like me, Microsoft provides an Azure Subscription with a $100 credit as well as provides resources and tools to develop their ideas on the Azure platform.
To make sure, you have created your Azure subscription correctly, log in to the Azure portal using the same Microsoft account at:
https://portal.azure.com
If you see a message, like the one below upon logging in, it means that you have not added the Azure subscription correctly. Repeat the process of creating an Azure subscription again and refresh the Azure Portal when you are done:
Otherwise, under the "Navigate" section, click on "Subscriptions" and ensure that your newly-created subscription appears.
To build your knowledge base for the chatbot to reference from, you need to have existing materials for QnA Maker to scrape from. Of course, one approach is to manually add the questions and answers by yourself one-by-one, but that's too laborious and who does that?
My recommendation, and what this codelab will use, is to put the questions and answers the chatbot is expected to reference and give to the users, into a word document. If you format your word document properly, your chatbot can perform multi-turn conversations and there will be a higher chance that QnA Maker can create the knowledge base more efficiently so that you don't have to do as many refinements to the knowledge base as compared to the other methods.
Here's a sample word document containing the most frequently asked questions and corresponding answers about NYP's various admissions processes:
If you are lazy to compile into a word document, you can ask QnA Maker to scrape existing content off a webpage.
You must provide QnA Maker with the location of the webpage. For example:
https://www.nyp.edu.sg/current-students/academic-matters/nyp-assessment-regulations.html
You can also use an existing document to populate the knowledge base. The document type must be a Portable Document (.pdf) / Word Document (.doc or .docx) / Excel Workbook (.xls or .xlsx) / Text (.txt or .tsv) file. For Excel Workbooks or Text files, they must be structured like:
Before we can go to QnA Maker, we need to create the QnA Service needed to create a knowledge base on QnA Maker. These resources will be used to host our knowledge base. Don't worry! I'll explain it in the next section 😌
Within the Azure portal, at the search bar at the top, type "QnA Maker" and select the QnA Maker entry under the Marketplace section:
At the Create screen, enter the following:
It should look something like this:
If everything is correct, click on "Create" and Azure should begin creating your resources, which will take about 5 minutes.
Once Azure is done creating the resources, the following message appears and you're ready to move on! 😃
For a chatbot to answer questions, it needs to know both the questions to expect as well as the answer to those questions. This collection of questions and answers is called a Knowledge Base. A chatbot without a knowledge base is like a ship with no captain 🚢 or a car without a steering wheel 😨
QnA Maker is a service that allows you to create knowledge bases for chatbots easily without any coding required. It works by matching questions that best matches the user's query and returns the corresponding answer.
We'll use the QnA Maker to create our knowledge base.
You should have something like this:
QnA Maker should now be crawling the knowledge base file that you have provided and creating your knowledge base
And here's our new knowledge base! 😆
Let's jump in and explore!
Of course, your bot can use the newly created knowledge base as it is, but your chatbot wouldn't be very efficient in answering the user's questions. Why is that the case?
Let's take a look a QnA pair: 🧐
When a user asks "What are the courses that have a higher course-level allowance of 50% for aptitude-based admissions? Why and how were these courses selected?", the bot will reply with "The full list of courses with a higher course-level allowance of 50% for aptitude-based admissions can be found on our. .."
This may look perfect at a glance, however, this presents a few issues:
You can guess how the user will phrase the question and add them into QnA Maker. Let's add alternative phrasings for this QnA pair. Click on "Add alternative phrasing"
Type a question that the user might ask: "What are the admission requirements for GCE ‘A' Level holders?"
It should now appear like this:
You can add as much alternative phrasing as you wish, so long it does not conflict with those in another QnA pair.
Sometimes, the user just wants to know a single piece of information and not everything else. What we can do is to create QnA pairs that deals with a very specific piece of information. Take a look at this QnA pair:
As you can see, this QnA pair consists of 3 questions and 1 answer. To simplify this QnA pair, we can break them down into new QnA pairs.
Since the answer to "Why do these courses have a higher course-level allowance are selected for aptitude-based admissions?" and "How are courses selected to have a higher course-level allowance are selected for aptitude-based admissions?" are the same, we are going to create a new QnA pair with "Why do these courses have a higher course-level allowance are selected for aptitude-based admissions?" as the main question and "How are courses selected to have a higher course-level allowance are selected for aptitude-based admissions?" as an alternative phrasing.
To do this, first, create a new QnA pair by Clicking on "Add QnA Pair"
Notice that the new QnA pair is created under the "Editorial" source. This means that it does not belong to any existing imported file into QnA Maker. Edit the newly QnA pair to match this:
Now, we don't want the bot to give duplicate answers, so finally edit the original QnA pair's answer to trim it and both the original and new QnA pairs look like this:
What's wrong with this QnA pair? 🤔
Well in case you didn't realise, this QnA pair does not even answer the question at all! In this case, you will need to edit the question/answer manually by clicking on the area where the question/answer is and change the text. In this case, change the answer in this QnA pair to:
Also, following the previous techniques, create a new QnA pair like:
And edit the original QnA pair to:
Now that you have made adjustments to your knowledge base, let's see on how your chatbot works! 🤞
At the top-right corner, first, click on the "Save and train" button to save your current knowledge base. Then, click on the "Test" button
A chat window will appear. Type a question that is inside the knowledge base and the chatbot should reply with the correct answer:
After you tested your chatbot, you should see if additional modifications to your knowledge base are needed. If so, go back before continuing this codelab.
If not, there is still some more work to do before we publish this chatbot. Because although the chatbot is able to answer the user's questions, it lacks any sort of interaction with the user. In the next section, we are going to do just that! 🏃
Sometimes, a question cannot be answered directly. In cases like this, the chatbot should provide prompts for the user to continue on with the conversation. These prompts should be related to the current conversation and be questions that help the chatbot determine the correct answer to give to the user.
In QnA Maker, this is done through multi-turn conversations.
In a multi-turn conversation, the chatbot works differently. Normally the chatbot stops processing after it finds a matching QnA pair and returns the answer to the user. However, in a multi-turn conversation, after finding a matching QnA pair, it checks if there any follow-up prompts linked it. Follow prompts are linked to other QnA pairs that you will set in QnA Maker later. It then returns the matching answer as well as the prompts for the user to choose from. The user can choose to either ask an unrelated question or select any of the prompts to get the answer of linked QnA Pair. Confused? Let's see a step-by-step example:
Using multi-turn conversations helps to cut down the length of your chatbot answers, even more, meaning your users won't have to read long answers.
Not all QnA pairs can be used in multi-turn conversations. Typically, you should use QnA pairs that are related to each other (i.e. Individual admission processes that NYP conducts). These QnA pairs can be created within QnA Maker or be already imported into your knowledge base.
Create a new QnA pair like this:
To add a follow-up prompt, click on the "Add follow-up prompt" link below the answer. The following screen should appear:
Here's an explanation of the what's on above:
Fill up the fields like so:
Click on "Save" and now your QnA Pair should look like this:
Repeat the same steps for this Follow-up prompt:
As always, click on "Save and train" to save the changes and voila! You have created your first multi-turn conversation! 👏
After you tested your chatbot, you should see if additional modifications to your knowledge base are needed. If so, go back before continuing this codelab.
We're almost reaching the end, so hang in there!
Now that you're confident that your knowledge base is good enough. Let's go ahead and deploy it to the Azure Cloud ☁️
So first, go to the "Publish" tab
Click on "Publish"
Wait for the knowledge base to be published and then you will arrive at this screen:
Now, all we need to do is to create a chatbot! You can either create one manually in the Azure Portal or click on "Create Bot" to redirected to Azure Portal using a sample chatbot template
When you're redirected to the Azure Portal, all of the required fields would have been already filled out for you. But you will need to change a few of the fields:
Your screen should look at like this:
Click on create and wait for Azure to deploy the necessary resources to host your chatbot:
Once that is done, go to the resource group that Azure deployed to and look for your Chatbot App Service. If you didn't change the provided name, it should be called <Name of your QnA knowledge base>+"-bot"
At the sidebar on the left, click on "Test in Web Chat"
A chat window should now appear and the chatbot should now greet you:
Try out your brand new chatbot!
In this section, I'll be talking about some tips that may be useful over time ⌛
Eventually, at some point in time, you will need to update the knowledge base of your chatbot to allow it to answer new questions, update the answers in the QnA pairs, or remove irrelevant QnA pairs altogether. Luckily for you, you do not need to repeat the whole process again. You can just update the knowledge base in QnA Maker, and then publish it. Your chatbot will automatically be updated and no further action is required on your part. Here is the lifecycle of a knowledge base:
Other times, you want to let the users to "train" the chatbot to make it better. This allows the chatbot to pick up user's questions that you may not have anticipated. In QnA Maker, there is a feature called Active Learning 📚
Active Learning works by suggesting alternative questions, based on user-submissions, to your question and answer pairs in your existing knowledge base. It does not, however, suggest new QnA pairs and you need to approve the suggestions for them to be added into your knowledge base.
This is not activated by default. To activate it, go to the top-right corner of QnA Maker, click on your profile picture (or initials if you don't have one) and select "Service Settings"
Move the toggle switch next to the name of your knowledge base from off to on:
Here is how active learning looks like to the user:
When the chatbot identifies more than one possible matching QnA pair, it asks the user if it actually means any of the identified QnA pairs. It uses the user's response to see if a suggestion should be made to prompt you to make changes to the knowledge base.
In QnA Maker, this can be seen by clicking on "View Options", selecting "Show active learning suggestions" and lastly selecting "Filter by Suggestions":
You can approve or reject suggestions by clicking on ✔️ for accept and ❌ to reject:
QnA Maker allows you to export your knowledge base and vice-versa. This comes in handy when you need to use the same knowledge base for another chatbot but you want a separate knowledge base for the other chatbot. To do this, first, go to "Settings"
Scroll down until you see this section, select the file type you want to export your knowledge base as, and download the file
Congratulations, you've successfully built your first chatbot!
You understand what chatbots are, how they are used and why they are becoming the norm.
You now also know the key steps required to build a chatbot using QnA Maker on the Microsoft Azure Cloud Platform.