Hi, I am pretty new to Rasa. I created a project based on the template project i get when I do ‘rasa init’.
I installed rasa with the following command:
‘pip install rasa-x --extra-index-url https://pypi.rasa.com/simple’
The problem I have is that when I finish an interactive training and choose quit and save i get the following error:
Cancelled by user
? Do you want to stop? Export & Quit
Unhandled exception in event loop:
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\eventloop\win32.py", line 103, in _run_task
t()
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\eventloop\context.py", line 115, in new_func
return func(*a, **kw)
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\application\application.py", line 562, in read_from_input
self.key_processor.process_keys()
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\key_binding\key_processor.py", line 273, in process_keys
self._process_coroutine.send(key_press)
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\key_binding\key_processor.py", line 180, in _process
self._call_handler(matches[-1], key_sequence=buffer[:])
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\key_binding\key_processor.py", line 323, in _call_handler
handler.call(event)
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\key_binding\key_bindings.py", line 78, in call
return self.handler(event)
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\shortcuts\prompt.py", line 588, in _
self.default_buffer.validate_and_handle()
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\buffer.py", line 1612, in validate_and_handle
valid = self.validate(set_cursor=True)
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\buffer.py", line 1160, in validate
self.validator.validate(self.document)
File "c:\users\bamit\appdata\local\programs\python\python37\lib\site-packages\prompt_toolkit\validation.py", line 183, in validate
return validator.validate(document)
Exception validate() takes 1 positional argument but 2 were given
Press ENTER to continue...
It is important to note that the project does work. I managed to create a model and everything works well. With the data I provided I managed to get to some nice results but I really need to get interactive training working properly.
*edit * I tried running interactive session of the template project I get when I run rasa init, but I got the same error.
Can you guys help me? Give me a direction to what may cause such a problem ? It looks like a problem with versions of some dependencies.