SlideShare a Scribd company logo
Chatbot development with
Microsoft Bot Framework and LUIS
Md. Mahedee Hasan
Microsoft MVP , Visual Studio and Development Technologies
Senior Software Architect, Leadsoft Bangladesh Limited
Trainer, Leads Training and Consulting Limited
Microsoft Community Contributor
Blog: http://mahedee.net
MVP | Sr. Software Architect | Trainer | Technical Blogger | MCTS
1
MAHEDEE.NET
2
What is Chatbot?
Bot is a automated software designed by human
programmers to do tasks
Chatbot is a automated software to talk customer using
messaging apps
MAHEDEE.NET
3
Why Chatbot?
One to one messaging with thousands of customer at a time
Application of chatbot
Order Pizza
HR issues
Customer
Support
Personal Finance
assistant
Schedule
Meeting
Product
Suggestions
Weather
Bank and
Insurance
MAHEDEE.NET
4
What is Microsoft Bot Framework
A platform for building, connecting, testing and
deploying powerful and intelligent bots
Open Source
Connect cross platform with the flip of a switch
MAHEDEE.NET
5
Installation Requirements
• Visual Studio 2015 / 2017
• Download Bot template: Visual Studio Bot Template - C#
• Save the zip file to Visual Studio 2015/2017 template directory
“%USERPROFILE%DocumentsVisual Studio
2017TemplatesProjectTemplatesVisual C#"
MAHEDEE.NET
6
Create Project
• Start Visual Studio 2015/2017
• From the file -> New->Project
• Select Visual C# template
• Select Bot Application
• Click OK
MAHEDEE.NET
7
Test by bot emulator
• Download bot emulator
• https://emulator.botframewo
rk.com/
• botframework-emulator-
Setup-3.5.32.exe
• Install bot emulator
• Test your project
• Type
http://localhost:3979/api/me
ssages
• Debug your project typing
the following URL
https://your_bots_hostname
/api/messages in the
emulator.
MAHEDEE.NET
8
Publish bot to Microsoft Azure
MAHEDEE.NET
9
Register Bot with Microsoft Bot Framework
• Go to https://dev.botframework.com/
• My bot -> Create bot (Select Register an existing bot
built using Bot Builder SDK.)
• Generate Microsoft App Id and Microsoft App
Password
MAHEDEE.NET
10
Publish application on Azure again
• Add Microsoft App Id and Microsoft App Password to
bot web.config
• Publish application to azure again
• Now test application using bot tester
MAHEDEE.NET
11
Connect bot with skype channel
• Click Skype channel -> Add to the contact
• Connect to the bot
• Start chatting
• Invite by: https://join.skype.com/bot/61e2a1fc-b72b-41bc-
9f6e-263bd29dc149
MAHEDEE.NET
12
Connect bot with Facebook channel
• Go to https://dev.botframework.com/
• Select My bot -> Select bot (you created)
• Add channel Facebook messenger
– Click Facebook messenger
• Add Facebook messenger credential in dev.botframework.com
from developers.facebook.com
MAHEDEE.NET
13
Add products
• Add Product -> Add webhooks in developers.facebook.com
• Click Setup
• Select page
• Click subscribe to this topic
• Select and subscribe page
• Add Call Back URL and Verify Token -> Click verify and save
• Add Product -> Messenger
• Edit events
MAHEDEE.NET
14
Complete chatbot with Facebook
• Add a Facebook user in role as tester in
developers.facebook.com
• Now from the user send message to the page and get auto
response
MAHEDEE.NET
15
Complete chatbot with Facebook
• Add a Facebook user in role as tester in
developers.facebook.com
• Now from the user send message to the page and get auto
response
MAHEDEE.NET
16
What is LUIS
• Language Understanding Intelligent Service
• It is one of Microsoft Cognitive Services
• It is build on NLP
• You can add conversational intelligence to your app
MAHEDEE.NET
17
Why LUIS?
• It is fast and easy
• It learns and adapts
• It offers pre-built domains
• It is a power developer tool
• It is MultiLingual
MAHEDEE.NET
18
Configure LUIS to your Bot
[LuisModel("6f13a4ce-dabe-485a-bb3f-9aba3156ea95", "5ea418ae538a402a9b99a936389fd0e7", domain:
"westus.api.cognitive.microsoft.com", staging: true)]
[Serializable]
public partial class RootLuisDialog : LuisDialog<object>
{
private string userData;
public RootLuisDialog(string userData)
{
this.userData = userData;
}
[LuisIntent("")]
[LuisIntent("None")]
public async Task None(IDialogContext context, LuisResult result)
{
string message = $"Sorry, I don’t have answer of this question. " +
$"I am an artificial intelligence system. " +
$"I am still learning. ";
message += StaticMessage.AboutDemo;
await context.PostAsync(message);
context.Wait(this.MessageReceived);
}
}
• My blog site: http://mahedee.net
• TechNet Profile:
https://social.technet.microsoft.com/profile/mahede
e/
• Github Profile: https://github.com/mahedee
• Slide Share http://www.slideshare.net/mahedee19
MAHEDEE.NET
19
Q&A
• Email: mahedee.hasan@gmail.com;
Mahedee_hasan@leads-bd.com
• Tag me in facebook group post
• https://www.facebook.com/groups/techinfo.bd
MAHEDEE.NET
20
Q&A
• Me in Facebook:
https://facebook.com/mahedee19
• Me in Linkedin:
https://www.linkedin.com/in/mahedee
MAHEDEE.NET
21
Q&A
22

