RASA X - 3.0?

Hi @nonola,
sure! Please keep in mind that I am completely unexperience and I gather all my informations here in the RASA Forum or online. So, what I did to store the conversations locally on my machine:

  1. Install sqlite3 (in my case, a conda envirnoment: conda install -c anaconda sqlite)
  2. create a database for the storage of the RASA conversations: sqlite3 rasa_conversations.db
  3. add the following code to the endpoint.yml:
tracker_store:
    type: SQL
    dialect: "sqlite"
    url: # (optional) host of the sql db
    db: "rasa_conversations.db"
    username: # username
    password: # password
    query: # optional dictionary to be added as a query string to the connection url
      driver: my-driver
  1. to start RASA using your SQL backend, add the --endpoints flag: rasa run --endpoints endpoints.yml

I hope that was helpful to you!
Ciao, Vio