PC pour agent IA Hermes local : modèle, contexte et VRAM

PC for local AI agent Hermes: model, context, and VRAM

Most AI tools forget everything as soon as you close the window. Hermes, the autonomous open-source agent from Nous Research, does the opposite: it remembers, learns from every task, and improves over time. And it can run entirely on your own machine, without an API key, without cloud, without cost per token.

Running an AI agent locally is nothing like running a simple chatbot. An agent chains dozens of steps, calls tools, reads results, decides what’s next, and keeps all this context in memory throughout the session. This imposes specific hardware requirements, often misunderstood.

This guide explains what the Hermes agent is, why context is the real determining factor, which model to pair it with, and which machine to choose to run it smoothly on a permanent basis.


What exactly is Hermes?

You need to distinguish two things with the same name, which are often confused.

On one side, there is the Hermes Agent framework: an autonomous open-source agent, MIT licensed, developed by Nous Research. It’s the software that orchestrates tasks, memory, and tools. On the other side, there are the Hermes models (the Hermes 4 series): language models fine-tuned by the same team, specifically for agent behavior.

The key point: the Hermes framework is model-independent. It works with any engine exposing an OpenAI-format API. You can feed it with a Hermes model, but also with Qwen, Gemma, or any other high-performance local model.

Why Hermes made an impression: the poorly kept secret of open models is that most are trained on conversational data — Q&A, summaries, writing. Agent behavior (reading a tool’s description, deciding to call it, analyzing the JSON response, choosing the next action) is barely represented. Hermes was specifically trained on real agent traces. It is one of the first local agents capable of handling a hundred-step search task without derailing.


What the Hermes framework can do

Persistent memory

Hermes retains context between sessions. It doesn’t start from scratch each time: it remembers your tasks, preferences, and what it has already accomplished.

Over 70 built-in skills

Web search, file handling, code execution, message sending: Hermes comes with dozens of ready-to-use tools, infinitely extensible.

Self-improvement

From successful tasks, Hermes creates reusable skill sheets, stored in Markdown, and reloads them when a similar situation arises. It regularly self-evaluates.

Scheduled automations

Hermes can execute recurring tasks on a schedule: monitoring, reports, surveillance, without your intervention.

Messaging connections

Telegram, Discord, Slack, WhatsApp, Signal, email: you control your agent from your usual tools, and it responds where you are.

Model-independent

Any OpenAI-compatible engine will do. The learning loop works identically with a local model on your machine.


The real determining factor: context, not model size

This is the most common mistake when sizing a machine for an agent. People first think about the model size. In reality, for an agent, it is the context window that drives memory needs.

Hermes consumes context aggressively. Each tool call, each observed result, each reasoning step accumulates in the context. Official documentation mandates a minimum of 64,000 tokens, and models with smaller windows are simply rejected at startup.

The constraint that changes everything: Hermes requires at least 64K tokens of context. This context lives in GPU memory, in addition to the model's weight. It is this context cache (the KV cache) that drives up the VRAM needed, much more than the model itself. Sizing a machine for an agent without considering the context always leads to disappointments.

Concretely, a model that fits in 8 GB for simple chat may require 12 or more once the 64K window is activated. And the more margin you want for multi-step reasoning (128K and beyond), the higher the VRAM climbs.


Which model to pair with Hermes locally

The number one criterion for an agent is not the model's general knowledge, but the reliability of tool-calling: its ability to call the right tools, read responses, and not get lost in long loops. Here are the best choices in 2026, by VRAM budget.

VRAM budget Recommended model Why 64K context
8 GB Qwen3 8B Best tool-calling in its class 10 to 12 GB, tight
16 GB Qwen 3.5 / 3.6 27B Reliable tool-calling, good reasoning Comfortable
16 GB Gemma 4 26B MoE Best speed-quality balance Comfortable
24 GB Hermes 4.3 36B Fine-tuned agent, neutral, up to 512K context Wide margin
24 GB Hermes 4 35B-A3B (MoE) Held a 100-step task without drifting 128K possible
The recommended pair to start with: Hermes Agent + a 27B model like Qwen 3.5/3.6 on a 16 GB card. This is the best balance point between reliability, speed, and budget. To fully leverage dedicated Hermes 4 models and long context windows, upgrade to 24 or 32 GB.
An honest word about MoE variants. Mixture-of-Experts models like the 35B-A3B are fast, but community feedback indicates they can, over very long agent loops, repeat or skip tool calls. Dense models (27B) are often more consistent on these tasks. If reliability matters more than speed for your agents, favor a dense model and test your pipeline before industrializing it.


Installing Hermes locally, step by step

On a machine with a recent NVIDIA card, the process is straightforward. Hermes relies on Ollama as the local inference engine.

  1. Install Ollama (recent version) and download the target model.
  2. Configure the model with a context window of at least 64K tokens.
  3. Install the Hermes Agent framework (recent Python required).
  4. Point Hermes to your local Ollama instance (OpenAI-compatible endpoint).
  5. Connect your messaging apps (Telegram, Discord, email) and start your first task.
