-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintents.json
More file actions
38 lines (37 loc) · 1.08 KB
/
intents.json
File metadata and controls
38 lines (37 loc) · 1.08 KB
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
"intents": [
{
"tag": "saludo",
"patterns": ["hola", "buenos días", "buenas tardes", "buenas noches"],
"responses": ["¡Hola! ¿Cómo puedo ayudarte hoy?", "¡Hola! ¿Qué tal?"]
},
{
"tag": "necesita_ayuda",
"patterns": ["necesito ayuda", "puedes ayudarme", "necesito asistencia"],
"responses": ["Claro, ¿en qué necesitas ayuda?", "Estoy aquí para ayudarte. ¿Qué necesitas?"]
},
{
"tag": "despedida",
"patterns": ["adiós", "hasta luego", "nos vemos"],
"responses": ["¡Hasta luego! Que tengas un buen día.", "¡Adiós! Si necesitas algo más, no dudes en volver."]
},
{
"tag": "Informacion general",
"patterns": ["quien eres"],
"responses": ["soy quien te va aconsejar"]
},
{
"tag": "edad",
"patterns": ["cuantos años tienes"],
"responses": ["40 años"]
},
{
"tag": "Nombre",
"patterns": ["como te llamas"],
"responses": ["Lavinia"]
},
{
"tag": "lugar",
"patterns": ["de donde eres"],
"responses": ["Malaga"]
}
]