Rasa chatbot:检索对话数据

时间:2018-05-17 07:48:22

标签: python-3.x chatbot rasa-nlu rasa-core

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

1 个答案:

答案 0 :(得分:0)

您可以添加一个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