Local AI Local AI Foundations

Local AI Hardware Check

Estimate what your machine can run before downloading models

48 of 66

What matters

Three numbers decide your local AI experience:

  1. VRAM on your GPU: the fast memory models live in.
  2. System RAM: used when a model does not fit in VRAM.
  3. Storage: model weights are 4 GB to 30 GB each.

Quick checks

macOS

system_profiler SPDisplaysDataType | grep "VRAM"

Apple Silicon uses unified memory. Check total RAM:

sysctl hw.memsize

Windows

Open Task Manager → Performance → GPU. Look at "Dedicated GPU memory".

Linux

nvidia-smi
free -h

Rule of thumb

Model sizeQuantizationVRAM neededGood for
7BQ44–6 GBFast chat, simple coding
13BQ48–10 GBBetter reasoning
70BQ440+ GBNear-frontier quality

If you do not have a GPU

Modern CPUs can run small quantized models. It will be slower, but it works. Use Ollama or LM Studio and set GPU offload to 0 layers.

Storage tip

Keep models on an SSD. Loading a 10 GB weight file from a spinning disk is painful.

Working out which model to run this on? See The Codex. Packaging it as a reusable skill? See The Armory.