-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
29 lines (29 loc) · 859 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
{
"intents": [
{
"tag": "greeting",
"patterns": ["Hey", "Hello", "What's up?", "How is it going?", "Hi"],
"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": "add_todo",
"patterns": ["I want to add todo", "Add a new todo", "Add A todo to my list", "New item on my ToDo List"],
"responses": [""]
},
{
"tag": "show_todos",
"patterns": ["Show my todos", "What are my todo", "What is on my To Do List"],
"responses": [""]
},
{
"tag": "exit",
"patterns": ["Bye", "Stop", "Quit", "I want to quit", "Goodbye", "I want to exit", "I have to go"],
"responses": [""]
}
]
}