examples/formbot/README.md
The formbot example is designed to help you understand how the FormAction works and how
to implement it in practice. Using the code and data files in this directory, you
can build a simple restaurant search assistant capable of recommending
restaurants based on user preferences.
This example contains some training data and the main files needed to build an
assistant on your local machine. The formbot consists of the following files:
FormActionUsing this example you can build an actual assistant which demonstrates the
functionality of the FormAction. You can test the example using the following
steps:
Train a Rasa model containing the Rasa NLU and Rasa Core models by running:
rasa train
The model will be stored in the /models directory as a zipped file.
Run an instance of duckling on port 8000 by either running the docker command
docker run -p 8000:8000 rasa/duckling
or installing duckling directly on your machine and starting the server.
Test the assistant by running:
rasa run actions&
rasa shell -m models --endpoints endpoints.yml
This will load the assistant in your command line for you to chat.
For more information about the individual commands, please check out our documentation.
Let us know about it by posting on Rasa Community Forum!