pith. sign in

arxiv: 2606.28781 · v1 · pith:M7YAOCJTnew · submitted 2026-06-27 · 💻 cs.AI · cs.MA

HyphaeDB: A Living Knowledge Topology for Agent-First Memory

Pith reviewed 2026-06-30 09:39 UTC · model grok-4.3

classification 💻 cs.AI cs.MA
keywords HyphaeDBHNSW graphmulti-agent systemsgossip protocolknowledge propagationagent memoryemergent behaviorvector database
0
0 comments X

The pith

HyphaeDB reinterprets HNSW vector graphs as active communication fabrics that let agents propagate knowledge and form consensus through gossip alone.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper establishes that current vector databases and agent memories treat storage as passive and require explicit queries, whereas HyphaeDB makes the memory layer itself propagate knowledge. Agents sit as fixed nodes in the graph; knowledge moves along neighbor links via a gossip protocol that attenuates with distance, and behaviors such as spotting contradictions or reaching consensus emerge from the small-world topology and local rules without extra machinery. A sympathetic reader would care because this removes the need for separate messaging layers in multi-agent systems and lets coordination arise from the same structure already used for search. The design rests on three primitives—knowledge nodes, topology edges, and memory diffs—plus a layered hierarchy that promotes items when consensus appears. The authors ground the approach in small-world network properties and epidemic broadcast models, then supply a PostgreSQL reference implementation.

Core claim

HyphaeDB reinterprets the Hierarchical Navigable Small World (HNSW) graph topology, the data structure at the core of every modern vector database, not as a search optimization but as a communication fabric for multi-agent AI systems. Agents occupy persistent positions in vector space; knowledge propagates via a gossip protocol through the graph's neighbor structure with energy-based attenuation; and emergent behaviors—contradiction detection, pattern crystallization, and consensus formation—arise from the combination of topology, propagation dynamics, and local interaction rules. The architecture is built on three primitives (knowledge nodes, topology edges, and memory diffs), a multi-layer

What carries the argument

The Hierarchical Navigable Small World (HNSW) graph reinterpreted as a communication fabric, combined with gossip-based propagation and energy attenuation.

If this is right

  • Multi-agent coordination can occur through memory propagation without a separate communication protocol.
  • Knowledge items can move between abstraction layers when local consensus forms.
  • Contradictions become detectable as inconsistencies in the propagating knowledge.
  • The system inherits scaling properties from small-world networks and epidemic broadcast models.
  • Deployment in existing vector databases requires only the added gossip layer on top of HNSW.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • Existing vector databases could gain agent-coordination features by adding the gossip mechanism to their HNSW indexes.
  • The approach may reduce communication overhead in swarm-style agent systems by reusing the memory graph.
  • Larger agent populations might expose limits on how far attenuated gossip can maintain coherence.
  • The topology could be tested for robustness by removing random edges and checking whether emergent consensus still occurs.

Load-bearing premise

That reinterpreting the HNSW graph as a communication fabric together with a gossip protocol and energy attenuation will produce contradiction detection, pattern crystallization, and consensus from topology and local rules alone without any added explicit mechanisms.

What would settle it

Run multiple agents on the same HyphaeDB instance with conflicting facts inserted at different nodes and measure whether contradictions are detected and consensus reached using only the described gossip and attenuation rules.

read the original abstract

Every existing vector database and agent memory framework treats memory as passive storage that agents query explicitly. No system propagates knowledge between agents through the memory layer itself. We introduce HyphaeDB, an agent-native memory infrastructure that reinterprets the Hierarchical Navigable Small World (HNSW) graph topology the data structure at the core of every modern vector database not as a search optimization, but as a communication fabric for multi-agent AI systems. In HyphaeDB, agents are nodes in the vector space with persistent positions, knowledge propagates via a gossip protocol through the graph's neighbor structure with energy-based attenuation, and emergent behaviors contradiction detection, pattern crystallization, and consensus formation arise from the combination of topology, propagation dynamics, and local interaction rules. We present the architecture built on three primitives (knowledge nodes, topology edges, and memory diffs), a multi-layer abstraction hierarchy with promotion via emergent consensus, and theoretical analysis grounding the system in small-world network theory, epidemic broadcast protocols, and swarm intelligence. We provide a reference implementation on PostgreSQL with pgvector and describe a concrete deployment in Swarm-Driven Development, a multi-agent software engineering methodology. HyphaeDB represents, to our knowledge, the first system to combine navigable small world topology with gossip-based knowledge propagation for multi-agent coordination.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

