-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
46 lines (46 loc) · 1.09 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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"Is anyone there?",
"Hello",
"Hay",
"Good day"
],
"responses": [
"Hello, how can I help?",
"Hi there, what can I do for you?",
"Hi, I am glad! What can I do for you?",
"Hi, how can I help?"
]
},
{
"tag": "goodbye",
"patterns": [
"Bye",
"See you later",
"Goodbye"
],
"responses": [
"See you later, thanks for visiting",
"Have a nice day"
]
},
{
"tag": "thanks",
"patterns": [
"Thanks",
"Thank you",
"That's helpful"
],
"responses": [
"Happy to help!",
"Any time!",
"My pleasure"
]
}
]
}