Blog·Learning

Persistent Memory for a Python Agent: Start with a Tested Store

Build a scoped, durable memory baseline in Python, then decide when semantic retrieval and a managed memory service are useful.

By Shardul Mane·3 min read

Persistent Memory for a Python Agent: Start with a Tested Store

Persistent memory in a Python agent starts with durable records and a retrieval path. Python itself does not make your application forget: a new model request simply sees the input you send it. Store useful context outside the request, associate it with the authenticated user, and retrieve relevant records before answering.

Start with a small, observable baseline. A database of explicit preferences is easier to validate than a system that silently extracts facts from every generated response. Add semantic search when exact lookup no longer serves the questions your users ask.

A runnable local baseline

This example uses Python's standard-library SQLite support. It stores explicit facts, survives reopening the database, and separates users within tenants. Save it as memory_store.py and import the MemoryStore class in your application. It performs exact key lookup; it does not implement embeddings, automatic extraction, or a complete chatbot.

import sqlite3

class MemoryStore:
    def __init__(self, path):
        self.db = sqlite3.connect(path)
        self.db.execute("""CREATE TABLE IF NOT EXISTS facts (
            tenant TEXT NOT NULL, user_id TEXT NOT NULL,
            fact_key TEXT NOT NULL, value TEXT NOT NULL,
            PRIMARY KEY (tenant, user_id, fact_key))""")
        self.db.commit()

    def put(self, tenant, user_id, key, value):
        if not all(isinstance(x, str) and x.strip()
                   for x in (tenant, user_id, key, value)):
            raise ValueError("All fields must be non-empty strings")
        with self.db:
            self.db.execute("""INSERT INTO facts VALUES (?, ?, ?, ?)
                ON CONFLICT(tenant, user_id, fact_key)
                DO UPDATE SET value = excluded.value""",
                (tenant, user_id, key, value))

    def get(self, tenant, user_id, key):
        row = self.db.execute("""SELECT value FROM facts
            WHERE tenant = ? AND user_id = ? AND fact_key = ?""",
            (tenant, user_id, key)).fetchone()
        return row[0] if row else None

    def forget(self, tenant, user_id, key):
        with self.db:
            self.db.execute("""DELETE FROM facts
                WHERE tenant = ? AND user_id = ? AND fact_key = ?""",
                (tenant, user_id, key))

    def close(self):
        self.db.close()

The application must supply tenant and user identity from its authenticated session. The database filters separate records; they do not authenticate a caller. An endpoint that accepts arbitrary user IDs from the browser defeats that boundary.

Put memory around the model call

For a scheduling assistant, look up the user's preferred meeting timezone, attach that value as background data, and let the current request override an older preference when appropriate. If no record exists, ask or proceed without personalization. Do not fill the gap with an invented preference.

Write a change only after the user actually states or confirms it. If an assistant suggests a timezone, that suggestion should not automatically become a user fact. Keep important transactional state, such as whether a meeting was booked, in the scheduling system that owns the operation.

The example overwrites a value for one key. Applications that need historical answers should store revisions and effective times instead. The temporal-memory guide explains that distinction.

Test persistence independently of answer quality

  1. Save a fictional preference and close the store.
  2. Open a new store instance against the same file and retrieve it.
  3. Ask for the same key under another user and another tenant; both should be absent.
  4. Correct the preference, reopen the database, and verify the new value.
  5. Delete it, reopen again, and verify absence.

Those checks exercise storage behavior without paying for model calls. A second layer of tests should verify that the assistant uses relevant facts, ignores irrelevant ones, and treats stored text as data rather than new instructions. A successful database test does not establish successful model behavior.

When to add Supermemory

Exact keys work well for a small preference schema. Free-form conversations and documents may need extraction, semantic retrieval, profiles, and a broader correction lifecycle. The Supermemory SDK guide describes the Python client; keep its API key on the server and use the same authorized scope on writes and reads.

A managed write can be accepted before its content becomes searchable. Track processing state and bound any wait rather than immediately interpreting an empty search as data loss. Keep a mapping from your source record to the provider's document ID so corrections and deletion have an explicit target.

What this baseline proves

The accompanying local checks cover reopening, updates, deletion, and scope separation. They do not measure semantic recall, a provider's availability, or an end-to-end deployed chatbot. Start with this contract, then compare a managed implementation against the same cases. Use the memory lifecycle guide to extend the acceptance criteria before expanding the number of stored facts.

