Hi
I have recently upgraded my RASA:
Using pip install -r requirements_dev.txt
I installed the following packages and their dependencies:
rasa==1.6.1
spacy==2.1.8
rasa-sdk==1.6.0
numpy==1.16.0
python-socketio==4.3.1
python-engineio==3.9.3
livereload
pytest==5.2.2
cx_Oracle==7.2.2
python-dateutil==2.8.0
multidict==4.6.1
To start the chatbot I did this:
Terminal 1:
rasa train
Terminal 2:
rasa run --endpoints endpoints.yml --credentials credentials.yml --cors "*"
Terminal 3:
rasa run actions --actions actions
Terminal 4:
livereload
After loading the bot in the browser I start to chat with it. Afterwards I get the following warnings in terminal 2:
UserWarning: Interpreter parsed an intent 'name:' that is not defined in the domain.
UserWarning: Interpreter parsed an intent 'name_last:' that is not defined in the domain.
UserWarning: Interpreter parsed an intent 'street_name:' that is not defined in the domain.
UserWarning: Interpreter parsed an intent 'house_number:' that is not defined in the domain.
This is strange, since these intents are clearly defined in my domain-file:
domain.yml:
intents:
- name
- name_last
- street_name
- house_number
I tried using different formats but this was not helpful.
When I did rasa train
it says that it found 37 distinct intens. One of them is the intent name
, the other intens listed above are not mentioned.
It was never a problem. Maybe the new version has some requirements I do not know about?
Hope you can help me!