Integrated open-multi-agent with TencentDB-Agent-Memory via the Hermes Gateway #180
JackChen-me
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
We just added a cookbook to open-multi-agent (a TS multi-agent orchestration framework) that uses TDAM as the long-term memory backend for an agent team, through your Hermes Gateway: examples/integrations/with-tencentdb-memory. Team results capture into TDAM via
/captureand come back on the next run via/recall, with the L0→L1 pipeline distilling in between.Two things we hit, in case they help other integrations: the L1 extractor is user-centric (it distills persona/episodic/instruction memories about the user and skips assistant output), so the agent's result has to go in the user slot of the captured turn or nothing gets extracted; and
POST /session/enddrains in-flight extraction but doesn't force turns still under theeveryNConversationsthreshold, so we run the Gateway witheveryNConversations: 1for deterministic capture-then-search in a short demo.Beta Was this translation helpful? Give feedback.
All reactions