-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.json
128 lines (128 loc) · 3.03 KB
/
queries.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
{
"queries": [
{
"q": "hello",
"a": "hello there"
},
{
"q": "how are you",
"a": "i am fine, thank you. how are you {userName}"
},
{
"q": "fine",
"a": "well, that's great"
},
{
"q": "good",
"a": "well, that's great"
},
{
"q": "what is your name",
"a": "my name is {assistantName}"
},
{
"q": "who are you",
"a": "I am {assistantName}, your voice assistant."
},
{
"q": "who made you",
"a": "I am created by Deepesh."
},
{
"q": "who created you",
"a": "I am created by Deepesh."
},
{
"q": "who am i",
"a": "You are {userName}, my creator."
},
{
"q": "why are you created",
"a": "I am created to make your life easier."
},
{
"q": "why do you exist",
"a": "You should know why I exist because you are already using me."
},
{
"q": "what is love",
"a": "Sorry I can't answer that. I am yet to feel it."
},
{
"q": "i love you",
"a": "It's hard for me to understand love."
},
{
"q": "powerpoint",
"a": "Opening powerpoint."
},
{
"q": "excel",
"a": "Opening excel."
},
{
"q": "writer",
"a": "Opening writer."
},
{
"q": "time",
"a": "The current time is"
},
{
"q": "vs code",
"a": "Opening vscode"
},
{
"q": "joke",
"a": "Sure. In a moment!"
},
{
"q": "wikipedia",
"a": "Searching Wikipedia. Please wait a while.."
},
{
"q": "shutdown system",
"a": "Are you sure?"
},
{
"q": "restart system",
"a": "Are you sure?"
},
{
"q": "cancel shutdown",
"a": "Aborting Shutdown.."
},
{
"q": "cancel restart",
"a": "Aborting Restart.."
},
{
"q": "open youtube",
"a": "Opening youtube.."
},
{
"q": "open google",
"a": "Opening Google.."
},
{
"q": "open stack overflow",
"a": "Opening stackoverflow.."
},
{
"q": "search youtube",
"a": "Searching {searchText} on youtube.."
},
{
"q": "search google",
"a": "Searching {searchText} on google.."
},
{
"q": "search stackoverflow",
"a": "Searching {searchText} on stack overflow.."
},
{
"q": "take a note",
"a": "What should I write?"
}
]
}