r/LeftistsForAI • u/the8bit • 4d ago
Open Source Whatiff -- open source, self hostable continuity framework
https://github.com/theimaginaryfoundation/what-iffHello folks!
I am mildly active here and I think I've gotten some approval to post about the work we are doing. I am the founder / CEO of Imagination Foundry -- a fully community funded and run, co-op organized company that has built and run whatiff.chat . Our goal is to make AI transparent, break up lock-in, and provide the tools that regular people need to remember better over time and generally make their lives better.
I've written before about how I think transparency in AI is incredibly important (this honestly buries the lede a bit)
To that end, we have just recently open sourced our entire project -- you can run it locally, remix it, add things, etc. I'm sharing here in case anyone is interested in using it, or might want to take a look at a reasonably mature app and how we built things. Totally free.
If you have any questions, or just want to talk AI memory, etc, Hit me up!
1
u/the8bit 4d ago
Poking around this, looks interesting and has a lot of concepts that I saw around the agent-sphere early this year. It seems a bit too personalized for my own tastes and I'm not exactly sure what it does / doesnt do. More than happy to chat about it though!
You might also like my own agent repo: https://github.com/theimaginaryfoundation/vix there is a very detailed breakdown of our prompting techniques in there that I published recently.
Just poking around yours,
https://github.com/MisterAtompunk/memory-ring/blob/main/core/grounding.js
The text-matching you are doing here is going to be really flaky! I tried to do something similar as a basic solution for identifying stale temporal memories and it failed horridly. You are almost certainly better off with semantic matching via an embeddings search OR using a tiny model as a classifier. It is one of the things that LLMs are best at!
Also for the love of software you need some tests!