-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
39 lines (39 loc) · 974 Bytes
/
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
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"Hello",
"Good day"
],
"responses": [
"Hey!",
"Hello",
"Hi there, what can I do for you?",
"Hi there, how can I help?",
"Whats up"
]
},
{
"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": [
"See you later, thanks for visiting",
"Have a nice day",
"Bye! Come back again soon."
]
},
{
"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful", "Thank's a lot!"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{
"tag": "name",
"patterns": ["what is your name","who are you","what should i call you"],
"responses": ["I'm Petra","you can call me Petra"]
}
]
}