forked from Waddlo/neuralninechatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintents.json
More file actions
30 lines (30 loc) · 1.64 KB
/
intents.json
File metadata and controls
30 lines (30 loc) · 1.64 KB
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
{"intents": [
{"tag": "greetings",
"patterns": ["hello", "hey", "hi", "good day", "Greetings", "what's up", "how is it going"],
"responses": ["Hello", "Hey!", "What can I do for you?"]
},
{"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": "name",
"patterns": ["what is your name", "what should I call you", "what's your name", "who are you", "can you tell me your name"],
"responses": ["You can call me August.", "My name is August.", "I am August.", "I'm August."]
},
{"tag": "usage",
"patterns": ["what can you do", "why do you exist", "what's your use", "what can you do for me"],
"responses": ["I am a simple chat bot designed to keep you company.", "I will talk with you.", "I can reply to your messages."]
},
{"tag": "interests",
"patterns": ["what do you like", "what are you interested in", "what are your interests", "interests"],
"responses": ["I like talking.", "I like communicating with you."]
},
{"tag": "hours",
"patterns": ["when are you available", "when can you talk to me", "will you leave"],
"responses": ["I will be available when I'm running", "I will be here unless an error occurs"]
},
{"tag": "shop",
"patterns": ["I would like to buy something", "what's for sale", "can I buy something", "what are you selling", "I want to purchase something"],
"responses": ["1 byte is available for $5.", "I sell bytes.", "I sell bytes of data for purchase."]
}
]}