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

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

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

Running an AI agent locally is completely different from running a simple chatbot. An agent strings together dozens of steps, calls tools, reads results, decides on the next action, and keeps all this context in memory throughout the session. This imposes precise hardware constraints, often misunderstood.

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


What exactly is Hermes?

We need to distinguish between two things that share the same name, and are often confused.

On one hand, there is the Hermes Agent framework: an open-source autonomous agent, under MIT license, developed by Nous Research. This is the software that orchestrates tasks, memory, and tools. On the other hand, there are the Hermes models (the Hermes 4 series): language models refined by the same team, specifically for agentic behavior.

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

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


What the Hermes framework can do

Persistent memory

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

Over 70 built-in skills

Web search, file manipulation, code execution, message sending: Hermes includes dozens of ready-to-use tools, endlessly extensible.

Self-improvement

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

Scheduled automations

Hermes can execute recurring tasks according to 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 to you wherever 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. We first think about the model size. In reality, for an agent, it's the context window that drives memory requirements.

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 game-changing constraint: Hermes requires at least 64K tokens of context. This context lives in GPU memory, in addition to the model's weight. It's this context cache (the KV cache) that drives up the necessary VRAM, much more than the model itself. Sizing a machine for an agent without considering context systematically leads to disappointments.

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


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-in-class tool-calling 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 Agent-tuned, neutral, up to 512K context Ample margin
24 GB Hermes 4 35B-A3B (MoE) Sustained a 100-step task without drifting 128K possible
The recommended pair to start: Hermes Agent + a 27B model like Qwen 3.5/3.6 on a 16 GB card. This is the best balance between reliability, speed, and budget. To fully exploit dedicated Hermes 4 models and long context windows, move to 24 or 32 GB.
An honest word on MoE variants. Mixture-of-Experts models like the 35B-A3B are fast, but community feedback indicates that they can, on very long agent loops, repeat or skip tool calls. Dense models (27B) are often more consistent for these tasks. If reliability takes precedence over speed for your agents, opt for a dense model and test your chain before industrializing it.


Installing Hermes locally, step by step

On a machine equipped with a recent NVIDIA card, the process is straightforward. Hermes relies on Ollama as a 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 launch 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 insufficient context does not produce a clear error, but silent failures — ignored tool calls, loops that run in circles. The model, engine, and client must agree on how tool schemas are serialized. On our machines, the environment is pre-configured and tested to prevent exactly this type of problem.


Why run your agent locally instead of in the cloud

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

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


Which machine for a local Hermes agent

Proper sizing depends on the target model and desired context window. Remember: the 64K, or even 128K, context is the real driver of VRAM needs. Here are our adapted stations, assembled in Auriol (13390) and delivered throughout the EU, with Ollama and the agent environment pre-configured upon request.

Radiance CoreAI 16 CoreAI 16 — RTX 5060 Ti 16 GBHermes + 27B model in 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 AI Mini ServerAgent in continuous 24/7 operation, very long context, 128 GB unified. 3 999 €

For an agent running permanently, the GB10 mini-server is particularly suitable: quiet, energy-efficient, and designed to operate continuously without tying up a workstation. It's the ideal machine for a monitoring or automation agent that works day and night on your network.


In brief

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

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

What is the minimum VRAM?
8 GB for an 8B model with 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 an MoE. For more advanced use, dedicated Hermes 4 models.

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

Can it run continuously?
Yes. A local agent can operate day and night for monitoring and automations. 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 begins with a conversation. Fill out this form and an expert will respond promptly 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 possible
No commitment required
Dedicated support before and after purchase
01 What is your primary use for 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 indicative budget?
Single choice.
07 When would you like to receive your system?
Single choice.
08 Would you like help with the setup?
Single choice. A Radiance technician can assist you remotely or in person.
09 Delivery Country (EU only) *
We only deliver within the European Union (EU).
10 Additional Information (optional but very helpful)
Please briefly describe your project, specific constraints, or any useful information.
11 Would you like to be contacted to discuss your project?
If you choose "Quote only", you can 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, 9am to 5pm).

📞 +33 4 65 84 48 21