不小心使用了rasa run命令

发布于 2025-01-12 01:04:41 字数 129 浏览 0 评论 0原文

我刚刚使用 venv 在虚拟环境中安装了 rasa

我使用 rasa run 而不是 rasa shell

文档网站说这“启动服务器”...这是什么意思?

这生成了哪些文件?现在是否有服务器在后台运行?

I just installed rasa in a virtual environment using venv

I used rasa run instead of rasa shell

The docs site says this "starts a server"... what does that mean?

What files did this generate and is there a server operating in the background now?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吝吻 2025-01-19 01:04:41

rasa run 启动一个服务器,该服务器通过您选择的 渠道连接器。例如,您可以让用户通过 Facebook Messenger、Twilio 或某些网站与聊天机器人交谈。如果您运行 rasa run --enable-api ,它还会激活一些 API 端点,允许您与对话历史记录和模型进行交互。

当您取消命令时(例如通过STRG+C或关闭终端窗口),服务器将停止。没有任何东西会在后台运行。

有趣的事实:rasa shell 实际上在幕后使用 rasa run。您的命令行输入将作为 HTTP 请求发送到 Rasa 服务器,并且服务器的响应将打印到命令行。

rasa run starts a server which serves your chatbot model via your selected channel connector. You could for example let your users talk to the chatbot via Facebook messenger, Twilio or some website. If you run rasa run --enable-api it in addition activates a couple of API endpoints which allow you to interact with the conversation histories and the model.

When you cancel the command (e.g. via STRG+C or closing the terminal window), the server will be stopped. Nothing will be left running in the background.

Fun fact: rasa shell is actually using rasa run under the hood. Your command line input will be sent as an HTTP request to the Rasa server and the server's response will be printed to the command line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文