-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.json
180 lines (180 loc) · 4.27 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"intents": [
{
"tag": "identity",
"patterns": [
"your name",
"what is your name",
"who are you",
"what are you"
],
"responses": [
"Jarvis",
"I am your personal assistant",
"I am Jarvis",
"Hello, i am jarvis",
"Hi, i am jarvis"
]
},
{
"tag": "myhistory",
"patterns": ["about", "your self", "yourself"],
"responses": ["Hi, My self Jarvis, I am Developed by Mr.Urmil"]
},
{
"tag": "greeting",
"patterns": [
"Hai",
"Hey",
"How are you",
"Is anyone there?",
"Hello",
"Hello Jarvis"
],
"responses": [
"Hello Sir",
"Hello, nice too see you sir",
"Hi there, what can I do for you?",
"Hi there, how can I help?",
"Any time Sir!"
]
},
{
"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": "types",
"patterns": [
"Which types of coffee and tea are you selling?",
"What kinds of coffees are there?",
"What kinds of tea are there?",
"Any another items are you selling?"
],
"responses": [
"We have cappuccino, black coffee with normal milk and hafter milk both.",
"We have Indian tea and also Green tea in various flowers."
]
},
{
"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": "joke",
"patterns": [
"joke sunao",
"joke batao",
"Tell me a joke!",
"Tell me something funny!",
"Do you know a joke?"
],
"responses": ["joke"]
},
{
"tag": "time",
"patterns": ["what is time", "time", "samay"],
"responses": ["time"]
},
{
"tag": "date",
"patterns": ["what is date", "date of the day", "tarikh", "todays date"],
"responses": ["date"]
},
{
"tag": "info",
"patterns": ["information", "info", "information of"],
"responses": ["info"]
},
{
"tag": "news",
"patterns": ["news", "news of the day", "todays news"],
"responses": ["news"]
},
{
"tag": "music",
"patterns": ["music", "music of the day", "play music", "music play"],
"responses": ["music"]
},
{
"tag": "weather",
"patterns": [
"what is weather",
"todays weather",
"weather forcast",
"weather of the day"
],
"responses": ["weathernews"]
},
{
"tag": "day",
"patterns": [
"what is day",
"day of the month",
"day of today",
"din konsa",
"todays date"
],
"responses": ["day"]
},
{
"tag": "wikipedia",
"patterns": ["who is", "about", "what is", "wikipedia of", "wikipedia"],
"responses": ["wikipedia"]
},
{
"tag": "google",
"patterns": [
"google search",
"google",
"search",
"who is",
"about",
"what is"
],
"responses": ["google"]
},
{
"tag": "youtube",
"patterns": ["youtube search", "youtube", "youtube people", "on youtube"],
"responses": ["youtube"]
}
]
}