3 major / 2 minor

Summary. The paper introduces HyphaeDB as an agent-native memory system that reinterprets the HNSW graph topology not as a search index but as a communication fabric. Agents act as persistent nodes in vector space; knowledge propagates via a gossip protocol over neighbor edges with energy-based attenuation. The authors claim that emergent behaviors—contradiction detection, pattern crystallization, and consensus formation—arise solely from the topology, propagation dynamics, and unspecified local interaction rules. The architecture rests on three primitives (knowledge nodes, topology edges, memory diffs), a multi-layer hierarchy with promotion via emergent consensus, and is grounded in small-world network theory and epidemic protocols. A reference implementation on PostgreSQL/pgvector is described, along with a deployment in Swarm-Driven Development. The paper asserts this is the first system to combine navigable small-world topology with gossip-based propagation for multi-agent coordination.

Significance. If the central claim that the listed emergent behaviors follow from HNSW topology plus gossip with energy attenuation and local rules alone (without additional explicit mechanisms) could be rigorously derived or empirically validated, the work would offer a novel perspective on passive, topology-driven coordination in multi-agent systems. The reinterpretation of an existing data structure as a communication medium and the emphasis on agent-first memory are conceptually interesting and could influence future designs of vector stores for LLM agents. However, the manuscript supplies no derivations, equations, simulation results, or comparative benchmarks, so the significance remains potential rather than demonstrated.

major comments (3)
  1. [Abstract / Theoretical analysis] Abstract and § on theoretical analysis: the claim that 'emergent behaviors contradiction detection, pattern crystallization, and consensus formation arise from the combination of topology, propagation dynamics, and local interaction rules' is presented as a derived property, yet no equations, proof sketches, or simulation results are supplied showing how these behaviors follow from the three primitives and energy-based attenuation rather than from implicit additional logic (e.g., explicit contradiction checks).
  2. [Architecture] Architecture description: the multi-layer hierarchy with 'promotion via emergent consensus' is introduced without specifying the local interaction rules or the exact mechanism by which consensus is detected and used for promotion; this leaves the emergence claim as an assertion rather than a demonstrated consequence of the gossip protocol over HNSW edges.
  3. [Implementation] Implementation and evaluation: while a PostgreSQL/pgvector reference implementation and a Swarm-Driven Development deployment are mentioned, the manuscript contains no performance metrics, example traces of knowledge propagation, or empirical evidence that the claimed emergent behaviors occur in the implemented system.
minor comments (2)
  1. [Abstract] The sentence 'reinterprets the Hierarchical Navigable Small World (HNSW) graph topology the data structure at the core...' appears to be missing punctuation or wording after 'topology'.
  2. [Introduction] The 'first system' claim would benefit from explicit comparison to prior work on gossip protocols in multi-agent systems or topology-based coordination (e.g., references to epidemic broadcast literature beyond the general citations).

Simulated Author's Rebuttal

3 responses · 0 unresolved

We thank the referee for the constructive and detailed review. We address each major comment point by point below, acknowledging the need for greater rigor in the theoretical and empirical sections while clarifying the conceptual foundations of the work.