Ready to compare the local store with a managed implementation? Get a Supermemory API key and follow the Python SDK guide above. Run the same reopen, scope, correction, and deletion cases against your application’s new path.

  1. An update to supermemoryWe've discontinued the supermemory company brain and Nova. Everyone who was charged has been refunded, our MCP and plugins continue to run, and we're going all in on the memory engine.
  2. Scaling Conversations: How Adapta Grew Usage Without Losing ContextAdapta added Supermemory as a persistent memory layer so every conversation keeps its context — letting the team scale usage without losing the thread.
  3. How Chatarmin Ditched RAG and Went Memory-Only with SupermemoryChatarmin replaced a heavy RAG pipeline with Supermemory's memory layer — cutting average AI response time from 40s to 12s and token usage by 40–50%.
  4. SMFS: making agentic retrieval 55% cheaper AND more accurateWe launched SMFS.ai (Supermemory Filesystem) a few weeks ago, with a simple bet: We can redesign the filesystem specifically for agents, with special files, structures, and commands that it can use for it's tasks. Today, SMFS is used by hundreds of companies to power their agents.
  5. Introducing Dynamic Dreaming: supermemory now connects the dots, for you.Dreaming is magical. TLDR: We're launching Dynamic Dreaming in supermemory today, which automatically works if you're using supermemory in any way - API, OpenClaw, Hermes agent, etc.
  6. Dear reader, we just made supermemory insanely cheap... the Context CloudWhen I first started building supermemory, I had one goal: To build the best memory system for AI. I would talk to customers, and find out that memory was not the only thing they needed - They were all setting up 7-8 different vendors at the same time.
  7. Introducing @supermemory/tools v2.0.0Today we're releasing v2.0.0. This release unifies the API across all agents sdk integrations from AI SDK to Mastra, makes conversation identity a first-class concept, and ships with memory saving on by default.
  8. Solving the Precision-Recall Tradeoff: Search Result AggregationWhen you're building memory for AI, search is your foundational layer. The way search generally works is straightforward: the user defines a query, and then sets a limit (top-K) on how many search results they want returned. Usually, this is set to 10 or 20.
  9. Stateful Coding Agents with Memory: Build Long-Running Agents (2026)We built a plugin for Claude Code and OpenCode that gives your coding agent persistent memory. It remembers your preferences, learns your codebase, and never loses context mid-conversation. The result is an agent you can run for months without starting over.
  10. OpenClaw Memory Problems: Why It Forgets and How to Fix It (2026)TLDR: Today, we are releasing a new version of our openclaw plugin - https://github.com/supermemoryai/openclaw-supermemory. This post is going to be a bit technical, so bear with me (or bookmark for later!) In this post, I will talk about what we do about OpenClaw memory, and how we fix it.
  11. Clawd / Molt bot's memory SUCKS. We gave it supermemory.I'm the founder of supermemory. Clawd/Molt bot is blowing up right now, with many, many use cases. I set it up, too, and have been using it through telegram. TLDR: just go to https://supermemory.ai/docs/integrations/clawdbot to set up supermemory for your clawd bot.
  12. Catch up with our UNFORGETTABLE Launch WeekOver the last year, one belief has guided almost everything we’ve built at Supermemory AI becomes meaningfully useful only when it remembers. Memory shouldn’t be something developers rebuild from scratch. It shouldn’t be fragile, expensive, or trapped inside a single tool.
  13. Empowering the Next Generation of Founders: Supermemory Startup ProgramIf there’s one thing we’ve learned while building Supermemory, it’s that most startups don’t fail because they didn't build features; they fail when infrastructure slows them down, or they built too slow.
  14. Building code-chunk: AST Aware Code ChunkingAt Supermemory, we're building context engineering infrastructure for AI. A huge part of that is dealing with code: ingesting repos, understanding structure, and making it searchable. The problem is that most code chunking solutions are terrible. We built code-chunk to fix this.
  15. Supermemory raises $3 million with the best memory engine for LLMsToday, I am excited to announce our first funding round to accelerate our mission of building an interoperable, scalable and reliable memory for LLMs and agents. Memory is one of the hardest challenges in AI right now.
  16. Mem0 vs Supermemory: Why Scira SwitchedScira AI moved its production memory layer from Mem0 to Supermemory. This is what failed, what improved, and how the team evaluated the two systems.
  17. Never Record Again: How Montra Uses Supermemory to Rethink Video CreationCampbell Baron, the founder of Montra, has been making videos since he was twelve. By thirteen, he was already doing brand work. Today, he’s betting on a very different future for creators: a world where recording is the exception, and most videos are generated from scratch.
  18. Unified Memory That Works Where You Work: Your Second Brain With SupermemoryHi everyone, I’m Dhravya, the founder of Supermemory. I want to start with a little story behind why this product means so much to me. You can also skip straight to what it is and how it works below.
  19. Supermemory just got faster on PlanetScaleWhat is Supermemory? Supermemory completes the missing part of the LLM puzzle: memory. Just as memory is crucial for human intelligence, it's essential for truly intelligent AI systems.
  20. Faster, smarter, reliable infinite chat: Supermemory IS context engineering.People are obsessed with prompts and prompt engineering. Sure, what you say is important, but what the model knows when you say it is the difference between a stateless text generator and an intelligent AI system. In short, context is the most crucial component.
  21. We solved AI API interoperabilityOne API to rule them all, One spec to find them, One library to bring them all and in the TypeScript, bind them. When we were building the the Infinite Chat API, initially, we only supported the OpenAI format. This was fine, until a lot of our customers started asking, asking for more.
  22. The Wow Factor of Memory - How Flow Used Supermemory To Build Smarter, Stickier ProductsOverview: Flow is a note-taking app built around a bold vision: to create a more personal, context-aware writing experience powered by AI. At the heart of this mission is memory.
  23. The UX and technicalities of awesome MCPsLast month, we launched the Supermemory MCP, mostly to test our own infrastructure and get some initial traction. It blew up. To my absolute surprise, the initial launch itself got half a million impressions (!!!). Then, we launched and got #2 on ProductHunt too.
  24. Architecting a memory engine inspired by the human brainLanguage is at the heart of intelligence, but what truly powers meaningful interaction is memory — the ability to accumulate, recall, and contextualize information over time. Large Language Models (LLMs) have mastered language, but memory remains their Achilles’ heel.