Continuity
New session, same knowledge
Agreed terms, exceptions and preferences carry forward, so nobody re-briefs the assistant every morning.
Session chat forgets everything at close. Agent memory keeps decisions, preferences and facts in a local store, recalled when they matter.
Every session starts from zero: agreed terms, exceptions and decisions evaporate at close, so people re-brief the tool that was meant to save time.
Memory is retrieval, not magic: facts embed locally and surface by meaning.
01
The agent notes facts worth keeping as it works.
02
Memories embed into a local store you can open and audit.
03
Relevant memories surface by meaning, not by session id.
04
Recall lands in context before the answer is written.
The value compounds: every decision the assistant witnesses makes the next answer better.
Continuity
Agreed terms, exceptions and preferences carry forward, so nobody re-briefs the assistant every morning.
Auditable
The store is inspectable: read what the assistant believes, correct what is wrong, delete what should not persist.
Private
Memories distill your decisions and terms, so they live under the same roof as the files, fully local.
Attach a memory to the agent and recall happens before every generation, from a store that never leaves the machine.
using LMKit.Agents;
using LMKit.Model;
var model = LM.LoadFromModelID("qwen3.5:9b");
var embedModel = LM.LoadFromModelID("embeddinggemma-300m");
var memory = new AgentMemory(embedModel);
var agent = Agent.CreateBuilder(model)
.WithMemory(memory)
.Build();
var reply = await agent.RunAsync(
"Draft the Meyer renewal with our agreed settlement terms.");
// Recall happens before generation; the store stays local.
Memory is retrieval infrastructure, and every layer of it is documented.
Store
The persistent store agents note into and recall from, local and inspectable.
How agent memory worksRecall
Meaning-based recall comes from local embedding models, never a hosted API.
How embeddings workPersist
Built-in local vector storage, or Qdrant and pgvector when you already run them.
How storage worksPrivate Document Intelligence