1.1.13 • Published 5 years ago

botdispatch-ccastro v1.1.13

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Dispatch Command Line tool

npm version

Dispatch is a tool to create and evaluate LUIS models used to dispatch intent across multiple bot modules such as LUIS models, QnA knowledge bases and others (added to dispatch as a file type).

Use the Dispatch model in cases when: 1. Your bot consists of multiple modules and you need assistance in routing user's utterances to these modules and evaluate the bot integration. 2. Evaluate quality of intents classification of a single LUIS model. 3. Create a text classification model from text files.

Prerequisite

Installation

To install:

npm install -g botdispatch

This will install dispatch into your global path.

Usage

Initializing dispatch

To initialize dispatch:

dispatch init [options]

It will ask for the name of the dispatch, LUIS authoring key and region needed to create a LUIS application. This commands then creates {dispatchName}.dispatch file. To bypass the prompts, values could be passed in via arguments below.

Arguments:

OptionDescription
-n, --name(optional) Name of the dispatch
--luisAuthoringKey(optional) LUIS authoring key
--luisAuthoringRegion(optional) LUIS authoring region
-b, --bot(optional) .bot file path
-s, --secret(optional) .bot file secret
-c, --culture(optional) Used to set LUIS app culture for dispatch. Required if none of dispatch source(s) is LUIS app.
--hierarchical(optional) Default to true. If false, existing intents from source LUIS model(s) will be available as the dispatch intents.
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

Example:

dispatch init -n TestDispatch --luisAuthoringKey "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --luisAuthoringRegion westus 
dispatch init --bot c:\src\bot\testbot.bot

Adding source to dispatch

This step is not needed if you have a .bot file already connected with services (i.e., LUIS/QnA). Dispatch will take the services in .bot file and add each of the services it can dispatch to .dispatch file. Currently, a maximum of 500 dispatch sources could be added to a Dispatch model.

dispatch add -t luis -i xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx -n TestLuisApp -v 0.1 -k xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
dispatch add -t luis -i xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx -n TestLuisApp --intentName foo -v 0.1 -k xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
dispatch add -t qna -i xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx -n Faq -k xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
dispatch add -t file -n TestModule -f c:\src\testmodule.tsv
dispatch add -t file -n TestModule2 -f c:\src\testmodule2.txt
dispatch add -t file -n TestModule3 -f c:\src\testmodule3.json

Arguments

OptionDescription
-t, --typeluis, qna, file
-i, --id(required only if type is luis/qna) LUIS app id or QnA kb id from application settings page
-n, --nameLUIS app name or QnA name (from application settings page) or module/file name for file type
-k, --key(required only if type is luis/qna) LUIS authoring key (from https://www.luis.ai/user/settings, see https://aka.ms/luiskeys for more information on LUIS keys) or QnA maker subscription key (from https://ms.portal.azure.com, see https://aka.ms/qnamakerkeys for more information about QnA Maker keys)
-v, --version(Required only if type is luis) LUIS app version
-f, --filePath(Required only if type is file) Path to tsv file containing tab delimited intent and utterance fields or .txt file with an utterance on each line
--intentName(optional) Dispatch intent name for this source, name param value will be used otherwise
--includedIntents(optional) Comma separated list of intents to be included in the Dispatch model, all intents are included otherwise
--dispatch(optional) Path to .dispatch file
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

Supported file types:

File extensionDescription
.tsvLines of tab delimited fields of intent and utterance (in that order)
.txtLines of utterances with intent as file name
.jsonExported LUIS or QnA Maker json file

Removing dispatch source

To remove one of the services from .dispatch file, run

dispatch remove -t luis -i xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx 
dispatch remove -t qna -i xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx 
dispatch remove -t file -f c:\src\testmodule.json

Arguments

OptionDescription
-t, --typeluis, qna, file
-i, --id(required only if type is luis/qna) LUIS app id or QnA kb id - from application settings page)
-n, --nameLUIS app name or QnA name (from application settings page) or module/file name for file type
-f, --filePath(Required only if type is file) Path to tsv file containing tab delimited intent and utterance fields or .txt file with an utterance on each line
--dispatch(optional) Path to .dispatch file
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

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:

OptionDescription
-b, --bot(optional) .bot file path
-s, --secret(optional) .bot file secret
-c, --culture(optional) Used to set LUIS app culture for dispatch. Required if none of dispatch source(s) is LUIS app.
--dispatch(optional) .dispatch file path
--dataFolder(optional) Dispatch working directory
--hierarchical(optional) Default to true, set to false when evaluating a single LUIS model
-h, --helpOutput usage information

This command creates a brand new LUIS application.

Refreshing your dispatch model

To train and publish your existing dispatch model after modification:

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

With the following options

OptionDescription
-v, --version(optional) Dispatch LUIS app version. A new version will be created if param value is different than previously created version.
-b, --bot(optional) .bot file path
-s, --secret(optional) .bot file secret
--dispatch(optional) .dispatch file path
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

This command updates existing LUIS application in .dispatch file.

Evaluating your dispatch model

