New Linkedin paper shows Agent memory is not automatically portable:
fixed-schema memory survived the model swap, free-form notes changed sharply, and mixed embeddings hurt retrieval, so treat upgrades as memory migrations.
The paper tests what happens when 1 model inherits memory created by another.
A new model may inherit the same memory store but remember differently, so agent upgrades should include memory compatibility tests rather than only model benchmarks.
Memory saved in a fixed structure barely changed across the 2 tested models because each model used the same fields and format.
Free-form notes were much less reliable. In 1 direction, accuracy dropped 13.28 points because the old model had already left out useful information.
RAG failed differently. Mixing old and new embeddings in the same index recovered only 4.96 of the 11.90-point gain from fully rebuilding the index.
Once compressed notes had lost a fact, rewriting them could not bring it back.
So test memory whenever you change models, rebuild embedding indexes fully, prefer structured memory where it fits, and keep protected raw history when policy allows.