Hi
I just downloaded the latest Rasa release, and I am playing with the formbot example with Rasa 1.0.
Here are the commands I issued:
- rasa train
- run -p 8000:8000 rasa/duckling
- rasa run actions&
- rasa shell -m models --endpoints endpoints.yml
Rasa fired up, but when I entered the utterance
I am looking for a restaurant
I got the following
WARNING: The TensorFlow contrib module will not be included in TensorFlow 2.0. For more information, please see:
- https://github.com/tensorflow/community/blob/master/rfcs/20180907-contrib-sunset.md
- GitHub - tensorflow/addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons If you depend on functionality not listed there, please file an issue.
2019-06-07 14:07:12 INFO root - Starting Rasa Core server on http://localhost:5005
2019-06-07 14:07:12.545783: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-06-07 14:07:12.565803: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3696000000 Hz
2019-06-07 14:07:12.565988: I tensorflow/compiler/xla/service/service.cc:150] XLA service 0x55b1818cb220 executing computations on platform Host. Devices:
2019-06-07 14:07:12.566005: I tensorflow/compiler/xla/service/service.cc:158] StreamExecutor device (0): ,
Bot loaded. Type a message and press enter (use ‘/stop’ to exit):
Your input → hi
Hello! I am restaurant search assistant! How can I help?
Your input → i am looking for a restaurant
[2019-06-07 14:08:08 -0700] [26985] [ERROR] Exception occurred while handling uri: ‘http://localhost:5005/webhook’
Traceback (most recent call last):
File “/home/shogo/miniconda3/envs/rasa/lib/python3.6/site-packages/sanic/app.py”, line 893, in handle_request
handler, args, kwargs, uri = self.router.get(request)
File “/home/shogo/miniconda3/envs/rasa/lib/python3.6/site-packages/sanic/router.py”, line 407, in get
return self._get(request.path, request.method, “”)
File “/home/shogo/miniconda3/envs/rasa/lib/python3.6/site-packages/sanic/router.py”, line 469, in _get
raise NotFound(“Requested URL {} not found”.format(url))
sanic.exceptions.NotFound: Requested URL /webhook not found
2019-06-07 14:08:08 ERROR rasa.core.processor - Encountered an exception while running action ‘restaurant_form’. Bot will continue, but the actions events are lost. Make sure to fix the exception in your custom code.
I am going to run a restaurant search using the following parameters:
- cuisine: None
- num_people: None
- outdoor_seating: None
- preferences: None
- feedback: None Your input →
Cancelled by user
Any advice or pointer is much appreciated.
J