Inspects CPU, system RAM, GPU(s), VRAM, and accelerator configuration to recommend models.
1.5K
Find out which open-source Large Language Models (LLMs) your hardware can comfortably run. llmfit inspects your CPU, system RAM, GPU(s), VRAM, and accelerator configuration to recommend models across popular quantizations.
📊 New: benchmark & share — real numbers from your machine, better estimates for everyone. Download a model, serve it, and measure real tok/s on your hardware — then contribute the results back to the project as a PR, straight from the TUI. No gh CLI, no third-party account. Every run is saved locally first, your own measurements replace estimates in the fit table, and each merged submission ships in the next release: anyone on identical hardware gets measured ✓ numbers before they ever run a benchmark. Follow the step-by-step benchmarking guide →
Previously: llmfit 1.0 — the release where the numbers became verifiable →
/api/v1/system, /api/v1/models) for integration into orchestrators, dashboards, and automated deployment pipelines.docker run -d -p 8787:8787 lj020326/llmfit web
services:
# Rust Backend API Service
llmfit-backend:
image: lj020326/llmfit:latest
container_name: llmfit-backend
restart: unless-stopped
command: ["serve", "--host", "0.0.0.0", "--port", "8787"]
expose:
- "8787"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8787/health"]
interval: 15s
timeout: 5s
retries: 3
start_period: 10s
# Web UI Frontend Service
llmfit-frontend:
image: lj020326/llmfit:latest
container_name: llmfit-frontend
restart: unless-stopped
command: ["web"]
ports:
- "8787:8787"
depends_on:
llmfit-backend:
condition: service_healthy
environment:
- NODE_ENV=production
- VITE_API_BACKEND=http://llmfit-backend:8787
Find the github repo here.
Content type
Image
Digest
sha256:c5221964d…
Size
45.2 MB
Last updated
16 days ago
docker pull lj020326/llmfit