AI Agent Memory in Python: Short-Term, Long-Term, and Checkpointing
· 6 min read
"Memory" is doing a lot of work in agent literature. It can mean: chat history within a session, long-term semantic recall across sessions, persistent state for resumable runs, or all three. They are different problems with different solutions.
Here is the practical taxonomy and how to wire each one in Python.