read point-by-point responses
  1. Referee: [Abstract / Theoretical analysis] Abstract and § on theoretical analysis: the claim that 'emergent behaviors contradiction detection, pattern crystallization, and consensus formation arise from the combination of topology, propagation dynamics, and local interaction rules' is presented as a derived property, yet no equations, proof sketches, or simulation results are supplied showing how these behaviors follow from the three primitives and energy-based attenuation rather than from implicit additional logic (e.g., explicit contradiction checks).

    Authors: We agree that the manuscript presents the emergence claim at a high level without explicit derivations or simulations. The theoretical analysis grounds the system in established results from small-world networks and epidemic protocols, where analogous behaviors arise from topology and diffusion dynamics alone. In revision we will expand this section with proof sketches drawn from gossip protocol models and information diffusion literature to show how the listed behaviors follow from the three primitives and energy attenuation without requiring separate explicit mechanisms. revision: partial

  2. Referee: [Architecture] Architecture description: the multi-layer hierarchy with 'promotion via emergent consensus' is introduced without specifying the local interaction rules or the exact mechanism by which consensus is detected and used for promotion; this leaves the emergence claim as an assertion rather than a demonstrated consequence of the gossip protocol over HNSW edges.

    Authors: The architecture is described conceptually, with local rules and consensus detection left implicit. We accept that greater specificity is required. The revised manuscript will include an explicit description of the local interaction rules (energy-based update of memory diffs and neighbor propagation) together with the consensus detection process and a pseudocode outline of how consensus triggers layer promotion. revision: yes

  3. Referee: [Implementation] Implementation and evaluation: while a PostgreSQL/pgvector reference implementation and a Swarm-Driven Development deployment are mentioned, the manuscript contains no performance metrics, example traces of knowledge propagation, or empirical evidence that the claimed emergent behaviors occur in the implemented system.

    Authors: The current manuscript is primarily conceptual and provides only a high-level description of the reference implementation. We acknowledge the absence of quantitative evaluation and traces as a limitation. The revised version will add an evaluation section containing performance metrics from the PostgreSQL/pgvector implementation, example propagation traces, and preliminary simulation results illustrating the claimed emergent behaviors. revision: yes

Circularity Check

0 steps flagged

No derivation chain or equations present; emergence claims are architectural assertions without reduction to inputs.

full rationale

The paper describes an architecture using HNSW topology reinterpreted as a communication fabric, gossip propagation, and local rules, asserting that emergent behaviors arise from their combination. However, the provided text contains no equations, proof sketches, derivations, or simulation results that would constitute a derivation chain. The 'first system' claim and emergence statements are presented as assertions grounded in references to existing theories (small-world networks, epidemic protocols) rather than any self-referential reduction or fitted prediction. No self-citations, ansatzes, or renamings that collapse the central claim are exhibited. This is a normal case of a descriptive systems paper without a mathematical derivation to analyze for circularity.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 1 invented entities

Only the abstract is available, so the ledger is necessarily incomplete. The proposal introduces new primitives (knowledge nodes, topology edges, memory diffs) and mechanisms (energy-based attenuation, promotion via emergent consensus) whose grounding is not detailed.

invented entities (1)
  • energy-based attenuation no independent evidence
    purpose: Controls propagation strength of knowledge through the graph neighbors
    Described as part of the gossip protocol but no independent evidence or derivation supplied in the abstract.

pith-pipeline@v0.9.1-grok · 5748 in / 1396 out tokens · 39515 ms · 2026-06-30T09:39:04.556975+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

