A Windows app that reads your PC's specs and tells you which local LLMs are likely to run well on it. No Python install required — just unzip and launch.
You want to try local LLMs (AI models that run on your own PC), but you're not sure which model to pick or whether your machine can handle it. This tool helps with exactly that.
It auto-detects your CPU, RAM, GPU, and VRAM, then lists the models likely to run comfortably on your PC — with use case, fit, speed, and the evidence behind each rating.
- Find models that suit your PC (
Recommendations) - Review your detected hardware (
This PC) - Estimate required memory per quantization for a given model (
Plan) - Compare how a GPU upgrade would change things (
Upgrade Compare) - Generate code to run a chosen model (
Snippet)
This app does not download or run models, and there's no chat UI. It focuses on one thing: choosing before you run. How to actually run a model is covered below.
Grab whichllm-gui-vX.Y.Z-win-x64.zip from the latest release.
It's a self-contained build for Windows 10 / 11 (64-bit), so you don't need to install Python or .NET separately.
If your PC already has the .NET Desktop Runtime installed, you can also choose the smaller framework-dependent build.
Extract the ZIP anywhere and double-click WhichLlm.Gui.exe.
If you see "Windows protected your PC" This app isn't code-signed, so Windows SmartScreen may warn you on first launch. To run it after reviewing what it is, click "More info" → "Run anyway". If you'd rather verify the download first, see "Verifying the download" below.
On launch, hardware detection runs, and once it finishes the list of models that suit your PC appears automatically. You don't need to press anything. That's it.
Each release ships a SHA256 checksum for its ZIP. If you want to confirm the file isn't corrupted or tampered with, verify it in PowerShell:
Get-FileHash .\whichllm-gui-vX.Y.Z-win-x64.zip -Algorithm SHA256
Get-FileHash .\whichllm-gui-vX.Y.Z-win-x64-framework-dependent.zip -Algorithm SHA256If the printed value matches the checksum listed on the release, you're good.
Read the Recommendations list along these axes:
- Use case: everyday / chat / programming / logic & math / image / search & classification. Only models that fit your goal remain.
- Fit:
Comfortable… expected to fit within GPU memory. Runs most smoothly.Runs but heavy… expected to spill out of the GPU and also use CPU/RAM. It runs, but slower.
- Speed estimate: a rough sense of whether it's fine for everyday use or very fast.
- Evidence: distinguishes what each rating is based on (a real measurement vs. an estimate from a nearby lineage) and adjusts the score by confidence.
When in doubt, start with a model that's both Comfortable and matches your use case.
This app doesn't run models, so you run your chosen model with a separate tool.
- Want the easy path: apps like Ollama or LM Studio let you run models with little or no command-line or code.
- Want to run it in code: the
Snippettab generates Python code and auv run --no-project ...command for your chosen model. Copy and use it as-is.
So the flow is: decide what to run in whichllm GUI, then actually run it with one of the above.
| Tab | What it does |
|---|---|
Recommendations |
Lists models that suit this PC |
This PC |
Shows detected CPU / RAM / GPU / VRAM / free disk |
Plan |
Estimates required memory per quantization for a model |
Upgrade Compare |
Compares top models and gains per GPU candidate |
Snippet |
Generates Python code/commands to run a model |
Settings |
Change cache location, Hugging Face endpoint, and language |
- GPU not detected / VRAM looks wrong
If auto-detection fails, open "Manual hardware values" on the
This PCscreen and either type VRAM/bandwidth directly, or pick the closest card from "Choose Preset" to auto-fill typical values. GPU detection first reads the name / vendor / VRAM / device count from Windows' built-in DXGI (no extra drivers or SDKs needed). Where available,nvidia-smi(NVIDIA),hipInfo.exe(AMD), orxpu-smi(Intel) enrich the result with architecture details; if DXGI is unavailable, the previous path (vendor CLIs → WMI/registry) is used as a fallback. If detection still looks wrong, "Copy diagnostics" copies the full detection detail for a bug report. - You have multiple GPUs
All detected GPUs are shown, and the
Target GPU / Groupselector onRecommendationslets you choose what to estimate for: a whole same-generation group, a single specific card, or just some of N identical cards (e.g. 2 of 3, when you have 3+). Fit and speed are estimated for the configuration you pick. Mixed-generation or mixed-architecture GPUs are not treated as simple combined VRAM and judged "runnable." - No internet / first launch When neither live fetch nor cache is available, a minimal set of common small-to-mid models is shown so the screen is never empty.
- Change language / clear cache
Use the
Settingstab to switch Japanese / English and check the cache location.
Model info is fetched from the Hugging Face API. If the HF_ENDPOINT environment variable is set, that endpoint is used. Beyond popularity, recently updated GGUF models and trending models are also picked up.
Benchmark info is layered across several sources:
- current: LiveBench / Artificial Analysis / Aider
- frozen: Open LLM Leaderboard v2 / Chatbot Arena ELO
- fallback: a minimal seed for when all live fetches fail
Models that exist only in frozen sources have their scores decayed by how old their lineage is, to avoid overrating them.
Cache location and lifetimes:
%LocalAppData%\whichllm-gui\cache
- Model info: 6 hours
- Benchmark info: 24 hours
Building requires the .NET SDK.
dotnet restore
dotnet test tests\WhichLlm.Tests\WhichLlm.Tests.vbproj
dotnet build src\WhichLlm.Gui\WhichLlm.Gui.vbproj
dotnet publish src\WhichLlm.Gui\WhichLlm.Gui.vbproj -c Release -r win-x64 --self-contained true
dotnet publish src\WhichLlm.Gui\WhichLlm.Gui.vbproj -c Release -r win-x64 --self-contained falsePublish output:
src\WhichLlm.Gui\bin\Release\net10.0-windows\win-x64\publish\
See Releases for per-version changes.
whichllm GUI itself is released under the MIT License. See LICENSE for details.
This GUI is inspired by:
- whichllm: https://github.com/Andyyyy64/whichllm
- llmfit: https://github.com/AlexsJones/llmfit
For the copyright notices of the referenced projects, see THIRD_PARTY_NOTICES.md.
