-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
51 lines (50 loc) · 2.2 KB
/
intents.json
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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "How are you", "Is anyone there", "Hello", "Good day", "Whats up"],
"responses": ["Hi there, how can I help?"],
"context_set": ""
},
{"tag": "goodbye",
"patterns": ["cya", "by","bye", "See you later", "Goodbye", "I am Leaving", "Have a Good day", "see you later"],
"responses": ["Sad to see you go", "Talk to you later", "Goodbye!"],
"context_set": ""
},
{"tag": "weather",
"patterns": ["what is the weather","weather","what is the weather outside", "temputure"],
"responses": ["show_weather"],
"context_set": ""
},
{"tag": "news",
"patterns": ["whats is going on","tell me the news", "news"],
"responses": ["the news is (this feature is under constuction) "],
"context_set": ""
},
{"tag": "abilities",
"patterns": ["what can you do","what can i do with you","what are some of your abilities"],
"responses": ["I can do many tasks such as tell you the wether or tell you a joke"],
"context_set": ""
},
{"tag": "jokes",
"patterns": ["tell me a joke","joke","make me laugh","tell me something funny"],
"responses": ["What do you call a dinosaur that is sleeping? , A dino-snore!","What is fast, loud and crunchy , A rocket chip!","Why did the teddy bear say no to dessert?,Because she was stuffed. ","What has ears but cannot hear?,A cornfield."
,"What did the left eye say to the right eye?,Between us, something smells! "
],
"context_set": ""
},
{"tag": "take a note",
"patterns": ["take a note","note","remeber this please"],
"responses": ["take_note"],
"context_set": ""
},
{"tag": "math",
"patterns": ["what is 1 plus 1","what is 1 + 1","times","+","-","/","*"],
"responses": ["math"],
"context_set": ""
},
{"tag": "time",
"patterns": ["what time is it","time","what is the time "],
"responses": ["time"],
"context_set": ""
}
]
}