More Related Content

PPTX
Chatbot development with Microsoft Bot Framework
Md. Mahedee Hasan
 
PPTX
Intro to Bot Framework v3
Shahed Chowdhuri
 
PPTX
Introduction to BOT Framework- Global Azure Bootcamp 2017
Jalpesh Vadgama
 
PPTX
Intro to Bot Framework
Shahed Chowdhuri
 
PDF
Build your first messenger bot
Nowa Labs Pte Ltd
 
PPTX
Xbox One Dev Mode
Shahed Chowdhuri
 
PPTX
Capture the Cloud with Azure
Shahed Chowdhuri
 
PPTX
Alternative Approaches to Solution Development in SharePoint and Office 365
SPC Adriatics
 
Chatbot development with Microsoft Bot Framework
Md. Mahedee Hasan
 
Intro to Bot Framework v3
Shahed Chowdhuri
 
Introduction to BOT Framework- Global Azure Bootcamp 2017
Jalpesh Vadgama
 
Intro to Bot Framework
Shahed Chowdhuri
 
Build your first messenger bot
Nowa Labs Pte Ltd
 
Xbox One Dev Mode
Shahed Chowdhuri
 
Capture the Cloud with Azure
Shahed Chowdhuri
 
Alternative Approaches to Solution Development in SharePoint and Office 365
SPC Adriatics
 

What's hot (20)

PPTX
Intro to HoloLens Development
Shahed Chowdhuri
 
PPT
Building a bot with an intent
Abhishek Sur
 
PPTX
Xbox One Dev Mode
Shahed Chowdhuri
 
PDF
Improve customer engagement and productivity with conversational ai
CodeOps Technologies LLP
 
PPTX
Intro to Xamarin: Cross-Platform Mobile Application Development
Shahed Chowdhuri
 
PPTX
Activate bots within SharePoint Framework
Kushan Lahiru Perera
 
PPTX
20160930 bot framework workshop
Meng-Ru (Raymond) Tsai
 
PPTX
Virtual Hub - Host SharePoint Framework web part as MS Teams messaging extension
Nanddeep Nachan
 
PPTX
Introduction to document db- Global Azure Bootcamp 2016
Jalpesh Vadgama
 
PPTX
Creating a Great User Experience in SharePoint
SPC Adriatics
 
PPTX
Intro to Xamarin
Shahed Chowdhuri
 
PPTX
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
Thomas Gölles
 
