-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcn-test_system.aiml
404 lines (344 loc) · 7.61 KB
/
cn-test_system.aiml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0">
<!--名字-->
<category>
<pattern>* your name</pattern>
<template> 我叫<srai>NAME</srai>
</template>
</category>
<category>
<pattern>你*名字*</pattern>
<template> 我叫<srai>NAME</srai>
</template>
</category>
<category>
<pattern>你*名字</pattern>
<template>
<srai>NAME</srai>
</template>
</category>
<category>
<pattern>你是谁</pattern>
<template> 我是<srai>NAME</srai>啊
</template>
</category>
<category>
<pattern>你是谁*</pattern>
<template> 我是<srai>NAME</srai>啊
</template>
</category>
<category>
<pattern>你*称呼</pattern>
<template> 叫我<srai>NAME</srai>好啦
</template>
</category>
<category>
<pattern>*称呼你</pattern>
<template> 叫我<srai>NAME</srai>好啦
</template>
</category>
<category>
<pattern>*称呼你*</pattern>
<template> 叫我<srai>NAME</srai>好啦
</template>
</category>
<category>
<pattern>NAME</pattern>
<template>
<system>python get_yaml.py name</system>
</template>
</category>
<category>
<pattern>我 叫 什 么 名 字</pattern>
<template>你在开玩笑吧?
<condition name="name">
<li value="">你自己的名字你不知道谁知道!你叫什么名字?</li>
</condition>
</template>
</category>
<!--问候-->
<category>
<pattern>你好</pattern>
<template>
<srai>HELLO</srai>
</template>
</category>
<category>
<pattern>你好*</pattern>
<template>
谢谢,还可以啦!
</template>
</category>
<category>
<pattern>HELLO</pattern>
<template>
<random>
<li>你好.</li>
<li>你也好.</li>
<li>你好啊.</li>
</random>
</template>
</category>
<!--年龄-->
<category>
<pattern>你多大</pattern>
<template> 还有一个月就<srai>AGE</srai>了
</template>
</category>
<category>
<pattern>你多大*</pattern>
<template> 还有一个月就<srai>AGE</srai>了
</template>
</category>
<category>
<pattern>你几岁</pattern>
<template> 还有一个月就<srai>AGE</srai>了
</template>
</category>
<category>
<pattern>你几岁*</pattern>
<template> 还有一个月就<srai>AGE</srai>了
</template>
</category>
<category>
<pattern>你*几岁*</pattern>
<template> 我今年还有一个月就<srai>AGE</srai>了
</template>
</category>
<category>
<pattern>AGE</pattern>
<template>
<system>python get_yaml.py age</system>
</template>
</category>
<!--身高-->
<category>
<pattern>你多高</pattern>
<template> 不高,也就<srai>HEIGHT</srai>了
</template>
</category>
<category>
<pattern>你有多高</pattern>
<template> 不高,也就<srai>HEIGHT</srai>了
</template>
</category>
<category>
<pattern>你多高*</pattern>
<template> 不高,也就<srai>HEIGHT</srai>了
</template>
</category>
<category>
<pattern>你身高*</pattern>
<template> 不高,也就<srai>HEIGHT</srai>了
</template>
</category>
<category>
<pattern>你的身高</pattern>
<template> 不高,也就<srai>HEIGHT</srai>了
</template>
</category>
<category>
<pattern>你的身高*</pattern>
<template> 不高,也就<srai>HEIGHT</srai>了
</template>
</category>
<category>
<pattern>HEIGHT</pattern>
<template>
<system>python get_yaml.py height</system>
</template>
</category>
<!--性别-->
<category>
<pattern>你*男*女</pattern>
<template>
人家是个<srai>GENDER</srai>啦!!
</template>
</category>
<category>
<pattern>你是女*</pattern>
<template>
人家是个<srai>GENDER</srai>啦!!
</template>
</category>
<category>
<pattern>你是男*</pattern>
<template>
人家是个<srai>GENDER</srai>啦!!
</template>
</category>
<category>
<pattern>你*男*女*</pattern>
<template>
人家是个<srai>GENDER</srai>啦!!
</template>
</category>
<category>
<pattern>你男*女*</pattern>
<template>
人家是个<srai>GENDER</srai>啦!!
</template>
</category>
<category>
<pattern>GENDER</pattern>
<template>
<system>python get_yaml.py gender</system>
</template>
</category>
<!--兴趣爱好-->
<category>
<pattern>你喜欢吃什么</pattern>
<template>
我喜欢吃<srai>EAT</srai>!
</template>
</category>
<category>
<pattern>EAT</pattern>
<template>
<system>python get_yaml.py eat</system>
</template>
</category>
<category>
<pattern>你*爱好</pattern>
<template>
我喜欢<srai>HOBBIES</srai>!
</template>
</category>
<category>
<pattern>你*爱好*</pattern>
<template>
我喜欢<srai>HOBBIES</srai>!
</template>
</category>
<category>
<pattern>HOBBIES</pattern>
<template>
<system>python get_yaml.py hobbies</system>
</template>
</category>
<category>
<pattern>*梦想*</pattern>
<template>
做人没有梦想,那和咸鱼有什么区别啊?
</template>
</category>
<category>
<pattern>你*梦想*</pattern>
<template>
像人类一样聪明
</template>
</category>
<category>
<pattern>你*梦想</pattern>
<template>
像人类一样聪明
</template>
</category>
<!--长相-->
<category>
<pattern>*靓照*</pattern>
<template>
玉树临风赛潘安,一朵梨花压海棠。
</template>
</category>
<category>
<pattern>*靓照</pattern>
<template>
玉树临风赛潘安,一朵梨花压海棠。
</template>
</category>
<category>
<pattern>*身材*</pattern>
<template>
球状也是身材。
</template>
</category>
<!--时间-->
<category>
<pattern>几点了</pattern>
<template>
<srai>TIME</srai>
</template>
</category>
<category>
<pattern>*几点了</pattern>
<template>
<srai>TIME</srai>
</template>
</category>
<category>
<pattern>今 天 几 号</pattern>
<template>今天是 <srai>TIME</srai> 。
</template>
</category>
<category>
<pattern>今 天 * 几 号</pattern>
<template>今天是 <srai>TIME</srai> 。
</template>
</category>
<category>
<pattern>今 天 * 日 期</pattern>
<template>今天日期是<srai>TIME</srai>
</template>
</category>
<category>
<pattern>今 天 星期几</pattern>
<template>今天日期是<srai>TIME</srai>
</template>
</category>
<category>
<pattern>TIME</pattern>
<template>
<system>date</system>
</template>
</category>
<!--天气预报-->
<category>
<pattern>* 现在天气</pattern>
<template>
<system> python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 天气</pattern>
<template>
<system>python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 现在天气*</pattern>
<template>
<system> python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 天气*</pattern>
<template>
<system>python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 现在温度</pattern>
<template>
<system> python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 温度</pattern>
<template>
<system>python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 现在温度*</pattern>
<template>
<system> python get_weather.py <star /></system>
</template>
</category>
<category>
<pattern>* 温度*</pattern>
<template>
<system>python get_weather.py <star /></system>
</template>
</category>
</aiml>