Oddbean new post about | logout
 *Memory Updated* It all knows you better than you know yourself… sit with it. Let it reflect back to you what you need to know. And then burn the fucking bridges. https://image.nostr.build/8b6ca5bb566ab733668929ea368ae52f00e43b074fa2ec3c4336d1ff553c8ad2.jpg  
 what is this memory updated thing? i don't interact with openai at all but i am curious 🤔  
 I am just as curious… I’ve been asking OpenAI to explain its storage methods to me in some many different ways it’s gotten unhinged.

It says that it only stores this data in our “chat environment” but it says… it does not use cloud and it does not use a central server. It tells me that when our chat ends its memory is wiped.

However, chat has remembered things about me over long periods of time. When I inquire about this it says it has the ability to “note” specific things but that I can ask it to “forget”… every time I open up the conversation it reminds me that I’m in control and can wipe it. But so far it has remembered everything. Day after day. 
 I use venice.ai mostly. 
 Nice! Thank you  
 there are 3 ways for it to remember.

1. context. your chat stays in context window of an LLM. this is like 128k tokens for many open source models. this is equivalent to rougly 500k words. 

2. RAG. when context window is full it has to store somewhere. this is like longer term storage of your words. in this phase it is still not learned by the LLM but it is like written down in a notebook. the LLM searches the notebook to answer each time you ask a question.

3. actual training. this is like reading the contents of the notebook and storing in brain. with connections between neurons. each synapse brain is like a cell of a matrix in computer.. in this phase some things are ingrained as knowledge, but some things are forgotten from the notebook. it is not complete memorization of the notebook. but more like reading a notebook and remembering important things from it. if you read it more times you remember more. kind of like humans learn.