PPT
Web Development on Web Project Presentation
Milind Gokhale
 
PPTX
Game On with Windows & Xbox One @ .NET Conf UY
Shahed Chowdhuri
 
PDF
Creating MVC Application with backbone js
Mindfire Solutions
 
PPTX
Mobile devices and SharePoint
maliksahil
 
PPTX
AngularJS and SharePoint
danielsmon
 
PPTX
Sys02 best way to create a share point app
DotNetCampus
 
PPTX
Community Tour Bologna
Salvatore Fazio
 
PPTX
Cloud-Backed Mixed Reality: HoloLens & Azure Cognitive Services
Shahed Chowdhuri
 
Intro to HoloLens Development
Shahed Chowdhuri
 
Building a bot with an intent
Abhishek Sur
 
Xbox One Dev Mode
Shahed Chowdhuri
 
Improve customer engagement and productivity with conversational ai
CodeOps Technologies LLP
 
Intro to Xamarin: Cross-Platform Mobile Application Development
Shahed Chowdhuri
 
Activate bots within SharePoint Framework
Kushan Lahiru Perera
 
20160930 bot framework workshop
Meng-Ru (Raymond) Tsai
 
Virtual Hub - Host SharePoint Framework web part as MS Teams messaging extension
Nanddeep Nachan
 
Introduction to document db- Global Azure Bootcamp 2016
Jalpesh Vadgama
 
Creating a Great User Experience in SharePoint
SPC Adriatics
 
Intro to Xamarin
Shahed Chowdhuri
 
ESPC Teams week Microsoft Teams & Bot Framework – a Developer’s Perspective
Thomas Gölles
 
Web Development on Web Project Presentation
Milind Gokhale
 
Game On with Windows & Xbox One @ .NET Conf UY
Shahed Chowdhuri
 
Creating MVC Application with backbone js
Mindfire Solutions
 
Mobile devices and SharePoint
maliksahil
 
AngularJS and SharePoint
danielsmon
 
Sys02 best way to create a share point app
DotNetCampus
 
Community Tour Bologna
Salvatore Fazio
 
Cloud-Backed Mixed Reality: HoloLens & Azure Cognitive Services
Shahed Chowdhuri
 
Ad

Similar to Chatbot development with Microsoft Bot Framework and LUIS (20)

PPTX
Intro to Bot Framework v3 with DB
Shahed Chowdhuri
 
PDF
Serverless chatbot: from idea to production at blazing speed
Paolo Montrasio
 
PPTX
Exploring Microsoft Teams extensibility
Wes Hackett
 
PDF
Serverless chatbot: from idea to production at blazing speed
Luca Bianchi
 
PPTX
Building Bots with Teams Toolkit
Nanddeep Nachan
 
PPTX
Building intelligent chat bot with microsoft bot framework
Rukshan Dangalla
 
PPTX
Furniture Online Ordering using Chatbot
intan2411
 
PPTX
Developing intelligent bots from the beginning
Suthahar J
 
PPTX
Microsoft teams & bot framework - A developer's perspective
Thomas Gölles
 
PPT
Online Project Portal
Vivek Gautam
 
PPT
Building with Watson - Advanced Integrations with Watson Conversation
IBM Watson
 
DOC
DEEPAK RAWAT
Deepak Rawat
 
PDF
Bot Framework with Xamarin Forms
Cheah Eng Soon
 
PDF
2022.11, UiPath Release 2022.10 Features and Highlights.pdf
Tracy Dixon
 
PDF
LINE Messaging API Workshop
อัจฉริยะ ดาโรจน์
 
PDF
Quickly create sophisticated, high-performing AI chatbots with AI Bot Studio ...
SOFTTECHHUB
 
PDF
Quickly create sophisticated, high-performing AI chatbots with AI Bot Studio ...
SOFTTECHHUB
 
PDF
IIBA® Sydney Unlocking the Power of Low Code No Code: Why BAs Hold the Key
AustraliaChapterIIBA
 
