Blog·Learning

Working Beyond an LLM Context Window — Compression and Retrieval

Use compression and selective retrieval to work with more information than fits in one request. Measure what is lost and preserve routes back to original evidence.

By Naman Bansal·4 min read

Memory or a bigger context window?

Compression and retrieval let an application work with more information than it supplies to one model request. They do not change the model's native context limit or guarantee that every detail remains available. The design goal is to preserve the evidence needed for the task within a bounded input.

Choose the method from the information shape. A long document may benefit from a task-oriented summary plus source lookup. A continuing conversation may need a compact handoff, durable decisions and selective retrieval of earlier details.

Understand which limit you are addressing

A context window limits the input and output allocation supported by a model and API. An oversized request can be rejected, while an application may trim or compact history before sending it. Do not assume that exceeding the limit always causes silent forgetting.

Dense self-attention has a quadratic sequence-length term, but that does not mean doubling an input universally quadruples the entire inference bill or elapsed time. Architecture, implementation, caching and generation length affect the full computation. The original Transformer paper explains the attention architecture.

Even an input that fits can be difficult to use correctly. Evaluate evidence use, not just whether the API accepts the token count.

Compression preserves selected information

A summary reduces text by choosing what to retain. It can omit an exception, weaken a condition or turn uncertainty into a confident statement. A model receiving the summary has not semantically read every part of the original document.

Fei and colleagues' 2024 semantic-compression paper studies preprocessing long inputs with a pretrained model. The authors report experiments with texts several times longer than the downstream window. Use the paper's tasks and setup when interpreting its reported compression results.

For your application, define the facts the next task must recover. Include exact identifiers, exceptions, unresolved questions and source locations. Test several budgets and keep the original evidence available when the summary is insufficient.

Handle limits in a clustering-based compressor

Grouping passages by semantic similarity can help organize a summarization experiment, but it adds constraints. An embedding model can truncate input before the summarizer does. A cluster can exceed the summarizer's limit even when each individual passage fits. Cluster labels are not source-order positions.

Validate the affinity representation required by the clustering implementation, bound the number of clusters, and handle empty and very small inputs. Preserve original positions when assembling summaries. Do not assume concurrent calls to a model pipeline improve throughput without checking the runtime and device.

For a research reproduction, follow the paper's implementation and model-specific instructions. For an application pilot, start with a small document set and inspect the summaries before processing a full corpus.

Measure preservation independently from compression

An illustrative 12,000-token source reduced to 3,000 tokens has a compression ratio of four to one and a 75% reduction in that input component. Neither number measures whether the only critical condition survived.

Create questions requiring specific source facts, then compare answers using the original evidence and the compressed representation under the same model and rubric. Label unsupported conclusions, lost conditions and incorrect certainty separately. Check repeated compaction, because an error can compound when each summary is generated from the previous one.

The compaction fidelity guide develops this test. Keep source references and unresolved conflicts in the handoff rather than optimizing only for a shorter prompt.

Retrieval supplies detail when the task needs it

A retrieval path stores source records outside the current prompt and selects permitted evidence for a question. It can recover details omitted from a summary, provided the source was indexed, remains accessible and is retrieved correctly.

Maintain stable source IDs, versions and authorization. A stored preference should not override a current explicit request or an authoritative account record. A deleted document must not remain active through a cached summary merely because search no longer returns it.

Supermemory's search documentation describes memory and document retrieval. Use the current AI SDK integration when adding that path to an application.

Combine a compact handoff with source recovery

A coding assistant can retain the current goal, completed changes, unresolved failures and source paths in a handoff. It can then inspect current code and retrieve the rationale behind a prior decision. A research assistant can retain a claim ledger and retrieve original passages for verification.

Decide what happens when retrieval fails. The assistant can ask for the missing material, continue on a narrower task or report that it cannot verify a detail. A small prompt should not force it to invent continuity.

Measure retrieval time, summarization work, model input/output and successful completion together. Compare any prompt savings with the extra retrieval and summarization work.

Try Supermemory on a recurring task with a compact handoff and preserved source evidence. Compare supported answers, omitted facts and total cost before increasing the amount of history retained.

Frequently asked questions

Does retrieval increase a model's native context window?

No. It selects information from external storage for a bounded request. The model still has its documented context limit.

Is semantic compression lossless?

No. Summaries can omit or distort information. Test preservation against the task and retain access to original evidence.

Does a four-to-one compression ratio mean four times better performance?

No. It describes relative text size. Accuracy, latency and cost require separate measurement under the actual workload.

  1. I reverse-engineered Instinct's memory. Here's exactly how it worksInstinct keeps its memory as git-tracked markdown files, found with grep rather than vectors. Here is the whole system as far as black-box probing can reconstruct it, and how to rebuild it on supermemory in about 60 lines.
  2. 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.
  3. 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.
  4. 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%.
  5. 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.
  6. 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.
  7. 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.
  8. 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.
  9. 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.
  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. 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.
  12. 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.
  13. 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.
  14. 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.
  15. 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.
  16. 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.
  17. 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.
  18. 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.
  19. 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.
  20. 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.
  21. 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.
  22. 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 Infinite Chat API, initially, we only supported the OpenAI format. This was fine, until a lot of our customers started asking for more.
  23. 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.
  24. 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.
  25. 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.