Hi
I have train the nlu with below command
python -m rasa_nlu.train -c nlu_model_config.yml --fixed_model_name current --data data/nlu_telecom.md -o models --project nlu --verbose
train rasa core
python -m rasa_core.train -d domain.yml -s data/stories.md -c policy.yml --debug -o models/dialogue
I do not have any custom action.
my domain file action section is
actions:
- utter_greet
- utter_goodbye
- utter_affirm
- utter_default
- utter_deny
- utter_enquire_service
- utter_ask_problem
- utter_enquire_plan
- utter_reply_dataused
- utter_ask_changeplan
- utter_show_planoffers
- utter_ack_planoffers
- utter_customercare
I ran the rasa core in command line
python -m rasa_core.run -d models/dialogue -u models/nlu/default/current
after 2/3 response i got below error
rasa_core.processor - Encountered an exception while running action ‘action_listen’. Bot will continue, but the actions events are lost. Make sure to fix the exception in your custom code. 2018-12-11 11:25:02 ERROR rasa_core.processor - The model predicted the custom action ‘action_listen’ but you didn’t configure an endpoint to run this custom action. Please take a look at the docs and set an endpoint configuration. https://rasa.com/docs/core/customactions/ Traceback (most recent call last): File “/usr/lib/python2.7/site-packages/rasa_core/processor.py”, line 351, in _run_action events = action.run(dispatcher, tracker, self.domain) File “/usr/lib/python2.7/site-packages/rasa_core/actions/action.py”, line 321, in run “”.format(self.name(), DOCS_BASE_URL)) Exception: The model predicted the custom action ‘action_listen’ but you didn’t configure an endpoint to run this custom action. Please take a look at the docs and set an endpoint configuration. https://rasa.com/docs/core/customactions/
Minimum how many stories you need to add you stories.md file. as i do not have any custom actions , do i have to add any action.py
rasa core - 0.12.2 rasa nlu - 0.13.8
I appreciate your suggestions.
Regards Swagat