-
Notifications
You must be signed in to change notification settings - Fork 1
/
Alan ai code
64 lines (60 loc) · 2.62 KB
/
Alan ai code
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
// Use this sample to create your own voice commands
intent('hello world', p => {
p.play('(hello|hi there)');
});intent('(hello|hi alan|hi)', p => {
p.play('(hello first year|hi freshie)');
});
intent('How to check my (R D|roll direct)', 'who is my r d',p=> {
p.play('you can check your r d at nith.netlify.app');
});
intent('how (would|can) i (email|contact) my r d',p=>{
p.play('your R D (have same email as of yours ,just subtract 1 from first two digits of your email i d|can contact you if you write him an email)');
});
intent('what does this app do?','how does this work?','what can you do','what can i do here?','how to use this app?',p=>{
p.play('i am here to help first year students as they are new to college.');
p.play("I can help you in finding your R d ,just say , how to email my R D ");
p.play("i can provide you number of dean academic");
p.play("i can tell you names of cultural clubs in N I T Hamirpur");
}
);
intent('what is the (number|mobile number|phone number) of dean academic?',p=>{
p.play("please note,01972 254006 - professor ram naresh kumar,");
p.play("you may also require his email i d , so here you go, dac@nith.ac.in");
});
intent('what are the names of cultural clubs at n i t hamirpur','how many cultural clubs are in n i t hamirpur','cultural clubs','cultural clubs in n i t hamirpur',p=>{
p.play("there are 15 clubs in my knoweledge");
p.play("organisation club");
p.play("music club");
p.play("P r club");
p.play("dance club");
p.play("finearts club");
p.play("discipline club");
p.play("technical club");
p.play("english club");
p.play("i n s and control club");
p.play("decoration club");
p.play("hindi club");
p.play("informals club");
p.play("pixonoids ");
p.play("dramatics club");
p.play("web team");
p.play("anything else?");
});
intent('what is the name of technical fest of NIT HAMIRPUR',p=>{
p.play("NIMBUS is the Technical fest of NIT HAMIRPUR");
});
intent('Who is the Director of NIT HAMIRPUR',p=>{
p.play("H.M Suryawanshi");
});
intent('Which type of institute is NIT HAMIRPUR',p=>{
p.play("NIT HAMIRPUR is Institute of National Importance");
});
intent('On which basis admission is granted in NIT HAMIRPUR',p=>{
p.play("On the basis of JEE MAINS Rank");
});
intent('what skills are required to join pixonoids club',p=>{
p.play("You should know the basics of video editing and animations");
});
intent('what is the name of cultural fest of NIT HAMIRPUR',p=>{
p.play("Hillffair is the cultural fest of NIT HAMIRPUR");
});