How Mem0 Organizes Memory
Mem0 separates memory into layers so agents remember the right detail at the right time. Think of it like a notebook: a sticky note for the current task, a daily journal for the session, and an archive for everything a user has shared.
Key terms
Conversation memory : In-flight messages inside a single turn (what was just said).
Session memory : Short-lived facts that apply for the current task or channel.
User memory : Long-lived knowledge tied to a person, account, or workspace.
Organizational memory : Shared context available to multiple agents or teams.
Short-term vs long-term memory
Short-term memory keeps the current conversation coherent. It includes:
Conversation history : recent turns in order so the agent remembers what was just said.
Working memory : temporary state such as tool outputs or intermediate calculations.
Attention context : the immediate focus of the assistant, similar to what a person holds in mind mid-sentence.
Long-term memory preserves knowledge across sessions. It captures:
Factual memory : user preferences, account details, and domain facts.
Episodic memory : summaries of past interactions or completed tasks.
Semantic memory : relationships between concepts so agents can reason about them later.
Mem0 maps these classic categories onto its layered storage so you can decide what should fade quickly versus what should last for months.
How does it work?
Mem0 stores each layer separately and merges them when you query:
Capture : Messages enter the conversation layer while the turn is active.
Promote : Relevant details persist to session or user memory based on your user_id, run_id, and metadata.
Retrieve : The search pipeline pulls from all layers, ranking user memories first, then session notes, then raw history.
Use run_id when you want short-term context to expire automatically; rely on user_id for lasting personalization.
When should you use each layer?
Conversation memory : Tool calls or chain-of-thought that only matter within the current turn.
Session memory : Multi-step tasks (onboarding flows, debugging sessions) that should reset once complete.
User memory : Personal preferences, account state, or compliance details that must persist across interactions.
Organizational memory : Shared FAQs, product catalogs, or policies that every agent should recall.
How it compares
Layer Lifetime Short or long term Best for Trade-offs Conversation Single response Short-term Tool execution detail Lost after the turn finishes Session Minutes to hours Short-term Multi-step flows Clear it manually when done User Weeks to forever Long-term Personalization Requires consent/governance Org Configured globally Long-term Shared knowledge Needs owner to keep current
Avoid storing secrets or unredacted PII in user or org memories: Mem0 is retrievable by design. Encrypt or hash sensitive values first.
Put it into practice
See it live
Explore Memory Operations