I’m trying to run rasa x using an existing model that works with standard rasa
I’m getting:
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) unable to open database file
(Background on this error at: http://sqlalche.me/e/e3q8)
I’ve tried running without any existing database file as well as with, but still get this issue.
Is a .db
file necessary? I don’t mind starting from scratch.
When using the db my endpoints.yml
contains:
tracker_store:
type: SQL
dialect: "sqlite" # the dialect used to interact with the db
db: "db/rasa.db" # path to your db
Other things that I’ve tried:
-
using the migration script , but get the same sqlite error here.
-
changing permissions on the
rasa.db
file to 777