forked from ScottHelme/AlexaNissanLeaf
-
Notifications
You must be signed in to change notification settings - Fork 2
/
intentschema.json
180 lines (180 loc) · 6.36 KB
/
intentschema.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
{
"interactionModel": {
"languageModel": {
"invocationName": "my car",
"intents": [
{
"name": "PreheatIntent",
"slots": [],
"samples": [
"to warm up",
"to up",
"to pre heat",
"to preheat",
"preheat",
"heat",
"heater",
"turn the heater on",
"warm up",
"warm the car up",
"heat up",
"heat the car up",
"preheat for me",
"start the heaters",
"turn the heater on",
"turn on the heater",
"turn the heat on",
"turn on the heat",
"warm up",
"make it toasty for me",
"it's cold outside",
"heat my seat up"
]
},
{
"name": "CoolingIntent",
"slots": [],
"samples": [
"to cool down",
"to down",
"to turn the air conditioning on",
"air conditioning",
"cold",
"turn on air conditioning",
"turn air conditioning on",
"cool down",
"cool down for me"
]
},
{
"name": "ClimateControlOffIntent",
"slots": [],
"samples": [
"to turn climate control off",
"to stop climate control",
"to stop air conditioning",
"air conditioning off",
"turn air conditioning off",
"to turn the air conditioning off",
"save energy",
"turn the heater off",
"stop preheat",
"turn off the heater",
"turn the heat off",
"stop the heaters"
]
},
{
"name": "UpdateIntent",
"slots": [],
"samples": [
"to update",
"update",
"status",
"update status",
"for an update",
"latest data",
"for the latest data",
"to get an update",
"to send an update",
"to update status",
"to send an update",
"to download an update"
]
},
{
"name": "RangeIntent",
"slots": [],
"samples": [
"how many miles",
"miles",
"how many miles are in the tank",
"how far can I drive",
"distance",
"how far",
"range",
"how much range"
]
},
{
"name": "ChargeIntent",
"slots": [],
"samples": [
"percent",
"percentage",
"how much charge",
"how much charge it has",
"what percent",
"what percent battery",
"battery",
"battery percentage"
]
},
{
"name": "ChargeTimeIntent",
"slots": [],
"samples": [
"how long to charge",
"how long charging will take",
"how long it will take to charge",
"how fast charging will be",
"how quick charging will be",
"when the battery will be full",
"when it will be charged",
"when it will be full"
]
},
{
"name": "ChargingIntent",
"slots": [],
"samples": [
"charging",
"is it charging",
"if it's charging",
"if it's charging up",
"if it's currently charging",
"currently charging",
"if it's on charge",
"charging up"
]
},
{
"name": "ConnectedIntent",
"slots": [],
"samples": [
"connected",
"connected to power",
"connected to mains",
"connected to charger",
"plugged in",
"if it's plugged in",
"is it plugged in",
"currently plugged in"
]
},
{
"name": "StartChargingIntent",
"slots": [],
"samples": [
"charge",
"charge now",
"start charging"
]
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
}
],
"types": []
}
}
}