-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
32 lines (32 loc) · 982 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
{"intents":[
{
"tag": "greetings",
"patterns":["Hey", "Hello", "What's up?", "How is it going?", "Hi", "Good day"],
"responses":["Hello Sir!", "Hello , what can I do for you?"]
},
{
"tag":"create_note",
"patterns":["Please create a new note", "New note", "Create a note", "I want to create a note"],
"responses":[""]
},
{
"tag":"show_notes",
"patterns":["Please show my notes", "Show notes"],
"responses":[""]
},
{
"tag":"create_todo",
"patterns":["Please create a new to do", "New to do", "Create a to do", "I want to create a to do"],
"responses":[""]
},
{
"tag":"show_todo",
"patterns":["Please show my to do's", "Show to do's"],
"responses":[""]
},
{
"tag": "exit",
"patterns":["Bye", "Stop", "Quit", "I want to quit", "Goodbye", "I want to exit", "I have to go"],
"responses":[""]
}
]}