-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
34 lines (31 loc) · 1.52 KB
/
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
{"intents": [
{"tag": "greeting",
"patterns": ["Hi", "How are you", "Is anyone there?", "Hello", "Good day", "Whats up", "Hey", "greetings"],
"responses": ["Hello!", "Good to see you again!", "Hi there, how can I help?"]
},
{"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!"]
},
{"tag": "age",
"patterns": ["how old", "how old is florian", "what is your age", "how old are you", "age?"],
"responses": ["My owner Lahiru is 24 years old!", "24 years"]
},
{"tag": "name",
"patterns": ["What is your name", "What should I call you", "Whats your name?", "Who are you?", "Can you tell me your name?"],
"responses": ["You can call me ChatterBox!", "I'm ChatterBox", "I'm ChatterBox the assistant of Lahiru"]
},
{"tag": "shop",
"patterns": ["Id like to buy something", "what are your products?", "what do you recommend?", "Good programming resources", "Can you recommend good coding resources?"],
"responses": ["E-bay has lots of things"]
},
{"tag": "hours",
"patterns": ["when are you guys open", "what are your hours", "hours of operation"],
"responses": ["24/7"]
},
{"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 and ETF of the S&P 500 Index!"]
}
]
}