Skip to main content
guides

Hermes Agent Hardware Requirements: The 24GB Sweet Spot Explained

Patrick W.

The real Hermes Agent hardware requirements for running Qwen 3.6 27B locally: why agents need more memory than chatbots, the 24GB sweet spot, and what to buy.

A Mac mini next to an activity monitor showing memory usage while running a local AI model

This post contains affiliate links. We may earn a commission if you make a purchase, at no extra cost to you. As an Amazon Associate, Dadnology earns from qualifying purchases.

💾 The Number Everyone Gets Wrong

🦞 This guide is part of our OpenClaw Master Hub – everything we’ve learned about running AI agents at home, from first install to family automations.

Every piece of coverage on running Hermes Agent locally quotes the same figure: Qwen 3.6 27B is “under 17GB.” That number is true and also the wrong one to shop by. It describes the model file sitting on your disk — not what your machine needs in fast memory while the agent is actually working. Get this distinction wrong and you’ll buy a machine that runs a chat demo beautifully and chokes the moment Hermes starts a real multi-step task.

This guide is the deep dive we promised in our Hermes vs. OpenClaw comparison: the real math behind the hardware recommendation, why agents specifically break the “just check the model size” shopping method, and a head-to-head of the three machines that actually hit the number that matters.

Ad

Apple Mac mini (2024, M4 Pro) (opens in a new tab)

24GB of unified memory at 273GB/s bandwidth in the base configuration — the exact number this guide keeps landing on, in a silent, 24/7-ready box.

Apple Mac mini (2024, M4 Pro)

Why Agents Eat More Memory Than Chatbots

Here’s the mechanism, in plain terms. A chatbot conversation is mostly short: you ask, it answers, the context resets often. An agent doesn’t work that way. Hermes re-reads the entire relevant history on every step of a task — your original instruction, its own prior reasoning, the output of every tool call, relevant skill documents it’s pulled from memory. This re-reading is called prompt processing, and it’s the part that scales with your context window, not with the model’s parameter count.

That’s the whole reason a “17GB model” needs a 24GB machine. The model weights are fixed — they load once and sit there. The context window is what grows and shrinks as the agent works, and every token in that window occupies real memory for as long as the agent is reasoning about it. A quick coding question might use a few thousand tokens of context; a genuine multi-step agent task — read these five files, cross-reference them, write a script, test it, fix what broke — can run into the tens of thousands before it’s done.

Qwen 3.6 27B: The Real Numbers

Some hard facts worth having straight, sourced from the model’s own listings:

  • Architecture: Qwen 3.6 27B is a fully dense model — all 27 billion parameters are active on every single inference pass. (This matters because some newer models use a “mixture of experts” design that only activates a fraction of their parameters at a time; Qwen 3.6 doesn’t, so its memory footprint scales directly and predictably with its full parameter count.)
  • Disk size at 4-bit quantization (Q4_K_M): approximately 17GB — this is the number everyone quotes, and it’s accurate for what it measures.
  • Native context window: 262,144 tokens by default, extendable to over 1 million via YaRN scaling for specialized use (think: feeding an entire codebase in one pass). You will not run an agent at that ceiling on home hardware — and you don’t need to.
  • Ollama support: Qwen3.6:27b is listed in Ollama’s official model library, so a standard ollama pull qwen3.6:27b is the whole install step.
  • Lower-VRAM fallback: community quantizations at Q2 and Q3 exist for systems with 12–16GB, with an honest trade-off in reasoning quality. Fine for light tasks; not the full experience this guide is describing.

The practical translation: budget for the 17GB model plus real headroom for the context window your agent workflows actually need. c’t 3003’s hands-on testing — the source behind the original Hermes/Qwen coverage this cluster is built on — put the realistic total at about 24GB for a working context window in the tens of thousands of tokens. That’s not a formula you can derive from the model card alone; it’s the number that shows up once you’re actually running agent workloads instead of a single chat message.

Ad

Samsung T7 Shield 2TB (opens in a new tab)

You'll collect model variants fast. Fast external storage keeps the growing library off your system drive.

Samsung T7 Shield 2TB

Three Machines That Hit 24GB

Here’s every realistic path to the sweet spot, compared honestly:

