Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 963 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 963 Bytes

Django Rasa Core Server

Rasa Core uses yaml files to design conversation flow. I wanted a better way to visualize and handle large data sets during bot training and this is where this project comes handy.

Training your models

After designing your knowledge base, you need to train for it to take effect. The following command does the magic (Not magic really but it simply wraps what Rasa core does here)

python manage.py train

Test training

Check your trainingdump directory to confirm the exact YOUR_MODEL_DIRECTORY value

python -m rasa_core.run -d trainingdump/dialogue -u trainingdump/models/default/YOUR_MODEL_DIRECTORY/

Todo list

  • Django admin modelling of NLU training
  • Django admin modelling of Rasa core dialog flows i.e stories etc
  • Alternate API server to handle requests
  • Wrapping of Rasa Core and Rasa NLU to this project