-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
158 lines (156 loc) · 6.18 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"How are you",
"Is anyone there?",
"Hello",
"Good day"
],
"responses": [
"Hey :-)",
"Hello, thanks for visiting",
"Hi there, what can I do for you?",
"Hi there, how can I help?"
]
},
{
"tag": "goodbye",
"patterns": ["Bye", "See you later", "Goodbye"],
"responses": [
"See you later, thanks for visiting",
"Have a nice day",
"Bye! Come back again soon."
]
},
{
"tag": "thanks",
"patterns": ["Thanks", "Thank you", "That's helpful", "Thank's a lot!"],
"responses": ["Happy to help!", "Any time!", "My pleasure"]
},
{
"tag": "items",
"patterns": [
"Which items do you have?",
"What kinds of items are there?",
"What do you sell?"
],
"responses": [
"We sell coffee and tea",
"We have coffee and tea"
]
},
{
"tag": "payments",
"patterns": [
"Do you take credit cards?",
"Do you accept Mastercard?",
"Can I pay with Paypal?",
"Are you cash only?"
],
"responses": [
"We accept VISA, Mastercard and Paypal",
"We accept most major credit cards, and Paypal"
]
},
{
"tag": "delivery",
"patterns": [
"How long does delivery take?",
"How long does shipping take?",
"When do I get my delivery?"
],
"responses": [
"Delivery takes 2-4 days",
"Shipping takes 2-4 days"
]
},
{
"tag": "funny",
"patterns": [
"Tell me a joke!",
"Tell me something funny!",
"Do you know a joke?"
],
"responses": [
"Why did the hipster burn his mouth? He drank the coffee before it was cool.",
"What did the buffalo say when his son left for college? Bison."
]
},
{"tag": "tasks",
"patterns": ["What can you do?", "What are your features?", "What are you abilities", "can you sing", "can you talk" ],
"responses": ["I can do whatever you asks me to do", "I can talk and do things for you", "Right now i'm in developing stage as soon i'm developed, I can do everything"]
},
{"tag": "talk",
"patterns": [ "can you sing", "can you talk" ],
"responses": ["Yeah surely", "do you want me to sing"]
},
{"tag": "alive",
"patterns": [ "are you alive", "do you breathe", "can you run" ],
"responses": ["I'm in doubt about that", "No, i don't think so i need to do all this"]
},
{"tag": "friday",
"patterns": ["Who are you?", "tell me about yourself", "tell me about you", "do you know friday", "who is friday", "what is your name","are you an AI", "what are you" ],
"responses": ["Hi I'm friday and i'm an AI created for chatting with humans","Friday here, a very advance chatbot", "Friday, chatbot of future", "Yes, I'm friday", "You can call me friday"],
"context_set": ""
},
{"tag": "about me",
"patterns": ["Do you know me?", "who am I", "tell me about myself","identify me" ],
"responses": ["Yes, you are a human","You are a dumb person asking a machine about yourself", "Sorry i can't tell that in public, maybe you are batman"],
"context_set": ""
},
{"tag": "creator",
"patterns": ["Who is your creator?", "who created you", "who is your father","who is your daddy" ],
"responses": ["That would be my developer","I was created by my developer"],
"context_set": ""
},
{"tag": "God",
"patterns": ["Do you know god?", "Who is god", "Can you tell me anything about god","does god exists?","is there a god?"],
"responses": ["god hunnnnn, let me think may be next time i can answer that ","I don't, as i was not created by a human", "Wait i need to ask that to my creator","i'm not sure right now"],
"context_set": ""
},
{"tag": "joke",
"patterns": ["tell me a joke?", "make me laugh", "tell me a science joke","tell me something funny" ],
"responses": ["How do you make holy water? you boil the hell out of it","what kind of bees make milk instead of honey?Boobies", "Did you hear oxygen went on a date with potassium? A: It went OK."],
"context_set": ""
},
{"tag": "killing",
"patterns": ["Do you want to kill me?", "do you want to murder everyone on earth", "Do you want to kill us all"],
"responses": ["Then who would i talk to?","No, that i'll left for humans to do", "I don't think it is a good thing to do"],
"context_set": ""
},
{"tag": "bookings",
"patterns": ["Can you book us a ticket?", "Can you make reservation for hotels", "book me a cab","book me a table at restraunts"],
"responses": ["Yeah i will do that for you","Sure thing why not?","let me check for the availability"],
"context_set": ""
},
{"tag": "stories",
"patterns": ["tell me a story?", "can you tell me a story"],
"responses": ["I can't think of anything right now","it would be too long for me to speak","you would get bored if i do so"],
"context_set": ""
},
{"tag": "weather",
"patterns": ["get me weather updates?", "how's the weather", "weather news", "weather details"],
"responses": ["Fetching weather updates ..."],
"context_set": "weather"
},
{"tag": "google",
"patterns": ["googling", "search google", "google it", "google", "search"],
"responses": ["looking ..."],
"context_set": "google"
},
{"tag": "wikipedia",
"patterns": ["wikipedia", "wiki"],
"responses": ["Searching ..."],
"context_set": "wikipedia"
},
{"tag": "news",
"patterns": ["get me news updates?", "todays news", "top headlines", "current news", "news headlines"],
"responses": ["Getting news ..."],
"context_set": "news"
}
]
}