I want to store the chats in my MySql database for that i followed below process but i don’t get any error. I can’t see any tables got created when i run my application and chat with the bot. Please help below is my work. My rasa_core version is 0.12.2 and rasa_nlu version is 0.13.8
endpoints.yml
action_endpoint:
url: "http://localhost:5055/webhook"
tracker_store:
type: SQL
dialect: "mysql+pymysql"
url: "localhost"
db: "rasa"
username: "test"
password: "test"
after that i run the below command but it is not creating any table.
python -m rasa_core.run --enable_api -d models\dialogue -u models\nlu\default\weathernlu -o models\out.log --endpoints endpoints.yml