Azure bot Service February 19, 2018.

Slides:



Advertisements
Similar presentations
300MM active users worldwide Worldwideleadership.
Advertisements

Learning to use the Interactive Online Classroom Classroom Activities.
Explore engage elevate Microsoft Dynamics CRM User Group (CRMUG ® ) Chapter Meeting Welcome! Perth CRMUG – 12 th May 2016.
Java Autonomous Artificial Intelligence By : Abhishek Singh
Microsoft Cognitive Services and Cortana Analytics
Developers Introduction to the Power BI Platform.
11/8/ :31 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
11/28/2017 7:08 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Bots & DevOps Donovan 12/24/2017 2:32 PM
Why industry cares about nlp for tamil?
Making of the Ignite Bot
2/21/ :54 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
4/19/ :02 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
4/14/ :03 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Build and connect intelligent bots
TechReady 16 5/10/2018 Day 2, Session 4 Reaching the Summit: ITIL-integrated Self-Service in the Hybrid Cloud © 2013 Microsoft Corporation. All rights.
Meetoo Tips.
5/12/2018 3:54 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Section 6.3 Server-side Scripting
Conversation As a Platform - Part 1
New Technology Meetup Derby 1: Bots and Clouds Wifi: iHub
Microsoft Build /16/2018 2:05 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Adcanvas Platform Update Webinar
4Schools Adding a Web Page.
Intelligent Agent Solution
Let’s talk about Conversation Design
Primal and Microsoft Azure Deliver Personalized Content, Intelligence, and Analytics That Match Your Content to the Interests of Your Audience MICROSOFT.
Goal Primary Goal All over India Increase the online sale of
Introduction to Azure Bot Framework
Session code.
Build smarter bots and devices by connecting to the Microsoft Graph
Build and connect intelligent bots
Microsoft Azure P wer Lunch
Changing how people interact with computers
Kent Weare ‎Principal Program Manager – Microsoft Flow
The Bot Factory Bot Framework Talk to Me
The Bot Framework and the Microsoft Graph
Build Bot using PowerApps
Microsoft Bot Framework: changing how we communicate with users
AUTOMATED SESSION PLANNING. In the present world, everything has become automated. By, a click everything is being processed. But the preparation of the.
OpenWorld 2018 How to Create Chatbots with OMCe
Microsoft SharePoint Server 2013
Chatbots for Dummies José 10/11/2018 Immersion
Continuous Automated Chatbot Testing
Service Desk Automation BOT
Running a Tight Ship: Controlling Microsoft Teams
José Mendes Chatbots for Dummies.
Microsoft Virtual Academy
11/23/2018 8:30 AM BRK3037 BRK3037: Dive deep on building apps and services with the Office 365 Communications Platform David Newman Senior Program Manager.
11/27/2018 6:59 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Migrate your apps from legacy APIs to Microsoft Graph
Intelligent Bots with Headless Umbraco Up Next.
Core Platform The base of EmpFinesse™ Suite.
Extending Microsoft Teams
1/2/2019 9:19 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS.
Add to the Coffee Ordering App
Chatbots for Dummies José 12/05/2018 Immersion
Cortana Skills Windows Developer Day, Fall Creators Update
Web Design and Development
2/24/2019 6:15 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Microsoft Bot Framework
Intro to Bot Framework v4
Hitchhiker’s Guide Hitchhiker’s Guide to Microsoft Outlook 2003.
Microsoft Cognitive Services with Power BI
x.ai makes an AI personal assistant who schedules meetings for you
ChinaBot AI Hiring Bot GEICO.
Azure AI ChatBot with WebClient App
Bots, so you don't have to be always available to help your customers
Exploring Cognitive Services
Presentation transcript:

Azure bot Service February 19, 2018

What are Chat bots Today’s presentation will cover Chat Bots A Chat Bot is interactive Chat Bots can use language understanding to interpret basic phrases Azure Bot Service is a platform that accelerates bot's development

What we are covering In today’s presentation an basic echo bot will be demonstrated An echo bot will respond your input by echoing your input A Luis bot will also be demonstrated A Luis bot can respond to your input by interpreting your intent

Using the Azure Portal In the Azure Portal Click on New Resource Select AI + Cognitive Services Select Web App Bot

A bot is a web service that has a rest endpoint Building a bot A bot is a web service that has a rest endpoint Conversations with a bot start with a Post to an ApiController

How Bots Work

Look at the code The Connector uses an Activity object to pass information back and forth between bot and channel There is a state per session and a state per user. The most common type of activity is message

Basic Echo bot We are going to first take a look at a message activity Dialogs are used to model a conversation The activity will be send to an EchoDialog Next we are going to take a look at a conversation update activity

Luis Bot LUIS is a Language Understanding Intelligent Service, which offers a  way of adding language understanding to applications We start with a LUIS App in the LUIS portal Language understanding is accomplished by Intents

Look at the Code Activities are the same as before We use the message activity This time the activity will be send to a BasicLuisDialog In the BasicLuisDialog, we need to add the OrderPizza Intent The LuisDialog shows what Intent was reached

Resources Language Understanding Home at https://www.luis.ai/home PowerPoint slides are on http://schroederconsultingllc.com/ Projects are on https://github.com/carolynlschroeder