In this customer-centric era, business & organization start to adopt chatbot solution to handle their user request and inquiry. In the example below, we try to develop a simple chatbot to handle service inquiry and complaint
$pip install rasa_nlu
$git clone https://github.com/RasaHQ/rasa_core.git
$cd rasa_core
$pip install -r requirements.txt
$pip install -e .
sample data was located at data/data.json
python -m rasa_nlu.train -c config_spacy.json --data data/data.json -o models/nlu
python -m rasa_nlu.server -c config_spacy.json --path ./models/nlu
python bot-application2/app.py
to-be-updated