03 · AI Fundamentals Lab

Where does a chat go when the model “forgets” it?

A model reads one fixed-size block of text every single time it answers — the standing instructions, the whole conversation so far, any documents you attached, and the room it needs to write the reply. Keep adding, and something has to come out of the back. Here you can watch exactly what goes.

Pack the window

Everything the model will read has to fit inside the bar below. Add to the conversation and watch the bar fill. Token counts are estimates from a simplified tokenizer built into this page — not a real model’s tokenizer.

Window size (estimated tokens)

These sizes are deliberately tiny so that overflow happens in a few taps. Real windows today run from a few thousand to well over a million tokens. The mechanic is identical — it just takes longer to hit.

Room held back for the reply

The answer is written inside the same window. Space you fill with input is space the model cannot use to reply.

Inside the window

Outside the window — the model cannot see this

Not archived. Not summarised. Not “remembered, but hard to recall”. These lines are simply not in the text the model is handed, so for this answer they never existed.

The model has no memory. It re-reads the whole window every time, and anything pushed out simply does not exist for it.

My observations

Kept in this browser tab only, for this session.