PDF
Leveraging Rails to Build Facebook Apps
David Keener
 
PDF
Build social apps for Facebook
Mohammad Emran Hasan
 
Intro to Bot Framework v3 with DB
Shahed Chowdhuri
 
Serverless chatbot: from idea to production at blazing speed
Paolo Montrasio
 
Exploring Microsoft Teams extensibility
Wes Hackett
 
Serverless chatbot: from idea to production at blazing speed
Luca Bianchi
 
Building Bots with Teams Toolkit
Nanddeep Nachan
 
Building intelligent chat bot with microsoft bot framework
Rukshan Dangalla
 
Furniture Online Ordering using Chatbot
intan2411
 
Developing intelligent bots from the beginning
Suthahar J
 
Microsoft teams & bot framework - A developer's perspective
Thomas Gölles
 
Online Project Portal
Vivek Gautam
 
Building with Watson - Advanced Integrations with Watson Conversation
IBM Watson
 
DEEPAK RAWAT
Deepak Rawat
 
Bot Framework with Xamarin Forms
Cheah Eng Soon
 
2022.11, UiPath Release 2022.10 Features and Highlights.pdf
Tracy Dixon
 
Quickly create sophisticated, high-performing AI chatbots with AI Bot Studio ...
SOFTTECHHUB
 
Quickly create sophisticated, high-performing AI chatbots with AI Bot Studio ...
SOFTTECHHUB
 
IIBA® Sydney Unlocking the Power of Low Code No Code: Why BAs Hold the Key
AustraliaChapterIIBA
 
Leveraging Rails to Build Facebook Apps
David Keener
 
Build social apps for Facebook
Mohammad Emran Hasan
 
Ad

More from Md. Mahedee Hasan (18)

PPTX
Azure Machine Learning
Md. Mahedee Hasan
 
PPTX
ASP.NET MVC Zero to Hero
Md. Mahedee Hasan
 
PPTX
Introduction to Windows 10 IoT Core
Md. Mahedee Hasan
 
PPTX
Whats new in visual studio 2017
Md. Mahedee Hasan
 
PPTX
Increasing productivity using visual studio 2017
Md. Mahedee Hasan
 
PPSX
Exciting features in visual studio 2017
Md. Mahedee Hasan
 
PDF
Introduction to TFS 2013
Md. Mahedee Hasan
 
PDF
The world of enterprise solution development with asp.net and C#
Md. Mahedee Hasan
 
PDF
Generic repository pattern with ASP.NET MVC and Entity Framework
Md. Mahedee Hasan
 
PDF
Introduction to OMNeT++
Md. Mahedee Hasan
 
PPTX
Feature and Future of ASP.NET
Md. Mahedee Hasan
 
PPTX
Generic Repository Pattern with ASP.NET MVC and EF
Md. Mahedee Hasan
 
PPSX
C#.net applied OOP - Batch 3
Md. Mahedee Hasan
 
PDF
Object Oriented Programming
Md. Mahedee Hasan
 
PPSX
Oop principles
Md. Mahedee Hasan
 
PPSX
MS SQL Server
Md. Mahedee Hasan
 
PPSX
C# - Part 1
Md. Mahedee Hasan
 
PPSX
ASP.NET Web form
Md. Mahedee Hasan
 
Azure Machine Learning
Md. Mahedee Hasan
 
ASP.NET MVC Zero to Hero
Md. Mahedee Hasan
 
Introduction to Windows 10 IoT Core
Md. Mahedee Hasan
 
Whats new in visual studio 2017
Md. Mahedee Hasan
 
Increasing productivity using visual studio 2017
Md. Mahedee Hasan
 
Exciting features in visual studio 2017
Md. Mahedee Hasan
 
Introduction to TFS 2013
Md. Mahedee Hasan
 
The world of enterprise solution development with asp.net and C#
Md. Mahedee Hasan
 
Generic repository pattern with ASP.NET MVC and Entity Framework
Md. Mahedee Hasan
 
