Lumen Host Broker v1.3.2
lumen-hostd discovers Lumen inference nodes on the LAN via mDNS and
republishes them over /v1/nodes/watch for applications that cannot
perform local-network discovery themselves (e.g. inside Docker Desktop).
It is a discovery-only control-plane process — it never proxies
inference payloads.
🚀 Installation
Download and install
# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/
# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/
# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true
# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true
# Windows AMD64: download lumen-hostd-v1.3.2-windows-amd64.zip and unzipmacOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || trueRun as a background service
lumen-hostd install # registers a per-user background service (LaunchAgent / systemd user unit / Task Scheduler) and starts it
lumen-hostd status # check install/running state
lumen-hostd doctor # diagnose discovery and reachability issues
lumen-hostd uninstall # remove the background serviceOr run it in the foreground (e.g. in a container): lumen-hostd serve.
What's Changed
- fix: balancer behavior by @EdwinZhanCN in #6
Full Changelog: v1.3.1...v1.3.2