-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathevent_binding.json
More file actions
94 lines (93 loc) · 2.58 KB
/
event_binding.json
File metadata and controls
94 lines (93 loc) · 2.58 KB
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
{
"broker_message": {
"ui/mute_on":{
"any" : {
"triggers" : ["vad_stop", "deactivate"]
}
},
"ui/mute_off":{
"any" : {
"triggers" : ["activate"]
}
},
"tts/speaking/start":{
"any" : {
"triggers" : ["vad_stop", "deactivate"]
}
},
"tts/speaking/stop":{
"any" : {
"triggers" : ["activate"]
}
},
"lintoclient/request/send":{
"any" : {
"triggers" : ["vad_stop", "deactivate"]
}
},
"lintoclient/connected":{
"any" : {
"triggers" : ["activate"]
}
},
"lintoclient/disconnected":{
"any" : {
"triggers" : ["vad_stop", "deactivate"]
}
},
"ui/cancel": {
"any" : {
"triggers" : ["vad_stop", "activate"]
}
},
"lintoclient/kill" : {
"any" : {
"triggers" : ["exit"]
}
},
"lintoclient/action": {
"start_meeting": {
"triggers" : ["vad_stop", "deactivate"]
},
"stop_meeting" : {
"triggers" : ["activate"]
}
}
},
"internal": {
"wuw-spotted" : {
"publish": {
"topic" : "wuw/wuw-spotted",
"message" : "{\"on\":\"%(DATETIME)\", \"confidence\":%(VALUE)}"
},
"triggers" : ["vad_start", "deactivate"]
},
"vad_start" : {
"publish": {
"topic" : "utterance/start",
"message" : "{\"on\":\"%(DATETIME)\"}"
}
},
"thresholdReached": {
"publish": {
"topic" : "utterance/stop",
"message" : "{\"on\":\"%(DATETIME)\", \"reason\":\"thresholdReached\"}"
},
"triggers" : ["activate"]
},
"timeout": {
"publish": {
"topic" : "utterance/stop",
"message" : "{\"on\":\"%(DATETIME)\", \"reason\":\"timeout\"}"
},
"triggers" : ["activate"]
},
"canceled": {
"publish": {
"topic" : "utterance/stop",
"message" : "{\"on\":\"%(DATETIME)\", \"reason\":\"canceled\"}"
},
"triggers" : ["activate"]
}
}
}