Перейти к файлу
hazemelh b0e2496d58
Update README.md
2020-01-29 18:41:23 +02:00
Bots Initial commit 2019-11-03 19:11:11 +02:00
Cards Initial commit 2019-11-03 19:11:11 +02:00
CognitiveModels Initial commit 2019-11-03 19:11:11 +02:00
Controllers Initial commit 2019-11-03 19:11:11 +02:00
Dialogs Initial commit 2019-11-03 19:11:11 +02:00
PostDeployScripts Initial commit 2019-11-03 19:11:11 +02:00
Properties Initial commit 2019-11-03 19:11:11 +02:00
wwwroot Initial commit 2019-11-03 19:11:11 +02:00
.deployment Initial commit 2019-11-03 19:11:11 +02:00
.gitignore Initial commit 2019-11-03 19:11:11 +02:00
AdapterWithErrorHandler.cs Initial commit 2019-11-03 19:11:11 +02:00
CODE_OF_CONDUCT.md Initial commit 2019-11-03 19:11:11 +02:00
ConfigurationCredentialProvider.cs Initial commit 2019-11-03 19:11:11 +02:00
CoreBot.csproj Initial commit 2019-11-03 19:11:11 +02:00
CoreBot.csproj.user Initial commit 2019-11-03 19:11:11 +02:00
CoreBot.deps.json Initial commit 2019-11-03 19:11:11 +02:00
CoreBot.runtimeconfig.json Initial commit 2019-11-03 19:11:11 +02:00
CoreBot.sln Initial commit 2019-11-03 19:11:11 +02:00
Directory.Build.props Initial commit 2019-11-03 19:11:11 +02:00
LICENSE Initial commit 2019-11-03 19:11:11 +02:00
PizzaBot.bot Initial commit 2019-11-03 19:11:11 +02:00
PizzaOrderRecognizer.cs Initial commit 2019-11-03 19:11:11 +02:00
Program.cs Initial commit 2019-11-03 19:11:11 +02:00
README.md Update README.md 2020-01-29 18:41:23 +02:00
SECURITY.md Initial commit 2019-11-03 19:11:11 +02:00
Startup.cs Initial commit 2019-11-03 19:11:11 +02:00
appsettings.json Initial commit 2019-11-03 19:11:11 +02:00
build.cmd Initial commit 2019-11-03 19:11:11 +02:00
deploy.cmd Initial commit 2019-11-03 19:11:11 +02:00
web.config Initial commit 2019-11-03 19:11:11 +02:00

README.md

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: CognitiveModels/MicrosoftPizza.json

Train then Publish your application to the Production Slot.

You can alternatively use the LUIS Test pane to directly query the Pizza Application without using the bot. You can see the examples used to train the pizza order extractor in the Intent: Modify Order

Change appsettings.json to include your LUISAppId and LUISApiKey

Go to appsettings.json

  • Change LUISAppId to your LUIS Application Id (Go to luis.ai --> Open the application --> Go to Manage --> Application Settings --> Copy App Id --> Paste it in the value of the LUISAppId key)

  • Change LUISApiKey to your LUIS Starter Key (Go to luis.ai --> Open the application --> Go to Manage --> Azure Resources --> Copy Primary Key under Starter_Key --> Paste it in the value of the LUISAPIKey)

To try this sample

  • Clone the repository

    git clone https://github.com/Azure/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.
  • Connect
  • Start using the Pizza Bot!

Further reading