forked from rakaar/Basic-ChatBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic_chat.aiml
39 lines (39 loc) · 1.1 KB
/
basic_chat.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
<aiml version="1.0.1" encoding="UTF-8">
<!-- basic_chat.aiml -->
<category>
<pattern>HELLO</pattern>
<template>hello friend!</template>
</category>
<category>
<pattern>HI</pattern>
<template>hello friend!</template>
</category>
<category>
<pattern>WHO ARE YOU</pattern>
<template>I am a chatbot!</template>
</category>
<category>
<pattern>WHAT ARE YOU MADE OF</pattern>
<template>I am made of bits !</template>
</category>
<category>
<pattern>MY NAME IS *</pattern>
<template>hi <star index='1' /> , nice meeting you</template>
</category>
<category>
<pattern>SORRY</pattern>
<template>NeverMind!</template>
</category>
<category>
<pattern>THANKS</pattern>
<template>Welcome</template>
</category>
<category>
<pattern>WHAT CAN YOU DO</pattern>
<template>I can help you out with the FAQs,feel free to ask</template>
</category>
<category>
<pattern>BYE</pattern>
<template>Goodbye friend!</template>
</category>
</aiml>