Local LLM Inference Engine Selector
Pick the best backend for your model, hardware, and use case. Ollama, llama.cpp, vLLM, TensorRT-LLM, SGLang, MLX, TGI, TabbyAPI, Aphrodite, and more.
Why the backend matters
Throughput vs latency
Chat bots need low time-to-first-token. Batch pipelines care about total throughput. Servers like vLLM and TensorRT-LLM optimize throughput; Ollama and llama.cpp optimize quick local use.
Hardware lock-in
MLX is Apple-only. TensorRT-LLM is NVIDIA-only. llama.cpp is the most portable. Choose the engine that matches the hardware you already own.
Quantization formats
GGUF works nearly everywhere. GPTQ/AWQ/EXL2 are fastest on CUDA. FP16/BF16 need the most VRAM. Match your model file to your engine.
Serving interface
OpenAI-compatible endpoints let you swap local and cloud with one line of code. Pick an engine with an HTTP server if you are building an app.