This command will run cross validation evaluation on the dispatch model and generate a summary of the evaluation:

dispatch eval [options]

Options:

OptionDescription
--luisSubscriptionKey(optional, will be prompted) Cognitive Service LUIS key from portal.azure.com
--luisSubscriptionRegion(optional, will be prompted) Cognitive Service LUIS region from portal.azure.com
--dispatch(optional) .dispatch file path
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

If no options are supplied, the tool will prompt for the required information it needs to run model evaluation.

Testing your dispatch model

To test your dispatch model against test set:

dispatch test [options]

Options:

OptionDescription
--testFilePathPath to a tsv file with three (or two) fields: expected intent, weight and utterance in that order; the first line (header) will be skipped; the weight column is optional
--luisSubscriptionKey(optional) Cognitive Service LUIS key from portal.azure.com
--luisSubscriptionRegion(optional) Cognitive Service LUIS region from portal.azure.com
--dispatch(optional) .dispatch file path
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

Run prediction using your dispatch model

To run prediction against your new dispatch model, run

dispatch predict [options]

With the following options

OptionDescription
--luisSubscriptionKey(optional) Cognitive Service LUIS key from portal.azure.com
--luisSubscriptionRegion(optional) Cognitive Service LUIS region from portal.azure.com
--dispatch(optional) .dispatch file path
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

You'll then be prompted to enter the utterance you'd like to run prediction on.

Print dispatch configuration to console

To print your current dispatch configuration, run

dispatch list [options]

With the following options

OptionDescription
--dispatch(optional) .dispatch file path
--dataFolder(optional) Dispatch working directory
-h, --helpOutput usage information

Common Tasks

Create bot dispatch using bot file

If you have a .bot file containing one or more LUIS model(s) and/or one or more QnA Maker knowledge base(s), you could create Dispatch model without having to initialize Dispatch and add all of the sources separately. Running the eval command is optional but it provides insight into how well the newly created or updated Dispatch model will perform. In addition, it provides suggestions for improving the bot components.

dispatch create --bot c:\src\bot\testbot.bot --secret <your_bot_file_secret>
dispatch eval --luisSubscriptionKey <azure_luis_key> --luisSubscriptionRegion <azure_luis_region>

If any of your LUIS/QnA Maker models have changed or if you have added more LUIS/QnA maker component(s) to your bot, update your Dispatch model with refresh command.

dispatch refresh --bot c:\src\bot\testbot.bot --secret <your_bot_file_secret>
dispatch eval --luisSubscriptionKey <azure_luis_key> --luisSubscriptionRegion <azure_luis_region>

Create and evaluate bot dispatch

End-to-end example of a bot consisting of a LUIS module and a QnA Maker knowledge base module:

dispatch init -n mybot_dispatch --luisAuthoringKey <luis_authoring_key> --luisAuthoringRegion <region>
dispatch add -t luis -i <luis_app_id> -n <luis_app_name> -v <luis_app_version> -k <luis_app_authoring_key>
dispatch add -t qna -i <qna_kb_id> -n <kb_name> -k <qna_maker_key>
dispatch create
dispatch eval --luisSubscriptionKey <azure_luis_key> --luisSubscriptionRegion <azure_luis_region>

The output is Summary.html file located in local file system directory where the commands were issued. It includes all the evaluation results and suggestions for improving the bot components.

Evaluate single LUIS model

Evaluate a LUIS model performing cross validation:

dispatch init -n mybot_dispatch --luisAuthoringKey <luis_authoring_key> --luisAuthoringRegion <region>
dispatch add -t luis -i <luis_app_id> -n <luis_app_name> -v <luis_app_version> -k <luis_app_authoring_key>
dispatch create --hierarchical false
dispatch eval --luisSubscriptionKey <azure_luis_key> --luisSubscriptionRegion <azure_luis_region>

The output, Summary.html, contains all the evaluation results. The file is located in local file system directory where the commands were issued.

Test a LUIS model using test utterances

Suppose the dispatcher model was already created following the steps of one of the above tasks. To test this model with a tab-delimited text file run these commands:

dispatch test --testFilePath <text_file>

The output, Summary.html, contains all the evaluation results. The file is located in the location of the test file.

Sample Code and Tutorial

C# Sample: https://github.com/Microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore/14.nlp-with-dispatch

JS Sample: https://github.com/Microsoft/BotBuilder-Samples/tree/master/samples/javascript_nodejs/14.nlp-with-dispatch

Tutorial: https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-tutorial-dispatch

Nightly builds

Nightly builds are based on the latest development code which means they may or may not be stable and probably won't be documented. These builds are better suited for more experienced users and developers although everyone is welcome to give them a shot and provide feedback.

You can get the latest nightly build of MSBot from the BotBuilder MyGet feed. To install the nightly -

npm config set registry https://botbuilder.myget.org/F/botbuilder-tools-daily/npm/

Install using npm:

npm i -g botdispatch

To reset registry:

npm config set registry https://registry.npmjs.org/
1.1.13

5 years ago

1.1.12

5 years ago

1.1.11

5 years ago

1.1.10

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago