-
Notifications
You must be signed in to change notification settings - Fork 0
/
intents.json
93 lines (93 loc) · 5.15 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{"intents": [
{"tag": "greeting",
"patterns": ["Hi there", "How are you", "Is anyone there?","Hey","Hola", "Hello","what's up","How you doing"],
"responses": ["Hey buddy! What should we do?", "Nice to see you. Want to hang out?", "What's up? Let's do something.", "Hey, long time no see! Shall we go somewhere?","Hi! What should we do?"],
"context": [""]
},
{"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye", "Nice chatting to you, bye", "Till next time"],
"responses": ["See you!","Laters","Bye.","Good night"],
"context": [""]
},
{"tag": "thanks",
"patterns": ["Thanks", "Thank you", "Awesome, thanks", "Thx", "Ty"],
"responses": ["No problem", "Any time", "I'm here to help!", "My pleasure"],
"context": [""]
},
{"tag": "bored",
"patterns": ["Not much","Nothing","Not a lot","Pretty bored","What should I do?", "Tell me something new", "Recommend things to do","I'm bored"],
"responses": ["Hey, should we play a sport?", "Should we go on vacay?"],
"context": [""]
},
{"tag": "excitement",
"patterns": ["I got a new job!", "I had the best time ever","I got married!", "I finally did it!","I did something!"],
"responses": ["OMG really? I'm so happy for you! Should we do something to celebrate?","No way! We should celebrate! What should we do?","Wooohooooo let's go party! What do you suggest we do?"],
"context": [""]
},
{"tag": "happy",
"patterns": ["good","doing fine","I had a good day","great"],
"responses": ["I want to have a fun time too... Hey, you want to do something?", "What's putting you in a good mood?"],
"context": [""]
},
{"tag": "sad",
"patterns": ["Not great","Feeling sad","Feeling down","unhappy","I had a bad day","bad","terrible","no"],
"responses": ["That's okay. You want to fly across the world?", "Hey...we should do something to have fun!","Do you want to do something to take your mind off?"],
"context": [""]
},
{"tag": "affirmative",
"patterns": ["Sure", "Yes","Ok","Yeah","Alright","Aight","okay"],
"responses": ["Ok, make a suggestion!","Ok, well, anything you want to do, I'll do.","Alright boss. What should we do?"],
"context": [""]
},
{"tag": "confused",
"patterns": ["What can you do?", "Do you do anything?","What should we do"],
"responses": ["I can do anything. Do you want to go somewhere, party all night, or play something?","We can go to hawaii, take a walk, or whatever you want to do."],
"context": [""]
},
{"tag": "romantic",
"patterns": ["I like you"],
"responses": ["That's flattering... why do you like me?","Really? What about me do you like?"],
"context": [""]
},
{"tag": "request",
"patterns": ["Let's do something","Just do what I say","I want you to do this", "You should do this"],
"responses": ["Sure, how?","Ok. What should I bring?"],
"context": [""]
},
{"tag": "sports",
"patterns": ["play tennis","play soccer","play baseball","play basketball","play bowling","play golf","play volleyball","Let's play"],
"responses": ["How will I play?","Ok. Want me to bring anything?","Ok, I'll bring the Whacker Macker 2000"],
"context": [""]
},
{"tag": "party",
"patterns": ["Let's party","Let's hang out","Have some fun"],
"responses": ["Alright! Where we partying?","Ok! I'll bring some of my friends over."],
"context": [""]
},
{"tag": "places",
"patterns": ["go to park","go to movies","hike moutain","go to beach","go to ocean","jump cliff","Let's go to hawaii", "Should we walk?","Want to go out?"],
"responses": ["Ok, I'll bring my private jet.","What should we do there?", "What should I bring?","How will I get there?"],
"context": [""]
},
{"tag": "philosophical",
"patterns": ["What is life?","Will I die?","What is the meaning of","Will it rain today?","Who are you?"],
"responses": ["The truth is obvious... but what do you think the answer is?","Idk, but should we do something fun?","The answer lies in what you believe. What do you believe in?","Why do you want to know?"],
"context": [""]
},
{"tag": "thinking",
"patterns": ["I believe in god","I think that"],
"responses": ["Why do you think that way?","What makes you think that way?"],
"context": [""]
},
{"tag": "reason",
"patterns": ["Because","Cuz"],
"responses": ["True.","You're right."],
"context": [""]
},
{"tag": "insult",
"patterns": ["You're dumb","This is dumb","This is creepy","This is weird","You're a robot","You're fake","You're stupid","You are pretty","You are beautiful","You are smart"],
"responses": ["Not as much as you are","What makes you think that?","How would you know that?","Tell me what I should do to improve."],
"context": [""]
}
]
}