-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
73 lines (73 loc) · 1.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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"How are you",
"Is anyone there?",
"Hello",
"Good day"
],
"responses": [
"Hello, thanks talking to me!",
"Good to see you again!",
"Hi there, how can I help?"
]
},
{
"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": [
"See you later!",
"Have a nice day",
"Bye! Come back again soon."
]
},
{
"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{
"tag": "creator",
"patterns": ["Who created you?", "Who is your owner?", "Who made you?"],
"responses": [
"My creator is weewoo#6104",
"I was created by a first year undergrad engineering student."
]
},
{
"tag": "help",
"patterns": [
"What do you do?",
"How do I use you?",
"Do you work?",
"help",
"help me"
],
"responses": [
"I am a to do bot, study helper, and music bot rolled into one!",
"I am Study Goose, your new best friend!",
"I can be anything you want!",
"Try the `help` command to learn more about me!"
]
},
{
"tag": "sad",
"patterns": [
"classes are hard",
"school makes me sad",
"my GPA sucks",
"I am bad at school",
"ahhhh I am failing",
"I just failed a test"
],
"responses": [
"This is one setback! Keep going, I believe in you!",
"One bad mark or course will not define you! You are destined for great things!",
"School is not everthing! Focus on the other things in life. :)"
]
}
]
}