Skip to main content

Hardware Requirements

Libre WebUI itself is lightweight. Hardware requirements mainly depend on the models you run through Ollama.

Quick Reference

HardwarePractical local modelsNotes
8 GB RAM, CPU only1B-4B quantizedGood for testing and light chat
16 GB RAM, CPU only4B-8B quantizedUsable, slower than GPU
8 GB VRAM4B-8B quantizedGood daily local setup
12-16 GB VRAM8B-14B quantizedStrong workstation range
24 GB VRAM14B-32B quantizedHigh-end local use
48 GB+ VRAM or large unified memory32B-70B quantizedLarge model experimentation

Actual speed depends on model architecture, quantization, context length, GPU drivers, and what else is running.

Good Starting Models

ollama pull gemma3:4b
ollama pull qwen3:8b
ollama pull deepseek-r1:8b
ollama pull nomic-embed-text

Use nomic-embed-text for document embeddings, not as a chat model.

VRAM vs RAM

VRAM is the biggest factor for local model speed. If the model fits in VRAM, responses are much faster. If it spills into system RAM, it may still work but will be slower.

System RAM matters for CPU inference, GPU offload, long context windows, and running the rest of the app.

Apple Silicon

Apple Silicon uses unified memory, so model memory comes from the same pool as the OS and applications. Larger unified-memory machines can run larger quantized models than their GPU VRAM number would suggest on a discrete-GPU system.

Keep enough free memory for the browser, backend, and operating system.

NVIDIA

NVIDIA GPUs generally have the best local inference compatibility through CUDA. Use current drivers and confirm Docker GPU access if running Ollama in containers.

AMD and Intel

AMD and Intel support depends on Ollama and driver support for your platform. CPU inference remains available when GPU acceleration is not.

Reducing Memory Use

  • Use smaller models.
  • Use Q4 quantization instead of Q8.
  • Lower context length.
  • Unload models you are not using.
  • Keep document embeddings separate from chat model choice.