Duino commited on
Commit
57a96a2
·
1 Parent(s): 4d857dd

Update fetched.json

Browse files
Files changed (1) hide show
  1. fetched.json +46 -13
fetched.json CHANGED
@@ -1,15 +1,48 @@
1
  {
2
- "tell me a joke": "tellJoke",
3
- "what's the weather today?": "getOnlineWeatherData",
4
- "weather": "getOnlineWeatherData",
5
- "weather local": "getLocalWeatherData",
6
- "play music": "playMusic",
7
- "add owner": "addOwner",
8
- "remove owner": "removeOwner",
9
- "change manager name": "changeManagerName",
10
- "change admin pin": "changeAdminPin",
11
- "turn off": "turnOff",
12
- "google search": "searchGoogle",
13
- "who are you?": "offlineAssistantInfo",
14
- "what can you do?": "offlineAssistantInfo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
 
1
  {
2
+ "intents": [
3
+ {
4
+ "command": "tellJoke",
5
+ "intent": "tell me a joke"
6
+ },
7
+ {
8
+ "command": "getWeatherLocal",
9
+ "intent": "what's the weather today? local"
10
+ },
11
+ {
12
+ "command": "getWeatherOnline",
13
+ "intent": "what's the weather today?"
14
+ },
15
+ {
16
+ "command": "playMusic",
17
+ "intent": "play music"
18
+ },
19
+ {
20
+ "command": "addOwner",
21
+ "intent": "add owner"
22
+ },
23
+ {
24
+ "command": "removeOwner",
25
+ "intent": "remove owner"
26
+ },
27
+ {
28
+ "command": "changeManagerName",
29
+ "intent": "change manager name"
30
+ },
31
+ {
32
+ "command": "changeAdminPin",
33
+ "intent": "change admin pin"
34
+ },
35
+ {
36
+ "command": "turnOff",
37
+ "intent": "turn off"
38
+ },
39
+ {
40
+ "command": "searchGoogle",
41
+ "intent": "google search"
42
+ },
43
+ {
44
+ "command": "getAssistantInfo",
45
+ "intent": "who are you? what can you do?"
46
+ }
47
+ ]
48
  }