Skip to content

Latest commit

 

History

History
78 lines (52 loc) · 3.04 KB

File metadata and controls

78 lines (52 loc) · 3.04 KB

LUIS Pizza Bot

LUIS Pizza Bot demoed at Ignite 2019!

Prerequisites

This sample requires prerequisites in order to run.

Overview

This bot uses LUIS, an AI based cognitive service, to implement language understanding.

Install .NET Core CLI

  • .NET Core SDK version 2.1

    # determine dotnet version
    dotnet --version

Import the Pizza Bot LUIS application in luis.ai

Learn how to import an application in LUIS here.

Use the application MicrosoftPizza.json path: CoognitiveModels/MicrosoftPizza.json

To try this sample

  • Clone the repository

    git clone https://github.com/hazemelh/pizza_bot_luis.git
  • In a terminal, navigate to the project directory.

  • Run the bot from a terminal or from Visual Studio, choose option A or B.

    A) From a terminal

    # run the bot
    dotnet run

    B) Or from Visual Studio

    • Launch Visual Studio
    • File -> Open -> Project/Solution
    • Select CoreBot.csproj file
    • Press F5 to run the project

Testing the bot using Bot Framework Emulator

Bot Framework Emulator is a desktop application that allows bot developers to test and debug their bots on localhost or running remotely through a tunnel.

Connect to the bot using Bot Framework Emulator

  • Launch Bot Framework Emulator
  • File -> Open Bot
  • Enter a Bot URL of http://localhost:3978/api/messages OR Use PizzaBot.bot found in the project folder.

Further reading