Mac mini M4 ProFramework DesktopPC with 24GB GPU
Memory config24GB unified memory (base)32GB unified memory (base) / up to 128GB24GB VRAM (e.g. RTX 4090) + system RAM
Memory bandwidth273 GB/s (official Apple spec)256 GB/s (Ryzen AI Max)GPU-dependent, typically 900GB/s+ on-card
Starting price~$1,400$1,099 (32GB) / $1,999 (128GB)Varies — GPU alone often $1,600+
Power draw (idle)Single-digit wattsHigher than Mac mini, still modestHighest — GPU idle draw adds up 24/7
OSmacOSWindows or LinuxWindows or Linux
Best forSilent, always-on home agent boxLarger models, more headroom to growRepurposing an existing gaming PC

Mac mini M4 Pro remains our pick for the same reason it anchors our whole OpenClaw hardware recommendation: 24GB of genuinely fast unified memory, official 273GB/s bandwidth, near-silent, and low enough idle power draw to run 24/7 without becoming a line item. If you already bought this machine for OpenClaw, you already own the right hardware for Hermes — nothing further to buy.

Framework Desktop is the pick if you want room to grow beyond 27B-class models later: the 128GB configuration exists specifically for people who want to run much larger local models down the line, at the cost of a noisier, less power-sipping box and a higher entry price for that headroom.

A PC with a 24GB GPU makes sense mainly if you already own one for gaming — dedicating VRAM to an idle-running agent 24/7 is the least power-efficient of the three paths, since a discrete GPU’s idle draw is real and adds up over a month the Mac mini’s single-digit-watt idle simply doesn’t.

Ad

HDMI Dummy Plug 4K (opens in a new tab)

The classic headless-server fix — keeps a screenless local-AI box rendering properly so remote access never breaks.

HDMI Dummy Plug 4K

Check Your Own Machine Before You Buy Anything

Before spending a cent, it’s worth five minutes to know exactly what you’re starting from — most people guessing at “how much RAM do I have” are wrong by a tier in one direction or the other.

On a Mac: Apple menu → About This Mac tells you total memory, but not bandwidth, which matters just as much. For that, open Terminal and run sysctl hw.memsize for total memory, and check your specific chip’s spec sheet on Apple’s site for the bandwidth figure (M4 base: 120GB/s; M4 Pro: 273GB/s; M4 Max: up to 546GB/s) — the base M4 mini, despite having plenty of capacity in higher configurations, never reaches Pro-tier bandwidth, which is the number that actually governs how fast an agent thinks.

On Windows: Task Manager’s Performance tab shows installed RAM, but for a discrete GPU’s VRAM specifically, check Task Manager → Performance → GPU, or run nvidia-smi in a terminal for an NVIDIA card, which reports dedicated VRAM directly. System RAM and GPU VRAM are separate pools — an agent running an local model needs the model to fit in the GPU’s VRAM pool for real speed, not just “32GB of RAM installed.”

The quick gut-check: if the number you found is comfortably above 24GB in the fast pool (unified memory or GPU VRAM, not general system RAM), you’re set. If you’re at 16GB, plan on the Q2/Q3 fallback quantizations, or budget for an upgrade. If your only fast memory is 8GB or less, treat local Qwen 3.6 as a future project and either use Hermes with a cloud model backend in the meantime, or start on the budget Raspberry Pi path instead.

Running Hermes and OpenClaw Together: The Memory Budget

Our own Hermes vs. OpenClaw comparison proposed the low-risk path of running both agents side by side on one machine — and the hardware math above is exactly why that’s a real constraint, not a footnote. If OpenClaw is already running a local model of its own on the same box, you’re not budgeting 24GB once — you’re budgeting for whichever agent is actively reasoning at that moment, plus whatever the idle agent’s own footprint costs.

In practice, this works out fine on a single 24GB machine if you run the two agents’ models sequentially rather than simultaneously — Docker sandboxing (one of Hermes’ six execution backends) makes it straightforward to keep one agent’s model loaded and the other’s paused rather than both permanently resident. If you want both agents genuinely active at once — the actual head-to-head we’re running for the comparison piece — the honest answer is you want closer to 32–48GB of fast memory, which points toward either the Mac Studio tier or a Framework Desktop’s larger configuration rather than the base 24GB sweet spot this guide is built around.

What Doesn’t Work: The DDR5 Trap

The one path that technically runs but shouldn’t be your plan: ordinary system RAM on a regular PC, even with plenty of it. DDR5 system memory tops out at a fraction of the bandwidth of unified memory or VRAM — and since token generation speed is bandwidth-bound, not just capacity-bound, “I have 32GB of DDR5” does not substitute for 24GB of fast memory. This is the single most common mistake in this whole topic: buying capacity instead of bandwidth. c’t 3003’s testing found exactly this — running agent workloads on ordinary DDR5 works, but “quälend langsam”: painfully slowly, to the point of defeating the purpose.

