I was migrating rasa to rasa-x but i found actions forms was not registered. I am using 2 different forms with 2 separate file, but forms not registered while starting server.
below is the rasa core log
Your input -> i want to register
2019-05-22 14:41:52 ERROR rasa.core.processor - Encountered an exception while running action ‘registration_form’. Bot will continue, but the actions events are lost. Make sure to fix the exception in your custom code.
Your input -> i want to register
Please tell me your name
Your input -> i am ameen
2019-05-22 14:46:33 WARNING rasa.core.processor - Action ‘registration_form’ set a slot type ‘username’ that it never set during the training. This can throw of the prediction. Make sure to include training examples in your stories for the different types of slots this action can return. Remember: you need to set the slots manually in the stories by adding ‘- slot{“username”: “ameen”}’ after the action.
below is actions server log
(ejenv) ameen@syscon-optiplex-3046:~/Documents/ej-bot$ python -m rasa_sdk 2019-05-22 14:45:22 INFO rasa_sdk.endpoint - Starting action endpoint server… 2019-05-22 14:45:22 INFO rasa_sdk.endpoint - Action endpoint is up and running. on (‘0.0.0.0’, 5055) ^CKeyboardInterrupt 2019-05-22T09:16:02Z Traceback (most recent call last): File “/home/ameen/anaconda3/lib/python3.6/runpy.py”, line 193, in _run_module_as_main “main”, mod_spec) File “/home/ameen/anaconda3/lib/python3.6/runpy.py”, line 85, in _run_code exec(code, run_globals) File “/home/ameen/Documents/ej-bot/ejenv/lib/python3.6/site-packages/rasa_sdk/main.py”, line 30, in main() File “/home/ameen/Documents/ej-bot/ejenv/lib/python3.6/site-packages/rasa_sdk/main.py”, line 26, in main main_from_args(cmdline_args) File “/home/ameen/Documents/ej-bot/ejenv/lib/python3.6/site-packages/rasa_sdk/main.py”, line 18, in main_from_args run(args.actions, args.port, args.cors) File “/home/ameen/Documents/ej-bot/ejenv/lib/python3.6/site-packages/rasa_sdk/endpoint.py”, line 134, in run http_server.serve_forever() File “/home/ameen/Documents/ej-bot/ejenv/lib/python3.6/site-packages/gevent/baseserver.py”, line 369, in serve_forever self._stop_event.wait() File “src/gevent/event.py”, line 127, in gevent._event.Event.wait File “src/gevent/_abstract_linkable.py”, line 192, in gevent.__abstract_linkable.AbstractLinkable._wait File “src/gevent/_abstract_linkable.py”, line 165, in gevent.__abstract_linkable.AbstractLinkable._wait_core File “src/gevent/_abstract_linkable.py”, line 169, in gevent.__abstract_linkable.AbstractLinkable._wait_core File “src/gevent/_greenlet_primitives.py”, line 60, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch File “src/gevent/_greenlet_primitives.py”, line 60, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch File “src/gevent/_greenlet_primitives.py”, line 64, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch File “src/gevent/__greenlet_primitives.pxd”, line 35, in gevent.__greenlet_primitives._greenlet_switch KeyboardInterrupt
kindly help me in this, is anything i am doing wrong. Thanks…