Duino commited on
Commit
2aa756a
1 Parent(s): c3588af

Create for.json

Browse files
Files changed (1) hide show
  1. for.json +22 -0
for.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "intents": [
3
+ {
4
+ "intent": "greeting",
5
+ "commande": [
6
+ "hello",
7
+ "hi",
8
+ "hey"
9
+ ],
10
+ "answer": "Hello! How can I assist you?"
11
+ },
12
+ {
13
+ "intent": "weather",
14
+ "commande": [
15
+ "what's the weather like?",
16
+ "tell me the weather forecast",
17
+ "is it going to rain today?"
18
+ ],
19
+ "answer": "The weather today is sunny with a temperature of 25°C."
20
+ }
21
+ ]
22
+ }