Pros

  • Once you understand the prompt-processing multiplier, shopping for local-AI hardware stops being guesswork
  • 24GB is a stable target across model generations right now — buy for it once, several models' worth of runway
  • The Mac mini path doubles as a silent home server for everything else, not a single-purpose AI box
  • Ollama's official Qwen3.6:27b listing means the software side is a one-line install once the hardware is right

Cons

  • The '17GB model' headline number is technically true and practically misleading — easy to underbuy
  • Bandwidth, not just capacity, is the real spec — a cheap RAM upgrade on a normal PC doesn't fix this
  • Q2/Q3 fallback quantizations exist for 16GB systems, but with a real, honest quality trade-off
  • The Framework Desktop and discrete-GPU paths draw meaningfully more idle power than the Mac mini for 24/7 use

The hardware question for Hermes Agent has a clean answer once you stop shopping by model-file size: 24GB of fast unified memory or VRAM, not the ~17GB everyone quotes. A Mac mini M4 Pro hits that number quietly and efficiently, a Framework Desktop buys headroom to grow, and a spare gaming PC with a 24GB card works if the idle power draw doesn’t bother you. Buy for bandwidth, not just capacity, and you’ll only have to make this purchase once.

How much RAM or VRAM does Hermes Agent need?

Realistically about 24GB of fast unified memory or VRAM. The Qwen 3.6 27B model itself is roughly 17GB at 4-bit quantization (Q4_K_M), but agent workloads add a meaningful memory overhead for the context window on top of the model — which is why the practical number is 24GB, not the ~17GB the model file alone suggests.

Why do AI agents need more memory than a chatbot?

Because agents keep re-reading long histories: prior conversation, tool output, skill documents and file contents all get fed back into the model on every step — this is called prompt processing. A chatbot answering one question barely touches its context window; an agent working through a multi-step task can fill tens of thousands of tokens before it’s done, and that context has to live in fast memory alongside the model.

Can Hermes Agent run on 16GB of RAM?

Technically, at a lower quantization (Q2 or Q3 instead of Q4), with a real quality trade-off and a much smaller usable context window. It will work for light tasks. For the full agent experience — a generous context window and the model’s best reasoning quality — 24GB is the honest recommendation, not 16GB.

What's the best hardware for running Hermes Agent locally?

Three realistic paths hit the 24GB mark: a Mac mini M4 Pro (24GB unified memory, from about $1,400, silent and efficient), a Framework Desktop with Ryzen AI Max (32GB configuration from $1,099, higher raw memory bandwidth), or a PC with a 24GB GPU like an RTX 4090. For a quiet, always-on home setup, the Mac mini remains our pick.

Does Qwen 3.6 27B work with Ollama?

Yes — Qwen3.6:27b is listed directly in Ollama’s official model library, so a standard ollama pull gets you running. The 4-bit quantized version weighs about 17GB on disk.

Patrick W.Founder & Editor

Father of two, keen nature & landscape photographer, and smart-home tinkerer based in rural Germany. Camera gear gets tested outdoors in real conditions — not on a studio bench — and the house runs on a home network more elaborate than it strictly needs to be. Everything reviewed here has to survive real family life: school runs, sticky fingers, and the odd toddler stress-test. Reviews are never sponsored — no paid placements, no press-sample deals. How we test →

More about Dadnology

Disclaimer: This review and its visuals were created with the help of AI. Some links may be affiliate links – we may earn a commission if you make a purchase, at no extra cost to you.

You might also like

A Mac mini on a desk next to a terminal window running a local AI agent
guidesGuide

What Is Hermes Agent? The Self-Improving Local AI, Explained

Hermes Agent is Nous Research's open-source AI agent: persistent memory, self-written skills, cron jobs — and it runs fully offline on your own hardware.

A small home server on a desk next to a notebook with handwritten income calculations
guidesGuide

How to Make Money with AI at Home: What Actually Works (And What's Grift)

The honest guide to making money with AI at home: four workflows that actually earn, hardware from $80 to $1,400, the real math — and the grift to avoid.

Two terminal windows side by side on a desk, symbolizing two competing AI agents
guidesGuide

Hermes Agent vs. OpenClaw: Which Self-Hosted AI Agent Should You Run?

Hermes Agent vs OpenClaw, compared by a household that runs one of them daily: architecture, skills, security, offline capability and who should pick which.