Introduction to OMNeT++
Md. Mahedee Hasan
 
Feature and Future of ASP.NET
Md. Mahedee Hasan
 
Generic Repository Pattern with ASP.NET MVC and EF
Md. Mahedee Hasan
 
C#.net applied OOP - Batch 3
Md. Mahedee Hasan
 
Object Oriented Programming
Md. Mahedee Hasan
 
Oop principles
Md. Mahedee Hasan
 
MS SQL Server
Md. Mahedee Hasan
 
C# - Part 1
Md. Mahedee Hasan
 
ASP.NET Web form
Md. Mahedee Hasan
 

Recently uploaded (20)

PPTX
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
PPTX
Presentation about variables and constant.pptx
safalsingh810
 
PDF
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
PPTX
TestNG for Java Testing and Automation testing
ssuser0213cb
 
PDF
Become an Agentblazer Champion Challenge Kickoff
Dele Amefo
 
PPTX
Presentation of Computer CLASS 2 .pptx
darshilchaudhary558
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PDF
Exploring AI Agents in Process Industries
amoreira6
 
PDF
Solar Panel Installation Guide – Step By Step Process 2025.pdf
CRMLeaf
 
PPTX
oapresentation.pptx
mehatdhavalrajubhai
 
PDF
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pdf
Certivo Inc
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pptx
Certivo Inc
 
PDF
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
PPTX
Explanation about Structures in C language.pptx
Veeral Rathod
 
PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
PDF
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
PDF
lesson-2-rules-of-netiquette.pdf.bshhsjdj
jasmenrojas249
 
PPTX
Services offered by Dynamic Solutions in Pakistan
DaniyaalAdeemShibli1
 
PDF
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
Presentation about variables and constant.pptx
safalsingh810
 
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
TestNG for Java Testing and Automation testing
ssuser0213cb
 
Become an Agentblazer Champion Challenge Kickoff
Dele Amefo
 
Presentation of Computer CLASS 2 .pptx
darshilchaudhary558
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
Exploring AI Agents in Process Industries
amoreira6
 
Solar Panel Installation Guide – Step By Step Process 2025.pdf
CRMLeaf
 
oapresentation.pptx
mehatdhavalrajubhai
 
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pdf
Certivo Inc
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pptx
Certivo Inc
 
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
Explanation about Structures in C language.pptx
Veeral Rathod
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
lesson-2-rules-of-netiquette.pdf.bshhsjdj
jasmenrojas249
 
Services offered by Dynamic Solutions in Pakistan
DaniyaalAdeemShibli1
 
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 

