Spaces:
Build error
Build error
Upload intents.json
Browse files- intents.json +34 -0
intents.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"text": "hola",
|
| 4 |
+
"intent": "greet"
|
| 5 |
+
},
|
| 6 |
+
{
|
| 7 |
+
"text": "buenos d\u00edas",
|
| 8 |
+
"intent": "greet"
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"text": "adi\u00f3s",
|
| 12 |
+
"intent": "goodbye"
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"text": "hasta luego",
|
| 16 |
+
"intent": "goodbye"
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"text": "qu\u00e9 horario tienen?",
|
| 20 |
+
"intent": "ask_hours"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"text": "a qu\u00e9 hora abren?",
|
| 24 |
+
"intent": "ask_hours"
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"text": "c\u00f3mo me registro?",
|
| 28 |
+
"intent": "ask_registration"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"text": "quiero matricularme",
|
| 32 |
+
"intent": "ask_registration"
|
| 33 |
+
}
|
| 34 |
+
]
|