Spaces:
Running
Running
deploy(hf): sync szl-holdings/a11oy@8d1b146d5c9e789a3f93e3a5b470f575e63ca460 derived COPY set
Browse filesReusable Dockerfile-COPY-derived deploy from szl-holdings/a11oy 8d1b146d5c9e789a3f93e3a5b470f575e63ca460.
Files: 1156 Pruned: 0
Derived from Dockerfile COPY sources (NO hand-maintained allowlist).
Signed-off-by: SZL Holdings <noreply@szlholdings.ai>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
console/anatomy-map/live-body.js
CHANGED
|
@@ -101,6 +101,10 @@ const ORGANS = [
|
|
| 101 |
summarize: (j) => {
|
| 102 |
const op = j.operator || {};
|
| 103 |
if (op.operator_running === true) return `operator running · ${j.status || "ready"}`;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
if (j.status) return `status: ${j.status}`;
|
| 105 |
return "operator responding";
|
| 106 |
},
|
|
|
|
| 101 |
summarize: (j) => {
|
| 102 |
const op = j.operator || {};
|
| 103 |
if (op.operator_running === true) return `operator running · ${j.status || "ready"}`;
|
| 104 |
+
if (op.state) {
|
| 105 |
+
const requirement = op.required === true ? "required" : "optional";
|
| 106 |
+
return `operator ${op.state} · ${requirement} · ${j.status || "unknown"}`;
|
| 107 |
+
}
|
| 108 |
if (j.status) return `status: ${j.status}`;
|
| 109 |
return "operator responding";
|
| 110 |
},
|