Three Budget Builds, Priced for 2026
| Build | Parts (used) | Cost | What it runs | Speed |
|---|---|---|---|---|
| CPU-only | Office PC: i5/Ryzen 5, 16GB RAM | ~$150–200 | Qwen3-8B, GLM-4-9B (Q4) | 5–12 t/s — usable chat |
| GPU budget ⭐ | Office PC (32GB RAM) + RTX 3060 12GB | ~$450–500 | Qwen3.5-9B, Qwen3-Coder-7B, Gemma 4 12B (tight) | 40–70 t/s |
| AMD value | Office PC (32GB RAM) + RX 6700 XT 12GB | ~$400–450 | Same class as above; needs ROCm setup | 35–60 t/s |
| Used Mac laptop | M1/M2 MacBook Air 16GB | ~$550–700 | Qwen3.5-9B, Gemma 4 12B | 15–30 t/s, portable, zero setup |
Prices are honest 2026 used-market ballparks — they vary by region, but the shape holds. The GPU budget build is the value king: it outruns machines that cost 5x more three years ago.
Why This Works: The Hardware Rules
- VRAM is everything. A 12GB card runs ~9B at Q4 entirely on GPU. The RAM-ranked guide is your shopping list — pick the model, read the size, buy the VRAM.
- Inference barely uses the CPU. A used i5 from 2019 is fine. Save your money for RAM and GPU.
- System RAM decides what you can load. 32GB lets a 14B model spill over gracefully; 16GB is fine for ≤9B.
- NVIDIA = zero friction; AMD = savings with a setup step. CUDA works out of the box; ROCm needs a driver install but is mature for llama.cpp/Ollama in 2026.
From Boxes to Tokens: The Setup
# Windows + NVIDIA (zero-friction path)
winget install Ollama.Ollama
ollama pull qwen3.5:9b
ollama run qwen3.5:9b
# Verify GPU offload
ollama ps # should show PROCESSOR GPU
# Linux + AMD (ROCm)
# 1. Install ROCm (see AMD docs for your distro)
# 2. Then Ollama with ROCm build, or llama.cpp with HIP
git clone https://github.com/ggml-org/llama.cpp
cmake -B build -DGGML_HIP=ON
ollama pull qwen3.5:9b
Then add the usual stack: ChromaDB for RAG, a GUI for chat, Continue for coding assistance. The whole offline workspace runs on this build.
The Upgrade Path (When $500 Isn't Enough)
| Next step | Cost | Gain |
|---|---|---|
| RTX 3090 24GB (used) | ~$600–700 | 30B-class models at 20–40 t/s — the biggest single jump |
| 32GB → 64GB system RAM | ~$60–80 | Larger models with offload, bigger contexts |
| Second 12GB GPU | ~$250 | Split 24B across two cards — check PSU and motherboard first |
| Used Mac Studio (32GB+) | ~$1,000+ | Big unified memory, silent, efficient — the long-haul upgrade |
Before upgrading hardware, upgrade the model's quantization — Q4_K_M vs Q8_0 and KV cache tricks often buy more than a new card.
Frequently Asked Questions (FAQ)
What is the cheapest way to run a 7B–14B model locally?
A used RTX 3060 12GB (~$220–260 in 2026) is the classic budget answer — 7–8B models at 40–70 t/s. For even cheaper, a 16GB-RAM used desktop (~$200) runs 7–8B at CPU speed (5–12 t/s). A used 16GB MacBook Air runs 7–14B at 15–30 t/s but costs more.
Can I really run local AI for under $500?
Yes — comfortably. The sweet spot is a used office PC (i5/Ryzen 5, 16–32GB RAM, ~$200) plus a used 12GB GPU (~$250–300). That runs 7–14B models at GPU speed, full RAG, and agents. The $500 budget is a luxury, not a constraint, in 2026.
Is an AMD GPU good for local AI?
Yes in 2026 — ROCm support for llama.cpp and Ollama is mature for RX 6000/7000 series, and used RX 6700 XT / 6800 cards offer 12–16GB VRAM at bargain prices. Setup needs a ROCm driver step; NVIDIA (CUDA) remains zero-friction.
Should I buy a used Mac instead of a PC for AI?
If you need a laptop and value portability: yes — a used M1/M2 MacBook Air 16GB runs 7–14B models well (15–30 t/s) with zero GPU fuss. If you want max tokens per dollar on a desk: the used-PC + GPU build wins on both price and speed.
What models should I run on a $500 setup?
With 12GB VRAM: Qwen3.5-9B, Gemma 4 12B (tight), Qwen3-Coder-7B. With 16–32GB system RAM (CPU): Qwen3-8B, GLM-4-9B at 5–12 t/s. The RAM-ranked GGUF guide in this blog has exact file sizes and the hardware-fit table.
What should I buy first — more VRAM or more RAM?
VRAM, then system RAM. VRAM decides which models run at GPU speed; system RAM decides what you can even load. The order for a budget build: GPU with 12GB+ VRAM first, 32GB system RAM second, CPU third. The CPU barely matters for inference.