我已经使用rasa框架构建了一个聊天机器人。现在我想通过我的网站部署它,但我不想使用聊天机器人或码头部署它。我在谷歌,但我不明白。
如何在我的网站上部署聊天机器人?
发布于 2018-12-23 17:39:49
python -m rasa_nlu.server --path projects作为服务器启动NLU (有关文档,请参见这里 )。使用nohup这样的工具执行此操作,以便在关闭终端窗口时不会将服务器关闭。nlu: url: "http://<your nlu host>:5000"rest: # you don't need to provide anything here - this channel doesn't # require any credentialspython -m rasa_core.run -d <path to core model> \ -u <nlu model you want to use> \ --endpoints <path to your endpoint configuration (includes NLU url) \ --credentials <channel credentials>https://stackoverflow.com/questions/53893780
复制相似问题