Add memory provider for hermes
Check Flake / check-flake (push) Successful in 6m59s

This commit is contained in:
2026-06-03 17:23:06 -07:00
parent 4fb79e233c
commit 1551e5b02b
+10
View File
@@ -43,6 +43,16 @@
}; };
toolsets = [ "all" ]; toolsets = [ "all" ];
terminal.backend = "local"; terminal.backend = "local";
# Self-hosted memory: pure SQLite in-process, no external services or
# API keys. db file lives under HERMES_HOME (= /var/lib/hermes/.hermes),
# which is on the persisted bind-mount.
memory.provider = "holographic";
plugins.hermes-memory-store = {
db_path = "/var/lib/hermes/.hermes/memory_store.db";
auto_extract = true;
default_trust = 0.5;
};
}; };
}; };