xingtwittersharerefreshplay-buttonpicture as pdflogo--invertedlinkedinkununuinstagram icon blackShapeGroup 3 Copy 2Group 2 Copydepartment_productdepartment_datascienceuserclosebasic clockblogShapearrows slim right copy 3arrows slim right copy 3arrows slim right copy 3

Developing chatbots: Comparing Amazon Lex and Api.ai

|

19. Sep 2017 |

- min Lesezeit

Developing chatbots: Comparing Amazon Lex and Api.ai
When talking about visual interfaces such as web services, user interactions are tightly controlled and in some way restricted: Developers offer numerous options the user can choose from to achieve a certain goal. Because of Zero UIs, this situation changes. When using a voice or text based interface, there are countless ways of uttering the same thing in different ways. The input can be close to arbitrary, so the developer has to predict what it might be. Understanding the goal the user wants to achieve is the real challenge in providing a natural way of communicating via voice or text UIs.

There are some solutions for chatbots available on the market. In this blog article, we will focus on Api.ai and Amazon’s Lex.

Amazon Lex

Amazon Lex takes user utterances as an input and helps to form valid requests out of them. These can be sent to an AWS Lambda function to finally fulfil the user’s intent. Doing this, the system uses the logic of Amazon Alexa. The whole process requires the following steps.

  1. Recognize the utterance: The developer has to predict the way the user will address the system in the first place. For each intent a set of sample utterances needs to be preconfigured. The actual input gets compared to these sets. If there is a match, the user is assumed to have the associated intent. For further illustration, let’s say the user wants to book a hotel. In this case, sample utterances might be: “I want to book a hotel”, “Book me a hotel in Greece”, “I need a place to stay for tomorrow” and many many more.

Optionally, a custom Lambda function can be configured to validate the user’s input.

  1. Slots: There is at least a chance that the initial invocation by the user doesn’t include all the data which is required to fulfill the user’s intent. For this case Amazon Lex offers the option to define prompts which are meant to ask for these missing pieces. Referring to the example above, the system needs to know in which area the hotel should be, when the user wants to check in and for how many nights he wants to stay. Assigned to each of these parameters is a prompt which asks the user for his input and a slot type. Amazon offers a good amount of types like “TV Show”, “Sport Event” or in our case “City”, which the user’s response gets compared to.Custom types can be created as well. An example for filling the slots with values could look like this :
  1. Confirmation: When all necessary data is collected, a final question for confirmation can be included. If neglected, the whole booking process gets aborted.

  2. Fulfillment: In the last step, the system either just returns the clients’ parameters for testing purposes or hands them over to an AWS Lambda function which fulfills the final request.

There is also an option to include prompts for error handling. In this case the bot can for example ask for clarification (you can preconfigure how many times that can happen in a row) or refer to customer service.

Api.ai

The basic principles are very similar to Amazon’s Lex. You set up your agent/bot, create intents, configure sample utterances (“user says”) and define parameters, actions and responses. These steps represent the above-mentioned structure of the compared service. What’s interesting is that it doesn’t stop there. Api.ai offers way more options to build your chatbot. Moreover, this additional functionality comes without any loss of diminished usability. The system is still quite intuitive and easy to use. In the following I will go over the same bullet points as I did above just mentioning major differences in the api.ai implementation.

  1. Building the intent: Intents are not restricted to be mentioned specifically by the user as they can also be reactions to events. An example for this: Opening the chat application as well as the bot’s channel and receiving a welcoming message without even texting to the bot in the first place. Not to misunderstand: Obviously, this can also also be achieved using Amazon Lex. The difference is, API.ai offers this functionality as a part of their visual UI.There is also a training section (currently in beta) allowing you to enhance the intent classification by giving more examples for the “User Says” section. The more variations for questions, the better Api.ai can understand the user.

  2. Slots: The basic principle is almost the same. Just one exception: The responses. You do not just define a prompt to enter requested data, Api.ai makes it way easier to build an actually pleasant conversation. You can enter multiple responses each containing different parameters. Depending on what data the user has already provided, the corresponding question is asked. To clarify: When asking for how many nights the user wants to stay in the hostel you can enter “For how many nights do you want to stay” as a fall-back, but also include questions which include data the user provided before. The question which contains the most parameters gets chosen out of all actually available questions and gets sent to the user. Parameters are saved in the context and may be used for other intents as well. Other ways of responding are actions on Google, Facebook Messenger, Telegram, Kik, Viber or Skype.

  3. Fulfillment: The main difference is that you are not limited to AWS as you can enter a webhook URL without any restrictions. This can be a web service you built yourself or a third-party API. The only condition is that the webhook requirements are met.

Conclusion

If you have already set up your workflow with the Amazon services or developed a skill for Alexa it is probably easier to get familiar with Lex. It just offers a few steps to organize the users input in such a way that your Lamda function can deal with it. To summarize: It’s all about building a valid request out of a user query.

Api.ai offers more options for you to build your chatbot (or voice interface) and manages to pack them into a user interface that looks cool, is easy to use and very intuitive. Additionally, the documentation is very nice. But in this regard Amazon shouldn’t be the one to look up to anyway.


Ähnliche Artikel

Ähnliche Artikel