0PricingLogin
AI Agents · Lesson

Episodic Memory (Per-Session History)

Per-conversation logs of what happened, indexed by time and session id.

Three Types of Memory

Inspired by cognitive science, agent memory is usually split into three kinds:

  • Episodic — what happened (this conversation, last week's session)
  • Semantic — facts about the world / user
  • Procedural — skills (successful action sequences)

This lesson covers episodic.

What Is Episodic Memory?

Episodic memory stores specific events with timestamps and context. For an agent, this is the per-session conversation log.

It is the most basic form of memory and the easiest to build.

All lessons in this course

  1. Episodic Memory (Per-Session History)
  2. Semantic Memory (Vectorised Facts)
  3. Procedural Memory (Skill Library)
  4. Memory Decay and Garbage Collection
← Back to AI Agents