Mulflar
Mulflar

Reputation: 424

How to develop a chat bot with Microsoft Bot Sdk and LUIS conected

I started to learn how to develop bots with the Microsoft Bot SDK and Language Understanding Intelligent Service (LUIS)

I've seen a lot of guides and samples but I see two different ways, and I don't know how to mix them.

I find a lot of samples like this https://github.com/Microsoft/BotBuilder/tree/master/CSharp/Samples/PizzaBot where you can get advanced used of the chat bot features, but the data from LUIS comes froma json you need to download and add to your project each time it changes.

I find another sample https://code.msdn.microsoft.com/Chat-Bot-using-Bot-1211d6ce where the project gets direct conection to LUIS and deserialices the data, but in that I cannot find how to do chain dialogs.

What I want is to use IDialogs but without need to download the json.

Upvotes: 0

Views: 3570

Answers (1)

Ezequiel Jadib
Ezequiel Jadib

Reputation: 14787

First of all, you never need to download the json. The json the PizzaBot is providing is the LUIS model, for you to import to LUIS as an existing application. You might want to read the Importing and Exporting Applications section from the docs.

That being clarified, if you want to get started on LUIS (and many other features of the BotFramework) you can check the BotBuilder-Samples repository where you will find task focused samples and demo samples both in C# and Node.js.

In particular, I think you will find useful the LUIS sample and the MultiDialogs one

Upvotes: 2

Related Questions