AIAny
Icon for item

Metis: Memory Foundation Model

Presents Metis, a prototype memory foundation model that embeds a persistent native memory state into the backbone so historical experience is compressed and accessed via memory attention. Key features: forward-only, gradient-free online memory updates; memory-specific mid-training objectives; and a dual text/code memory design.

Introduction

Why this matters

Large AI agents increasingly rely on external memory modules or separate tool libraries, which creates inefficiencies in latency, optimization and end-to-end learning. Metis asks a simple but consequential question: what if a foundation model itself held a persistent, dynamically evolving memory state and native procedures to read/write that state? The paper argues that native memory can streamline inference, enable new optimization objectives during mid-training, and let memory updates happen via ordinary forward passes while model weights remain frozen.

Key Findings
  • Native memory architecture: Metis extends a foundation model with an internal memory state accessible through memory attention. So what? Historical signals can be compacted into the model and retrieved with lower orchestration cost than external modules.

  • Gradient-free online updates: Memory maintenance at runtime is implemented without backprop — updates require only a forward pass over the model. So what? This decouples memory dynamics from weight updates and enables efficient persistent state changes at inference time.

  • Memory-tailored training and dual representation: The authors construct large-scale memory-specific mid-training corpora and optimization objectives to teach read/write procedures. Metis also uses a dual memory representation (textual experiences + callable code tools) to balance generality and executable patterns.

Who it fits and tradeoffs

Great fit if you research model-centric stateful agents, want to explore end-to-end memory procedures inside model backbones, or need lower-latency persistent state for long-horizon interactive tasks. Look elsewhere if you require off-the-shelf, auditable external databases for memory provenance, or if your deployment strictly forbids persistent in-memory state inside model processes (e.g., transient-only stateless inference). Metis prioritizes architectural and training-level exploration rather than turnkey production tooling.

Method sketch

Metis learns native memory via mid-training objectives that supervise both storage and retrieval behaviors; at runtime, selected memories influence generation through memory attention while weights are frozen and memory states evolve through standard forward computation. The design is evaluated on agentic benchmarks and analyzed for capabilities and limitations.

Information

  • Websitearxiv.org
  • AuthorsZeyu Zhang, Ziliang Guo, Yihang Sun, Xichong Zhang, Xixuan Hao, Zehao Lin, Yang Zhang, Xiaoyan Zhao, Tong Shen, Bo Tang
  • Published date2026/07/29

More Items

Proposes treating game development as a recursive data engine and introduces RLHEV (Reinforcement Learning with Human-Engine Verification) to combine dense engine checks (collision, physics, navigability) with human acceptance feedback, producing trajectory data and rewards for post-training world models.

Provides a real-scale 3D Hong Kong sandbox to evaluate whether multimodal LLM agents can turn local street-view perception into sustained spatial action, supporting closed-loop first-person interaction, an interactive map, and controlled tests of grounding, long-range navigation, and robustness.

Trains compact conversational agents to adapt at runtime to changing 'Harness' configurations (Skills, Hooks, prompts, tools) using Harness-Aware Training (HAT): Harness-State Augmentation, on-policy distillation, and RL to preserve generality while meeting low-latency deployment constraints.