Run multiple LLM models on your machine and hot-swap between them as needed. llmsnap works with any OpenAI API-compatible server, giving you the flexibility to switch models without restarting your applications.
Built in Go for performance and simplicity, llmsnap has zero dependencies and is incredibly easy to set up. Get started in minutes - just one binary and one configuration file.
- ✅ Easy to deploy and configure: one binary, one configuration file. no external dependencies
- ✅ On-demand model switching
- ✅ Use any local OpenAI compatible server (llama.cpp, vllm, tabbyAPI, stable-diffusion.cpp, etc.)
- future proof, upgrade your inference servers at any time.
- ✅ OpenAI API supported endpoints:
- ✅ Anthropic API supported endpoints:
v1/messagesv1/messages/count_tokens
- ✅ llama-server (llama.cpp) supported endpoints
v1/rerank,v1/reranking,/rerank/infill- for code infilling/completion- for completion endpoint
- ✅ llmsnap API
/ui- web UI/upstream/:model_id- direct access to upstream server (demo)/models/unload- manually unload running models (#58)/models/sleep/:model_id- put a model to sleep (requires sleep/wake configuration)/running- list currently running models (#61)/log- remote log monitoring/health- just returns "OK"
- ✅ API Key support - define keys to restrict access to API endpoints
- ✅ Customizable
- Run multiple models at once with
Groups(#107) - Automatic unloading of models after timeout by setting a
ttl - Fast model switching with sleep/wake support (vLLM sleep mode, offload memory instead of full restart)
- Reliable Docker and Podman support using
cmdandcmdStoptogether - Preload models on startup with
hooks(#235)
- Run multiple models at once with
llmsnap includes a real time web interface for monitoring logs and controlling models:
The Activity Page shows recent requests:
llmsnap can be installed in multiple ways
- Docker
- Homebrew (OSX and Linux)
- From release binaries
- From source
Docker Install (download images)
Nightly container images with llmsnap and llama-server are built for multiple platforms (cuda, vulkan, intel, etc.) including non-root variants with improved security. The stable-diffusion.cpp server is also included for the musa and vulkan platforms.
$ docker pull ghcr.io/napmany/llmsnap:cuda
# run with a custom configuration and models directory
$ docker run -it --rm --runtime nvidia -p 9292:8080 \
-v /path/to/models:/models \
-v /path/to/custom/config.yaml:/app/config.yaml \
ghcr.io/napmany/llmsnap:cuda
# configuration hot reload supported with a
# directory volume mount
$ docker run -it --rm --runtime nvidia -p 9292:8080 \
-v /path/to/models:/models \
-v /path/to/custom/config.yaml:/app/config.yaml \
-v /path/to/config:/config \
ghcr.io/napmany/llmsnap:cuda -config /config/config.yaml -watch-configmore examples
# pull latest images per platform
docker pull ghcr.io/napmany/llmsnap:cpu
docker pull ghcr.io/napmany/llmsnap:cuda
docker pull ghcr.io/napmany/llmsnap:vulkan
docker pull ghcr.io/napmany/llmsnap:intel
docker pull ghcr.io/napmany/llmsnap:musa
# tagged llmsnap, platform and llama-server version images
docker pull ghcr.io/napmany/llmsnap:v0.0.1-cuda-b7342
# non-root cuda
docker pull ghcr.io/napmany/llmsnap:cuda-non-root
brew tap napmany/llmsnap
brew install llmsnap
llmsnap --config path/to/config.yaml --listen localhost:8080Binaries are available on the release page for Linux, Mac, Windows and FreeBSD.
- Building requires Go and Node.js (for UI).
git clone https://github.com/napmany/llmsnap.gitmake clean all- look in the
build/subdirectory for the llmsnap binary
# minimum viable config.yaml
models:
model1:
cmd: llama-server --port ${PORT} --model /path/to/model.ggufThat's all you need to get started:
models- holds all model configurationsmodel1- the ID used in API callscmd- the command to run to start the server.${PORT}- an automatically assigned port number
Almost all configuration settings are optional and can be added one step at a time:
- Advanced features
groupsto run multiple models at oncehooksto run things on startupmacrosreusable snippets
- Model customization
ttlto automatically unload modelsaliasesto use familiar model names (e.g., "gpt-4o-mini")envto pass custom environment variables to inference serverscmdStopgracefully stop Docker/Podman containersuseModelNameto override model names sent to upstream servers${PORT}automatic port variables for dynamic port assignmentfiltersrewrite parts of requests before sending to the upstream server
See the configuration documentation for all options.
When a request is made to an OpenAI compatible endpoint, llmsnap will extract the model value and load the appropriate server configuration to serve it. If the wrong upstream server is running, it will be replaced with the correct one. This is where the "swap" part comes in. The upstream server is automatically swapped to handle the request correctly.
In the most basic configuration llmsnap handles one model at a time. For more advanced use cases, the groups feature allows multiple models to be loaded at the same time. You have complete control over how your system resources are used.
If you deploy llmsnap behind nginx, disable response buffering for streaming endpoints. By default, nginx buffers responses which breaks Server‑Sent Events (SSE) and streaming chat completion. (#236)
Recommended nginx configuration snippets:
# SSE for UI events/logs
location /api/events {
proxy_pass http://your-llmsnap-backend;
proxy_buffering off;
proxy_cache off;
}
# Streaming chat completions (stream=true)
location /v1/chat/completions {
proxy_pass http://your-llmsnap-backend;
proxy_buffering off;
proxy_cache off;
}As a safeguard, llmsnap also sets X-Accel-Buffering: no on SSE responses. However, explicitly disabling proxy_buffering at your reverse proxy is still recommended for reliable streaming behavior.
# sends up to the last 10KB of logs
$ curl http://host/logs
# streams combined logs
curl -Ns http://host/logs/stream
# stream llmsnap's proxy status logs
curl -Ns http://host/logs/stream/proxy
# stream logs from upstream processes that llmsnap loads
curl -Ns http://host/logs/stream/upstream
# stream logs only from a specific model
curl -Ns http://host/logs/stream/{model_id}
# stream and filter logs with linux pipes
curl -Ns http://host/logs/stream | grep 'eval time'
# appending ?no-history will disable sending buffered history first
curl -Ns 'http://host/logs/stream?no-history'Any OpenAI compatible server would work.
For Python based inference servers like vllm or tabbyAPI it is recommended to run them via podman or docker. This provides clean environment isolation as well as responding correctly to SIGTERM signals for proper shutdown.
Note
⭐️ Star this project to help others discover it!
