-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheme.json
229 lines (229 loc) · 8.27 KB
/
scheme.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
228
229
{
"interactionModel": {
"languageModel": {
"invocationName": "beat jump",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "SetupIntent",
"slots": [],
"samples": [
"okay",
"done",
"i'm at the centre",
"centred",
"centre",
"i've reached the centre",
"I'm in the centre"
]
},
{
"name": "SetupRepeatIntent",
"slots": [],
"samples": [
"leaped",
"leap",
"i've jumped",
"i've jumped now",
"jump",
"right",
"jumped right",
"jumped"
]
},
{
"name": "SetupRepeatOverIntent",
"slots": [],
"samples": [
"at the end",
"i'm at the end",
"i've reached the end",
"it's over",
"done",
"over",
"no more space"
]
},
{
"name": "RandomBeatIntent",
"slots": [],
"samples": [
"i'm up for dancing",
"let's dance",
"i'd like to dance",
"i want to dance",
"it's dancing time",
"let's start dancing",
"let's start",
"let's jump",
"dance",
"I want to start dancing"
]
},
{
"name": "CustomiseIntent",
"slots": [],
"samples": [
"I'd like to set up again",
"I want to set up",
"set up",
"I'd like to set up",
"I'd like set up",
"I'd like to get set up"
]
},
{
"name": "CustomiseSpaceIntent",
"slots": [],
"samples": [
"area",
"space",
"I want to know my space",
"I'd like to set up my area",
"I'd like to set up my dancing area",
"I want to set up my dancing space",
"I'd like to reorient my space",
"I'd like to tell how much space I have"
]
},
{
"name": "CustomiseDifficultyIntent",
"slots": [],
"samples": [
"difficulty",
"I want to change the difficulty",
"I want to set up the difficulty",
"I want the difficulty to be changed",
"It's too easy for me",
"It's too hard for me",
"Let's make it harder",
"Let's make it easier",
"Let's change the difficulty",
"I want to make it easier",
"I want to make it harder",
"I want to make it more difficult",
"I want to customise the difficulty",
"I want to change the difficulty"
]
},
{
"name": "SetDifficultyIntent",
"slots": [
{
"name": "difficulty",
"type": "Difficulty",
"samples": [
"make it {difficulty}",
"set it to {difficulty}",
"change it to {difficulty}",
"I want to set the difficulty to {difficulty}",
"i want to change the difficulty to {difficulty}",
"{difficulty}"
]
}
],
"samples": [
"{difficulty} is good for me",
"I want it to be {difficulty}",
"I want {difficulty}",
"Let's change it to {difficulty}",
"{difficulty}",
"I want to change the difficulty to {difficulty}"
]
},
{
"name": "SomethingElseIntent",
"slots": [],
"samples": [
"I'd like to do something different",
"I'd like to do something other than this",
"Not dance",
"something other than this",
"something other",
"what else",
"tell me what else you can do",
"What else can you do",
"Something",
"Something else",
"Tell me what else can you do",
"I'd like to do something else"
]
}
],
"types": [
{
"name": "Difficulty",
"values": [
{
"name": {
"value": "super easy"
}
},
{
"name": {
"value": "extra hard"
}
},
{
"name": {
"value": "hard"
}
},
{
"name": {
"value": "medium"
}
},
{
"name": {
"value": "easy"
}
}
]
}
]
},
"dialog": {
"intents": [
{
"name": "SetDifficultyIntent",
"confirmationRequired": false,
"prompts": {},
"slots": [
{
"name": "difficulty",
"type": "Difficulty",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "Elicit.Slot.969661129802.1475782921425"
}
}
]
}
]
},
"prompts": [
{
"id": "Elicit.Slot.969661129802.1475782921425",
"variations": [
{
"type": "PlainText",
"value": "Please choose a difficult level from super easy, easy, medium, hard, and extra hard"
}
]
}
]
}
}