Earlier quoted context omitted.
Fair. The differentiator is the Rust single binary + petgraph knowledge graph. No Python runtime, no cloud, survives restarts. Built it because nothing local fit that profile.
I rolled the same thing in Go months ago as I am sure at least another 1000 people have in their own way.
Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
31–40 of 49 posts
Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#32Earlier quoted context omitted.
After working with LLMs a bunch, I now want them to forget everything every time I end the conversation. Otherwise they get dumber and more confused over time. LLMs do not have memory and these "memory" systems that everyone makes don't change that fact. They just clutter up context with probably irrelevant noise. I don't want the LLM to remember everything I've ever said and try to make every project align with ofte…
Yep, the memory in the ChatGPT macOS app is also starting to piss me off. I think developers generally dislike ‘hidden’ state, which is what memory essentially becomes.
Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#33Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#34Earlier quoted context omitted.
Or just wait a week and whatever’s built into your harness de jour will be as good or better than whatever homebrew solutions are out there > Most LLMs forget everything the moment a conversation ends. mnemo fixes that Even the opening line of the README is obviously very out of date. Might be true if you’re raw-dogging a model or using a basic agent SDK
After working with LLMs a bunch, I now want them to forget everything every time I end the conversation. Otherwise they get dumber and more confused over time. LLMs do not have memory and these "memory" systems that everyone makes don't change that fact. They just clutter up context with probably irrelevant noise. I don't want the LLM to remember everything I've ever said and try to make every project align with ofte…
Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#35Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#36Nice approach, the Rust performance and single-binary deployment are compelling. Question, how do you handle contradictory facts? If John moves from Stripe to Google, does the graph resolve that, or does it store both?
Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#37Re: Show HN: Mnemo – local-first AI memory layer for any LLM (Rust, SQLite,petgraph)
#38It looks like this is left as an exercise for the student?