Home Extending the answers of the Chat Bot
Post
Cancel

Extending the answers of the Chat Bot

The Azure chat bot supports different answer types like videos, images or links. In my last post, I showed you how to make your bot smarter and understand the user’s input. In this post, I will show you how to return different types of answers.

Adding different reply types to the chat bot

To make your chat bot more appealing to the users, you should interact with your users with more than just text. The following demo is done with the Azure Bot Framework v3. For every return type, I create a simple intent which does nothing but return the desired type. The code can be downloaded from GitHub.

Create a new chat bot

Create a new chat bot

For every return type, I will create a new dialog and call this dialog in the intent. The calling method looks like this:

Forwarding to a new dialog

Forwarding to a new dialog

Reply with an internet video

Replying with a video hosted somewhere on the internet is pretty simple. You only have to create a message, add a text to this message and then a VideoCard as attachment. Before you can send the reply, you have to convert it to JSON.

Return a video from the internet

Return a video from the internet

When you test your chat bot, you will see the video as the reply of the chat bot.

Testing the internet video return

Testing the internet video return

Reply with a Youtube video

Replying with a Youtube video is almost the same as replying with a normal video. Instead of a VideoCard, a normal Attachment is returned.

Return a Youtube video

Return a Youtube video

When testing the reply, you can see the embedded Youtube video in the chat.

Testing the Youtube video reply

Testing the Youtube video reply

Reply with a file from the internet

Returning a file from the internet is basically the same as returning a Youtube video. Additionally, a name is added to the returning Attachment.

Return a file from the internet

Return a file from the internet

Testing the file reply returns a pdf file which you can download.

Testing the file reply

Testing the file reply

Reply with an image from the internet

Replying with an image is the same as the pdf reply. The only difference is the ContentType which is image/png (or jpeg, gif and so on).

Return an image from the internet

Return an image from the internet

The test shows the image in the chat.

Testing the image reply

Testing the image reply

The image carousel is a great feature to enhance the user experience in your chat bot. To reply with an image carousel add a HeroCards to the list of Attachment. To make the code easier, I create a helper method, which creates the HeroCard and returns it as Attachment.

HeroCard helper method

HeroCard helper method

The HeroCard is a big image with the same text and a button. Additionally, you could create a ThumbnailCard, which has a small image, some text, and a button. Here is the helper method for the ThumbnailCard:

ThumbnailCard helper method

ThumbnailCard helper method

Next, I set the AttachmentLayout to AttachmentaLayoutTypes.Carousel and add a List of Attachment to the reply Attachments:

Return an image carousel of herocards and thumbnailcards

Return an image carousel of HeroCards and ThumbnailCards

I don’t like mixing a HeroCard with a ThumbnailCard but for the sake of this demo, I combined them.

Testing the HeroCard and ThumbnailCard reply

Testing the HeroCard and ThumbnailCard reply

On the left side, you can see the HeroCard and on the right one, the ThumbnailCard.

Conclusion

In this post, I showed how to have different types of answers to enhance the user experience with your chat bot. In the next part, I will show you how to deploy your chat bot to Slack and to Facebook.

This post is licensed under CC BY 4.0 by the author.

Azure Bot with language understanding

Integrate your Bot in Third-Party Applications

Comments powered by Disqus.