Any Python library for LLM conversation storage + summarization (not memory/agent systems)?

Posted by sarvesh4396@reddit | Python | View on Reddit | 19 comments

What I need:

* store messages in a DB (queryable, structured)

* maintain rolling summaries of conversations

* help assemble context for LLM calls

What I *don’t* need:

* full agent frameworks (Letta, LangChain agents, etc.)

* “memory” systems that extract facts/preferences and do semantic retrieval

I’ve looked at Mem0, but it feels more like a **memory layer (fact extraction + retrieval)** than simple storage + summarization.

Closest thing I found is stuff like MemexLLM, but it still feels not maintained. (not getting confidence)

Is there something that actually does just this cleanly, or is everyone rolling their own?