# Example: prepare a 27B model with 64K context under Ollama
ollama pull qwen3.6:27b

# Create a variant with extended context for Hermes
cat > Modelfile <<'EOF'
FROM qwen3.6:27b
PARAMETER num_ctx 65536
PARAMETER temperature 0.6
PARAMETER top_p 0.95
EOF
ollama create qwen3.6-agent -f Modelfile

# Hermes then points to http://localhost:11434/v1
The silent trap: with an agent, a bad template format or too short a context doesn’t produce a clear error but silent failures — ignored tool calls, loops running empty. The model, engine, and client must agree on how tool schemas are serialized. On our machines, the environment is preconfigured and tested to avoid exactly this type of problem.


Why run your agent locally rather than in the cloud

An autonomous agent connected to your files, messaging, and tools naturally handles sensitive data. Running it locally offers decisive advantages.

  • Privacy. Your data, files, and conversations never leave your machine.
  • No usage cost. An agent running continuously and chaining tasks would be expensive with API calls. Locally, usage is unlimited, with no token billing.
  • Availability. No quotas, no request limits, no service interruptions from the provider.
  • Total control. You choose the model, the tools, the accessible data, and you keep full control over the entire environment.
  • Continuous operation. A local agent can run day and night, for monitoring or scheduled automations, at no extra cost.
The economic argument is real. An agent heavily used via a cloud API can cost several tens of euros per month, or much more with continuous use. A local station is a one-time investment: once acquired, your agent runs as much as you want, with no recurring token cost.


Which machine for a local Hermes agent

The right sizing depends on the target model and desired context window. Remember: the 64K, even 128K context, is the real driver of VRAM needs. Here are our suitable stations, assembled in Auriol (13390) and delivered throughout the EU, with Ollama and the agent environment preconfigured on request.

Radiance CoreAI 16 CoreAI 16 — RTX 5060 Ti 16 GBHermes + 27B model at 64K. The ideal entry point. 1 703 € Radiance CoreAI 32 CoreAI 32 — RTX 5070 Ti 16 GBResponsive agent, comfortable context, Ryzen 9 for tool use. 2 442 € Radiance CoreAI 64 RTX 5090 CoreAI 64 — RTX 5090 32 GBDedicated Hermes 4 models, 128K context, long agent loops. 6 042 € ASUS Ascent GX10 GB10 NVIDIA GB10 Mini AI ServerAgent running continuously 24/7, very long context, 128 GB unified. 3 999 €

For an agent running continuously, the GB10 mini-server is especially suitable: silent, energy-efficient, and designed to run continuously without tying up a workstation. It’s the ideal machine for a monitoring or automation agent working day and night on your network.


In short

Is Hermes Agent free?
Yes, open source under MIT license. Ollama and the open models (Qwen, Gemma, Hermes) are also free. The only cost is hardware and electricity.

What is the real sizing factor?
The context window. Hermes requires at least 64K tokens, which drives VRAM needs much higher than the model size alone.

What is the minimum VRAM?
8 GB for an 8B model at 64K (tight), 16 GB for a comfortable 27B model, 24 to 32 GB for dedicated Hermes 4 models and 128K context.

Which model to choose with Hermes?
To start, a 27B like Qwen 3.5/3.6 on 16 GB. For maximum reliability on long loops, a dense model rather than a MoE. To go further, the dedicated Hermes 4 models.

Is an internet connection required?
No for inference: everything runs locally. A connection is only needed for skills that query the web, if you enable them.

Can it run continuously?
Yes. A local agent can operate day and night for monitoring and automation. The GB10 mini-server is designed for this type of continuous use.

 

Back to the blog

Your quote for a custom AI solution within 24–48 hours

Every Radiance project starts with a conversation. Fill out this form, and an expert will quickly respond with a solution tailored to your business and budget.

Response within 24–48 business hours
Delivery throughout Europe (EU)
2-year warranty included
On-site installation available
No commitment on demand
Dedicated support before and after purchase
contact@radiancesystems.eu
+33 4 65 84 48 21
Mon – Fri, 9 AM – 5 PM
01 What is your primary use of AI?
Multiple choice.
02 In what context will the system be used?
Single choice.
03 What type of system are you looking for?
Single choice.
04 Which operating system do you prefer?
Single choice.
05 What are your expectations for the software?
Multiple choice.
06 What is your approximate budget?
Single choice.
07 When would you like to receive your system?
Single choice.
08 Would you like assistance with the setup?
Single choice. A Radiance technician can assist you at your location or remotely.
09 Delivery country (EU only) *
We only deliver within the European Union (EU).
10 Additional information (optional but very useful)
Briefly describe your project, your specific constraints, or any useful information.
11 Would you like to be contacted to discuss your project?
If you choose "Quote only," you will be able to reply to our email to ask your questions and refine the quote.
12 Email *
We will send the quote to this address.

Any more questions?

Send us an email at contact@radiancesystems.eu or contact us via the contact form; we respond to all inquiries within 3 hours during business hours (Monday to Friday from 9 AM to 5 PM).

📞 +33 4 65 84 48 21