惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
M
MIT News - Artificial intelligence
D
Docker
量子位
T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
月光博客
月光博客
有赞技术团队
有赞技术团队
J
Java Code Geeks
A
About on SuperTechFans
P
Proofpoint News Feed
Jina AI
Jina AI
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
GbyAI
GbyAI
F
Fortinet All Blogs

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Do AI Agents Need to Sleep? I Built One That Does
Shridhar Shah · 2026-06-28 · via DEV Community

A sleep-like phase that consolidates noisy daily experience into durable memory — 75% vs 100% recall.

TL;DR: There's a wave of 2026 research giving AI a "sleep" phase — time spent not answering questions, just tidying up what it learned that day. I built a 90-line demo of the idea. The agent that "sleeps" remembers 100% of what it learned. The exact same agent without sleep remembers only 75% and gets confused by bad info. Runs on a laptop.


The memory problem every AI app hits

If you've built anything with an LLM, you know the pain: the model only "remembers" what's in its current context window. Once the conversation gets long enough, the oldest stuff scrolls off the top and is just... gone. Forgotten.

The usual fix is "make the context window bigger." But that's like fixing a messy desk by buying a bigger desk. It's expensive, and the model still gets worse as you cram more in (a real, measured effect — more text in the window can actually lower accuracy).

Your brain doesn't work this way. You don't remember every sentence anyone said today. While you sleep, your brain replays the day, keeps the important bits as long-term memory, and dumps the rest. That's how you remember "I like coffee" without remembering every single cup.

A couple of 2026 papers ask the obvious question: Do Language Models Need Sleep? Their answer: giving an AI a quiet "offline" phase to consolidate memories makes it remember better. So I built the simplest version that shows why.

The 10-second version

❌ Agent with no sleep ✅ Agent that sleeps
How it remembers keeps only the last N messages saves a tidy summary every night
After 30 noisy days 75% recall 100% recall
Tricked by bad info? yes no — it goes with what it saw most often

Same experiences, same noise, same memory test. The only difference is whether the agent sleeps.

How it works

Each "day," the agent hears facts like Alice → drinks → coffee. To make it realistic, about 1 in 5 facts is wrong (people misremember, logs have errors).

  • The no-sleep agent only keeps the last 10 things it heard. Anything older falls off the edge and is forgotten. And one bad recent day can flip its answer.
  • The sleeping agent does one extra thing each night: it goes back through the day, updates a small running tally of what it heard, and then clears out the raw log:
def sleep(self):
    for (person, fact, value) in todays_notes:
        memory[person][value] += 1   # add today's notes to the long-term tally
    todays_notes.clear()             # forget the raw firehose, keep the summary

That tiny step buys two things:

  1. It doesn't forget. The summary sticks around even after the raw messages are gone.
  2. It filters out bad info. Because it counts how often it heard each thing across many days, the occasional wrong fact gets outvoted by the truth.

Why this matters

Everyone's trying to fix AI memory by making the context window huge. But a bigger window is still just a bigger pile of raw text — expensive, and it still overflows.

Sleep is a smarter bet: do the cleanup when the agent is idle. Spend a little time while nobody's waiting to turn today's messy notes into a clean, permanent summary — so when someone does ask, the answer is fast, cheap, and correct. It's the same theme as an agent that improves its own code: get better while you run, not just when a human retrains you.

The better AI agent doesn't have a bigger memory. It has a tidier one — because it sleeps.

Try it

git clone https://github.com/Shridhar-2205/living-software
cd living-software/02-agents-that-dream
python demo.py

Honest note: real systems fold these summaries into the model itself with fancier methods. Mine just uses a plain dictionary. The idea (replay the day → save a summary → clear the raw log) is exactly the same; the code is kept tiny on purpose.


Written by **Shridhar Shah, Senior Software Engineer at Outshift by Cisco — I work on AI agents, search, and how they "think." Part 2 of "Toward Living Software." GitHub · LinkedIn

Sources: "Do Language Models Need Sleep?" (arXiv:2605.26099); "Language Models Need Sleep: Learning to Self-Modify and Consolidate Memories" (arXiv:2606.03979).