不小心使用了rasa run命令
我刚刚使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 runrasa 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 usingrasa 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.