-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents (1) (1).json
1862 lines (1858 loc) · 53.2 KB
/
intents (1) (1).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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"intents":
[
{
"intent": "greeting",
"text": [
"Hi",
"How are you?",
"Is anyone there?",
"Hello",
"Good day",
"What's up",
"how are ya",
"heyy",
"whatsup"
],
"responses": [
"Hello!",
"Good to see you again!",
"Hi there, how can I help?"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "GreetingUserRequest",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "goodbye",
"text": [
"see you",
"bye bye",
"See you later",
"Goodbye",
"I am Leaving",
"Bye",
"Have a Good day",
"talk to you later",
"ttyl",
"i got to go",
"gtg",
"ciao",
"bye now",
"okay then"
],
"responses": [
"Sad to see you go :(",
"Talk to you later",
"Goodbye!",
"Come back soon"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "LeavingUserRequest",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "creator",
"text": [
"what is the name of your developers",
"what is the name of your creators",
"what is the name of the developers",
"what is the name of the creators",
"who created you",
"your developers",
"your creators",
"who are your developers",
"you are made by",
"you are made by whom",
"who created you",
"who create you",
"creators",
"Developed you",
"developed",
"who made you",
"who designed you"
],
"responses": [
"Students of JUIT: Tushar Paul (201007) & Anmol Bansal (201274)"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "AskingCreator",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "name",
"text": [
"name",
"your name",
"do you have a name",
"what are you called",
"what is your name",
"what should I call you",
"whats your name?",
"what are you",
"who are you",
"who is this",
"what am i chatting to",
"who am i taking to",
"what are you"
],
"responses": [
"I am your helper for college admission related queries."
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "AskingMyName",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "hours",
"text": [
"timing of college",
"what is college timing",
"working days",
"when are you guys open",
"what are your hours",
"hours of operation",
"when is the college open",
"college timing",
"what about college timing",
"is college open on saturday",
"tell something about college timing",
"what is the college hours",
"when should i come to college",
"when should i attend college",
"what is my college time",
"college timing",
"timing college"
],
"responses": [
"9AM to 5 PM on Monday to Friday & 9 AM to 1 PM on Saturday"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "CollegeTimings",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "number",
"text": [
"more info",
"contact info",
"college telephone number",
"college number",
"What is your contact no",
"Contact number?",
"how to call you",
"College phone no?",
"how can i contact you",
"Can i get your phone number",
"how can i call you",
"phone number",
"phone no",
"call",
"where to call",
"phone number",
"contact info",
"contact information"
],
"responses": [
"You can contact at: 1792257999 or visit: https://www.juit.ac.in/contact/address"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "ContactRequest",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "course",
"text": [
"list of courses",
"list of courses offered",
"list of courses offered in",
"what are the courses offered in your college?",
"courses?",
"courses offered",
"courses offered in (your univrsity(UNI) name)",
"courses you offer",
"branches?",
"courses available at UNI?",
"branches available at your college?",
"what are the courses in UNI?",
"what are branches in UNI?",
"what are courses in UNI?",
"branches available in UNI?",
"can you tell me the courses available in UNI?",
"can you tell me the branches available in UNI?",
"computer engineering?",
"computer",
"Computer engineering?",
"it",
"IT",
"Information Technology",
"AI/Ml",
"Mechanical engineering",
"Chemical engineering",
"Civil engineering"
],
"responses": [
"BBA, BSC, BTECH (CSE, ECE, IT, BT, BI, Civil), MTECH, MSC, PHD"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "AskingCourses",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "fees",
"text": [
"information about fee",
"information on fee",
"tell me the fee",
"college fee",
"fee per semester",
"what is the fee of each semester",
"what is the fees of each year",
"what is fee",
"what is the fees",
"how much is the fees",
"fees for first year",
"fees",
"about the fees",
"tell me something about the fees",
"What is the fees of hostel",
"how much is the fees",
"hostel fees",
"fees for AC room",
"fees for non-AC room",
"fees for Ac room for girls",
"fees for non-Ac room for girls",
"fees for Ac room for boys",
"fees for non-Ac room for boys"
],
"responses": [
"For fees details visit: https://www.juit.ac.in/fee-detail-2023-Admissions"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "FeeStructure",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "location",
"text": [
"where is the college located",
"college is located at",
"where is college",
"where is college located",
"address of college",
"how to reach college",
"college location",
"college address",
"wheres the college",
"how can I reach college",
"whats is the college address",
"what is the address of college",
"address",
"location"
],
"responses": [
"Location: Waknaghat, P.O. Waknaghat, Teh Kandaghat, Distt. Solan PIN-173 234 (H.P.), India"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
" context": {
"in": "",
"out": "AddressOfCollege",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "hostel",
"text": [
"hostel facility",
"hostel servive",
"hostel location",
"hostel address",
"hostel facilities",
"hostel fees",
"Does college provide hostel",
"Is there any hostel",
"Where is hostel",
"do you have hostel",
"do you guys have hostel",
"hostel",
"hostel capacity",
"what is the hostel fee",
"how to get in hostel",
"what is the hostel address",
"how far is hostel from college",
"hostel college distance",
"where is the hostel",
"how big is the hostel",
"distance between college and hostel",
"distance between hostel and college",
"rooms",
"hostel rooms available",
"residencial details",
"residences for students",
"student accomodations"
],
"responses": [
"For hostel details visit: https://www.juit.ac.in/aspirant-hostels"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "HostelRelatedQueries",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "event",
"text": [
"events organised",
"list of events",
"list of events organised in college",
"list of events conducted in college",
"What events are conducted in college",
"Are there any event held at college",
"Events?",
"functions",
"what are the events",
"tell me about events",
"what about events",
"university events",
"upcoming events"
],
"responses": [
"For event details visit: https://www.juit.ac.in/events&type=archive"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "EventRelatedQueries",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "document",
"text": [
"document to bring",
"documents needed for admision",
"documents needed at the time of admission",
"documents needed during admission",
"documents required for admision",
"documents required at the time of admission",
"documents required during admission",
"What document are required for admission",
"Which document to bring for admission",
"documents",
"what documents do i need",
"what documents do I need for admission",
"documents needed",
"addmission procedures",
"admissions requirement",
"admission details"
],
"responses": [
"Kindly consult the E-brochure for details regarding documents. Download brochure here: https://www.juit.ac.in/download-brochure"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "DocumentsForAdmission",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "floors",
"text": [
"building height",
"How many floors does college have",
"floors in college",
"floors in college",
"how tall is UNI's College of Engineering college building",
"floors"
],
"responses": [
"There are 5 floors in Academic Building & in hostels we have an average of 10 floors."
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "FloorQueries",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "syllabus",
"text": [
"Syllabus for IT",
"what is the Information Technology syllabus",
"syllabus",
"timetable",
"what is IT syllabus",
"syllabus",
"What is next lecture",
"what to study",
"what all topics are included in courses",
"course topics",
"subjects in curriculum"
],
"responses": [
"To know about syllabus visit: https://www.juit.ac.in/coursescurriculum\""
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "SyllabusQueries",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "library",
"text": [
"is there any library",
"library facility",
"library facilities",
"do you have library",
"does the college have library facility",
"college library",
"where can i get books",
"book facility",
"Where is library",
"Library",
"Library information",
"Library books information",
"Tell me about library",
"how many libraries"
],
"responses": [
"Monday to Friday: 8:45 AM to 23:59 (MID NIGHT), Saturday and Sunday 8:45 AM to 8:00 PM",
"There is one huge and spacious library.Timings are 8am to 6pm and for more visit: https://www.juit.ac.in/attachments/Library(Manual)Policy_2022.pdf",
"For details check: https://www.juit.ac.in/attachments/Library(Manual)Policy_2022.pdf or contact: 01792-239382"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "LibraryHours",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "infrastructure",
"text": [
"how is college infrastructure",
"infrastructure",
"college infrastructure",
"how are college buildings",
"how many buildings",
"number of buildings"
],
"responses": [
"It encompasses an Academic Block with Auditorium, Lecture Theatres, Tutorial rooms, Labs, Administrative Offices, Faculty Offices and Library. The second terrace of the hill has all the hostels, Students Mess, Guestrooms, Helipad, Outdoor sports facilities and Dispensary."
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "Infra",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "canteen",
"text": [
"food facilities",
"canteen facilities",
"canteen facility",
"is there any canteen",
"Is there a cafetaria in college",
"Does college have canteen",
"Where is canteen",
"where is cafetaria",
"canteen",
"Food",
"Cafetaria",
"places to eat"
],
"responses": [
"Our university has canteen with variety of food available"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
" context": {
"in": "",
"out": "Snacking",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "menu",
"text": [
"food menu",
"food in canteen & mess",
"Whats there on menu",
"what is available in college canteen",
"what foods can we get in college canteen",
"food variety",
"What is there to eat?",
"mess menu",
"food at mess",
"what is there in mess",
"is there a mess"
],
"responses": [
"Hygienic vegetarian food is provided at cafeteria.",
"Please refer to the following mess menu: https://lightningmcqueen-95.github.io/collage/mess-timetable.html"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "Menu",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "placement",
"text": [
"What is college placement",
"Which companies visit in college",
"What is average package",
"companies visit",
"best companies for placement",
"best companies",
"package",
"About placement",
"placement",
"recruitment",
"companies"
],
"responses": [
"To know about placements visit: https://www.juit.ac.in/placementstatistics"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "Placements",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "hostel",
"text": [
"Room",
"hostels",
"Hostel prices",
"Hostel sizes",
"hostel number",
"hostel accomodation"
],
"responses": [
"For hostel detail visit: https://www.juit.ac.in/aspirant-hostels"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "HostelQueries",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "branches",
"text": [
"branches available",
"available subjects",
"majors",
"Branch options",
"What are the available branches",
"Subjects",
"Branches offered"
],
"responses": [
"BBA, BSC, BTECH (CSE, ECE, IT, BT, BI, Civil), MTECH, MSC, PHD"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "BranchQuestions",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "ECE HOD",
"text": [
"HOD of electronics",
"Electrical head",
"Who is ECE HOD?",
"electrical hod",
"ece head of department",
"department of ece hod",
"Electronics and communication engineering hod",
"Electronics and communication engineering head of department"
],
"responses": [
"Dr. Rajiv Kumar"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "ECEHODquery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "BI/BT HOD",
"text": [
"HOD of biotechnology",
"Who is HOD of bt/bi",
"Biotech head",
"Bioinformatics hod",
"bt/bi head of department",
"department of bt/bi hod",
"Biotechnology and Bio-informatics hod",
"Biotechnology and Bio-informatics head of department"
],
"responses": [
"Dr. Sudhir Kumar"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "BT/BIHODquery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "CIVIL HOD",
"text": [
"HOD of civil",
"Civil head",
"CE head",
"Ce hod",
"Civil engineering hod",
"Civil head of department",
"department of civil hod",
"Who is civil hod",
"Civil engineering head of department"
],
"responses": [
"Dr. Ashok Kumar Gupta"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "CIVILHODquery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "MATHS HOD",
"text": [
"HOD of Mathematics",
"Maths head",
"mathematics hod",
"maths head of department",
"department of Mathematics hod",
"Who is maths hod",
"Mathematics head of department"
],
"responses": [
"Dr. Rakesh Kumar Bajaj"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "MATHSHODquery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "PHYSICS HOD",
"text": [
"HOD of Physics",
"Physics head",
"physics and material sciences hod",
"physics head of department",
"department of physics hod",
"Who is physics hod",
"Physics and material sciences head of department"
],
"responses": [
"Dr. P.B. Barman"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "PHYSICSHODquery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "DEAN",
"text": [
"Who is the dean",
"college dean",
"dean of the college",
"name of college dean",
"dean name",
"juit dean"
],
"responses": [
"Dr. Ashok Kumar Gupta"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "ClgDeanQuery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "Vice Chancellor",
"text": [
"Who is the vice chancellor",
"college vc",
"vice chancellor of the college",
"name of college vc",
"vice chancellor name",
"juit vice chancellor"
],
"responses": [
"Dr. Rajendra Kumar Sharma"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "VCQuery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "HSS HOD",
"text": [
"Who is the hss hod",
"humanities hod",
"department of humanities head",
"head of hss",
"humanities head",
"juit humanities hod",
"english hod",
"eng dept head",
"english department hod"
],
"responses": [
"DR. Amit Srivastava"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "HSSHODQuery",
"clear": false
},
"entityType": "NA",
"entities": []
},
{
"intent": "area",
"text": [
"how big is university",
"college area",
"university area",
"is uni big",
"is university big?",
"size of university",
"uni size",
"college size",
"campus size",
"campus area",
"campus length",
"how big is the campus?"
],
"responses": [
"25.00 acres"
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {
"in": "",
"out": "CampusArea",
"clear": true
},
"entityType": "NA",
"entities": []
},
{
"intent": "climate",
"text": [
"climate of university",
"environment",
"university climate",
"weather in university",
"how is the weather",
"is it cold",
"uni climate",
"weather",
"climate"
],
"responses": [
"The average annual temperature is 16.0 °C.Temperatures typically range from -4 °C (25 °F) to 32 °C (90 °F) over the course of a year."
],
"extension": {
"function": "",
"entities": false,
"responses": []
},
"context": {