Skip to main content

Easily distribute language models across multiple systems

Project description

Language Pipes (Beta)

Distribute language models across multiple systems

GitHub license Release

Language pipes is a FOSS distributed network application designed to increase access to local language models.


Disclaimer: This software is currently in Beta. Please be patient and if you encounter an error, please fill out a github issue!

Over the past few years open source language models have become much more powerful yet the most powerful models are still out of reach of the general population because of the extreme amounts of RAM that is needed to host these models. Language Pipes allows multiple computer systems to host the same model and move computation data between them so that no one computer has to hold all of the data for the model.

  • Quick Setup
  • Peer to peer network
  • OpenAI compatible API
  • Download and use models by HuggingFace ID
  • Encrypted communication between nodes

What Does it do?

In a basic sense, language models work by passing information through many layers. At each layer, several matrix multiplicatitons between the layer weights and the system state are performed and the data is moved to the next layer. Language pipes works by hosting different layers on different machines to split up the RAM cost across the system.

Installation

Ensure that you have Python 3.10.18 (or any 3.10 version) installed. For an easy to use Python version manager use pyenv. This specific version is necessary for the transformers library to work properly.

If you need gpu support, first make sure you have the correct pytorch version installed for your GPU's Cuda compatibility using this link:
https://pytorch.org/get-started/locally/

To download the models from Huggingface, ensure that you have git and git lfs installed.

To start using the application, install the latest version of the package from PyPi.

Using Pip:

pip install language-pipes

Quick Start

The easiest way to get started is with the interactive setup wizard:

language-pipes

This guides you through network key generation, configuration, and starts the server.


Two Node Example

The following example will show how to create a small network. Firstly, create a network key for the network on the first computer:

language-pipes keygen network.key

Also create a config.toml file to tell the program how to operate:

node_id="node-1"
oai_port=8000 # Hosts an OpenAI compatible server on port 8000

[[hosted_models]]
id="Qwen/Qwen3-1.7B"
device="cpu"
max_memory=1

Note: Go to the configuration documentation for more information about how the config properties work.

Once the configuration has been created you can start the server:

language-pipes serve --config config.toml

This tells language pipes to download with the ID "Qwen/Qwen3-1.7B" from huggingface.co and host it using 1GB of ram. This will load part of the model but not all of it.

Next, install the package on a separate computer on your home network and create a config.toml file like this:

node_id="node-2"
bootstrap_address="192.168.0.10" # Local ip address of node-1

[[hosted_models]]
id="Qwen/Qwen3-1.7B"
device="cpu"
max_memory=3

Copy the network.key file to the same directory that the config is in using a usb drive or sftp.

Run the same command again on the computer two:

language-pipes serve --config config.toml

Node-2 will connect to node-1 and load the remaining parts of the model. The model is ready for inference using a standard OpenAI chat API interface. An example using the OpenAI Python library:

from openai import OpenAI

client = OpenAI(
    base_url="http://127.0.0.1:8000/v1",  # node-1 IP address
    api_key="not-needed"  # API key not required for Language Pipes
)

response = client.chat.completions.create(
    model="Qwen/Qwen3-1.7B",
    max_completion_tokens=100,
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Write a haiku about distributed systems."}
    ]
)

print(response.choices[0].message.content)

Install the OpenAI library with: pip install openai

Models Supported

  • Llama 2 & Llama 3.X
  • Qwen3
  • More to come!

Dependencies

Documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

language_pipes-0.11.0.tar.gz (37.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

language_pipes-0.11.0-py3-none-any.whl (39.7 kB view details)

Uploaded Python 3

File details

Details for the file language_pipes-0.11.0.tar.gz.

File metadata

  • Download URL: language_pipes-0.11.0.tar.gz
  • Upload date:
  • Size: 37.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for language_pipes-0.11.0.tar.gz
Algorithm Hash digest
SHA256 cacadb51e0d443e5b05ff3d5fd971093ff4c3b182359bb44de40ff34d76e4a7c
MD5 6162b56aaf6ebc117b21a34ddbc1b680
BLAKE2b-256 840702eaff167f627fa298416f1aa8f6927d0647d3503fe6edd044bb7369719f

See more details on using hashes here.

Provenance

The following attestation bundles were made for language_pipes-0.11.0.tar.gz:

Publisher: publish.yml on erinclemmer/language-pipes

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file language_pipes-0.11.0-py3-none-any.whl.

File metadata

File hashes

Hashes for language_pipes-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4bf24ec3d0cffe12a7876f779803730ce0a89d2deda307c0dd5dea10f01fae3c
MD5 225ebe93f86123335f801dcc890acb1a
BLAKE2b-256 b13d3232cefa27ddedb73f8ab5dfd3cb4d8a423eb14dca325053799c5d7c7af0

See more details on using hashes here.

Provenance

The following attestation bundles were made for language_pipes-0.11.0-py3-none-any.whl:

Publisher: publish.yml on erinclemmer/language-pipes

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page