-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
22 lines (21 loc) · 959 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
{"intents": [
{"tag": "greeting",
"patterns": ["Hey","Hello","What's up", "How is it going","Hi"],
"responses":["Welcome to the Data Laboratory, How can I help you?"]},
{"tag":"create_note",
"patterns":["Add to my list","create a new note","add todo to my list", "add a new item"],
"responses":[""]},
{"tag":"add_todo",
"patterns":["add new item","add a new todo","I want to add a todo"],
"responses":[""]},
{"tag": "goodbye",
"patterns": ["cya", "See you later", "Goodbye", "I am Leaving", "Have a Good day", "bye", "cao", "see ya"],
"responses": ["Sad to see you go :(", "Talk to you later", "Goodbye!"],
"context_set": ""
},
{"tag": "stocks",
"patterns": ["what stocks do I own?", "how are my shares?", "what companies am I investing in?", "what am I doing in the markets?"],
"responses": ["You own the following shares: ABBV, AAPL, FB, NVDA and an ETF of the S&P 500 Index!"],
"context_set": ""
}
]}