Lumabri introduces a method for executing large mixture-of-experts (MoE) models across a peer-to-peer swarm. It utilizes the Colibri engine, which is written in pure C and has no external dependencies. This approach allows multiple machines to contribute to or access an AI model without requiring each machine to download the entire model upfront.
When an inference request is made, only the specific bytes of the model required for that operation are fetched from a peer. These bytes are then stored in a local mirror, ensuring that subsequent requests for the same data are served from local disk at full speed. This mechanism allows for efficient use of network resources and faster response times after the initial data transfer.
The system is designed to operate effectively on various hardware configurations, including machines without GPUs. The Colibri engine was developed with CPU and SSD performance as a primary consideration, meaning a GPU enhances speed but does not alter the fundamental operation or output. This broad compatibility aims to recruit a wider range of participants for model sharing compared to GPU-exclusive networks.
Lumabri's `serve` command runs a tracker (for indexing file holders) and a maintainer (for answering byte-range reads). The `chat` command mounts the model via `liblumabri.so`, an `LD_PRELOAD` shim that intercepts libc calls like `open` and `pread`. Missing data blocks are fetched from peers, written to a local mirror, and then processed by the engine. A local content-addressed store saves verified data blocks.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
Lumabri allows users to run large mixture-of-experts (MoE) models across a peer-to-peer swarm using the Colibri engine, enabling distributed inference without full model downloads. This system facilitates sharing and accessing AI models from various machines, including those without GPUs, by streaming necessary data on demand.