-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathchatbot.json
55 lines (55 loc) · 1.37 KB
/
chatbot.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
[
{
"set": "setup",
"steps": [
{
"microphone_default": {
"action_goal": "ON",
"resource_type": "sensor",
"wait_for": ""
}
},
{
"stt_default": {
"action_goal": "ON",
"resource_type": "detector",
"wait_for": ""
}
}
]
},
{
"set": "loop",
"steps": [
{
"stt_default": {
"resource_type": "detector",
"wait_for": "new"
}
},
{
"bot_default": {
"action_goal": "REQUEST",
"resource_type": "service",
"wait_for": "new"
}
},
{
"tts_default": {
"action_goal": "REQUEST",
"resource_type": "service",
"wait_for": "new"
}
},
[
{
"speaker_default": {
"action_goal": "DO",
"resource_type": "actuator",
"wait_for": "new"
}
}
]
]
}
]