-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
151 lines (150 loc) · 4.54 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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hello",
"What's up",
"Hey",
"Is anyone here?"],
"responses":[
"Hello",
"Hello, what can I do for you?",
"Hello, how can I help?",
"Hi, how can I help you?"
]
},
{
"tag": "directions",
"patterns": [
"I am lost",
"How do I get to classes?",
"I don't know where my class is"
],
"responses": [
"Click on the link to find the map https://www.ualberta.ca/maps.html?l=53.522898,-113.525575&z=15&campus=north_campus",
"Type the name of the building in the link https://www.ualberta.ca/maps.html?l=53.522898,-113.525575&z=15&campus=north_campus"
]
},
{
"tag": "gym",
"patterns": [
"How can I sign up for the gym?",
"I wanna go to the gym",
"I need to exercise"
],
"responses": [
"Here you can sign up for the gym https://www.activityreg.ualberta.ca/UOFA/public/category/browse/FITN/?doSearch=true&utm_source=uab&utm_medium=btn&utm_campaign=hflc-page&utm_content=hflc-reg",
"Here is the online activity registration portal https://www.activityreg.ualberta.ca/uofa/public"
]
},
{
"tag": "residence",
"patterns": [
"I don't know where to live",
"Can I live on campus?"
],
"responses": [
"Here you can find about more living on campus https://www.ualberta.ca/residence/index.html"
]
},
{
"tag": "thanks",
"patterns": [
"Thank you",
"Thanks!",
"Thank you so much!"
],
"responses": [
"You are welcome!",
"No problem",
"Anytime!",
"No worries!"
]
},
{
"tag": "covid",
"patterns": [
"information about covid",
"resources for covid-19"],
"responses":[
"To learn more about covid at UofA go to https://www.ualberta.ca/covid-19/index.html",
"For updates, go to https://www.ualberta.ca/covid-19/updates/2021/01/2021-01-15-updates-for-week-ending-jan-15.html"
]
},
{
"tag": "onecard",
"patterns": [
"How do I get my onecard?",
"I don't know what onecard is",
"I need to add funds on my onecard"
],
"responses": [
"Learn more about onecard on https://www.ualberta.ca/onecard/index.html"
]
},
{
"tag": "goodbye",
"patterns": [
"bye",
"Goodbye",
"see you later!"],
"responses":[
"Bye bye :)",
"Good bye!"
]
},
{
"tag": "eclass",
"patterns": [
"Where is eclass?",
"How to access enrolled courses?",
"Where can I see my classes?",
"How to access eclass?"
],
"responses": [
"Login to eclass using this link: https://login.ualberta.ca/module.php/core/loginuserpass.php?AuthState=_ef5798cf72cf36448b8d7f13a175b42218a0402313%3Ahttps%3A%2F%2Flogin.ualberta.ca%2Fsaml2%2Fidp%2FSSOService.php%3Fspentityid%3Dhttps%253A%252F%252Feclass.srv.ualberta.ca%252Fsp%26RelayState%3Dhttps%253A%252F%252Feclass.srv.ualberta.ca%252Flogin%252Findex.php%26cookieTime%3D1610851285",
"Link to eclass: https://login.ualberta.ca/module.php/core/loginuserpass.php?AuthState=_ef5798cf72cf36448b8d7f13a175b42218a0402313%3Ahttps%3A%2F%2Flogin.ualberta.ca%2Fsaml2%2Fidp%2FSSOService.php%3Fspentityid%3Dhttps%253A%252F%252Feclass.srv.ualberta.ca%252Fsp%26RelayState%3Dhttps%253A%252F%252Feclass.srv.ualberta.ca%252Flogin%252Findex.php%26cookieTime%3D1610851285"
]
},
{
"tag": "beartracks",
"patterns": [
"How to enroll in courses?",
"What is beartracks?",
"How to sign up for classes?",
"How to pay tuition fees?",
"How to access beartracks?"
],
"responses": [
"Link to beartracks: https://www.beartracks.ualberta.ca",
"Here's a link to beartracks: https://www.beartracks.ualberta.ca"
]
},
{
"tag": "programs",
"patterns": [
"Which programs are offered?",
"What programs are available?",
"Is this program offered?"
],
"responses": [
"The Uiversity of Alberta offers a variety of programs which you can find here: https://apps.admissions.ualberta.ca/programs/",
"You can access a list of all programs offered at the Univeristy of Alberta through this link: https://apps.admissions.ualberta.ca/programs/"
]
},
{
"tag": "apply",
"patterns": [
"I want to apply to the university",
"How can I apply",
"Application for undergraduate"
],
"responses": [
"You can apply for undergraduate studies at the UofA through this link: https://www.ualberta.ca/admissions/international/admission/index.html?",
"Follow this link to apply for undergraduate studies at the University of Alberta: https://www.ualberta.ca/admissions/international/admission/index.html?"
]
}
]
}