1

我想使用 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)

请帮助我如何解决这个问题。

4

2 回答 2

1

您需要更改dialect以使用 MySQL 并将后缀db包含在您的:.dbendpoint.yml

tracker_store:
    type: SQL
    dialect: "mysql"  # the dialect used to interact with the db
    url: somewhere    
    db: "chatbot.db"  
    username: "root"  
    password: "test"  

SQLALchemy文档 中的更多信息

于 2019-08-03T22:18:34.780 回答
0

您需要使用 pip 安装 pymysql。

    tracker_store:
        type: SQL
        dialect: "mysql+pymysql"
        url: "localhost"
        db: "Rasabot"
        username: "root"
        password: "xyz"
于 2020-07-21T09:28:54.693 回答