File size: 440 Bytes
2aa756a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
{
"intents": [
{
"intent": "greeting",
"commande": [
"hello",
"hi",
"hey"
],
"answer": "Hello! How can I assist you?"
},
{
"intent": "weather",
"commande": [
"what's the weather like?",
"tell me the weather forecast",
"is it going to rain today?"
],
"answer": "The weather today is sunny with a temperature of 25°C."
}
]
}
|