Skip to content

kalavai-net/kalavai-client

Repository files navigation

Kalavai logo

GitHub Release PyPI - Downloads GitHub contributors GitHub License GitHub Repo stars Dynamic JSON Badge Signup

⭐⭐⭐ Kalavai platform is open source, and free to use in both commercial and non-commercial purposes. If you find it useful, consider supporting us by giving a star to our GitHub project, joining our discord channel and follow our Substack.

Kalavai: a platform to self-host AI on easy mode

AI in the cloud is not aligned with you, it's aligned with the company that owns it. Make sure you own your AI

Taming the adoption of self-hosted GenAI

Kalavai is an open source tool that turns any devices into a self-hosted AI platform. It aggregates resources from multiple machines, including cloud, on prem and personal computers, and is compatible with most model engines to make model deployment and orchestration simple and reliable.

What can Kalavai do?

Kalavai's goal is to make using self-hosted AI (GenAI models and agents) in real applications accessible and affordable to all.

Core features

  • Manage multiple devices resources as one, wherever they come from (hybrid cloud, on prem, personal devices)
  • Deploy open source models seamlessly across devices, with zero-cost migration
  • Beyond LLMs: not just for large language models, but text-to-speech, speech-to-text, image generation, video understanding, coding generation and embedding models.
  • Production-ready: models are automatically exposed through a single OpenAI-like API and a ChatGPT-like UI playground, with off-the-shelf monitoring and evaluation framework.
  • Compatible with most popular model engines
  • Easy to expand to custom workloads

Powered by Kalavai

Latest updates

  • 11 June 2025: Native support for Mac and Raspberry pi devices (ARM).
  • 20 February 2025: New shiny GUI interface to control LLM pools and deploy models
  • 31 January 2025: kalavai-client is now a PyPI package, easier to install than ever!
More news

Support for AI engines

We currently support out of the box the following AI engines:

  • vLLM: most popular GPU-based model inference.
  • llama.cpp: CPU-based GGUF model inference.
  • SGLang: Super fast GPU-based model inference.
  • n8n: no-code workload automation framework.
  • Flowise: no-code agentic AI workload framework.
  • Speaches: audio (speech-to-text and text-to-speech) model inference.
  • Langfuse: open source evaluation and monitoring GenAI framework.
  • OpenWebUI: ChatGPT-like UI playground to interface with any models.

Coming soon:

Not what you were looking for? Tell us what engines you'd like to see.

Kalavai is at an early stage of its development. We encourage people to use it and give us feedback! Although we are trying to minimise breaking changes, these may occur until we have a stable version (v1.0).

Want to know more?

Getting started

The kalavai-client is the main tool to interact with the Kalavai platform, to create and manage both local and public pools and also to interact with them (e.g. deploy models). Let's go over its installation.

Requirements

For seed nodes:

For workers sharing resources with the pool:

  • A laptop, desktop or Virtual Machine (MacOS, Linux or Windows; ARM or x86)
  • If self-hosting, workers should be on the same network as the seed node. Looking for over-the-internet connectivity? Check out our managed seeds
  • Docker engine installed (for linux, Windows and MacOS) with privilege access.

Install the client

The client is a python package and can be installed with one command:

pip install kalavai-client

Create a a local, private AI pool

You can create and manage your pools with the new kalavai GUI, which can be started with:

kalavai gui start

This will expose the GUI and the backend services in localhost. By default, the GUI is accessible via http://localhost:49153. In the UI users can create and join AI pools, monitor devices, deploy LLMs and more.

Kalavai logo

Check out our getting started guide for next steps on how to add more workers to your pool, or use our managed seeds service for over-the-internet AI pools.

Enough already, let's run stuff!

For an end to end tour on building your own OpenAI-like service, check our self-hosted guide.

Check our examples to put your new AI pool to good use!

Compatibility matrix

If your system is not currently supported, open an issue and request it. We are expanding this list constantly.

Hardware and OS compatibility

OS compatibility

Currently seed nodes are supported exclusively on linux machines (x86_64 platform). However Kalavai supports mix-pools, i.e. having Windows and MacOS computers as workers.

Since worker nodes run inside docker, any machine that can run docker should be compatible with Kalavai. Here are instructions for linux, Windows and MacOS.

The kalavai client, which controls and access pools, can be installed on any machine that has python 3.10+.

Hardware compatibility:

  • amd64 or x86_64 CPU architecture for seed and worker nodes.
  • arm64 CPU architecture for worker nodes.
  • NVIDIA GPU
  • Mac M series, AMD and Intel GPUs are currently not supported (interested in helping us test it?)

Roadmap

  • Kalavai client on Linux
  • [TEMPLATE] Distributed LLM deployment
  • Kalavai client on Windows (worker only)
  • Kalavai client on Windows WSL2 (seed and worker)
  • Self-hosted LLM pools
  • Collaborative LLM deployment
  • Ray cluster support
  • Kalavai client on Mac (worker only)
  • Kalavai pools UI
  • Support for AMD GPUs
  • Support for Mac M GPUs
  • Docker install path

Anything missing here? Give us a shout in the discussion board

Contribute

Star History

Star History Chart

Build from source

Expand

Python version >= 3.10.

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.10 python3.10-dev python3-virtualenv python3-venv
virtualenv -p python3.10 env
source env/bin/activate
sudo apt install  python3.10-venv python3.10-dev -y
pip install -U setuptools
pip install -e .[dev]

Build python wheels:

bash publish.sh build

Unit tests

To run the unit tests, use:

python -m unittest