AIKit is a quick, easy, and local or cloud-agnostic way to get started to host and deploy large language models (LLMs) for inference. No GPU, internet access or additional tools are needed to get started except for Docker!
AIKit uses LocalAI under-the-hood to run inference. LocalAI provides a drop-in replacement REST API that is OpenAI API compatible, so you can use any OpenAI API compatible client, such as Kubectl AI, Chatbot-UI and many more, to send requests to open-source LLMs powered by AIKit!
- π³ No GPU, Internet access or additional tools needed except for Docker!
- π€ Minimal image size, resulting in less vulnerabilities and smaller attack surface with a custom distroless-based image
- π Easy to use declarative configuration
- β¨ OpenAI API compatible to use with any OpenAI API compatible client
- πΈ Multi-modal model support
- πΌοΈ Image generation support with Stable Diffusion
- π¦ Support for GGUF (
llama
), GPTQ (exllama
orexllama2
), EXL2 (exllama2
), and GGML (llama-ggml
) formats - π’ Kubernetes deployment ready
- π¦ Supports multiple models with a single image
- π₯οΈ Supports GPU-accelerated inferencing with NVIDIA GPUs
- π Signed images for
aikit
and pre-made models
You can get started with AIKit quickly on your local machine without a GPU!
docker run -d --rm -p 8080:8080 ghcr.io/sozercan/llama2:7b
curl https://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
"model": "llama-2-7b-chat",
"messages": [{"role": "user", "content": "explain kubernetes in a sentence"}]
}'
Output should be similar to:
{"created":1701236489,"object":"chat.completion","id":"dd1ff40b-31a7-4418-9e32-42151ab6875a","model":"llama-2-7b-chat","choices":[{"index":0,"finish_reason":"stop","message":{"role":"assistant","content":"\nKubernetes is a container orchestration system that automates the deployment, scaling, and management of containerized applications in a microservices architecture."}}],"usage":{"prompt_tokens":0,"completion_tokens":0,"total_tokens":0}}
That's it! π API is OpenAI compatible so this is a drop-in replacement for any OpenAI API compatible client.
See demos for demos and examples.
AIKit comes with pre-made models that you can use out-of-the-box!
- π¦ Llama 2 7B Chat:
ghcr.io/sozercan/llama2:7b
- π¦ Llama 2 13B Chat:
ghcr.io/sozercan/llama2:13b
- π¬ Orca 2 13B:
ghcr.io/sozercan/orca2:13b
βοΈ Mixtral 8x7B Instruct:ghcr.io/sozercan/mixtral:8x7b
- π¦ Llama 2 7B Chat:
ghcr.io/sozercan/llama2:7b-cuda
- π¦ Llama 2 13B Chat:
ghcr.io/sozercan/llama2:13b-cuda
- π¬ Orca 2 13B:
ghcr.io/sozercan/orca2:13b-cuda
βοΈ Mixtral 8x7B Instruct:ghcr.io/sozercan/mixtral:8x7b-cuda
Note
Please see models folder for pre-made model definitions.
CPU models requires minimum of AVX instruction set. You can check if your CPU supports AVX by running grep avx /proc/cpuinfo
.
CUDA models includes CUDA v12. They are used with NVIDIA GPU acceleration.
Note
This section shows how to create a custom image with models of your choosing. If you want to use one of the pre-made models, skip to running models.
Create an aikitfile.yaml
with the following structure:
#syntax=ghcr.io/sozercan/aikit:latest
apiVersion: v1alpha1
models:
- name: llama-2-7b-chat
source: https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGUF/resolve/main/llama-2-7b-chat.Q4_K_M.gguf
Tip
This is the simplest way to get started to build an image. For full aikitfile
specification, see specs.
First, create a buildx buildkit instance. Alternatively, if you are using Docker v24 with containerd image store enabled, you can skip this step.
docker buildx create --use --name aikit-builder
Then build your image with:
docker buildx build . -t my-model -f aikitfile.yaml --load
This will build a local container image with your model(s). You can see the image with:
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
my-model latest e7b7c5a4a2cb About an hour ago 5.51GB
You can start the inferencing server for your models with:
# for pre-made models, replace "my-model" with the image name
docker run -d --rm -p 8080:8080 my-model
You can then send requests to localhost:8080
to run inference from your models. For example:
curl https://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
"model": "llama-2-7b-chat",
"messages": [{"role": "user", "content": "explain kubernetes in a sentence"}]
}'
{"created":1701236489,"object":"chat.completion","id":"dd1ff40b-31a7-4418-9e32-42151ab6875a","model":"llama-2-7b-chat","choices":[{"index":0,"finish_reason":"stop","message":{"role":"assistant","content":"\nKubernetes is a container orchestration system that automates the deployment, scaling, and management of containerized applications in a microservices architecture."}}],"usage":{"prompt_tokens":0,"completion_tokens":0,"total_tokens":0}}
It is easy to get started to deploy your models to Kubernetes!
Make sure you have a Kubernetes cluster running and kubectl
is configured to talk to it, and your model images are accessible from the cluster.
Tip
You can use kind to create a local Kubernetes cluster for testing purposes.
# create a deployment
# for pre-made models, replace "my-model" with the image name
kubectl create deployment my-llm-deployment --image=my-model
# expose it as a service
kubectl expose deployment my-llm-deployment --port=8080 --target-port=8080 --name=my-llm-service
# easy to scale up and down as needed
kubectl scale deployment my-llm-deployment --replicas=3
# port-forward for testing locally
kubectl port-forward service/my-llm-service 8080:8080
# send requests to your model
curl https://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
"model": "llama-2-7b-chat",
"messages": [{"role": "user", "content": "explain kubernetes in a sentence"}]
}'
{"created":1701236489,"object":"chat.completion","id":"dd1ff40b-31a7-4418-9e32-42151ab6875a","model":"llama-2-7b-chat","choices":[{"index":0,"finish_reason":"stop","message":{"role":"assistant","content":"\nKubernetes is a container orchestration system that automates the deployment, scaling, and management of containerized applications in a microservices architecture."}}],"usage":{"prompt_tokens":0,"completion_tokens":0,"total_tokens":0}}
Tip
For an example Kubernetes deployment and service YAML, see kubernetes folder. Please note that these are examples, you may need to customize them (such as properly configured resource requests and limits) based on your needs.
Note
At this time, only NVIDIA GPU acceleration is supported. Please open an issue if you'd like to see support for other GPU vendors.
AIKit supports GPU accelerated inferencing with NVIDIA Container Toolkit. You must also have NVIDIA Drivers installed on your host machine.
For Kubernetes, NVIDIA GPU Operator provides a streamlined way to install the NVIDIA drivers and container toolkit to configure your cluster to use GPUs.
To get started with GPU-accelerated inferencing, make sure to set the following in your aikitfile
and build your model.
runtime: cuda # use NVIDIA CUDA runtime
For llama
backend, set the following in your config
:
f16: true # use float16 precision
gpu_layers: 35 # number of layers to offload to GPU
low_vram: true # for devices with low VRAM
Tip
Make sure to customize these values based on your model and GPU specs.
Note
For exllama
and exllama2
backends, GPU acceleration is enabled by default and cannot be disabled.
After building the model, you can run it with --gpus all
flag to enable GPU support:
# for pre-made models, replace "my-model" with the image name
docker run --rm --gpus all -p 8080:8080 my-model
If GPU acceleration is working, you'll see output that is similar to following in the debug logs:
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr ggml_init_cublas: found 1 CUDA devices:
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr Device 0: Tesla T4, compute capability 7.5
...
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: using CUDA for GPU acceleration
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: mem required = 70.41 MB (+ 2048.00 MB per state)
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: offloading 32 repeating layers to GPU
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: offloading non-repeating layers to GPU
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: offloading v cache to GPU
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: offloading k cache to GPU
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: offloaded 35/35 layers to GPU
5:32AM DBG GRPC(llama-2-7b-chat.Q4_K_M.gguf-127.0.0.1:43735): stderr llm_load_tensors: VRAM used: 5869 MB
- LocalAI for providing the inference engine
- Mockerfile for the inspiration and sample code
- Huggingface and TheBloke for providing the models