-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatterbot.aiml
101 lines (87 loc) · 2.38 KB
/
chatterbot.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
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0">
<!-- basic_chat.aiml -->
<category><pattern>ENROLL INTO SUBJECTS</pattern>
<template>Sure, enroll under:
1.Chittranjan Hota
2.Bhanu Murthy
3.Dipanjan
</template>
</category>
<category><pattern>ENROLL UNDER *</pattern>
<template>Here are the courses under <star/> : <system>python extra.py <star/></system></template>
</category>
<category><pattern>SUGGEST COURSES</pattern>
<template>SURE, LET ME SUGGEST FEW BASED ON RECENT TRENDS
1.Machine learning
2.Ethical Hacking
3.Mern Stack Development
4.Data Structures and Algorithms
5.Artificial Intelligence
6.Blockchain
7.DevOps
8.Iot
9.Cloud Computing
</template>
</category>
<category><pattern>SELECT *</pattern>
<template>SELECTED <star/></template>
</category>
<category><pattern>SELECT JOBS IN *</pattern>
<template>Here are the jobs in <star/> field : <system>python jobs.py <star/></system></template>
</category>
<category>
<pattern>HELLO *</pattern>
<template>
<random>
<li>HELLO SIR</li>
<li>How ARE YOU?</li>
<li>What is it?</li>
</random>
</template>
</category>
<category>
<pattern>HELLO</pattern>
<template>
<random>
<li>HELLO SIR</li>
<li>How ARE YOU?</li>
<li>What is it?</li>
</random>
</template>
</category>
<category>
<pattern>HI</pattern>
<template>
<srai>HELLO <star/></srai>
</template>
</category>
<category>
<pattern>HI *</pattern>
<template>
<srai>HELLO <star/></srai>
</template>
</category>
<category>
<pattern>WHO ARE YOU</pattern>
<template>
I'm a bot!
</template>
</category>
<category>
<pattern>MY NAME IS *</pattern>
<template>
hello <star index="1"/>, good to hear from you
</template>
</category>
<category>
<pattern>*</pattern>
<template>
<random>
<li>sorry,couldn't quite get that</li>
<li>try asking something else maybe?</li>
<li>I don't understand</li>
</random>
</template>
</category>
</aiml>