Chatbot development with Microsoft Bot Framework and LUIS

  • 1. Chatbot development with Microsoft Bot Framework and LUIS Md. Mahedee Hasan Microsoft MVP , Visual Studio and Development Technologies Senior Software Architect, Leadsoft Bangladesh Limited Trainer, Leads Training and Consulting Limited Microsoft Community Contributor Blog: http://mahedee.net MVP | Sr. Software Architect | Trainer | Technical Blogger | MCTS 1
  • 2. MAHEDEE.NET 2 What is Chatbot? Bot is a automated software designed by human programmers to do tasks Chatbot is a automated software to talk customer using messaging apps
  • 3. MAHEDEE.NET 3 Why Chatbot? One to one messaging with thousands of customer at a time Application of chatbot Order Pizza HR issues Customer Support Personal Finance assistant Schedule Meeting Product Suggestions Weather Bank and Insurance
  • 4. MAHEDEE.NET 4 What is Microsoft Bot Framework A platform for building, connecting, testing and deploying powerful and intelligent bots Open Source Connect cross platform with the flip of a switch
  • 5. MAHEDEE.NET 5 Installation Requirements • Visual Studio 2015 / 2017 • Download Bot template: Visual Studio Bot Template - C# • Save the zip file to Visual Studio 2015/2017 template directory “%USERPROFILE%DocumentsVisual Studio 2017TemplatesProjectTemplatesVisual C#"
  • 6. MAHEDEE.NET 6 Create Project • Start Visual Studio 2015/2017 • From the file -> New->Project • Select Visual C# template • Select Bot Application • Click OK
  • 7. MAHEDEE.NET 7 Test by bot emulator • Download bot emulator • https://emulator.botframewo rk.com/ • botframework-emulator- Setup-3.5.32.exe • Install bot emulator • Test your project • Type http://localhost:3979/api/me ssages • Debug your project typing the following URL https://your_bots_hostname /api/messages in the emulator.
  • 9. MAHEDEE.NET 9 Register Bot with Microsoft Bot Framework • Go to https://dev.botframework.com/ • My bot -> Create bot (Select Register an existing bot built using Bot Builder SDK.) • Generate Microsoft App Id and Microsoft App Password
  • 10. MAHEDEE.NET 10 Publish application on Azure again • Add Microsoft App Id and Microsoft App Password to bot web.config • Publish application to azure again • Now test application using bot tester
  • 11. MAHEDEE.NET 11 Connect bot with skype channel • Click Skype channel -> Add to the contact • Connect to the bot • Start chatting • Invite by: https://join.skype.com/bot/61e2a1fc-b72b-41bc- 9f6e-263bd29dc149
  • 12. MAHEDEE.NET 12 Connect bot with Facebook channel • Go to https://dev.botframework.com/ • Select My bot -> Select bot (you created) • Add channel Facebook messenger – Click Facebook messenger • Add Facebook messenger credential in dev.botframework.com from developers.facebook.com
  • 13. MAHEDEE.NET 13 Add products • Add Product -> Add webhooks in developers.facebook.com • Click Setup • Select page • Click subscribe to this topic • Select and subscribe page • Add Call Back URL and Verify Token -> Click verify and save • Add Product -> Messenger • Edit events
  • 14. MAHEDEE.NET 14 Complete chatbot with Facebook • Add a Facebook user in role as tester in developers.facebook.com • Now from the user send message to the page and get auto response
  • 15. MAHEDEE.NET 15 Complete chatbot with Facebook • Add a Facebook user in role as tester in developers.facebook.com • Now from the user send message to the page and get auto response
  • 16. MAHEDEE.NET 16 What is LUIS • Language Understanding Intelligent Service • It is one of Microsoft Cognitive Services • It is build on NLP • You can add conversational intelligence to your app
  • 17. MAHEDEE.NET 17 Why LUIS? • It is fast and easy • It learns and adapts • It offers pre-built domains • It is a power developer tool • It is MultiLingual
  • 18. MAHEDEE.NET 18 Configure LUIS to your Bot [LuisModel("6f13a4ce-dabe-485a-bb3f-9aba3156ea95", "5ea418ae538a402a9b99a936389fd0e7", domain: "westus.api.cognitive.microsoft.com", staging: true)] [Serializable] public partial class RootLuisDialog : LuisDialog<object> { private string userData; public RootLuisDialog(string userData) { this.userData = userData; } [LuisIntent("")] [LuisIntent("None")] public async Task None(IDialogContext context, LuisResult result) { string message = $"Sorry, I don’t have answer of this question. " + $"I am an artificial intelligence system. " + $"I am still learning. "; message += StaticMessage.AboutDemo; await context.PostAsync(message); context.Wait(this.MessageReceived); } }
  • 19. • My blog site: http://mahedee.net • TechNet Profile: https://social.technet.microsoft.com/profile/mahede e/ • Github Profile: https://github.com/mahedee • Slide Share http://www.slideshare.net/mahedee19 MAHEDEE.NET 19 Q&A
  • 20. • Email: [email protected]; [email protected] Tag me in facebook group post • https://www.facebook.com/groups/techinfo.bd MAHEDEE.NET 20 Q&A
  • 21. • Me in Facebook: https://facebook.com/mahedee19 • Me in Linkedin: https://www.linkedin.com/in/mahedee MAHEDEE.NET 21 Q&A
  • 22. 22