Build Your First Bot Application With Microsoft Bot Framework

Bot Framework Overview

The bot is an app with a new user interface. It provides services such as web API that interact with the user in a conversational format. The intelligent bots interact with your users naturally wherever they are, from your website or app to text/SMS, Skype, Slack, Facebook Messenger, Office 365 mail, Teams, and other popular services. The Microsoft Bot Framework is a set of tools, services, products, and APIs to build and deploy software bots. The framework consists of the Bot Builder SDK, Bot Connector, Developer Portal, and Bot Directory. There's also an emulator that you can use to test your bot.

The Bot Builder SDK is an open source SDK available on the GitHub (https://github.com/Microsoft/BotBuilder ) that allows developers to build intelligent apps without knowing or learning an additional skill, such as machine learning. It provides tools and services required to build bots. It can be build using .NET, Node.js, or REST API.

The Bot Framework Developer Portal lets you register and connect your bot to many different conversation experiences (Skype and Web are auto-configured), providing broad reach for your text/speech, image, button, card-capable and audio/video-capable bot.  Make your bot available to your users through the Bot Framework.

The Bot Directory is a public directory of all reviewed bots registered through the Microsoft Developer Portal. Users will be able to discover, try, and add bots to their favorite conversation experiences from the Bot Directory.

The Microsoft Bot Connector is a communication service that helps you connect your Bot with many different communication channels (Skype, SMS, email, and others). If you write a conversational Bot or agent and expose a Microsoft Bot Framework-compatible API on the Internet, the Bot Framework Connector service will forward messages from your Bot to a user, and will send user messages back to your Bot.

What Bots are

The bot has many features which help to connect your customer from other conversational channels. These are as follows.

  1. Apps with a new interface
    The bot is an app with a new interface, such as web or app. It provides a new communication method to your users for your business.

  2. Faster Access
    As it's configured with other communication channels, it provides data to a user in a fast way as a service.

  3. Available across more platforms
    There is no need to develop iOS and Android bots separately. There is no need to develop bots as per conversation channel. One bot can interact with different platform and conversation channels.

  4. Less friction to build and deploy
    It’s easy to develop with .Net or Node js. There is Bot SDK available. It’s easy to register a bot and deploy on bot platform.

  5. More natural interaction
    The bot doesn't only work for natural processing languages, but also it works perfectly with command line languages.

To understand a bot, let’s see a scenario. Suppose, you have a travel website which generates leads and you convert those leads. You share a static advertisement of travel package on the Facebook. Now, some customers are interested in this package and want to interact with you. Your customers have four options to follow.

  1. Post a comment on your post.
  2. Send a message using Facebook messenger to you.
  3. Post a message on your Facebook timeline.
  4. Come on your site and create a lead.

In the fourth option, your customer leaves your static advertisement page and comes on your website or app, so there is the chance to lose some genuine leads. In the rest of the operations, you need to hook an agent so that he/she can deal with them and convert leads.

Now, what can a bot do here? You develop a bot and configure it with Facebook messenger. Your customer just sends a request for that holiday package and the bot sends back available booking options to that customer. The customer can see more details as per his/her request and books that package. So, there are fewer chances to lose a lead and customer doesn't need to leave that static advertisement.

What Bots aren’t

There is some misconception about bots which are,

  1. Artificial intelligence only: It’s a misconception that bots are artificial intelligence only. The bots can be simple automation utilities such as password reset. It processes business logic and a set of steps.
  2. Text Interface only: The conversation can utilize simple text strings or something more complex such as rich cards that contain text, images, and action buttons.
  3. Natural Language Processing only: Bots can receive/transmit information without natural language. It can handle regular expression and commands.

Getting Started With Bot

To set up the bot framework connector SDK .NET template in the Visual Studio 2015, this is a step-by-step guide.

  1. Install Visual Studio 2015 (latest version).

  2. Download bot application template from this download link here.

  3. Save the zip file to your Visual Studio 2015 templates directory which is traditionally in "%USERPROFILE%\Documents\Visual Studio 2015\Templates\ProjectTemplates\Visual C#\". For example, “C:\Users\USERXX\Documents\Visual Studio 2015\Templates\ProjectTemplates\Visual C#”.

  4. Open the Visual Studio and create a new C# project using the new "Bot Application" template.


Figure 1: Bot Application Template

This template is fully functional and inputs text as request and response.

Building bot application

We want to build a Microsoft bot application which shows facial attributes, such as Age, Gender and Smile, using the Cognitive Service Face API. We will create the application using the bot template as shown in figure 1. This bot application has the following features.

  1. Integration of Cognitive Service Face API in the Microsoft Bot Application.
  2. Shows the face attributes, such as Age, Gender, and Smile, from an image which is an input in the Bot application.

For the bot application with Cognitive Service, we need to create an account on Cognitive Service. After that, register the Face-Preview API and get a key which will be used in the bot application.


Figure 2: Cognitive service Face Preview

Now, create a class named Utility which has the Cognitive Service Face-Preview API integration, as per the following code snippet.

  1. using Microsoft.ProjectOxford.Face;  
  2. using System;  
  3. using System.Configuration;  
  4. using System.IO;  
  5. using System.Linq;  
  6. using System.Net;  
  7. using System.Threading.Tasks;  
  8.   
  9. namespace BotFaceApplication  
  10. {  
  11.     public static class Utility  
  12.     {  
  13.         private static readonly IFaceServiceClient faceServiceClient = new FaceServiceClient(ConfigurationManager.AppSettings["FaceAPIKey"]);  
  14.         public static async Task<string> UploadAndDetectFaces(string imageFilePath)  
  15.         {  
  16.             try  
  17.             {  
  18.                 var requiredFaceAttributes = new FaceAttributeType[] {  
  19.                     FaceAttributeType.Age,  
  20.                     FaceAttributeType.Gender,  
  21.                     FaceAttributeType.Smile  
  22.                 };  
  23.                 using (WebClient webClient = new WebClient())  
  24.                 {  
  25.                     using (Stream imageFileStream = webClient.OpenRead(imageFilePath))  
  26.                     {  
  27.                         var faces = await faceServiceClient.DetectAsync(imageFileStream, returnFaceLandmarks: true, returnFaceAttributes: requiredFaceAttributes);  
  28.                         var faceAttributes = faces.Select(face => face.FaceAttributes);  
  29.                         string result = string.Empty;  
  30.                         faceAttributes.ToList().ForEach(f =>  
  31.                             result += $"Age: {f.Age.ToString()} Years  Gender: {f.Gender}  Smile: {f.Smile.ToString()}{Environment.NewLine}{Environment.NewLine}"  
  32.                         );  
  33.                         return result;  
  34.                     }  
  35.                 }  
  36.             }  
  37.             catch (Exception ex)  
  38.             {  
  39.                 return string.Empty;  
  40.             }  
  41.         }  
  42.     }  
  43. }  
The bot application which is created with the help of bot template has the pre-defined code. This code updates as per the following code snippet to handle the face image and send face attributes as an output.
  1. using Microsoft.Bot.Connector;  
  2. using System;  
  3. using System.Net;  
  4. using System.Net.Http;  
  5. using System.Threading.Tasks;  
  6. using System.Web.Http;  
  7.   
  8. namespace BotFaceApplication  
  9. {  
  10.     [BotAuthentication]  
  11.     public class MessagesController : ApiController  
  12.     {  
  13.         /// <summary>  
  14.         /// POST: api/Messages  
  15.         /// Receive a message from a user and reply to it  
  16.         /// </summary>  
  17.         public async Task<HttpResponseMessage> Post([FromBody]Activity activity)  
  18.         {  
  19.             if (activity.Type == ActivityTypes.Message && activity.Attachments.Count > 0)  
  20.             {  
  21.                 ConnectorClient connector = new ConnectorClient(new Uri(activity.ServiceUrl));  
  22.                 string imageUri = activity.Attachments[0].ContentUrl;  
  23.                 Activity reply = activity.CreateReply(await Utility.UploadAndDetectFaces(imageUri));  
  24.                 await connector.Conversations.ReplyToActivityAsync(reply);  
  25.             }             
  26.             else  
  27.             {  
  28.                 HandleSystemMessage(activity);  
  29.             }  
  30.             var response = Request.CreateResponse(HttpStatusCode.OK);  
  31.             return response;  
  32.         }  
  33.   
  34.         private Activity HandleSystemMessage(Activity message)  
  35.         {  
  36.             if (message.Type == ActivityTypes.DeleteUserData)  
  37.             {  
  38.                 // Implement user deletion here  
  39.                 // If we handle user deletion, return a real message  
  40.             }  
  41.             else if (message.Type == ActivityTypes.ConversationUpdate)  
  42.             {  
  43.                 // Handle conversation state changes, like members being added and removed  
  44.                 // Use Activity.MembersAdded and Activity.MembersRemoved and Activity.Action for info  
  45.                 // Not available in all channels  
  46.             }  
  47.             else if (message.Type == ActivityTypes.ContactRelationUpdate)  
  48.             {  
  49.                 // Handle add/remove from contact lists  
  50.                 // Activity.From + Activity.Action represent what happened  
  51.             }  
  52.             else if (message.Type == ActivityTypes.Typing)  
  53.             {  
  54.                 // Handle knowing tha the user is typing  
  55.             }  
  56.             else if (message.Type == ActivityTypes.Ping)  
  57.             {  
  58.             }  
  59.   
  60.             return null;  
  61.         }  
  62.     }  
  63. }  
The bot application is built successfully. Let's test it. To test the bot application, install the bot emulator.
 
Now, download the Microsoft Bot Framework Emulator from here. The bot emulator is an executable file named "botframework-emulator-Setup-3.5.21.exe". Just download and install it.


Figure 3: Installing Bot Framework Emulator

Now, run the application. Hit F5 or choose the Debug or Start Debugging menu command. The browser shows the following page. It is default.htm page in the bot application.


Figure 4: Bot application default page

Now, run the Microsoft Bot Framework Emulator and use the same port in the emulator which is mentioned with localhost in browser. You need to type the url "http://localhost:xxxx/api/messages" in the Bot Framework Emulator to run the bot application.
 
Both, Microsoft App ID and Microsoft App Password, need to be left blank. Then, click on "Connect". Now, choose an image which has a face and get results as in figure 6.


Figure 6: Bot Framework Emulator runs application

Download

You can download the complete source code from MSDN sample. Click on download to Build First Bot Application With Bot Framework. 

Conclusion

This article elaborated about how to build the Microsoft Bot application and integrate the Cognitive Services.

 


Similar Articles