Learn the Bot Builder Tools
For the people interested in Dispatch tool, that checked out the nlp-with-dispatch sample, and were overwhelmed with the amount of command line tools, this is the article where we introduce you to the Bot Builder Tools, without causing a mental stack overflow.
Getting Started
You can find a prepared sample for following along in the following repo:
git clone https://github.com/rinormaloku/car-rental-dispatch-bot.git
The first tool that we are getting introduced to is Ludown.
Ludown
Ludown is a simple way of representing the utterances, intents, entities of training a Luis or QnA Maker application.
Let’s take the example from car-rental.lu:
## CarRental- I want to rent a {Car=Mercedes}?- I want to rent a {Car=Mercedes} in munich?- I am looking to rent a {CarType=caravan}
This section defines the CarRental intent with three utterances. These utterances have entities Car and CarType. Which are defined in the following section:
> # Entity definitions$Car:simple$CarType:simple
This...
Weiterlesen: Learn the Bot Builder Tools
- Erstellt am .