2

I am working on Bot framework Virtual Assistant Template. There is a deployment folder where .LU files resides. But i created LUIS app in LUIS site and can export LUIS app as JSON format. Currently i am generating .lu file manually. Is there any option that i can generate .lu file using command lines or cli or some thing with help of JSON file that i exported.

PavanKumar GVVS
  • 859
  • 14
  • 45

2 Answers2

3

Have a look to LUDown tool in BotBuilder tools, and in particular to its refresh method:

  • LUDown github is here
  • Refresh is here:

You can use the refresh command to re-generate .lu files from your LUIS JSON and / or QnAMaker JSON files.

Nicolas R
  • 13,812
  • 2
  • 28
  • 57
-3

Below is command line to generate .lu from json file

Note: We have to change directory to npm.

C:\Users\local\AppData\Roaming\npm>ludown refresh -i "

PavanKumar GVVS
  • 859
  • 14
  • 45
  • 2
    ok, what is the purpose of posting an answer taking exactly the command provided in the other answer? Moreover, answering with just a command line may not be a good practice for people who will need more information about that command (where does it comes from, what are the parameters, etc) – Nicolas R Jul 09 '19 at 07:56