Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blueprints/hermes-agent-on-fly-io.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<img src="/static/images/Hermes_Agent.png" alt="Illustration by Annie Ruygt of the Greek god Hermes mid-flight, depicted on a black-figure pottery bowl framed by olive branches" class="w-full max-w-lg mx-auto">
</figure>

[Hermes](https://github.com/NousResearch/hermes-agent) is an AI agent from Nous Research with a built-in learning loop: it watches its own output, notices when it had to improvise to finish a task, and writes that experience back as a reusable skill it can call next time. The skill library grows with use, so Hermes works best when it runs continuously on a persistent host rather than a short-lived sandbox, which is exactly what a Fly Machine with an attached volume gives you.

Check warning on line 12 in blueprints/hermes-agent-on-fly-io.html.md

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Avoid the unverifiable claim 'best'. Raw Output: {"message":"Avoid the unverifiable claim 'best'.","location":{"path":"blueprints/hermes-agent-on-fly-io.html.md","range":{"start":{"line":12,"column":324},"end":{"line":12,"column":328}}},"severity":"INFO","code":{"value":"Google.ExcessiveClaims","url":"https://developers.google.com/style/excessive-claims"}}

This guide walks you through running Hermes on a Fly Machine, configuring it, and reaching its web dashboard from your laptop.

Expand Down Expand Up @@ -40,7 +40,7 @@
machine_config = "machine_config.json"

[build]
image = "nousresearch/hermes-agent:latest"\
image = "nousresearch/hermes-agent:latest"

[[mounts]]
source = "data"
Expand Down Expand Up @@ -137,7 +137,7 @@

## Upgrading

The image is stateless; your data lives on the volume. To pull the latest Hermes:

Check warning on line 140 in blueprints/hermes-agent-on-fly-io.html.md

View workflow job for this annotation

GitHub Actions / Vale linter

[vale] reported by reviewdog 🐶 Avoid time-based words like 'latest' in product documentation. Raw Output: {"message":"Avoid time-based words like 'latest' in product documentation.","location":{"path":"blueprints/hermes-agent-on-fly-io.html.md","range":{"start":{"line":140,"column":68},"end":{"line":140,"column":74}}},"severity":"INFO","code":{"value":"Google.Timeless","url":"https://developers.google.com/style/timeless-documentation"}}

```bash
fly deploy -a <your-hermes-app>
Expand Down
Loading