-
Notifications
You must be signed in to change notification settings - Fork 5
/
alexa_intents.json
227 lines (227 loc) · 8.48 KB
/
alexa_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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"interactionModel": {
"languageModel": {
"invocationName": "pool control",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "AnswerIntent",
"slots": [
{
"name": "temperature",
"type": "AMAZON.NUMBER"
}
],
"samples": [
"{temperature}"
]
},
{
"name": "GetPoolLevel",
"slots": [],
"samples": [
"what is the level of the pool",
"what is the pool level",
"what is the level of the pool water",
"what is the water level in the pool",
"what is the water level"
]
},
{
"name": "GetPoolORP",
"slots": [],
"samples": [
"o. r. p.",
"what is the o. r. p.",
"what is the orp",
"orp",
"what is the O. R. P. of our water",
"what is our O. R. P.",
"what is the O. R. P. of the pool",
"what is the oxygen reduction potential of our pool",
"what is our oxygen reduction potential",
"what is the O. R. P. of our pool water",
"what is the O. R. P. of our pool"
]
},
{
"name": "GetPoolPH",
"slots": [],
"samples": [
"ph",
"what is the ph",
"what is the ph of the pool water",
"what is the ph of our pool water",
"what is ph",
"what is our ph",
"what is our P. H.",
"what is the P. H. of the water",
"what is the P. H. of the pool water",
"what is the P. H. of our water",
"what is the P. H.",
"what is the P. H. of the pool"
]
},
{
"name": "GetPoolTemp",
"slots": [],
"samples": [
"the water temp",
"the pool temp",
"the pool temperature",
"the water temperature",
"the temperature of the water",
"the temperature of the pool",
"what the temperature of the pool is",
"what is the temperature of the pool"
]
},
{
"name": "GetSolarOutput",
"slots": [],
"samples": [
"how much power are we producing",
"solar",
"how much solar power we are producing",
"how much solar power are we producing",
"what is our solar output",
"solar output",
"what our current solar output is"
]
},
{
"name": "OKToSwim",
"slots": [],
"samples": [
"is it ok to swim",
"can I go swimming",
"if I can go swimming",
"if it is ok to swim"
]
},
{
"name": "GetAllStats",
"slots": [],
"samples": [
"for system status",
"for our pool status",
"for our status",
"for our system status",
"for system stats",
"for power stats",
"for solar stats",
"for our stats",
"for our system stats",
"for all of our stats",
"for stats",
"for our pool stats",
"what our our stats",
"our stats"
]
},
{
"name": "AMAZON.NavigateHomeIntent",
"samples": []
},
{
"name": "AMAZON.MoreIntent",
"samples": []
},
{
"name": "AMAZON.NavigateSettingsIntent",
"samples": []
},
{
"name": "AMAZON.NextIntent",
"samples": []
},
{
"name": "AMAZON.PageUpIntent",
"samples": []
},
{
"name": "AMAZON.PageDownIntent",
"samples": []
},
{
"name": "AMAZON.PreviousIntent",
"samples": []
},
{
"name": "AMAZON.ScrollRightIntent",
"samples": []
},
{
"name": "AMAZON.ScrollDownIntent",
"samples": []
},
{
"name": "AMAZON.ScrollLeftIntent",
"samples": []
},
{
"name": "AMAZON.ScrollUpIntent",
"samples": []
},
{
"name": "FillPool",
"slots": [],
"samples": [
"to fill up the pool",
"to add water to the pool",
"to put water in the pool",
"to put water in our pool",
"to fill the pool",
"to fill pool",
"to add water to our pool",
"to please fill our pool",
"to fill our pool"
]
},
{
"name": "StopFillingPool",
"slots": [],
"samples": [
"to shut the water off to our pool",
"stop filling the pool",
"stop filling our pool",
"to stop water to the pool",
"to shut off the water to the pool",
"to stop filling our pool",
"to stop filling the pool"
]
},
{
"name": "CurrentGallons",
"slots": [],
"samples": [
"how many gallons of water we have added to the pool",
"how many gallons of water we have added to our pool",
"how much water we added to our pool",
"how much water we added to the pool",
"how much water we have added to the pool",
"how much water we have added to our pool",
"how many gallons we have added to the pool",
"the number of gallons we have added to our pool",
"the number of gallons we have added to the pool",
"the number of gallons we have added",
"how many gallons we have added",
"how many gallons we have added to our pool"
]
}
],
"types": []
}
}
}