Perplexity Launches Brain, a Self-Improving Memory System That Builds a Context Graph of an Agent’s Work and Learns Overnight
重點摘要
Most AI memory remembers the user. It stores your preferences, your tastes, and your role. Perplexity is taking a different path. Today, Perplexity launched Brain, a self-improving memory system for its agent product, Computer. Brain does not focus on remembering you. It remembers what the agent did. That reframes what memory in AI is for. What is Perplexity‘s Brain Brain is a self-improving memory system. It builds a context graph of the work Computer performs. At set intervals, such as overnight, Brain reviews that graph. It then teaches itself how to do the work better. The idea is straightforward. The more work you do, the more efficient Brain makes your Computer. Brain is rolling out today to Perplexity Max and Enterprise Max subscribers in Research Preview. Two Axes of AI Memory Perp
Most AI memory remembers the user. It stores your preferences, your tastes, and your role. Perplexity is taking a different path. Today, Perplexity launched Brain, a self-improving memory system for its agent product, Computer. Brain does not focus on remembering you. It remembers what the agent did. That reframes what memory in AI is for. What is Perplexity‘s Brain Brain is a self-improving memory system. It builds a context graph of the work Computer performs. At set intervals, such as overnight, Brain reviews that graph. It then teaches itself how to do the work better. The idea is straightforward. The more work you do, the more efficient Brain makes your Computer. Brain is rolling out today to Perplexity Max and Enterprise Max subscribers in Research Preview. Two Axes of AI Memory Perplexity frames memory along two axes. The first is what the memory is about. The second is what the memory is for. Traditionally, AI memory has been about the user. It stores preferences, tastes, working styles, contacts, and role. Its purpose is engagement. It helps you feel more engaged with the agent. Brain takes the other path. Its memory is about the agent’s work. It remembers what worked, what failed, and what corrections got made. Its purpose is performance. Perplexity calls helping the agent get better the most important purpose of memory. DimensionTraditional user memoryBrain (work memory)What it is aboutThe userThe agent’s workWhat it remembersPreferences, tastes, working styles, contacts, roleWhat the agent did, what worked, what failed, correctionsWhat it is forFeeling more engaged with the agentHelping the agent get better at the jobWhat it producesA profile of the userA traceable context graph of the work How the Context Graph Works Brain forms a living context graph for Computer. The graph is traceable. It helps Computer understand the user’s world and learn from their work. The context layer takes the form of an LLM wiki. That wiki is automatically loaded onto the agent sandbox. Its pages reflect the ideas, people, projects, and other elements in a user’s world. Computer can traverse this web of personal information. The Brain system updates the wiki incrementally overnight. It synthesizes the user’s sessions, connector results, changes in source documents, and corrections made. That refreshing context gives Computer a stronger signal on what to do and where to look. Brain also shows its work. Every memory entry links back to the session, file, or source it came from. That traceability matters for debugging and trust. Recursive Self-Improvement Brain gets better as you use Computer. Agents learn the projects, connectors, artifacts, and other sources that lead to the best outputs. They also learn from their mistakes. They remember when a user has made a correction. They remember when a source was a dead end. That results in fewer turns, fewer model calls, and better outputs. This feedback loop is what makes Brain continuously self-improving. Perplexity team frames current token usage as an investment in more efficient token usage later. The Performance Numbers Perplexity shared early measurement results from its own testing. MetricReported changeConditionAnswer correctness+25%On tasks Computer has seen beforeRecall+16%Same early resultsCost−13%On tasks that require historical context Perplexity also states results improve the longer someone uses Brain. The agents learn the user’s world over time. These are early, first-party numbers. Use Cases With Examples Where does work memory help? Consider three concrete cases. A data scientist runs a weekly pipeline audit. Brain remembers the reliable sources and the past corrections. The next audit starts from a better map. Fewer dead ends follow. A support team triages tickets through connectors. Brain learns which sources resolved past tickets. It routes future tickets faster. A developer debugs across repositories. Brain remembers which files mattered last time. Computer reaches the root cause with fewer model calls. In each case, the saving comes from history. The agent does not relearn the same context twice. A Conceptual Implementation Perplexity has not published a Brain API. The pattern, however, is easy to model. The self-contained Python below is illustrative, not Perplexity’s code. It runs on its own and prints day 1: needs review then day 2: correct. Copy CodeCopiedUse a different Browser# Illustrative, self-contained model of Brain's loop — NOT Perplexity's API. class ContextGraph: def __init__(self): self.entries = [] # every logged item keeps a source link self.lessons = {} # task -> reusable lesson learned overnight self.pending = [] # corrections waiting for the next sync def retrieve(self, task): return self.lessons.get(task) # load relevant memory def log(self, task, result, source): self.entries.append((task, result, source)) def log_correction(self, task, fix, source): self.entries.append((task, "correction", source)) self.pending.append((task, fix)) # learn from a dead end def synthesize(self): # the overnight step for task, fix in self.pending: self.lessons[task] = fix # teach itself to improve self.pending = [] def agent_execute(task, lesson): # with a learned lesson, the agent avoids the known dead end return "correct" if lesson else "needs review" brain = ContextGraph() # Day 1: no memory yet, so the task needs review lesson = brain.retrieve("debug repo") print("day 1:", agent_execute("debug repo", lesson)) brain.log_correction("debug repo", "ignore cached build", source="file:notes.md") brain.synthesize() # overnight Brain sync # Day 2: same task, now informed by memory lesson = brain.retrieve("debug repo") print("day 2:", agent_execute("debug repo", lesson)) The key step is synthesize. That is where the overnight self-improvement happens. Try It: Interactive Demo The embeddable demo below simulates the loop. Run tasks to grow the context graph. Log a correction to mark a dead end. Then trigger an overnight Brain sync. Correctness and recall climb, and cost falls, toward Perplexity’s reported figures. It illustrates the concept and is not the product. (function(){ window.addEventListener('message', function(e){ if(e && e.data && e.data.brainDemoHeight){ var f = document.getElementById('brain-demo-frame'); if(f){ f.style.height = e.data.brainDemoHeight + 'px'; } } }); })(); Strengths and Open Questions Strengths Memory about work, not just the user, targets agent performance directly. The context graph is traceable, so every entry links to its source. Overnight synthesis turns past sessions into a better starting point. Reported changes in correctness, recall, and cost are concrete. Open questions The numbers are first-party and early; no independent benchmark exists yet. Brain is limited to Max and Enterprise Max in Research Preview. Overnight updates mean improvements arrive on a schedule, not instantly. Persisting work history in a context graph raises data governance questions. Check out the Project page and Technical details. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well. Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us The post Perplexity Launches Brain, a Self-Improving Memory System That Builds a Context Graph of an Agent’s Work and Learns Overnight appeared first on MarkTechPost.
Related
相關文章

