0

I followed this link : https://learn.microsoft.com/en-us/azure/bot-service/bot-builder-tutorial-dispatch?view=azure-bot-service-4.0&tabs=cs to create the dispatch model. It got successfully created. But when I tested it, it didn't add the entities to the dispatch model. I even checked the luis created and the html file which was generated. Now my question is: 1. Do we need to add the .json and .tsv files to the same folder where we will be creating the dispatch files? 2. Does this folder needs to be created inside the bot source code folder?

What could be the reason of entities not being identified?

Thanks

user64870
  • 47
  • 5

2 Answers2

0

From the README provided by Microsoft,

Creating your dispatch model

To create, train and publish your new dispatch model:

dispatch create [options] 
dispatch create --bot c:\src\bot\testbot.bot --secret <your_bot_file_secret>

Options:

-b, --bot (optional) Path to .bot file or bot services json file

Alicia
  • 1
0

Duplicate of Dispatch CLI not passing Entities from Luis App.

TL;DR the entities that you added to the children services of your parent dispatch model show up in the connectedServiceResult section of the response from dispatch. See post linked above for more details

Zeryth
  • 1,204
  • 1
  • 7
  • 15