|
|
|
|
|
by artificium
67 days ago
|
|
Nice work! I have been thinking along similar lines and designed a simulation of human memory using a tiered database design with hot/warm/cold storage, temporal data, and graph relationship nodes. Hot memory is processed by an LLM during "sleep cycles" or downtime as I have seen others mention in the comments. You have some novel approaches here which I have learned a lot from! Your hypershpere physics approach is fascinating - it's a different approach than I took, but it accomplishes some tasks without an LLM. Your importance-based eviction system can significantly reduce the size of the ephemeral session state before it gets processed to persistent memory by the LLM, and your half-life knowledge decay mechanism is more elegant than the temporal approach I took. If I am finally allowed to post a show hn, I'll post a few details, but our projects mostly solve different things and are complimentary. I can certainly use some things in Hippo to improve my system, maybe there is something that would interest you in mine -- Memforge (https://github.com/salishforge/memforge) if you're interested. |
|