hi
i like to save conversations in a sqlite database,
this is what i put in endpoints:
tracker_store:
type: SQL
dialect: "sqlite" # the dialect used to interact with the db
url: # (optional) host of the sql db, e.g. "localhost"
db: "rasa.db" # path to your db
username: # username used for authentication
password: # password used for authentication
# query: # optional dictionary to be added as a query string
# driver: my-driver
and this is my agent, in run_app file:
Interpreter = RasaNLUInterpreter("./models")
MODEL_PATH = "./models"
ActionEndpoint = EndpointConfig(url="http://localhost:5055/webhook")
db = SQLTrackerStore(domain="domain.yml", dialect="sqlite", db="rasa.db",username="",password="")
agent = Agent.load(MODEL_PATH, interpreter=Interpreter,
action_endpoint=ActionEndpoint,tracker_store=db)
i cant find conversations in rasa.db file
Could you help me please, knowing that i use only rasa (without rasax)
Thank you and have a good day