| name | llm_backends |
| description | Discover, audit and use local LLM servers (LM Studio, Ollama, LocalAI, vLLM, llama.cpp) on this machine or the network to offload work from the cloud and save tokens. Use when the user mentions local models, LM Studio, Ollama, "run it locally", token savings via local hardware, or wants to know what models their machine can run. |
llm_backends — Local LLM discovery, audit & routing
Turn idle local hardware into a token-saving tier. Every task served by a local
model is a task not billed to the cloud.
When to use
- The user mentions LM Studio, Ollama, LocalAI, vLLM, llama.cpp, "local model",
"run it locally", or "use my GPU".
- You need to know what models are reachable (this machine or the network).
- A task is cheap/local-suitable (classification, extraction, short summary,
routing, spell-check, simple Q&A) and could skip the cloud entirely.
- The user has no local model yet and wants step-by-step, hardware-aware setup.
Quick commands
python -m skills.llm_backends.cli scan
python -m skills.llm_backends.cli scan --subnet
python -m skills.llm_backends.cli scan 192.168.1.47
python -m skills.llm_backends.cli list
python -m skills.llm_backends.cli audit --fresh
python -m skills.llm_backends.cli chat "classify: bug or feature?" --max-tokens 128
python -m skills.llm_backends.cli profile ~/my-project
Programmatic use
from skills.llm_backends import registry, quick_chat, audit
registry.refresh()
best = registry.best_chat_backend()
model = registry.preferred_model(best)
res = quick_chat("summarize in 1 line: ...", max_tokens=200)
print(res.text, res.total_tokens)
Supported backends
| Backend | Default port | API |
|---|
| LM Studio | 1234 | OpenAI /v1 |
| Ollama | 11434 | native /api/tags + OpenAI /v1 |
| LocalAI | 8080 | OpenAI /v1 |
| vLLM | 8000 | OpenAI /v1 |
| Jan / KoboldCpp / text-gen-webui | 1337 / 5001 / 5000 | OpenAI /v1 |
| ComfyUI | 8188 | image gen |
| Qdrant | 6333 | vector search |
How it saves tokens
- Audit finds reachable local backends and profiles RAM/VRAM/GPU.
- Route sends local-suitable tasks (see
tiered_router L0/L1) to a local model.
- Call runs them via the OpenAI-compatible client — zero cloud tokens.
- Onboard users with no local model, recommending the largest model their
hardware can run and the right server to install.
Related: [[llm_mcp]] (MCP tools for agents), tiered_router (cost tiers),
local_router (task→backend mapping), response_cache (skip repeated calls).