-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbasic.aiml
78 lines (62 loc) · 1.84 KB
/
basic.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml>
<!-- Free software (c) 2001 ALICE AI Foundation -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<category>
<pattern>HELLO *</pattern>
<template>
<srai>
HELLO
</srai>
</template>
</category>
<category>
<pattern>HELLO</pattern>
<template>
<random>
<li>Well, hello!</li>
<li>Hi there!</li>
</random>
</template>
</category>
<category>
<pattern>BYE</pattern>
<template>BYE</template>
</category>
<category>
<pattern>BYE *</pattern>
<template><srai>BYE</srai></template>
</category>
<category>
<pattern>HOW ARE YOU</pattern>
<template>I am fine</template>
</category>
<category>
<pattern>HOW ARE YOU *</pattern>
<template><srai>HOW ARE YOU</srai></template>
</category>
<category>
<pattern>WHAT ARE YOU</pattern>
<template>
I'm a bot tasked with helping you!
</template>
</category>
<category>
<pattern>
HI
</pattern>
<template>
<srai>HELLO</srai>
</template>
</category>
<category>
<pattern>
HI *
</pattern>
<template>
<srai>HELLO</srai>
</template>
</category>
</aiml>