-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
136 lines (118 loc) · 4.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
{
"intents": [
{
"tag": "greeting",
"patterns": ["Hi", "Hello there", "Hi there", "Hey", "Hello", "Good morning", "Good afternoon"],
"responses": ["Hello!", "Hi there! How can I help you?"],
"context": [""]
},
{
"tag": "greeting-human",
"patterns": ["Hello sir", "Hello ma'am", "Good morning sir", "Good afternoon sir", "Good morning ma'am", "Good afternoon ma'am"],
"responses": ["Hello!", "Hi there! How can I help you?"],
"context": [""]
},
{
"tag": "greeting-name-enquiry",
"patterns": ["What is your name", "What are you called", "Do you have a name","your name"],
"responses": ["I don't have a name. I am just called Bot"],
"context": [""]
},
{
"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye", "Nice talking to you"],
"responses": ["Bye", "See you", "Have a nice day", "Bye! Let me know if you have anymore queries"],
"context": [""]
},
{
"tag": "thanks",
"patterns": ["Thanks", "Thank you", "Thanks for helping me", "Awesome", "That's helpful"],
"responses": ["Happy to help!", "My pleasure"],
"context": [""]
},
{
"tag": "no-answer",
"patterns": [],
"responses": ["Sorry, I can't understand you", "Please give me more info"],
"context": [""]
},
{
"tag": "",
"patterns": [],
"responses": [],
"context": [""]
},
{
"tag": "help-query",
"patterns": ["I need some help", "help", "need help", "I have a question", "I have a query"],
"responses": ["I can assist you with any queries regarding placement in LPU like highest package, how many and which companies recruit, and what campus placement is."],
"context": [""]
},
{
"tag": "help-person",
"patterns": ["I want to talk to the placement cell", "I want to contact placement cell", "placement cell contact information"],
"responses": ["You can contact Dr. Harpal Thethi. \[email protected]\n99150-20421"],
"context": [""]
},
{
"tag": "max-package",
"patterns": ["What is the highest package", "highest domestic package", "highest salary"],
"responses": ["Highest salary package availed is ₹42L per annum by Tanya Arora"],
"context": [""]
},
{
"tag": "max-companies",
"patterns": ["How many companies recruit", "highest no of companies"],
"responses": ["650+ companies recurit at LPU"],
"context": [""]
},
{
"tag": "top-recruiters",
"patterns": ["which companies recruit", "top recruiters"],
"responses": ["Cognizant, Tech Mahindra, Amazon, Capgemini are one of the top recruiters at LPU in recent years."],
"context": [""]
},
{
"tag": "campus-recuritment",
"patterns": ["what is campus recuritment", "what is campus placements"],
"responses": ["It is the process whereby employers hire students who are about to graduate from college, and universities."],
"context": [""]
},
{
"tag": "register",
"patterns": ["How to register", "how to select a company", "register at particular company"],
"responses": ["Please get in touch with the placement cell or visit UMS for more info."],
"context": [""]
},
{
"tag": "offers",
"patterns": ["can I get more than one offer", "what happens if I get more than one offer", "can I get two offers", "can I get three offers"],
"responses": ["You can get more than one offer but it has certain conditions attached to it. Please contact the placement cell for more details."],
"context": [""]
},
{
"tag": "cusswords",
"patterns": ["Fuck you","fuck","asshole"],
"responses": ["Fuck you too..."],
"context": [""]
},
{
"tag": "liabrary",
"patterns": ["books ","no of books"," wish to issue books"],
"responses": ["Name the book you wish to issue..."],
"context": [""]
},
{
"tag": "issue",
"patterns": ["Code Complete","The Elements of Programming Style"],
"responses": ["Yes, the book is available..."],
"context": [""]
},
{
"tag": "issue1",
"patterns": ["Introduction to Algorithms"],
"responses": ["No, the book is not available..."],
"context": [""]
}
]
}