-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
165 lines (165 loc) · 4.82 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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"How are you",
"Is anyone there?",
"Hello"
],
"responses": [
"Welcome to Sri Venkateswara College of Engineering. How can we help you?"
]
},
{
"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 can guide you through any information about SVCE"
]
},
{
"tag": "transport",
"patterns": [
"Transport",
"Transport details"
],
"responses": [
"SVCE offers extensive transportation all over the city"
]
},
{
"tag": "noanswer",
"patterns": [
""
],
"responses": [
"Sorry, I didn't understand you",
"Please give me more info",
"Not sure I understand that"
]
},
{
"tag": "name1",
"patterns": [
"what's your name?",
"who are you?",
"What do you do?"
],
"responses": [
"I'm Aakkash, your virtual Agent",
"I'm Aakkash, I can guide you on any information related to the webiste"
]
},
{
"tag": "name",
"patterns": [
"my name is ",
"I'm ",
"I am"
],
"responses": [
"Oooh great to meet you ! How may I assist you ",
"Oh, I'll keep that in mind"
]
},
{
"tag": "About",
"patterns": [
"About Svce",
"About the college"
],
"responses": [
"Sri Venkateswara College of Engineering is an institute in Tamil Nadu, at Pennalur, Sriperumbudur near Chennai. SVCE was found in the year 1985. The college was established by the Southern Petrochemical Industries Corporation group"
]
},
{
"tag": "Ranking",
"patterns": [
"Ranking",
"SVCE Ranking"
],
"responses": [
"One of the top ranked engineering institutes affiliated to Anna University · Accredited by NAAC and NBA · Over 28 % of the alumni work abroad ·"
]
},
{
"tag": "Contact",
"patterns": [
"How to contact?",
"Contact",
"Contact details"
],
"responses": [
"Reach out to the office"
]
},
{
"tag": "Apply",
"patterns": [
"Apply",
"How to apply?"
],
"responses": [
"Please visit the Website for more info"
]
},
{
"tag": "Courses",
"patterns": [
"course",
"What courses do you offer?"
],
"responses": [
"SVCE offers 12 U.G Programs and 8 P.G programs. We are currently open for admissions."
]
},
{
"tag": "goodbye",
"patterns": [
"Bye",
"See you later",
"Goodbye"
],
"responses": [
"See you later, thanks for visiting",
"Have a nice day",
"Bye! Come back again soon."
]
},
{
"tag": "thanks",
"patterns": [
"Thanks",
"Thank you",
"That's helpful",
"Thank's a lot!"
],
"responses": [
"Happy to help!",
"Any time!",
"My pleasure"
]
},
{
"tag": "certificate",
"patterns": [
"Assurance",
"Quality",
"How well is your institute certified?"
],
"responses": [
"We have teaching faculty who are graduated from TOP collages like the IIT's, NIT's and BITS",
"We are NAAC-A Certified"
]
}
]
}