智譜新高,MiniMax承壓,“大模型雙雄”命運殊途
這篇消息聚焦「智譜新高,MiniMax承壓,“大模型雙雄”命運殊途」。原始導語提到:大模型在被市場重新定價 從 AI 情報角度來看,這類內容值得關注其背後的技術進展、產品落地、產業競爭與後續市場影響。

華為昇騰 0 Day 支持智譜 GLM-5.2 模型,提供全面推理優化
華為昇騰 AI 宣佈在智譜開源 GLM-5.2 大模型當天即完成深度推理優化。通過 MOE 大融合算子、通信計算融合、高併發調度等七項關鍵技術,顯著提升編程和長程任務的處理效率,現已支持 A3 系列產品部署。#AI 大模型# #國產算力#
企業AI轉型再添利器:青雲科技算力雲接入 MiniMax-M3 模型
企業AI落地面臨高效低成本難題。青雲科技旗下基石智算平臺接入國產開源大模型MiniMax-M3,提供新算力支持。MiniMax-M3以卓越上下文處理能力等三大核心技術見長,依託自研架構,助企業便捷部署AI業務。
阿里開源統一科學大模型 LOGOS,僅用五十六分之一參數超越微軟
阿里 ATH-Token Foundry 聯閤中國人民大學高瓴人工智能學院開源科學基礎模型 LOGOS。該模型採用統一科學語法與純序列建模範式,在六大科學任務上匹配或超越傳統專用方法。其中 LOGOS-1B 僅 1B 參數,即展現出極高效率,性能超越參數量達 8×7B 的微軟模型。

3B小模型,編程得分比肩Opus 4.5,神秘模型引發熱議,原是國產
這篇消息聚焦「3B小模型,編程得分比肩Opus 4.5,神秘模型引發熱議,原是國產」。原始導語提到:小模型的推理能力也可以很強? 從 AI 情報角度來看,這類內容值得關注其背後的技術進展、產品落地、產業競爭與後續市場影響。

WWDC26 蘋果 AI 特別講座重頭戲:4 臺 Mac Studio 本地運行 Kimi K2.6 模型
“Apple 開發者”官方賬號今天(6 月 18 日)在 B 站發佈 98 分鐘視頻,回顧了 2026 年全球開發者大會(WWDC)的特別演講內容,其中重點演示了在本地運行 1 萬億參數的 Kimi-K2.6 模型。