我想使用 sql tracker store 将对话历史存储在数据库中,但它似乎对我不起作用。我有我想连接的 MySQL 数据库,我在 endpoint.yml 中使用下面的代码
tracker_store:
type: SQL
dialect: "sqlite" # the dialect used to interact with the db
url: "localhost" # (optional) host of the sql db
db: "chatbot" # path to your db
username: "root" # username used for authentication
password: "test" # password used for authentication
当我跑步时,rasa shell -m models --endpoints endpoints.yml
我遇到了错误。
" sqlite:////absolute/path/to/file.db" % (url,)
sqlalchemy.exc.ArgumentError: Invalid SQLite URL: sqlite://root:test@localhost/c
hatbot
Valid SQLite URL forms are:
sqlite:///:memory: (or, sqlite://)
sqlite:///relative/path/to/file.db
sqlite:////absolute/path/to/file.db
当我尝试使用 python 代码连接同一个数据库时,它对我有用。下面是我的python代码。
import mysql.connector
mydb = mysql.connector.connect(host="localhost",port="3306",user="root",database="chatbot",password="test")
mycursor = mydb.cursor()
sql = "Show tables;"
mycursor.execute(sql)
myresult = mycursor.fetchall()
print(myresult)
for x in myresult:
print(x)
请帮助我如何解决这个问题。