gpt4 book ai didi

python-3.x - Rasa 聊天机器人 : Retrieving conversation data

转载 作者:行者123 更新时间:2023-12-03 09:48:53 24 4
gpt4 key购买 nike

我正在尝试使用 RASA 构建聊天机器人。现在,我在 Ubuntu shell 上本地运行我的聊天机器人。我希望能够检索我的对话数据;从 RASA 的文档来看,这似乎是可能的,但该文档仅解决了 bot 在 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>

然后用 --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

然后,您可以按照文档 here 访问带有 HTTP 请求的对话。 ,例如:
curl --request GET \
--url http://localhost:5005/conversations/<sender_id>/tracker

关于python-3.x - Rasa 聊天机器人 : Retrieving conversation data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50386037/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com