progress 235b

This commit is contained in:
2026-06-08 15:31:50 +01:00
parent a29793032d
commit de1635872f
25 changed files with 1598 additions and 53 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
# Smoke-test the running ComfyUI container. /system_stats should return
# device + memory info; /object_info should list registered nodes.
set -euo pipefail
HOST="${COMFYUI_HOST:-127.0.0.1:8188}"
echo "[smoke] GET /system_stats on $HOST"
curl -fsS "http://$HOST/system_stats" | python3 -m json.tool
echo
echo "[smoke] GET /object_info — node count"
curl -fsS "http://$HOST/object_info" | python3 -c "
import json, sys
data = json.load(sys.stdin)
print(f'{len(data)} nodes registered')
"
echo
echo "[smoke] passed"