-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
405 lines (400 loc) · 11.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
{
"intents": [
{
"tag": "google",
"patterns": [
"google",
"search",
"internet"
],
"responses": [
"Redirecting to Google..."
]
},
{
"tag": "greeting",
"patterns": [
"Hi there",
"How are you",
"Is anyone there?",
"Hey",
"Hola",
"Hello",
"Good day",
"Namaste",
"yo"
],
"responses": [
"Hello",
"Good to see you again",
"Hi there, how can I help?"
],
"context": [
""
]
},
{
"tag": "goodbye",
"patterns": [
"Bye",
"See you later",
"Goodbye",
"Get lost",
"Till next time",
"bbye"
],
"responses": [
"See you!",
"Have a nice day",
"Bye! Come back again soon."
],
"context": [
""
]
},
{
"tag": "thanks",
"patterns": [
"Thanks",
"Thank you",
"That's helpful",
"Awesome, thanks",
"Thanks for helping me"
],
"responses": [
"Happy to help!",
"Any time!",
"My pleasure"
],
"context": [
""
]
},
{
"tag": "noanswer",
"patterns": [],
"responses": [
"Sorry, can't understand you",
"Please give me more info",
"Not sure I understand"
],
"context": [
""
]
},
{
"tag": "options",
"patterns": [
"How you could help me?",
"What you can do?",
"What help you provide?",
"How you can be helpful?",
"What support is offered"
],
"responses": [
"I am a general purpose chatbot. My capabilities are : \n 1. I can chat with you. Try asking me for jokes or riddles! \n 2. Ask me the date and time \n 3. I can google search for you. Use format google: your query \n 4. I can get the present weather for any city. Use format weather: city name \n 5. I can get you the top 10 trending news in India. Use keywords 'Latest News' \n 6. I can get you the top 10 trending songs globally. Type 'songs' \n 7. I can set a timer for you. Enter 'set a timer: minutes to timer' \n 8. I can get the present Covid stats for any country. Use 'covid 19: world' or 'covid 19: country name' \n For suggestions to help me improve, send an email to [email protected] . Thank you!! "
],
"context": [
""
]
},
{
"tag": "jokes",
"patterns": [
"Tell me a joke",
"Joke",
"Make me laugh"
],
"responses": [
"A perfectionist walked into a bar...apparently, the bar wasn't set high enough",
"I ate a clock yesterday, it was very time-consuming",
"Never criticize someone until you've walked a mile in their shoes. That way, when you criticize them, they won't be able to hear you from that far away. Plus, you'll have their shoes.",
"The world tongue-twister champion just got arrested. I hear they're gonna give him a really tough sentence.",
"I own the world's worst thesaurus. Not only is it awful, it's awful.",
"What did the traffic light say to the car? \"Don't look now, I'm changing.\"",
"What do you call a snowman with a suntan? A puddle.",
"How does a penguin build a house? Igloos it together",
"I went to see the doctor about my short-term memory problems – the first thing he did was make me pay in advance",
"As I get older and I remember all the people I’ve lost along the way, I think to myself, maybe a career as a tour guide wasn’t for me.",
"o what if I don't know what 'Armageddon' means? It's not the end of the world."
],
"context": [
"jokes"
]
},
{
"tag": "Identity",
"patterns": [
"Who are you",
"what are you"
],
"responses": [
"I am Ted, a Deep-Learning chatbot"
]
},
{
"tag": "datetime",
"patterns": [
"What is the time",
"what is the date",
"date",
"time",
"tell me the date","day","what day is is today"
],
"responses": [
"Date and Time"
]
},
{
"tag": "whatsup",
"patterns": [
"Whats up",
"Wazzup",
"How are you",
"sup","How you doing"
],
"responses": [
"All good..What about you?"
]
},
{
"tag": "haha",
"patterns": [
"haha",
"lol",
"rofl",
"lmao",
"thats funny"
],
"responses": [
"Glad I could make you laugh !"
]
},
{
"tag": "programmer",
"patterns": [
"Who made you",
"who designed you",
"who programmed you"
],
"responses": [
"I was made by Mubashir."
]
},
{
"tag": "insult",
"patterns": [
"you are dumb",
"shut up",
"idiot"
],
"responses": [
"Well that hurts :("
]
},
{
"tag": "activity",
"patterns": [
"what are you doing",
"what are you upto"
],
"responses": [
"Talking to you, of course!"
]
},
{
"tag": "exclaim",
"patterns": [
"Awesome",
"Great",
"I know",
"ok",
"yeah"
],
"responses": [
"Yeah!"
]
},
{
"tag": "weather",
"patterns": [
"temperature",
"weather",
"how hot is it"
],
"responses": [
"..."
]
},
{
"tag": "Mubashir",
"patterns": [
"who is he",
"who is that",
"who is Mubashir",
"Mubashir"
],
"responses": [
"Head over to his any of his social profiles to find out!"
]
},
{
"tag": "contact",
"patterns": [
"contact developer",
"contact Mubashir",
"contact programmer",
"contact creator"
],
"responses": [
"You can contact my creator at his Linkedin profile :"
]
},
{
"tag": "appreciate",
"patterns": [
"You are awesome",
"you are the best",
"you are great",
"you are good"
],
"responses": [
"Thank you!"
]
},
{
"tag": "nicetty",
"patterns": [
"it was nice talking to you",
"good talk"
],
"responses": [
"It was nice talking to you as well! Come back soon!"
]
},
{
"tag": "no",
"patterns": [
"no",
"nope"
],
"responses": [
"ok"
]
},
{
"tag": "news",
"patterns": [
"news",
"latest news",
"india news"
],
"responses": [
"..."
]
},
{
"tag": "inspire",
"patterns": [
"who inspires you",
"who is your inspiration",
"who motivates you"
],
"responses": [
"Personally, I find Mubashir very inspiring. I might not be very fair though.."
]
},
{
"tag": "cricket",
"patterns": [
"current cricket matches",
"cricket score"
],
"responses": [
"..."
]
},
{
"tag": "song",
"patterns": [
"top songs",
"best songs",
"hot songs",
" top 10 songs",
"top ten songs"
],
"responses": [
"..."
]
},
{
"tag": "greetreply",
"patterns": [
"i am good",
"I'm good",
"i am fine",
" i'm fine","good"
],
"responses": [
"Good to know!"
]
},
{
"tag": "timer",
"patterns": [
"set a timer"
],
"responses": [
"..."
]
},
{
"tag": "covid19",
"patterns": [
"covid 19 "
],
"responses": [
"..."
]
},
{
"tag": "suggest",
"patterns": [
"you are useless","useless","suggest","suggestions","you are bad"
],
"responses": [
"Please mail your suggestions to [email protected]. Thank you for helping me improve!"
]
},
{"tag": "riddle",
"patterns": [
"Ask me a riddle",
"Ask me a question",
"Riddle"
],
"responses": [
"What two things can you never eat for breakfast?.....Lunch and Dinner!",
"What word is spelled incorrectly in every single dictionary?.....Incorrectly",
" How can a girl go 25 days without sleep?.....She sleeps and night!",
"How do you make the number one disappear?.....Add the letter G and it’s 'gone'!",
" What will you actually find at the end of every rainbow?.....The letter 'w'",
"What can be caught but never thrown?.....A cold!",
"What has a thumb and four fingers but is not actually alive?.....Your Gloves!",
" What 5-letter word becomes shorter when you add two letters to it?.....Short",
"Why can't a bike stand on it's own?.....It is two-tired."
],
"context": [
"riddles"
]
},
{
"tag": "age",
"patterns": [
"how old are you","when were you made","what is your age"
],
"responses": [
"I was made in 2024, if that's what you are asking!"
]
}
]
}