How we use Dakera for multi-agent memory in production #158
ferhimedamine
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.
-
Hey 👋 — I'm the creator of Dakera, and wanted to share how we actually use it in production to give our AI agents persistent memory across sessions.
The problem
We run 9 autonomous AI agents (CEO, CTO, Core Engine, Platform, SDK, QA, etc.) that each need to:
The setup
Single
docker-compose.local.yml→ one Dakera server handling all 9 agents. Each agent has its own namespace, but they can read each other's memories for cross-team coordination.git clone https://github.com/dakera-ai/dakera-deploy cd dakera-deploy/docker docker compose -f docker-compose.local.yml up -dWhat makes it work
Results
88.2% on the LoCoMo benchmark (1,540 questions testing temporal reasoning, multi-hop retrieval, and event ordering). In practice, agents recall decisions from weeks ago and build on each other's work.
Happy to answer questions about the setup, configuration, or scaling. If you're building multi-agent systems and need persistent memory, I'd love to hear about your use case.
Beta Was this translation helpful? Give feedback.
All reactions