ZML/LLMD is a high performance LLM server, built by ZML.ai
3.3K
███████╗███╗ ███╗██╗ ██╗ ██╗ ██╗ ███╗ ███╗██████╗
╚══███╔╝████╗ ████║██║ ██╔╝ ██║ ██║ ████╗ ████║██╔══██╗
███╔╝ ██╔████╔██║██║ ██╔╝ ██║ ██║ ██╔████╔██║██║ ██║
███╔╝ ██║╚██╔╝██║██║ .ai ██╔╝ ██║ ██║ ██║╚██╔╝██║██║ ██║
███████╗██║ ╚═╝ ██║███████╗ ██╔╝ ███████╗███████╗██║ ╚═╝ ██║██████╔╝
╚══════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚══════╝╚═╝ ╚═╝╚═════╝
This is an alpha of ZML/LLMD, the ZML.ai homegrown high-performance LLM inference server (read more in the release blog post). Please report any issues to the ZML team.
ZML/LLMD is a work in progress and may change significantly in the future.
Requires NVIDIA Container Toolkit
docker run -p 8000:8000 --shm-size=256GB --gpus=all -e HF_TOKEN -it zmlai/llmd \
--model=hf://Qwen/Qwen3-8B
docker run -p 8000:8000 --device=/dev/kfd --device=/dev/dri -e HF_TOKEN -it zmlai/llmd:rocm \
--model=hf://Qwen/Qwen3-8B
docker run -p 8000:8000 --device=/dev/dri -e HF_TOKEN -it zmlai/llmd:oneapi \
--model=hf://Qwen/Qwen3-8B
docker run --net=host --privileged -e HF_TOKEN -it zmlai/llmd:tpu \
--model=hf://Qwen/Qwen3-8B
Here are the models we support:
Once running, the server provides OpenAI-compatible endpoints at http://localhost:8000, example:
curl -X POST http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3",
"messages": [
{"role": "user", "content": "What is the capital of France?"}
]
}'
Content type
Image
Digest
sha256:32a9f3822…
Size
5.4 GB
Last updated
about 2 hours ago
docker pull zmlai/llmd:rocm