d90d699b58
+ 打出Fay数字人助理版作为主分支(带货版移到分支[`fay-sales-edition`]); + 添加Fay助理的文字沟通窗口(文字与语音同步); + 添加沟通记录本地保存功能; + 升级ChatGLM-6B的应用逻辑,长文本与语音回复分享;
29 lines
492 B
YAML
29 lines
492 B
YAML
version: "3.1"
|
|
|
|
intents:
|
|
- greet
|
|
- goodbye
|
|
- ask_time
|
|
- ask_date
|
|
- out_of_scope
|
|
- ask_problem
|
|
|
|
responses:
|
|
utter_greet:
|
|
- text: "你好,有什么帮到你呢?"
|
|
|
|
utter_goodbye:
|
|
- text: "那我先离开了,一会有事叫我"
|
|
- text: "先不打扰你了,你可以随时唤醒我"
|
|
|
|
session_config:
|
|
session_expiration_time: 60
|
|
carry_over_slots_to_new_session: true
|
|
|
|
actions:
|
|
- action_ask_time
|
|
- action_ask_date
|
|
- action_gpt_response
|
|
- action_ask_problem
|
|
|