NewsLab
Aug 29 15:57 UTC

Show HN: Knowl – agent memory with write-time supersession, 0.90 on MAB (knowl.cloud)

3 points|by dat999zx||4 comments|Read full story on knowl.cloud

Comments (4)

4 shown
  1. 1. dat999zx||context
    Hey HN.

    Open-source version at: https://github.com/dat999zx/knowl

    The number is FactConsolidation single-hop at 262K context on MemoryAgentBench. On multi-hop Knowl scored 0.07 against an all-time ceiling of 0.14.

    Write-up of the approaches that failed first: https://blog.knowl.cloud/the-story-of-knowl

  2. 2. williamttruong||context
    cool stuff
  3. 3. williamttruong||context
    how do concurrent writes work if two agent sessions are running in teh same project?
  4. 4. dat999zx||context
    2 sessions meaning 2 processes, the knowl.db file uses WAL + 10s busy_timeout. Along with 'BEGIN IMMEDIATE' to avoid read transactions upgrading mid-write. Writes are queued so transactions don't collide with each other.

    About the sync about 2 different sessions or even agents/subagents, Knowl notify to the query card what changed since the last query. Eg: 'KNOWL CHANGED: 3 items since you last looked' so they know to re-read and decide.