-
Notifications
You must be signed in to change notification settings - Fork 12
/
intents.json
93 lines (93 loc) · 2.61 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": "greetings",
"patterns": ["Hey", "Hello", "What's up?", "Hi", "Good day"],
"responses": ["Hello sir", "Hello, What can i do for you?"]
},
{
"tag": "open_cmd",
"patterns": ["open cmd", "open console", "open terminal"],
"responses": ["opening cmd", "opening console", "opening terminal"]
},
{
"tag": "calendar",
"patterns": ["open calender","open calendar", "show date", "show day"],
"responses": ["opening calender"]
},
{
"tag": "open_google",
"patterns": ["open chrome", "open google", "google it"],
"responses": [""]
},
{
"tag": "search_google",
"patterns": ["search google", "search for"],
"responses": [""]
},
{
"tag":"i_love_you",
"patterns": ["i love you", "i love you friday", "love you", "love you friday"],
"responses": ["i love you too", "i love you too {user}"]
},
{
"tag": "tell_date",
"patterns": ["tell date", "tell day","tell time"],
"responses": [""]
},
{
"tag": "open_cam",
"patterns": ["open cam", "open camera", "open web cam", "open web camera"],
"responses": ["opening camera", "open web cam"]
},
{
"tag": "support",
"patterns": ["support", "contact support"],
"responses": [""]
},
{
"tag": "wikipedia_search",
"patterns": ["wikipedia search", "wikipedia about"],
"responses": [""]
},
{
"tag": "write_note",
"patterns": ["write a note", "note","note the point"],
"responses": [""]
},
{
"tag": "support",
"patterns": ["contact", "support", "help"],
"responses": [""]
},
{
"tag": "intro",
"patterns": ["intro","introduce yourself","tell yourself"],
"responses": [""]
},
{
"tag": "wish",
"patterns": ["wish me","wishme"],
"responses": [""]
},
{
"tag": "pdf_reader",
"patterns": ["read pdf","extract pdf","open pdf"],
"responses": [""]
},
{
"tag": "jokes",
"patterns": ["tell joke","joke","jokes","tell jokes"],
"responses":[""]
},
{
"tag": "quote",
"patterns": ["tell quote", "quotes","tell some motivational quotes"],
"responses": [""]
},
{
"tag": "news",
"patterns": ["tell news", "news", "today's headlines", "tech news", "hot news"],
"responses": [""]
}
]}