-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathworkers.json
127 lines (127 loc) · 2.59 KB
/
workers.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
{
"hazard_detection": {
"launch": true,
"path": "workers/hazard_detection.js",
"services": [
"hazard_detection_light_check",
"hazard_detection_door_check"
]
},
"face_detection": {
"launch": true,
"path": "workers/face_detection.js",
"services": [
"face_detection"
]
},
"qr_detection": {
"launch": true,
"path": "workers/qr_detection.js",
"services": [
"qr_detection"
]
},
"cognitive": {
"launch": true,
"path": "workers/cognitive.js",
"services": [
"cognitive_get_history",
"cognitive_get_scores",
"cognitive_record_performance",
"cognitive_test_chooser"
]
},
"email_support": {
"launch": true,
"path": "workers/email_support.js",
"services": [
"email_send",
"email_fetch"
]
},
"ontology": {
"launch": true,
"path": "workers/ontology.js",
"services": [
"ontology_subclasses_of",
"ontology_superclasses_of",
"ontology_is_subsuperclass_of"
]
},
"text_to_speech": {
"launch": true,
"path": "workers/text_to_speech.js",
"services": [
"text_to_speech"
]
},
"audio_processing": {
"launch": true,
"path": "workers/audio_processing.js",
"services": [
"set_noise_profile"
]
},
"speech_detection_google": {
"launch": true,
"path": "workers/speech_detection_google.js",
"services": [
"speech_detection_google"
]
},
"speech_detection_sphinx": {
"launch": true,
"path": "workers/speech_detection_sphinx.js",
"services": [
"speech_detection_sphinx4"
]
},
"weather_report": {
"launch": true,
"path": "workers/weather_report.js",
"services": [
"weather_report_forecast",
"weather_report_current"
]
},
"object_recognition": {
"launch": true,
"path": "workers/object_recognition.js",
"services": [
"object_recognition_caffe"
]
},
"human_detection": {
"launch": true,
"path": "workers/human_detection.js",
"services": [
"human_detection"
]
},
"path_planning": {
"launch": true,
"path": "workers/path_planning.js",
"services": [
"path_planning_upload_map",
"path_planning_plan_path_2d"
]
},
"authentication": {
"launch": true,
"path": "workers/authentication.js",
"services": [
"register_user_from_store",
"register_user_from_platform",
"login_user"
]
},
"main-1": {
"launch": true,
"path": "workers/main1.js",
"services": [
"news_explore",
"geolocation",
"available_services"
]
}
}