-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintents.json
More file actions
38 lines (38 loc) · 748 Bytes
/
Copy pathintents.json
File metadata and controls
38 lines (38 loc) · 748 Bytes
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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"How are you",
"Is anyone there?",
"Hello",
"Good day"
],
"responses": [
"Hey :-)",
"Hello, thanks for visiting",
"Hi there, what can I do for you?",
"Hi there, how can I help?"
]
},
{
"tag": "goodbye",
"patterns": [
"bye",
"get lost",
"let's end our chat",
"that's it for now",
"exit yourself",
"shutdown"
],
"responses": [
"bye bye",
"have a good day",
"i am waiting for your command sir",
"see ya"
]
}
]
}