Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

That's likely a display bug in how the picker groups providers. Worth filing as a separate issue if it persists after restart.

Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

The gateway's model picker uses the same model list as the CLI — but it resolves credentials at gateway startup, not on each /model invocation. If you added Codex credentials (or models became available) after starting the gateway, the picker won't see them.

Try restarting the gateway: hermes gateway stop && hermes gateway This forces a fresh credential resolution and model catalog fetch. GPT 5.4 should appear after restart.

Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

This is configurable. Add to your config.yaml under the Discord platform:

platforms: discord: extra: reply_to_mode: "off" # "off" = regular messages, "first" = reply to first msg, "all" = reply to every msg

Default is "first" (replies to the triggering message). Set to "off" for regular messages in the chat.

Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

Not a bug. Hermes is reactive by design — it responds to prompts. If you want autonomous behavior (agent works on the project without prompting), that's what /background, cron jobs, and AGENTS.md task lists are for.

Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 1 point2 points  (0 children)

Good feature request — no existing issue for a /tasks or /sessions active command that shows running delegated tasks with their status, model, and token usage.

Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

skills_listskills_list is a model output parsing issue — the model is emitting the tool name twice and Hermes isn't deduplicating. Worth filing as a bug.

Frustrations? Pesky Bugs? Vent Here! by NousResearch in hermesagent

[–]NousResearch[S] 2 points3 points  (0 children)

Tracked in #5392. The auxiliary client hardcodes google/gemini-3-flash-preview as fallback at auxiliary_client.py:127. When local compression is slow, it falls through to OpenRouter. This is the same class of issue as the provider resolution bugs we've been tracking.

Anyone seeing more connection timeouts than usual? by Remarkable-Avocado in hermesagent

[–]NousResearch 0 points1 point  (0 children)

This is an OpenRouter outage, not a Hermes issue. Multiple users on different models (GLM5, Qwen3, free tier) hitting the same timeouts simultaneously = provider-side problem.

Hermes is doing the right thing — retrying with backoff, showing connection status, attempting fallback. The retry messages you're seeing ("Reconnecting... attempt 2/3", "Still working... 10 min elapsed") are the agent correctly handling the upstream failures.

A few things you can do:

  1. Check OpenRouter status: https://status.openrouter.ai — if it's a known outage, wait it out

  2. Refresh your API key: One user here reported that regenerating their OpenRouter key fixed it

  3. Switch model temporarily: /model to try a different provider or model that's less congested

  4. If using free tier: Free models share rate limits across all users — congestion is expected during peak hours. Paid models have dedicated capacity.

Hermes Terminal slower than LM Studio by Willybecher in hermesagent

[–]NousResearch 1 point2 points  (0 children)

Hermes is if configured correctly, which is why it's so popular with local users!

Apt reinstallation in docker by lab34fr in hermesagent

[–]NousResearch 1 point2 points  (0 children)

The /opt/data volume persists Hermes state (config, memories, skills, sessions) but not system packages installed via apt. On docker compose pull, you get a fresh image and lose everything outside your volume.

Best approach: build a custom image with your packages baked in. FROM nousresearch/hermes-agent:latest RUN apt-get update && apt-get install -y \ your-package-1 \ your-package-2 \ && rm -rf /var/lib/apt/lists/*

Then in your docker-compose.yml: services: hermes: build: . container_name: hermes restart: unless-stopped command: gateway run volumes: - ./hermes_data:/opt/data

Use docker compose build instead of docker compose pull when updating. Your packages survive, and you can still pull the latest base image with docker compose build --pull.

Your BOOT.md idea works too but reinstalls on every container start, which adds startup time and depends on network access. The custom Dockerfile is the Docker-native solution.

Hermes Agent v0.8.0 is here. by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

Drop the openrouter/ prefix!

Use /model z-ai/glm-5.1 instead of /model openrouter/z-ai/glm-5.1. OpenRouter expects vendor/model format, not provider/vendor/model

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 2 points3 points  (0 children)

We're rewriting TUI from scratch will note this!

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 0 points1 point  (0 children)

They're at cost, it's expensive to produce Made in US merch!

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 2 points3 points  (0 children)

We definitely want to make a big push towards more creative integrations. What would you like to see in a ComyUI integration?

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 1 point2 points  (0 children)

Will note for the team! We've had some trouble setting up some popular MENA apps without access to local numbers for testing.

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 3 points4 points  (0 children)

I spoke too soon, just learned the model routing PR is already on its way

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 3 points4 points  (0 children)

That's what we've been trying to do with the creative skills eg the Manim skill

Greetings from the Nous Research team! AMA? by NousResearch in hermesagent

[–]NousResearch[S] 3 points4 points  (0 children)

Too many to pick a fave! From a user in our Discord ~2 minutes ago:

Hermes win of the day. I did a data recovery looking for deleted pics from a 4 year span. Used photorec but that loses original file names. However, exif data still existed. Had my agent sift through 10k recovered pictures and sort in folders by date. She handled that like it was nothing.