我正在尝试使用 RASA 构建聊天机器人。现在,我在 Ubuntu shell 上本地运行我的聊天机器人。我希望能够检索我的对话数据;从 RASA 的文档来看,这似乎是可能的,但文档仅解决了机器人在 http 服务器上运行的情况:link
问问题
2944 次
1 回答
4
您可以添加一个Mongo 或 Redis 跟踪器存储,它将所有对话数据存储在数据库中。通过将这样的部分添加到您的端点配置来做到这一点:
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>
--endpoints
然后在运行 Rasa Core 时指定此文件,例如
python -m rasa_core.run -d models --endpoints endpoints.yml
另一种方法是使用暴露的 Rest API 运行 Rasa Core,例如
python -m rasa_core.run -d models --enable-api
然后,您可以使用此处记录的 HTTP 请求访问对话,例如:
curl --request GET \
--url http://localhost:5005/conversations/<sender_id>/tracker
于 2018-11-26T08:37:07.370 回答