PC for local AI agent Hermes: model, context, and VRAM
Share
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.
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.
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 |
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.
- Install Ollama (recent version) and download the target model.
- Configure the model with a context window of at least 64K tokens.
- Install the Hermes Agent framework (recent Python required).
- Point Hermes to your local Ollama instance (OpenAI-compatible endpoint).
- 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
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.
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.
CoreAI 16 — RTX 5060 Ti 16 GBHermes + 27B model at 64K. The ideal entry point. 1 703 €
CoreAI 32 — RTX 5070 Ti 16 GBResponsive agent, comfortable context, Ryzen 9 for tool use. 2 442 €
CoreAI 64 — RTX 5090 32 GBDedicated Hermes 4 models, 128K context, long agent loops. 6 042 €
NVIDIA GB10 Mini AI ServerAgent running continuously 24/7, very long context, 128 GB unified. 3 999 €
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.




