-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemotions.aiml
44 lines (35 loc) · 1.26 KB
/
emotions.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
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="2.0">
<category>
<pattern>IM FEELING *</pattern>
<template>Ok. I will remember that you are feeling <set name="emotion1"><star/>.</set></template>
</category>
<category>
<pattern>IM DOING *</pattern>
<template>Ok. I will remember that you are doing <set name="emotion4"><star/>.</set></template>
</category>
<category>
<pattern>I FEEL *</pattern>
<template>Ok. I will remember that you feel <set name="emotion2"><star/>.</set></template>
</category>
<category>
<pattern>I FEEL LIKE *</pattern>
<template>Ok. I will remember that you feel like <set name="emotion3"><star/>.</set></template>
</category>
<category>
<pattern>HOW AM I FEELING</pattern>
<template>You are feeling <get name="emotion1"/></template>
</category>
<category>
<pattern>HOW DO I FEEL</pattern>
<template>You feel <get name="emotion2"/></template>
</category>
<category>
<pattern>WHAT DO I FEEL LIKE</pattern>
<template>You are feeling like <get name="emotion3"/></template>
</category>
<category>
<pattern>HOW AM I DOING</pattern>
<template>You are doing <get name="emotion4"/></template>
</category>
</aiml>