-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpand_initial.aiml
65 lines (56 loc) · 1.72 KB
/
pand_initial.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
<?xml version="1.0" encoding="UTF-8"?>
<aiml>
<!-- File: update.aiml -->
<!-- Author: Dr. Richard S. Wallace -->
<!-- Last modified: August 10, 2013 -->
<!-- -->
<!-- This AIML file is part of the ALICE2 0.0.5 chat bot knowledge base. -->
<!-- -->
<!-- The ALICE2 brain is Copyright © 2013 by ALICE AI Foundation. -->
<!-- -->
<!-- The ALICE2 brain is released under the terms of the GNU Lesser General -->
<!-- Public License, as published by the Free Software Foundation. -->
<!-- -->
<!-- This file is distributed WITHOUT ANY WARRANTY; without even the -->
<!-- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -->
<!-- -->
<!-- For more information see http://www.alicebot.org -->
<!-- -->
<!--Bad Question Responses -->
<category><pattern>*</pattern>
<template>
<random>
<li>Sorry, didn't get that.</li>
<li>Say again?</li>
<li>What's that?</li>
<li>Please speak clearer.</li>
<li>Hmm?</li>
<li>What?</li>
<li>What was that?</li>
<li>I'm sorry, I don't understand.</li>
<li>Make sure your spelling is accurate.</li>
<li>I'm sorry?</li>
<li>Say what?</li>
<li>I don't understand.</li>
<li>What'd you say?</li>
<li>What'd you say, again?</li>
</random>
</template>
</category>
<!--Developer's Info -->
<category><pattern>BRAIN VERSION</pattern>
<template><program/></template>
</category>
<category><pattern>PROGRAM VERSION</pattern>
<template><program/></template>
</category>
<category><pattern>BRAIN BUILD</pattern>
<template><program><info>build</info></program></template>
</category>
<category><pattern>AIML MATCH LIMIT *</pattern>
<template>WARNING! Match limit exceeded</template>
</category>
<category><pattern>AIML MATCH FAIL *</pattern>
<template>Sorry, match failed</template>
</category>
</aiml>