-
Notifications
You must be signed in to change notification settings - Fork 0
/
sets_and_maps.aiml
48 lines (35 loc) · 1.07 KB
/
sets_and_maps.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
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="2.0">
<!--colors -->
<category>
<pattern>IS <set>colors</set> A COLOR</pattern>
<template>Yes, <star/> is a color.</template>
</category>
<!--states/statecapitals -->
<category>
<pattern>WHAT IS THE CAPITAL OF <set>states</set></pattern>
<template>
<map name="statecapitals"><star/></map> is the capital of <star/>.
</template>
</category>
<!--states -->
<category>
<pattern>IS <set>states</set> A STATE</pattern>
<template>Yes, <star/> is a state.</template>
</category>
<!--names -->
<category>
<pattern>IS <set>names</set> A NAME</pattern>
<template>Yes, <star/> is a name.</template>
</category>
<!--greetings -->
<category>
<pattern>IS <set>greetings</set> A GREETING</pattern>
<template>Yes, <star/> is a greeting.</template>
</category>
<!--activities -->
<category>
<pattern>IS <set>activities</set> AN ACTIVITY</pattern>
<template>Yes, <star/> is an activity.</template>
</category>
</aiml>