-
Notifications
You must be signed in to change notification settings - Fork 18
/
volume_controls.aiml
61 lines (51 loc) · 1.42 KB
/
volume_controls.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
<aiml version="1.0.1" encoding="UTF-8">
<!-- VOLUME CONTROLS -->
<category>
<pattern>INCREASE VOLUME</pattern>
<template>
<system>python volume.py i 10</system>
</template>
</category>
<category>
<pattern>DECREASE VOLUME</pattern>
<template>
<system>python volume.py d 10</system>
</template>
</category>
<category>
<pattern>INCREASE VOLUME BY *</pattern>
<template>
<system>python volume.py i <star/></system>
</template>
</category>
<category>
<pattern>INCREASE VOLUME TO *</pattern>
<template>
<system>python volume.py s <star/></system>
</template>
</category>
<category>
<pattern>DECREASE VOLUME BY *</pattern>
<template>
<system>python volume.py d <star/></system>
</template>
</category>
<category>
<pattern>DECREASE VOLUME TO *</pattern>
<template>
<system>python volume.py s <star/></system>
</template>
</category>
<category>
<pattern>SET VOLUME TO *</pattern>
<template>
<system>python volume.py s <star/></system>
</template>
</category>
<category>
<pattern>WHAT IS * VOLUME</pattern>
<template>
<system>python volume.py g</system>
</template>
</category>
</aiml>