-
Notifications
You must be signed in to change notification settings - Fork 15
/
AIML_TAG_descriptions.txt
88 lines (73 loc) · 1.65 KB
/
AIML_TAG_descriptions.txt
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
1. Simple
<category>
<pattern> HELLO </pattern>
<template>
Hello! Nice to meet you.
</template>
</category>
2. Simple with * (anything)
<category>
<pattern> HELLO * </pattern>
<template>
Hello! Nice to meet you.
</template>
</category>
3. Setting names
<category>
<pattern>MY NAME IS *</pattern>
<template>
<set name="name"><star/></set> is a nice name.
</template>
</category>
<category>
<pattern>WHAT IS MY NAME</pattern>
<template>
Your name is <get name="name"/>.
</template>
</category>
4. Asking something/about someone
<category>
<pattern>DO YOU KNOW WHO * IS?</pattern>
<template>
<srai>WHO IS <star/></srai>
</template>
</category>
6. multiple answer
<category>
<pattern>Once I *</pattern>
<template>
<random>
<li>Go on.</li>
<li>Can you be more specific?</li>
<li>I did not know that.</li>
<li>Are you telling the truth?</li>
<li>I don't know what that means.</li>
<li>Try to tell me that another way.</li>
<li>What is it?</li>
</random>
</template>
</category>
7. setting a category
<category>
<pattern>SCHOOL</pattern>
<template>School is an important institution in a child's life.</template>
</category>
<category>
<pattern>_ SCHOOL</pattern>
<template>
<srai>SCHOOL</srai> #this will call tht upper school pattern
</template>
</category>
<category>
<pattern>SCHOOL *</pattern>
<template>
<srai>SCHOOL</srai>
</template>
</category>
<category>
<pattern>_ SCHOOL *</pattern>
<template>
<srai>SCHOOL</srai>
</template>
</category>
</aiml>