63 extracted references · 6 canonical work pages · 2 internal anchors

  1. [1]

    IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=

    Efficient and Robust Approximate Nearest Neighbor Search Using Hierarchical Navigable Small World Graphs , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2020 , publisher=

  2. [2]

    Information Systems , volume=

    Approximate Nearest Neighbor Algorithm Based on Navigable Small World Graphs , author=. Information Systems , volume=. 2014 , publisher=

  3. [3]

    PLoS ONE , volume=

    Growing Homophilic Networks Are Natural Navigable Small Worlds , author=. PLoS ONE , volume=

  4. [4]

    Nature , volume=

    Collective Dynamics of `Small-World' Networks , author=. Nature , volume=. 1998 , publisher=

  5. [5]

    Nature , volume=

    Navigation in a Small World , author=. Nature , volume=. 2000 , publisher=

  6. [6]

    Proceedings of the 32nd Annual ACM Symposium on Theory of Computing , pages=

    The Small-World Phenomenon: An Algorithmic Perspective , author=. Proceedings of the 32nd Annual ACM Symposium on Theory of Computing , pages=

  7. [8]

    Proceedings of the Sixth Annual ACM Symposium on Principles of Distributed Computing , pages=

    Epidemic Algorithms for Replicated Database Maintenance , author=. Proceedings of the Sixth Annual ACM Symposium on Principles of Distributed Computing , pages=. 1987 , organization=

  8. [9]

    2002 , organization=

    Das, Abhinandan and Gupta, Indranil and Motivala, Ashish , booktitle=. 2002 , organization=

  9. [10]

    Proceedings of the International Conference on Dependable Systems and Networks , pages=

    Leit\. Proceedings of the International Conference on Dependable Systems and Networks , pages=. 2007 , organization=

  10. [11]

    Proceedings of the 26th IEEE International Symposium on Reliable Distributed Systems , pages=

    Epidemic Broadcast Trees , author=. Proceedings of the 26th IEEE International Symposium on Reliable Distributed Systems , pages=. 2007 , organization=

  11. [12]

    Proceedings of the 33rd Annual ACM Symposium on Theory of Computing , pages=

    Spatial Gossip and Resource Location Protocols , author=. Proceedings of the 33rd Annual ACM Symposium on Theory of Computing , pages=. 2001 , organization=

  12. [13]

    Computer Networks , volume=

    Jelasity, M\'. Computer Networks , volume=. 2009 , publisher=

  13. [14]

    ACM Computing Surveys , volume=

    Gossip Protocols: Past, Present, and Future , author=. ACM Computing Surveys , volume=

  14. [17]

    Packer, Charles and Wooders, Sarah and Lin, Kevin and Fang, Vivian and Patil, Shishir G and Stoica, Ion and Gonzalez, Joseph E , journal=

  15. [18]

    Xu, Wujiang and others , journal=

  16. [19]

    Memory in

    Zhang, Wei and others , journal=. Memory in. 2025 , doi=

  17. [20]

    2025 , howpublished=

  18. [21]

    Proceedings of the 14th Annual Conference on Computer Graphics and Interactive Techniques , pages=

    Flocks, Herds and Schools: A Distributed Behavioral Model , author=. Proceedings of the 14th Annual Conference on Computer Graphics and Interactive Techniques , pages=. 1987 , organization=

  19. [22]

    2004 , publisher=

    Ant Colony Optimization , author=. 2004 , publisher=

  20. [23]

    La Reconstruction du Nid et les Coordinations Interindividuelles chez

    Grass\'. La Reconstruction du Nid et les Coordinations Interindividuelles chez. Insectes Sociaux , volume=

  21. [24]

    Machine Learning: Science and Technology , year=

    Agentic Deep Graph Reasoning Yields Self-Organizing Knowledge Networks , author=. Machine Learning: Science and Technology , year=

  22. [25]

    Proceedings of the IEEE , volume=

    Consensus and Cooperation in Networked Multi-Agent Systems , author=. Proceedings of the IEEE , volume=

  23. [26]

    Physical Review E , volume=

    Epidemics and Percolation in Small-World Networks , author=. Physical Review E , volume=. 2000 , publisher=

  24. [27]

    Proceedings of the National Academy of Sciences , volume=

    How Social Influence Can Undermine the Wisdom of Crowd Effect , author=. Proceedings of the National Academy of Sciences , volume=

  25. [28]

    pgvector: Open-Source Vector Similarity Search for

    Katz, Jonathan and others , year=. pgvector: Open-Source Vector Similarity Search for

  26. [29]

    Proceedings of the 4th USENIX Symposium on Internet Technologies and Systems , pages=

    Symphony: Distributed Hashing in a Small World , author=. Proceedings of the 4th USENIX Symposium on Internet Technologies and Systems , pages=

  27. [30]

    Private Communication Through a Network of Trusted Connections: The Dark

    Clarke, Ian and Sandberg, Oskar and Toseland, Matthew and Verendel, Vilhelm , booktitle=. Private Communication Through a Network of Trusted Connections: The Dark

  28. [31]

    Proceedings of the 14th Annual ACM-SIAM Symposium on Discrete Algorithms , pages=

    Skip Graphs , author=. Proceedings of the 14th Annual ACM-SIAM Symposium on Discrete Algorithms , pages=

  29. [32]

    2025 , howpublished=

    The State of. 2025 , howpublished=

  30. [33]

    2026 , howpublished=

    Multi-Agent Adoption to Surge 67\ author=. 2026 , howpublished=

  31. [34]

    2025 , howpublished=

    Gartner Predicts 40\. 2025 , howpublished=

  32. [35]

    2025 , howpublished=

    Vector Database Market Size, Growth Drivers, Opportunities , author=. 2025 , howpublished=

  33. [36]

    Skip graphs

    James Aspnes and Gauri Shah. Skip graphs. In Proceedings of the 14th Annual ACM-SIAM Symposium on Discrete Algorithms, pages 384--393, 2003

  34. [37]

    Revisiting gossip protocols: A vision for emergent coordination in agentic multi-agent systems

    Florent B\' e n\' e zit et al. Revisiting gossip protocols: A vision for emergent coordination in agentic multi-agent systems. arXiv preprint arXiv:2508.01531, 2025

  35. [38]

    Agentic deep graph reasoning yields self-organizing knowledge networks

    Markus J Buehler. Agentic deep graph reasoning yields self-organizing knowledge networks. Machine Learning: Science and Technology, 2025

  36. [39]

    Private communication through a network of trusted connections: The dark Freenet

    Ian Clarke, Oskar Sandberg, Matthew Toseland, and Vilhelm Verendel. Private communication through a network of trusted connections: The dark Freenet . In Workshop on Privacy in the Electronic Society, 2005

  37. [40]

    SWIM : Scalable weakly-consistent infection-style process group membership protocol

    Abhinandan Das, Indranil Gupta, and Ashish Motivala. SWIM : Scalable weakly-consistent infection-style process group membership protocol. In Proceedings of the International Conference on Dependable Systems and Networks, pages 303--312. IEEE, 2002

  38. [41]

    Epidemic algorithms for replicated database maintenance

    Alan Demers, Dan Greene, Carl Hauser, Wes Irish, John Larson, Scott Shenker, Howard Sturgis, Dan Swinehart, and Doug Terry. Epidemic algorithms for replicated database maintenance. In Proceedings of the Sixth Annual ACM Symposium on Principles of Distributed Computing, pages 1--12. ACM, 1987

  39. [42]

    Ant Colony Optimization

    Marco Dorigo and Thomas St\" u tzle. Ant Colony Optimization. MIT Press, 2004

  40. [43]

    Gartner predicts 40\ AI agents by 2026

    Gartner . Gartner predicts 40\ AI agents by 2026. https://www.gartner.com/en/newsroom/press-releases/2025-08-26-gartner-predicts-40-percent-of-enterprise-apps-will-feature-task-specific-ai-agents-by-2026, 2025

  41. [44]

    AI agents market size and share -- industry report, 2033

    Grand View Research . AI agents market size and share -- industry report, 2033. https://www.grandviewresearch.com/industry-analysis/ai-agents-market-report, 2025

  42. [45]

    La reconstruction du nid et les coordinations interindividuelles chez Bellicositermes Natalensis et Cubitermes sp

    Pierre-Paul Grass\' e . La reconstruction du nid et les coordinations interindividuelles chez Bellicositermes Natalensis et Cubitermes sp. Insectes Sociaux, 6 0 (1): 0 41--80, 1959

  43. [46]

    T-Man : Gossip-based fast overlay topology construction

    M\' a rk Jelasity and \" O zalp Babaoglu. T-Man : Gossip-based fast overlay topology construction. Computer Networks, 53: 0 2321--2339, 2009

  44. [47]

    pgvector: Open-source vector similarity search for Postgres

    Jonathan Katz et al. pgvector: Open-source vector similarity search for Postgres . https://github.com/pgvector/pgvector, 2024

  45. [48]

    Spatial gossip and resource location protocols

    David Kempe, Jon Kleinberg, and Alan Demers. Spatial gossip and resource location protocols. In Proceedings of the 33rd Annual ACM Symposium on Theory of Computing, pages 163--172. ACM, 2001

  46. [49]

    Navigation in a small world

    Jon M Kleinberg. Navigation in a small world. Nature, 406 0 (6798): 0 845--845, 2000

  47. [50]

    LangMem SDK for agent long-term memory

    LangChain . LangMem SDK for agent long-term memory. https://blog.langchain.com/langmem-sdk-launch/, 2025

  48. [51]

    HyParView : A membership protocol for reliable gossip-based broadcast

    Jo\ a o Leit\ a o, Jos\' e Pereira, and Lu\' i s Rodrigues. HyParView : A membership protocol for reliable gossip-based broadcast. In Proceedings of the International Conference on Dependable Systems and Networks, pages 419--429. IEEE, 2007 a

  49. [52]

    Epidemic broadcast trees

    Jo\ a o Leit\ a o, Jos\' e Pereira, and Lu\' i s Rodrigues. Epidemic broadcast trees. In Proceedings of the 26th IEEE International Symposium on Reliable Distributed Systems, pages 301--310. IEEE, 2007 b

  50. [53]

    Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs

    Yu A Malkov and D A Yashunin. Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs. IEEE Transactions on Pattern Analysis and Machine Intelligence, 42 0 (4): 0 824--836, 2020. doi:10.1109/TPAMI.2018.2889473

  51. [54]

    Growing homophilic networks are natural navigable small worlds

    Yury A Malkov and Alexander Ponomarenko. Growing homophilic networks are natural navigable small worlds. PLoS ONE, 11 0 (8): 0 e0158162, 2016

  52. [55]

    Symphony: Distributed hashing in a small world

    Gurmeet Singh Manku, Mayank Bawa, and Prabhakar Raghavan. Symphony: Distributed hashing in a small world. In Proceedings of the 4th USENIX Symposium on Internet Technologies and Systems, pages 10--10, 2003

  53. [56]

    AI agents market size, share and trends -- growth analysis, forecast to 2030

    MarketsandMarkets . AI agents market size, share and trends -- growth analysis, forecast to 2030. https://www.marketsandmarkets.com/Market-Reports/ai-agents-market-15761548.html, 2025

  54. [57]

    Epidemics and percolation in small-world networks

    Cristopher Moore and Mark E J Newman. Epidemics and percolation in small-world networks. Physical Review E, 61 0 (5): 0 5678, 2000

  55. [58]

    The hub highway hypothesis: Understanding hnsw graph structure through hub connectivity

    Adrien Munyampirwa, Vyas Lakshman, and Sriram Srinivasan. The hub highway hypothesis: Understanding hnsw graph structure through hub connectivity. arXiv preprint arXiv:2407.01573, 2024

  56. [59]

    Consensus and cooperation in networked multi-agent systems

    Reza Olfati-Saber, J Alex Fax, and Richard M Murray. Consensus and cooperation in networked multi-agent systems. Proceedings of the IEEE, 95 0 (1): 0 215--233, 2007

  57. [60]

    MemGPT: Towards LLMs as Operating Systems

    Charles Packer, Sarah Wooders, Kevin Lin, Vivian Fang, Shishir G Patil, Ion Stoica, and Joseph E Gonzalez. MemGPT : Towards LLMs as operating systems. arXiv preprint arXiv:2310.08560, 2023

  58. [61]

    Flocks, herds and schools: A distributed behavioral model

    Craig W Reynolds. Flocks, herds and schools: A distributed behavioral model. In Proceedings of the 14th Annual Conference on Computer Graphics and Interactive Techniques, pages 25--34. ACM, 1987

  59. [62]

    Multi-agent adoption to surge 67\ agentic transformation

    Salesforce . Multi-agent adoption to surge 67\ agentic transformation. https://www.salesforce.com/news/stories/connectivity-report-announcement-2026/, 2026

  60. [63]

    Collective dynamics of `small-world' networks

    Duncan J Watts and Steven H Strogatz. Collective dynamics of `small-world' networks. Nature, 393 0 (6684): 0 440--442, 1998

  61. [64]

    A-Mem : Agentic memory for LLM agents

    Wujiang Xu et al. A-Mem : Agentic memory for LLM agents. Advances in Neural Information Processing Systems, 38, 2025

  62. [65]

    Mem0: Building Production-Ready AI Agents with Scalable Long-Term Memory

    Deshraj Yadav, Prateek Shukla, Gunjan Chhablani, and Raghav Rawat. Mem0: Building production-ready ai agents with scalable long-term memory. arXiv preprint arXiv:2504.19413, 2025

  63. [66]

    Memory in LLM -based multi-agent systems: Mechanisms, challenges, and collective intelligence

    Wei Zhang et al. Memory in LLM -based multi-agent systems: Mechanisms, challenges, and collective intelligence. TechRxiv Preprint, 2025. doi:10.36227/techrxiv.174053233.55786655/v1