-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintents.json
More file actions
210 lines (210 loc) · 3.8 KB
/
intents.json
File metadata and controls
210 lines (210 loc) · 3.8 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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
{
"intents": [
{
"tag": "greeting",
"patterns": [
"Hi",
"Hey",
"How are you",
"Is anyone there",
"Hello",
"Good day",
"Good morning",
"howdy",
"whats up",
"yo",
"hello there"
],
"responses": [
"Hey Sir",
"Hello Sir",
"Hi Sir, what can I do for you?",
"Hi Sir, how can I help?",
"Welcome back Sir"
]
},
{
"tag": "goodbye",
"patterns": [
"Bye",
"See you later",
"Goodbye"
],
"responses": [
"See you later Sir",
"Have a nice day Sir",
"Goodbye Sir"
]
},
{
"tag": "thanks",
"patterns": [
"Thanks",
"Thank you",
"That's helpful",
"Thank's a lot!"
],
"responses": [
"Happy to help!",
"Any time!",
"My pleasure"
]
},
{
"tag": "calc",
"patterns": [
"start the calculator",
"can you calculate something",
"can you preform some calculations"
],
"responses": [
"Yes Sir",
"Sure Sir"
]
},
{
"tag": "google_search",
"patterns": [
"Preform an google search on ",
"Preform an search on ",
"Search for ",
"Search "
],
"responses": [
"..."
]
},
{
"tag": "youtube_search",
"patterns": [
"Can you play a video on youtube ",
"Play on youtube ",
"Play "
],
"responses": [
"Ok Sir",
"Sure Sir"
]
},
{
"tag": "news",
"patterns": [
"tell me the news",
"whats the news",
"tell me todays news"
],
"responses": [
"."
]
},
{
"tag": "opinion",
"patterns": [
"whats your opinion on ",
"what do you think of "
],
"responses": [
"....."
]
},
{
"tag": "this_or_that",
"patterns": [
"do you like ",
"whats better ",
" or "
],
"responses": [
"....."
]
},
{
"tag": "ip_location",
"patterns": [
"where are we",
"where am i",
"in which country are we"
],
"responses": [
"....."
]
},
{
"tag": "find_place",
"patterns": [
"search for an place",
"search for an location",
"search on google maps"
],
"responses": [
"....."
]
},
{
"tag": "download_vid",
"patterns": [
"can you download an video",
"download an youtube video",
"download an video"
],
"responses": [
"....."
]
},
{
"tag": "wiki_search",
"patterns": [
"can you search something on wikipedia",
"search on wikipedia",
"wikipedia search"
],
"responses": [
"....."
]
},
{
"tag": "googleimage_search",
"patterns": [
"search for an image on google",
"search for an google image",
"google images search"
],
"responses": [
"....."
]
},
{
"tag": "alarm",
"patterns": [
"set a alarm",
"can you set a alarm",
"start a alarm"
],
"responses": [
"....."
]
},
{
"tag": "temp",
"patterns": [
"what is the weather",
"what temperature is it",
"what type of weather is it"
],
"responses": [
"....."
]
},
{
"tag": "find_file",
"patterns": [
"can you find a file",
"do a search for a file",
"search for a file"
],
"responses": [
"....."
]
}
]
}