LUIS Pizza Bot demoed at Ignite 2019!
This sample requires prerequisites in order to run.
This bot uses LUIS, an AI based cognitive service, to implement language understanding.
-
.NET Core SDK version 2.1
# determine dotnet version dotnet --version
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
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)
-
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
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.
- Install the Bot Framework Emulator version 4.5.2 or greater from [here][https://github.com/Microsoft/BotFramework-Emulator/releases]
- Scroll to the bottom and download the .exe, .AppImage, or .dmg file based on your OS.
- 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!