docker-compose up --build
To train the respective service run one of the following commands from the root directory.
docker-compose run rasa-core python -m rasa_core.train \
-d data/opensap_faq/domain.yml \
-s data/opensap_faq/stories.md \
-o model/opensap_faq \
--epochs 200
docker-compose run rasa-nlu python -m rasa_nlu.train \
-c config.yml \
-d data/opensap_faq \
-o projects \
--project opensap_faq
Service | Port | URL |
---|---|---|
Chat UI | 3000 | http://localhost:3000 |
Rasa NLU | 5000 | http://localhost:5000/parse?q=hello&project=opensap_faq |
Rasa Core | 5005 | http://localhost:5005/conversations/default/respond?q=hello |