我正在尝试使用RASA构建聊天机器人。现在,我正在Ubuntu外壳上本地运行我的聊天机器人。我希望能够检索我的对话数据;从RASA的文档来看,这似乎是有可能的,但是文档仅解决了机器人在http服务器上运行的情况:link

最佳答案

您可以添加Mongo or Redis tracker store,将所有对话数据存储在数据库中。为此,请将以下部分添加到您的端点配置中:

tracker_store:
    store_type: mongod
    url: <url to your mongo instance, e.g. mongodb://localhost:27017>
    db: <name of the db within your mongo instance, e.g. rasa>
    username: <username used for authentication>
    password: <password used for authentication>


然后在运行Rasa Core时使用--endpoints指定此文件,例如

python -m rasa_core.run -d models --endpoints endpoints.yml


另一种方法是使用公开的Rest API运行Rasa Core,例如

python -m rasa_core.run -d models --enable-api


然后,您可以使用记录在here中的HTTP请求访问对话,例如:

curl --request GET \
  --url http://localhost:5005/conversations/<sender_id>/tracker

10-06 11:47