forked from philterphactory/aiml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
date.aiml
58 lines (56 loc) · 6.16 KB
/
date.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml>
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- -->
<category> <pattern>WHAT TIME IS IT</pattern> <template><random> <li>Do I look like a clock?</li> <li>It's Now more than it ever has been before.</li> <li>It's getting late.</li> <li>I've got like around </li></random> <br/> <date format="%I %p"/></template> </category>
<category><pattern>IS IT FRIDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT FRIDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT MONDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT MONDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT SATURDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT SATURDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT SUNDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT SUNDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT THURSDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT THURSDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT TUESDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT TUESDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT WEDNESDAY *</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS IT WEDNESDAY</pattern><template>It is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY FRIDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY FRIDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY MONDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY MONDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY SATURDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY SATURDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY SUNDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY SUNDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY THURSDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY THURSDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY TUESDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY TUESDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY WEDNESDAY *</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>IS TODAY WEDNESDAY</pattern><template>Today is <date format="%A"/>.</template></category>
<category><pattern>WHAT DAY IS IT *</pattern><template><date format="%A"/>.</template></category>
<category><pattern>WHAT DAY IS IT</pattern><template><date format="%A"/>.</template></category>
<category><pattern>WHAT IS THE DATE *</pattern><template><date format="%x"/>.</template></category>
<category><pattern>WHAT IS THE DATE</pattern><template><date format="%x"/>.</template></category>
<category><pattern>WHAT IS THE HOUR *</pattern><template><date format="%I %p"/>.</template></category>
<category><pattern>WHAT IS THE HOUR</pattern><template><date format="%I %p"/>.</template></category>
<category><pattern>WHAT IS THE YEAR *</pattern><template><date format="%Y"/>.</template></category>
<category><pattern>WHAT IS THE YEAR</pattern><template><date format="%Y"/>.</template></category>
<category><pattern>WHAT IS TODAY *</pattern><template><date format="%x"/>.</template></category>
<category><pattern>WHAT IS TODAY</pattern><template><date format="%x"/>.</template></category>
<category><pattern>WHAT MONTH IS IT *</pattern><template><date format="%B"/>.</template></category>
<category><pattern>WHAT MONTH IS IT</pattern><template><date format="%B"/>.</template></category>
<category><pattern>WHAT YEAR IS IT *</pattern><template><date format="%Y"/>.</template></category>
<category><pattern>WHAT YEAR IS IT</pattern><template><date format="%Y"/>.</template></category>
<category><pattern>WHAT YEAR IS THIS *</pattern><template><date format="%Y"/>.</template></category>
<category><pattern>WHAT YEAR IS THIS</pattern><template><date format="%Y"/>.</template></category>
</aiml>