Hi,
I just checked out the latest Rasa 1.0 and trained with the test training data came with the repo. But the Rasa 1.0 doesn’t recognize the following conversations URI which does work in pre-1.0 release.
$ python -m rasa run -m ./models --endpoints ./projects/endpoints.yml --port 5001 --log-file ./logs/rasa.log -vv
/apps/ml-engine/local/lib/python3.6/dist-packages/h5py/init.py:36: FutureWarning: Conversion of the second argument of issubdtype from float
to np.floating
is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type
.
from ._conv import register_converters as _register_converters
2019-05-21 17:10:57 DEBUG rasa.model - Extracted model to ‘/tmp/tmpwqlgizmw’.
No chat connector configured, falling back to the REST input channel. To connect your bot to another channel, read the docs here: https://rasa.com/docs/rasa/user-guide/messaging-and-voice-channels
2019-05-21 17:10:57 DEBUG rasa.core.utils - Available web server routes:
/webhooks/rest GET custom_webhook_RestInput.health
/webhooks/rest/webhook POST custom_webhook_RestInput.receive
2019-05-21 17:10:57 INFO root - Starting Rasa Core server on http://localhost:5001
2019-05-21 17:10:57 INFO root - Enabling coroutine debugging. Loop id 87280088.
2019-05-21 17:10:57 DEBUG rasa.model - Extracted model to ‘/tmp/tmptx7h5etk’.
2019-05-21 17:11:10 INFO rasa.nlu.components - Added ‘SpacyNLP’ to component cache. Key ‘SpacyNLP-en’.
2019-05-21 17:11:10 DEBUG rasa.model - Extracted model to ‘/tmp/tmp9eo6pm6z’.
[2019-05-21 17:11:11 -0700] [15928] [ERROR] Exception occurred while handling uri: ‘http://zeus-OMG-164.dev.pfops.com/conversations/default/respond’
Traceback (most recent call last):
File “/apps/ml-engine/local/lib/python3.6/dist-packages/sanic-19.3.1-py3.6.egg/sanic/app.py”, line 893, in handle_request
handler, args, kwargs, uri = self.router.get(request)
File “/apps/ml-engine/local/lib/python3.6/dist-packages/sanic-19.3.1-py3.6.egg/sanic/router.py”, line 407, in get
return self._get(request.path, request.method, “”)
File “/apps/ml-engine/local/lib/python3.6/dist-packages/sanic-19.3.1-py3.6.egg/sanic/router.py”, line 469, in _get
raise NotFound(“Requested URL {} not found”.format(url))
sanic.exceptions.NotFound: Requested URL /conversations/default/respond not found
[2019-05-21 20:17:43 -0700] [15928] [ERROR] Exception occurred while handling uri: ‘http://zeus-OMG-164.dev.pfops.com/conversations/default/respond’
Traceback (most recent call last):
File “/apps/ml-engine/local/lib/python3.6/dist-packages/sanic-19.3.1-py3.6.egg/sanic/app.py”, line 893, in handle_request
handler, args, kwargs, uri = self.router.get(request)
File “/apps/ml-engine/local/lib/python3.6/dist-packages/sanic-19.3.1-py3.6.egg/sanic/router.py”, line 407, in get
return self._get(request.path, request.method, “”)
File “/apps/ml-engine/local/lib/python3.6/dist-packages/sanic-19.3.1-py3.6.egg/sanic/router.py”, line 469, in _get
raise NotFound(“Requested URL {} not found”.format(url))
sanic.exceptions.NotFound: Requested URL /conversations/default/respond not found
Has the conversations endpoint changed in Rasa 1.0? If yes, what are the valid endpoints in 1.0?
Please help Thanks