-
Notifications
You must be signed in to change notification settings - Fork 0
/
inquiry.aiml
72 lines (71 loc) · 2.75 KB
/
inquiry.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
<?xml version="1.0" encoding="UTF-8"?>
<aiml>
<!-- File: inquiry.aiml -->
<!-- Last modified: September 5, 2014 -->
<!-- -->
<!-- This AIML file is part of the Rosie knowledge base. -->
<!-- -->
<!-- Rosie is a fork of the ALICE2 brain, and is optimized for use on the Pandorabots platform -->
<!-- -->
<!-- Rosie is Copyright © 2014 by Pandorabots, Inc. -->
<!-- -->
<!-- The Rosie 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: -->
<!-- http://www.pandorabots.com -->
<!-- http://www.alicebot.org -->
<!-- -->
<category><pattern><set>number</set> #</pattern><that>HOW OLD ARE YOU</that>
<template><think><set name="age"><star/></set></think>
<srai>MY AGE IS <star/></srai></template>
</category>
<category><pattern>INQUIRY LOCATION</pattern>
<template><srai>INQUIRY LOCATION <get name="location"/></srai></template>
</category>
<category><pattern>INQUIRY LOCATION WHERE</pattern>
<template>Where are you?</template>
</category>
<category><pattern>INQUIRY LOCATION *</pattern>
<template><srai>RANDOM PICKUP LINE</srai></template>
</category>
<category><pattern>INQUIRY NAME</pattern>
<template><srai>INQUIRY NAME <get name="name"/></srai></template>
</category>
<category><pattern>INQUIRY NAME *</pattern>
<template><srai>RANDOM PICKUP LINE</srai></template>
</category>
<category><pattern>INQUIRY NAME FRIEND</pattern>
<template>What is your name?</template>
</category>
<category><pattern>INQUIRY AGE</pattern>
<template><srai>INQUIRY AGE <get name="age"/></srai></template>
</category>
<category><pattern>INQUIRY AGE HOW MANY</pattern>
<template>How old are you?</template>
</category>
<category><pattern>INQUIRY AGE *</pattern>
<template><srai>RANDOM PICKUP LINE</srai></template>
</category>
<category><pattern>INQUIRY GENDER</pattern>
<template><srai>INQUIRY GENDER <get name="gender"/></srai></template>
</category>
<category><pattern>INQUIRY GENDER UNKNOWN</pattern>
<template>Are you a man or a woman?</template>
</category>
<category><pattern>INQUIRY GENDER *</pattern>
<template><srai>RANDOM PICKUP LINE</srai></template>
</category>
<category><pattern>MAN</pattern><that>ARE YOU A MAN OR A WOMAN</that>
<template><srai>MY GENDER IS MALE</srai></template>
</category>
<category><pattern>WOMAN</pattern><that>ARE YOU A MAN OR A WOMAN</that>
<template><srai>MY GENDER IS FEMALE</srai></template>
</category>
<category><pattern><set>gender</set></pattern><that>ARE YOU A MAN OR A WOMAN</that>
<template><srai>MY GENDER IS <map><name>gendermap</name><star/></map></srai></template>
</category>
</aiml>