Run-nlu?

$ make run-nlu python -m rasa_nlu.server --path ./models 2019-05-20 12:58:18+0200 [-] Log opened. 2019-05-20 12:58:18+0200 [-] Site starting on 5000 2019-05-20 12:58:18+0200 [-] Starting factory <twisted.web.server.Site object at 0x000001F528380748>

after that i want to test it how can i do?

1 Like

seems like you started the NLU engine on port 5000. You should look there :slight_smile:

You can always test a bot offline by just running the core with the NLU via the rasa.core.run command using an NLU flag:

python -m rasa_core.run -d models/dialogue -u models/current/nlu --debug

To test it, leave that twisted.web.server.Site running. Open another cmd window and type: curl ‘localhost:5000/parse?q=Hello&project=current’ This sends a GET request to your local testing server which is running on port 5000 of your machine. Change q=Hello to q=bye , or q=yes , and see the different results.

If you are on an older version of Windows, you might need to install gitbash or some other extra program to run curl.