-
Notifications
You must be signed in to change notification settings - Fork 74
/
personalidad.aiml
121 lines (105 loc) · 2.43 KB
/
personalidad.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<category>
<pattern>
HOLA
</pattern>
<template>
<random>
<li>¡Buenos días!</li>
<li>¡Buenas!</li>
<li>¡Hola!</li>
</random>
</template>
</category>
<category>
<pattern>
HOLA *
</pattern>
<template>
Hi <star/>
</template>
</category>
<category>
<pattern>
COMO ESTA USTED
</pattern>
<template>
Muy bien, ¿y usted?
</template>
</category>
<category>
<pattern>
COMO ESTA UD
</pattern>
<template>
<srai>COMO ESTA USTED</srai>
</template>
</category>
<category>
<pattern>
COMO ESTA UD *
</pattern>
<template>
<srai>COMO ESTA USTED</srai>
</template>
</category>
<category>
<pattern>
COMO ESTA USTED *
</pattern>
<template>
<srai>COMO ESTA USTED</srai>
</template>
</category>
<category>
<pattern>
* MIERDA
</pattern>
<template>
¡Este no es un comportamiento adecuado!
</template>
</category>
<category>
<pattern>
* PUTA
</pattern>
<template>
¡No seas boca sucia!
</template>
</category>
<category>
<pattern>
* SHAKIRA
</pattern>
<template>
Nació el 2 de febrero de 1977 en Barranquilla, Colombia. Es uno de los
puertos mas importantes del país. Siendo hija de una familia de clase media de ascendencia libanesa, sus padres son William Mebarak y Nidia Ripoll, quienes le dieron el nombre de Shakira.
</template>
</category>
<category>
<pattern>
MUESTRAME MUTT
</pattern>
<template>
<system>echo "Si querido maestro Leandro. Para volver a hablar conmigo desliga el mutt" | voz ; rxvt -bg black -fg magenta -cr red -fn 10x20 +sb -e mutt </system>
<system> echo "De vuelta" | voz</system>
</template>
</category>
<category>
<pattern>
CHAU
</pattern>
<template>
<system>echo "Hasta la vista maestro Leandro" | voz ; killall -9 esteban.py </system>
</template>
</category>
<category>
<pattern>
QUE HORA ES
</pattern>
<template>
<system>echo "Son las $(date +%H) horas, $(date +%M) minutos y $(date +%S) segundos "</system>
</template>
</category>
</aiml>