forked from snipsco/snips-nlu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.json
73 lines (73 loc) · 2.09 KB
/
example.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
{
"entities": {
"smarthome/entities/room": {
"automatically_extensible": false,
"map_synonyms": false,
"matching_strictness": 0,
"name": "smarthome/entities/room",
"values": {
"backyard": "garden",
"bedroom": "bedroom",
"garden": "garden",
"living room": "living room",
"lounge": "living room",
"main room": "living room",
"yard": "garden"
}
},
"smarthome/entities/temperature": {
"automatically_extensible": true,
"map_synonyms": true,
"matching_strictness": 0,
"name": "smarthome/entities/temperature",
"values": {
"100 degrees": "100 degrees",
"20 degrees": "20 degrees",
"normal": "20 degrees",
"warm": "20 degrees"
}
}
},
"intents": {
"smarthome/intents/setTemperature": {
"matching_strictness": 0,
"optional_slots": {
"room": "smarthome/entities/room"
},
"required_slots": {
"room_temperature": "smarthome/entities/temperature"
},
"utterances": [
"Set the temperature to [room_temperature] in the [room]",
"please set the [room]'s temperature to [room_temperature]",
"I want [room_temperature] in the [room] please",
"Can you increase the temperature to [room_temperature]?"
]
},
"smarthome/intents/turnLightOff": {
"matching_strictness": 0,
"required_slots": {
"room": "smarthome/entities/room"
},
"utterances": [
"Turn off the lights in the [room]",
"turn the [room]'s light out please",
"switch off the light the [room], will you?",
"Switch the [room]'s lights off please"
]
},
"smarthome/intents/turnLightOn": {
"matching_strictness": 0,
"required_slots": {
"room": "smarthome/entities/room"
},
"utterances": [
"Turn on the lights in the [room]",
"give me some light in the [room] please",
"Can you light up the [room]?",
"switch the [room]'s lights on please"
]
}
},
"language": "en"
}