Skip to content

Release v1.3.1

Choose a tag to compare

@github-actions github-actions released this 11 Jul 01:32
d3046ac

Lumen Host Broker v1.3.1

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.1/lumen-hostd-v1.3.1-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.1/lumen-hostd-v1.3.1-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.1/lumen-hostd-v1.3.1-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.1/lumen-hostd-v1.3.1-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.1-windows-amd64.zip and unzip

macOS 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 || true

Run 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 service

Or run it in the foreground (e.g. in a container): lumen-hostd serve.


📖 Documentation

Full Changelog: v1.3.0...v1.3.1