rasa聊天机器人实例, 代码的详细介绍
- 一个最简单的web聊天机器人
- 获取天气聊天机器人
效果
组成
- rasa 核心
- web 聊天页面
运行
- rasa核心
cd rasa001_basic
rasa train
rasa run --cors "*" #带允许跨域参数
- web 聊天页面:用web服务器打开rasa001_basic/rasa_basic.html
对话的大体目标,两个问句。第一次提出查天气,第二次说明具体的城市
hi
hi how may i assit you?
tell me today's weather?
which city you want to check for?
shanghai
the temperature is 27 degree
组成
- rasa 核心
- custom action - 获取天气
- web 聊天页面
运行
- rasa核心
cd rasa002_weather
rasa train
rasa run --cors "*" #带允许跨域参数
- custom action运行
# 再开一个命令行窗口
rasa run actions
- web 聊天页面:用web服务器打开rasa002_weather/rasa_weather.html