The push toward artificial general intelligence accelerated visibly in early 2026, with new reasoning architectures winning long-context benchmarks, a contested IQ-style scoring site forcing a public debate about how to measure general capability, and agentic deployments exposing structural limits that model performance alone cannot fix. Taken together, the developments sketch a field moving fast on narrow fronts while confronting harder questions about what “general” actually means.
Recursive Language Models Are Rewriting the Benchmark Board
One of the most discussed architectural shifts this year is the rise of Recursive Language Models (RLMs), which Avishek Biswas detailed in a deep-dive for Towards Data Science published May 16, 2026. RLMs are currently leading performance on long-context benchmarks, and the reason, according to Biswas, comes down to a single design principle: passing context by reference rather than replicating it.
Conventional agentic harnesses — ReAct, CodeAct, vanilla subagent chains — copy context repeatedly as tasks decompose into subtasks. That approach bloats token counts and introduces compounding error as context windows fill. RLMs instead maintain a shared context store that subprocesses reference without duplicating, keeping the working memory lean and coherent across deeply nested tasks.
Biswas illustrated the difference with a deliberately simple test: asking a model to generate 50 fruit names and count the letter “R” in each, then scaling that to a nested dictionary across fruits, countries, and animals. Standard agentic approaches degraded on the nested version; RLMs maintained accuracy. The experiment is modest by AGI-research standards, but it pinpoints exactly where existing architectures break down — recursive decomposition without shared state.
The practical implication is that RLMs are not just faster on benchmarks. They represent a structural answer to the context-management problem that has constrained multi-step reasoning since the first agent frameworks appeared. A 50-minute tutorial video accompanying the article walks through an open-source implementation.
AI IQ: One Number, Many Objections
While RLMs compete on task-specific benchmarks, a separate project is trying to collapse all of that into a single, human-readable score. AI IQ, built by engineer and angel investor Ryan Shea, assigns estimated intelligence quotients to more than 50 frontier language models and plots them on a standard bell curve, according to VentureBeat’s coverage of the project.
The methodology draws on 12 benchmarks across four capability dimensions. The visualizations at aiiq.org spread rapidly across social media, drawing a split reaction that itself reveals something about the state of AGI discourse.
The Case For a Single Score
Enterprise technologists praised the legibility. “This is super useful,” technology commentator Thibaut Mélen wrote on X. “Much easier to understand model progress when it’s mapped like this instead of another giant leaderboard table.” Business strategist Brian Vellmure called it helpful and said it tracked with his personal experience of the models.
The appeal is real. Procurement teams, CISOs, and product managers making AI vendor decisions do not have time to cross-reference 12 separate benchmark tables. A single number, however imperfect, reduces cognitive load.
The Case Against
Researchers pushed back hard. “It’s nonsense. AI is far too jagged. The map is not the territory,” AI Deeply posted on X. The critique points to a well-documented phenomenon: frontier models can solve graduate-level physics problems while failing tasks a child handles easily. A composite score papers over those gaps.
Zaya, a technology commentator, argued on X that “IQ as a proxy is fading — we’re seeing reasoning density spikes that don’t map to g-factor,” suggesting the human IQ framework may be structurally unsuited to models whose capability profiles look nothing like human cognitive distributions. A separate X user, Pressureangle, flagged a “complete lack of transparency” in the scoring methodology as a further concern.
The debate is not purely academic. How the industry measures progress toward general capability shapes research priorities, funding decisions, and public expectations about what AGI would actually look like.
Agentic Deployment Reveals the Gap Between Capability and Production
If benchmarks measure what models can do in controlled conditions, real-world deployments are measuring something different: whether organizations can safely operate them. The gap is stark.
Cisco President Jeetu Patel told VentureBeat at RSAC 2026 that 85% of enterprises are running AI agent pilots, but only 5% have reached production — an 80-percentage-point gap he attributed to trust, not capability. The bottleneck is identity governance: most enterprises cannot inventory, scope, or revoke non-human agent identities at machine speed.
IANS Research found that most businesses lack role-based access control mature enough for their existing human identities — and agents will make that problem significantly harder. The 2026 IBM X-Force Threat Intelligence Index reported a 44% increase in attacks exploiting public-facing applications, driven by missing authentication controls and AI-enabled vulnerability discovery.
The pattern repeating across sectors — healthcare transcription agents updating electronic health records, computer vision agents running quality control on manufacturing lines — is that the models are capable enough for production but the surrounding infrastructure is not. AGI-adjacent capability is arriving faster than the governance layer needed to deploy it responsibly.
Agent-of-Agent Architectures Enter the Market
One response to the deployment complexity problem is to automate the management layer itself. The company formerly known as Intercom, which rebranded to Fin in May 2026, announced Fin Operator — an AI agent designed to manage another AI agent — at a live event in San Francisco, according to VentureBeat.
Fin Operator targets support operations teams who configure, monitor, and debug Fin, the company’s customer-facing agent. “Fin is an agent for your customers. Operator is an agent for your support ops team,” Brian Donohue, VP of Product at Fin, told VentureBeat.
The commercial context matters: Fin recently crossed $100 million in annual recurring revenue, growing at 3.5x, within a parent company generating $400 million in ARR. Agent-of-agent architectures are no longer research concepts — they are shipping products with measurable revenue.
This hierarchy of agents managing agents is itself a structural step toward more general systems. A model that can monitor, debug, and improve another model’s behavior is performing a form of meta-reasoning that earlier generations of AI systems could not approximate.
Infrastructure Bets Signal Where the Industry Thinks AGI Compute Lives
On the hardware side, Cerebras Systems debuted on the Nasdaq in May 2026, opening at $350 per share — nearly double its $185 IPO price — and crossing a $100 billion market capitalization within hours of trading. The company raised $5.55 billion by selling 30 million shares, in what Bloomberg reported as the largest U.S. tech IPO since Uber’s 2019 debut.
Cerebras builds the world’s largest commercial AI processor, a chip architecture designed specifically for the inference workloads that agentic and recursive systems demand. Julie Choi, SVP and Chief Marketing Officer at Cerebras, told VentureBeat the fresh capital would go toward “fill[ing] more data halls with Cerebras systems to power the world’s fastest inference.”
The IPO valuation signals that investors believe the compute requirements for general-capability AI systems will be substantially larger than what current GPU clusters can efficiently handle — and that specialized silicon will be part of the answer.
What This Means
The 2026 AGI picture is neither the imminent superintelligence some predicted nor the stalled plateau others warned about. It is a field making concrete, measurable progress on specific sub-problems — recursive reasoning architecture, long-context coherence, meta-agent coordination — while running into equally concrete, non-model-capability limits: identity governance, benchmark validity, and infrastructure scaling.
The RLM results on long-context benchmarks are the most technically significant development covered here. If passing context by reference rather than copying it consistently outperforms existing agentic designs, that is an architectural insight with implications well beyond leaderboard rankings — it suggests current agent frameworks have a fundamental inefficiency that compounds at the scale general-purpose systems would require.
The AI IQ controversy is equally revealing, but for different reasons. The intensity of the backlash against a single-number score reflects genuine scientific disagreement about whether current models are approaching general intelligence or are instead a collection of narrow capabilities that happen to be very wide. That question does not have a consensus answer in 2026, and the benchmarking community’s inability to agree on measurement methodology is itself evidence of how early the field remains.
The 80-point gap between agent pilots and production deployments is perhaps the most underappreciated data point. Models capable enough to run hospital records and factory inspections are already built. The constraint is not intelligence — it is trust infrastructure. That gap will likely define the practical AGI timeline more than any benchmark score.
FAQ
What are Recursive Language Models and why do they matter for AGI?
Recursive Language Models (RLMs) are agentic AI architectures that pass context by reference rather than copying it across subtasks, keeping working memory efficient during complex, multi-step reasoning. According to Avishek Biswas writing for Towards Data Science, RLMs are currently leading long-context benchmarks — a capability directly relevant to the sustained, coherent reasoning that general-purpose AI systems would require.
How does the AI IQ site score language models?
AI IQ, built by engineer Ryan Shea, scores more than 50 frontier models across 12 benchmarks in four capability dimensions and maps the results onto a standard IQ bell curve. Critics, including researchers quoted by VentureBeat, argue the single-number format obscures the “jagged” capability profiles of real models — strong on some tasks, weak on others — in ways that make the scores potentially misleading.
Why are only 5% of enterprise AI agent pilots reaching production?
Cisco President Jeetu Patel told VentureBeat at RSAC 2026 that the barrier is identity governance, not model capability. Most enterprises cannot reliably inventory, scope, or revoke the non-human identities that AI agents generate, and IANS Research found that role-based access controls are not yet mature enough to handle agent-scale identity management securely.
Related news
Sources
- Recursive Language Models: An All-in-One Deep Dive – Towards Data Science
- AI agents are running hospital records and factory inspections. Enterprise IAM was never built for them. – VentureBeat
- Cerebras stock nearly doubles on day one as AI chipmaker hits $100 billion — what it means for AI infrastructure – VentureBeat
- Intercom, now called Fin, launches an AI agent whose only job is managing another AI agent – VentureBeat
- AI IQ is here: a new site scores frontier AI models on the human IQ scale. The results are already dividing tech. – VentureBeat






