ADVERTISEMENT

Build a powerful Hermes Agent on your gaming PC for free: here’s how I did it

Everyone is now running AI agents, spending hard-earned cash on Claude, GPT, or Gemini tokens. But what if I’m a cheapskate and care about my privacy? I transformed my gaming computer into a powerful AI workstation that runs a Hermes Agent when I’m not gaming, and it blew past my expectations.

AI agent on gaming PC

Image by Cybernews.

Ernestas Naprys
Ernestas Naprys Senior Journalist
May 26, 2026 Updated: 27 May 2026 8 min read
Jurgita Lapienyte justinasv Izabele Pukenaite vilius Ernestas Naprys Gintaras Radauskas
Don't miss our latest stories on Google News. Add us as your Preferred Source on Google
Add us as your Preferred Source on Google.

What is Hermes Agent capable of?

tetris hermes
100 blog posts
token usage
Token usage.

The ingredients: a PC with 32GB of RAM and preferably a GPU

ADVERTISEMENT
hermes agent website

What LLM to choose?

Check if your data has been leaked

Find out if your email, phone number or related personal information might have fallen into the wrong hands.
18,611,353,922
Breached accounts
36,030
Breached websites

What software stack do I use?

qwen-alibaba-deepseek
Image by Cybernews.

Important flags

  • -c 100000: context length of 100,000 tokens, which is very large. But Hermes Agent requires a large context length, meaning you have to work around it.
  • -ngl -1: loads as many layers to VRAM as possible. If the model doesn’t fully fit (which is the case in my situation), the rest of the layers spill into RAM and are processed by the CPU.
  • --models-max 1: tells the server to load only one model at a time.
  • --parallel 1: server processes only one request at a time with no parallel slots.
  • --cache-type-k q8_0 and --cache-type-v q8_0: I reduced KV cache quantization from 16 to 8 bits, which requires less virtual memory. Dense models with limited VRAM might require decreasing this even further to 4 bits.
  • -b 1024 and -ub 256: he first defines the batch size, of how many tokens are processed at once during prompt ingestion. The second subdivides that batch into micro batches.
  • --flash-attn or -fa: flash attention, in theory, reduces VRAM usage, but I didn’t notice much improvement. Currently not using it.
  • --chat-template-kwargs '{"enable_thinking":false}': this disables the reasoning mode on Qwen, making it respond much quicker. Hermes AI requires a massive amount of tokens, so this considerably improves the responsiveness of the whole system, at the cost of intelligence.

ADVERTISEMENT