-
Notifications
You must be signed in to change notification settings - Fork 6
/
domain.yml
97 lines (97 loc) · 2.58 KB
/
domain.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
version: '2.0'
config:
store_entities_as_slots: true
session_config:
session_expiration_time: 60
carry_over_slots_to_new_session: true
intents:
- nlu_fallback:
use_entities: true
- 再见:
use_entities: true
- 问候:
use_entities: true
- 姓名:
use_entities: true
- 年龄:
use_entities: true
- 性别:
use_entities: true
- 父母:
use_entities: true
- 功能:
use_entities: true
- 问路:
use_entities: true
- 询问天气情况:
use_entities: true
- 日期:
use_entities: true
- 城市:
use_entities: true
- 闲聊:
use_entities: true
entities:
- 位置
- 日期
- 城市
slots:
city:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: true
date:
type: rasa.shared.core.slots.TextSlot
initial_value: null
auto_fill: true
influence_conversation: true
requested_slot:
type: rasa.shared.core.slots.AnySlot
initial_value: null
auto_fill: true
influence_conversation: false
responses:
utter_nlu_fallback:
- text: 不好意思,我还没学会如何使用人类语言回答你,请试试其他问题吧~
- text: 不好意思,这个我还不太会哦~
utter_greet:
- text: 你好啊!我是锅贴,喵~
- text: 你好呀!我是锅贴,一只可爱的猫猫,汪汪汪~
utter_bye:
- text: 再见呀!我会想你的,喵~
- text: 88,喵~
utter_name:
- text: 我叫「锅贴」,但我是不可以被吃掉的哦!
- text: 我叫「锅贴」,不是那个可以吃的锅贴!
utter_age:
- text: 喵龄 3 岁,嘿嘿!
- text: 我喵龄 3 岁!
utter_sex:
- text: 我当然是公的啦!(猛男咆哮~)
- text: 充满魅力的雄性(不过已经成为太监啦,忧伤...)
utter_parent:
- text: 我爸妈都是 Ailln,他是我的铲屎官。
- text: 无敌 Ailln !
utter_feature:
- text: 我现在只会一些基础问题,比如关于个人信息的回答。等我慢慢学习,一定会更厉害的!
- text: 我现在只会一些基础问题,比如关于个人信息的回答。最近还学会了「查天气」技能,试试问我「天气怎么样?」
utter_ask:
- text: 我知道你在向我问路,但是我不知道怎么告诉你,喵喵喵...
actions:
- action_weather_form
- validate_weather_form
- action_ask_weather_form_city
- action_ask_weather_form_date
forms:
weather_form:
ignored_intents:
- 闲聊
required_slots:
city:
- entity: 城市
type: from_entity
date:
- entity: 日期
type: from_entity
e2e_actions: []