The speed of innovation in applied AI has collapsed the timeline for new disciplines, forcing practitioners to move from prototype to production almost overnight. For context engineering, the process of reliably supplying large language models (LLMs) with necessary external information, 2025 felt like "six months compressed into a year." This rapid evolution is driving a fundamental shift in focus: away from optimizing individual components and toward establishing robust, end-to-end system architectures capable of operating at enterprise scale.
This was the core insight delivered by Nina Lopatina, Lead Developer Advocate at Contextual AI, who spoke with Swyx, Editor of Latent Space, live at NeurIPS 2025. Lopatina, whose background spans neuroscience and reward learning, highlighted the industry’s scramble to turn context engineering from a collection of design patterns into a full-stack discipline, complete with benchmarks and tooling designed for real-world complexity.
The most immediate change observed in the field is the obsolescence of basic Retrieval-Augmented Generation (RAG). Simple retrieval is no longer sufficient for complex enterprise queries. Lopatina confirmed that "agentic RAG is now the baseline: query reformulation into subqueries improved performance so dramatically it became the new standard (normal RAG is dead)." This shift reflects the necessity of having the LLM dynamically break down a user’s complex query into multiple, targeted subqueries, retrieve diverse documents, and then synthesize the answer, a process that demands sophisticated control flow and robust infrastructure.
Yet, introducing agency necessitates strict guardrails. The industry is quickly learning that autonomous agents require explicit constraints to maintain reliability and performance at scale. During a recent Retail Universe hackathon, Lopatina’s team worked with a dataset comprising nearly 100,000 documents, including PDFs, CSVs, and log files, a real-world data landscape far removed from academic toy examples. They found that sub-agents needed defined turn limits and validation loops because "unlimited agency degrades performance and causes hallucinations." The inherent drive of an agent to exhaustively search every possible avenue or continuously check its own work quickly becomes an anti-pattern when dealing with massive, production-scale datasets.
Scaling these systems introduces challenges that researchers are only beginning to quantify. The issue of context rot, where models ignore relevant information buried deep within long context windows, is universally acknowledged, yet concrete, actionable data remains scarce. Lopatina noted that "context rot is cited in every blog but industry benchmarks at real scale (100k+ documents, billions of tokens) are still rare." Anthropic’s recent work, which put hard numbers on the problem, showing retrieval dropping to 30% when relevant context is placed at 700k tokens in a 1M window, is finally making the problem quantifiable and forcing developers to be intentional about context placement and compression.
