The Post-Human Briefing

Morning Briefing


Artificial Intelligence

This morning's intelligence points to a significant acceleration in both the efficiency of AI inference and the sophistication of AI agents, particularly in their ability to reason, plan, and interact with complex, real-world environments. Concurrently, the open-source model ecosystem continues its rapid evolution, challenging established closed-source leaders with increasingly capable and specialized architectures.

Inference Efficiency & Reasoning Architectures

The quest for more efficient and capable inference continues to drive architectural innovation. A major development is Adaptive Parallel Reasoning (APR), where models dynamically decide when and how to parallelize subtasks during inference, spawning concurrent threads and coordinating them based on problem complexity Berkeley Artificial Intelligence Research Blog: Adaptive Parallel Reasoning. This moves beyond fixed parallelization strategies (like simple fork-and-join or heuristic-based search) by allowing the model to learn general decomposition strategies, avoiding redundant computation, and adjusting parallelization levels to match task demands. Implementations like Multiverse modify the inference engine for KV cache reuse, while ThreadWeaver opts for client-side orchestration, trading some recomputation for engine-agnostic deployment. Training these models involves rewarding parallelization efficiency, specifically minimizing the critical path length relative to total tokens, but only when the answer is correct.

Complementing this, new work explores Diffusion Language Models (DLMs), which generate text through iterative denoising, allowing parallel refinement of entire sequences, contrasting with autoregressive generation Diffusion Language Models: An Experimental Analysis. Experimental analysis highlights trade-offs between generation quality and computational efficiency, emphasizing the impact of inference-time factors like denoising steps and parallel unmasking. For long-context scenarios, EpiCache introduces episodic KV cache management for resource-constrained environments, addressing the linear growth of KV cache with context length Apple Machine Learning Research: EpiCache. This is critical for sustaining coherent, personalized responses in extended dialogues without exceeding device memory limits. The broader field of inference engineering is also seeing rapid advancements, with new engines like Tiny-vLLM pushing real-time LLM inference to 3,000 tokens/second per request on standard GPUs Hacker News: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA.

Why it matters

These advancements directly address the computational bottlenecks of large models, pushing the boundaries of what's feasible for real-time, complex reasoning and long-context understanding. This is a fundamental scaling challenge, impacting both the economic viability and practical utility of advanced AI systems by optimizing the cost of computation per unit of information processed.

World Models, Embodied AI, and Control

Progress in world models and embodied AI is enabling more sophisticated planning and interaction in dynamic environments. GRASP (Gradient Relaxed Stochastic Planner) offers a new gradient-based planner for learned dynamics (world models) that makes long-horizon planning practical Berkeley Artificial Intelligence Research Blog: Gradient-based Planning for World Models at Longer Horizons. It tackles the fragility of long-horizon planning by lifting trajectories into virtual states for parallel optimization, adding stochasticity for exploration, and reshaping gradients to avoid brittle "state-input" signals through high-dimensional vision models. This approach, rooted in collocation methods, significantly improves success rates and speeds for complex tasks.

In embodied perception, PEVA (Predicting Ego-centric Video from human Actions) introduces whole-body-conditioned egocentric video prediction Berkeley Artificial Intelligence Research Blog: Whole-Body Conditioned Egocentric Video Prediction. PEVA trains an autoregressive conditional diffusion transformer on a large dataset of real-world egocentric video and body pose capture, learning to simulate how physical human actions shape the environment from a first-person view. This allows for planning by simulating action candidates and scoring them, demonstrating the ability to predict coherent long rollouts and atomic actions.

Real-world deployment of AI for control is exemplified by a 100-AV highway deployment for traffic smoothing Berkeley Artificial Intelligence Research Blog: Scaling Up Reinforcement Learning for Traffic Smoothing: A 100-AV Highway Deployment. Reinforcement learning agents, using only local sensor information, were deployed to dampen "stop-and-go" waves, showing significant fuel savings (up to 20%) for all road users with a small proportion of AVs. This highlights the potential for decentralized, RL-controlled systems to improve large-scale physical infrastructure. Further, Project Genie from Google DeepMind is expanding access to simulate real-world places using Street View data, pushing the fidelity of synthetic environments for training and testing embodied agents Google DeepMind News: Simulate real-world places with Project Genie and Street View.

Why it matters

These developments represent a convergence of control theory, statistical learning, and generative modeling, enabling AI systems to not just predict, but to act and plan in increasingly complex, high-dimensional, and physically grounded environments. This is critical for autonomous agents that operate in the real world, moving beyond abstract reasoning to embodied intelligence.

LLM Interpretability, Alignment, and Security

Understanding and controlling LLM behavior remains a central challenge, with new methods emerging for interpretability, alignment, and security. SPEX and ProxySPEX are algorithms designed to identify influential interactions at scale within LLMs, whether for feature, data, or model component attribution Berkeley Artificial Intelligence Research Blog: Identifying Interactions at Scale for LLMs. By leveraging properties like sparsity and hierarchy, these frameworks can pinpoint complex relationships (e.g., double negatives, synergistic training examples, attention head interactions) that drive model decisions, offering a more faithful understanding than marginal attribution methods.

On the alignment and security front, StruQ and SecAlign are proposed as fine-tuning defenses against prompt injection attacks Berkeley Artificial Intelligence Research Blog: Defending against Prompt Injection with Structured Queries (StruQ) and Preference Optimization (SecAlign). These methods use a "Secure Front-End" with special tokens to separate prompt from data and train LLMs (via structured instruction tuning or preference optimization) to ignore injected instructions. This significantly reduces attack success rates while preserving utility. Relatedly, Deontic Policies for Runtime Governance of Agentic AI Systems introduces AgenticRei, a framework to govern LLM agents with obligations, dispensations, and meta-policy conflict resolution, going beyond simple permit/prohibit controls Deontic Policies for Runtime Governance of Agentic AI Systems. This is essential for managing the security and compliance risks of agents interacting across complex enterprise workflows.

New research also exposes epistemic blind spots in LLMs when applied to structured clinical data, showing that verbalized confidence is often uninformative and does not track prediction quality LLM Doesn't Know What It Doesn't Know: Detecting Epistemic Blind Spots via Cross-Model Attribution Divergence on Clinical Tabular Data. Cross-model attribution divergence, however, can provide patient-specific reliability estimates. The concept of Emergent Alignment demonstrates that LLMs can be endowed with a "conscience step" to review and self-correct their own reasoning and outputs, steering them away from unethical behaviors through DPO-based alignment Emergent Alignment. This suggests a path towards models that can discern and correct their own misalignments.

Why it matters

These efforts are crucial for building trustworthy AI. They provide tools to peer into the "black box," mitigate vulnerabilities, and instill ethical guardrails, moving towards systems that are not only capable but also transparent, reliable, and safe for deployment in sensitive applications.

The Evolving Open vs. Closed Model Ecosystem

The competition and collaboration between open and closed models continue to shape the AI landscape. DeepSeek-V4 has been released, including Pro and Flash MoE models supporting one million token contexts DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence. DeepSeek-V4-Pro-Max is now redefining the state-of-the-art for open models, outperforming predecessors in core tasks while being highly efficient in long-context scenarios. This comes alongside DeepSeek Vision, further expanding their multimodal capabilities Hacker News: DeepSeek Introduces Vision. The US has notably held off on blacklisting DeepSeek, indicating a complex geopolitical calculus Hacker News: US holds off blacklisting DeepSeek.

Meanwhile, GLM-5.2 from Z.ai has emerged as a new leading open-weights model, a 753B parameter (40 active) Mixture of Experts model with a one million token context window Simon Willison's Weblog: GLM-5.2 is probably the most powerful text-only open weights LLM. It is now ranked second on the Code Arena WebDev leaderboard, demonstrating strong performance in front-end coding tasks even without image input. This model is also becoming available for local deployment via llama.cpp and Unsloth Studio r/LocalLLaMA: GLM-5.2 can now run locally in llama.cpp and Unsloth Studio.

On the closed-source front, Claude Fable 5 has generated significant discussion, being described as "relentlessly proactive" Hacker News: Claude Fable is relentlessly proactive but also facing criticism for mid-tier coding results Hacker News: Claude Fable 5: mid-tier results on coding tasks and even having its access suspended due to "elevated errors" Hacker News: We've suspended access to Claude Mythos 5 and Claude Fable 5. Controversially, export controls were reportedly applied to Fable 5 due to its ability to "fix this code" (which was interpreted as crafting cyber attacks), raising concerns about hindering cyber defense capabilities Simon Willison's Weblog: The Fable 5 Export Controls Harm US Cyber Defense.

In a notable collaboration, Apple introduced its third generation of Apple Foundation Models (AFM), custom-built in partnership with Google, spanning on-device to server-based models on Private Cloud Compute Apple Machine Learning Research: Introducing the Third Generation of Apple’s Foundation Models. OpenAI continues to expand its enterprise ecosystem with new usage analytics and spend controls for ChatGPT Enterprise OpenAI News: New usage analytics and updated spend controls for enterprises, the launch of an OpenAI Partner Network OpenAI News: Introducing the OpenAI Partner Network, and an acquisition of Ona to expand Codex with secure cloud environments for long-running AI agents OpenAI News: OpenAI to acquire Ona.

Why it matters

The rapid advancement of open-source models, particularly from non-US entities, is creating a more diverse and competitive landscape, driving innovation and challenging the dominance of a few frontier labs. This dynamic impacts accessibility, security, and the geopolitical balance of AI power, while also highlighting the tension between capability and control.

AI for Scientific Discovery and Real-World Applications

AI is increasingly proving its utility in accelerating scientific discovery and solving complex real-world problems. PLAID demonstrates a method for repurposing protein folding models for generation, creating a multimodal generative model that simultaneously produces protein 1D sequence and 3D structure Berkeley Artificial Intelligence Research Blog: Repurposing Protein Folding Models for Generation with Latent Diffusion. This model can accept compositional function and organism prompts and is trained on sequence databases (orders of magnitude larger than structure databases), allowing for the design of "useful" proteins for applications like drug discovery.

In medical AI, Google's AMIE (Artificial Medical Intelligence Engine), a conversational AI system, has been shown to match primary care physicians in complex disease management AI: New research shows how AMIE, our medical AI, could help manage health conditions. OpenAI's reasoning models are also being used to diagnose rare genetic diseases in children, identifying 18 new diagnoses in previously unsolved cases OpenAI News: Using AI to help physicians diagnose rare genetic diseases affecting children, and a near-autonomous AI chemist using GPT-5.4 has improved a key drug-making reaction in medicinal chemistry OpenAI News: A near-autonomous AI chemist improves a challenging reaction in medicinal chemistry. To standardize evaluation in this critical domain, OpenAI introduced LifeSciBench, an expert-authored benchmark for real-world life science research tasks OpenAI News: Introducing LifeSciBench.

Beyond medicine, Information-Driven Design of Imaging Systems (IDEAL) offers a framework to evaluate and optimize imaging systems based on their mutual information content, predicting system performance across diverse domains (color photography, radio astronomy, lensless imaging, microscopy) without requiring task-specific decoders or extensive training Berkeley Artificial Intelligence Research Blog: Information-Driven Design of Imaging Systems. This approach optimizes the encoder alone, significantly reducing memory and compute requirements. Google DeepMind is also partnering with the UK government to use AI for accelerated planning in house-building, aiming for faster housing decisions Google DeepMind News: Unlocking UK house-building with AI-accelerated planning.

Why it matters

AI's capacity to accelerate hypothesis generation, optimize complex systems, and extract actionable insights from vast datasets is transforming scientific research and critical industries. This is a shift from AI as a tool for automation to AI as a partner in discovery and a driver of systemic efficiency.

Trade-offs & Evolution

The narrative around LLM evaluation is undergoing a significant shift. While benchmarks have historically focused on accuracy, new research highlights the limitations of current methods. A large-scale evaluation of LLM-as-a-Judge models reveals that exact-match agreement systematically overstates discriminative ability, with judge rankings shifting across benchmarks and high test-retest reliability coexisting with severe position bias Reliability without Validity: A Systematic, Large-Scale Evaluation of LLM-as-a-Judge Models Across Agreement, Consistency, and Bias. This calls for a "Minimum Viable Validation Protocol" that includes agreement, consistency, and bias audits. This directly conflicts with the common practice of relying on single-score leaderboards, suggesting a need for more nuanced, multi-faceted evaluation that accounts for the inherent stochasticity and complex failure modes of LLMs.

The debate around open vs. closed models continues to evolve. While previously, the "frontier" was almost exclusively the domain of closed models, the emergence of highly capable open-weights models like DeepSeek-V4 and GLM-5.2 with million-token contexts and strong performance on agentic tasks challenges this assumption. This suggests that the gap, while still present in some areas, is narrowing rapidly, especially in terms of raw capability and efficiency. However, the controversy surrounding Claude Fable 5's export controls highlights a new dimension of the open/closed debate: regulatory intervention and the perceived dangers of powerful models, regardless of their release status. This introduces a political and ethical layer to the technical discussion, where the potential for misuse (e.g., "crafting cyber attacks" by fixing code) can lead to restrictions, even if the primary intent is defensive.

Why it matters

The evolving understanding of LLM evaluation challenges the very metrics by which progress is measured, demanding more robust and comprehensive validation. Simultaneously, the rapid advancement of open models, coupled with increasing regulatory scrutiny, is reshaping the competitive landscape and the ethical boundaries of AI development and deployment.

Bottom Line: The rapid advancements in inference efficiency, embodied AI, and scientific applications, alongside the dynamic competition and regulatory pressures within the open/closed model ecosystem, underscore a fundamental shift towards more autonomous, capable, and yet increasingly scrutinized AI systems.


Markets & Macro

EXECUTIVE SUMMARY

Geopolitical tensions in the Middle East persist despite a ceasefire, keeping energy markets volatile, while the AI sector continues its rapid evolution with major players vying for chip dominance and index rebalances reflecting this shift. Meanwhile, domestic economic data paints a mixed picture of slowing employment and housing activity against a backdrop of rising household net worth.

Geopolitical Friction and Energy Market Volatility

An initial agreement for an Israel-Hezbollah ceasefire briefly lowered oil prices on hopes of a broader US-Iran deal. However, this relief was short-lived as Iran immediately countered, announcing it would seek “insurance fees” for passage through the Strait of Hormuz, a critical global oil chokepoint. This assertion of authority re-pressured oil prices and caused emerging market currencies to retrace gains. The situation underscores the fragile nature of any US-Iran understanding and highlights the immediate impact on global energy supply chains, making marine insurance a key factor for underwriters of Hormuz passage.

Why it matters

Geopolitical instability in the Middle East directly translates to energy price volatility, impacting inflation expectations, corporate input costs, and consumer spending power globally.

AI's Relentless Expansion and Shifting Tech Power Dynamics

The AI boom continues to reshape the tech sector, evidenced by five new members joining the Nasdaq-100 reflecting AI-driven growth. Nvidia's dominance in AI chips faces a significant challenge as Amazon declares war by selling its own AI chips for its cloud infrastructure, aiming to capture a share of the estimated $750 billion AI infrastructure spend. Apple is also positioning itself, with Bank of America predicting a major pricing shift for its devices, making AI a core reason for consumer upgrades. Even small businesses are adapting, with SmallBizSEO expanding services for AI-powered search platforms.

Why it matters

The battle for AI infrastructure and end-user adoption will determine future tech leadership and profitability, influencing capital allocation and market concentration.

Trade-offs & Evolution: AI Hype vs. Underlying Fundamentals While AI continues to drive significant market cap growth and index rebalances, leading to record highs in chip stocks, there are emerging signs of caution. The RSI indicator for chip stocks suggests bearish momentum despite price strength, a classic divergence. Furthermore, the entry of major cloud providers like Amazon with their own AI chips signals a potential shift from a single-vendor dominance to a more competitive, vertically integrated landscape, challenging the current valuation premiums of pure-play chip manufacturers. This evolution suggests that while AI is a secular trend, the specific beneficiaries and their margins may face increasing pressure. Meanwhile, Michael Burry is reportedly backing undervalued tech stocks, potentially signaling a rotation within the tech sector away from the most hyped names.

Mixed Signals from the Domestic Economy and Housing Market

The December employment report was weaker than expected, with only 50,000 jobs added and significant downward revisions to prior months, indicating a slowdown in year-over-year employment growth. The unemployment rate decreased slightly to 4.4%, but the number of people working part-time for economic reasons and those unemployed over 26 weeks remain elevated compared to pre-pandemic levels. Housing starts decreased in October to a 1.246 million annual rate, falling below expectations, with both single-family and multi-family starts down year-over-year. The "Home ATM" (mortgage equity withdrawal) is mostly closed in Q3, though overall household net worth increased by $6.1 trillion in Q3 driven by corporate equities, while real estate values saw a slight decrease. Consumer discretionary spending appears to be facing headwinds, lagging the S&P 500. Conversely, defensive dividend stocks like Coca-Cola and Verizon continue to raise payouts, and utilities like Waste Management are seen as resilient. Looking ahead, the market awaits key inflation data (CPI, PPI) and retail sales next week, which will further inform the Fed's stance in the "Warsh era" of Fed watching.

Why it matters

Softening labor and housing markets suggest a decelerating economy, potentially influencing monetary policy, while the divergence between rising household net worth (driven by equities) and lagging consumer spending indicates a K-shaped recovery with uneven wealth effects.

Global Economic Shifts and Capital Market Adjustments

China's economic comeback has hit a wall, with activity sputtering mid-year, undercutting efforts to stimulate growth. In a significant policy shift, Cuba is passing urgent reforms to liberalize its economy under US pressure, potentially marking the biggest shake-up since the 1960s. India's stock regulator is reintroducing open-market share buybacks, a move aimed at bolstering local equity prices that have lagged global peers. The UK bond market saw yields rise after Andy Burnham's political victory renewed political uncertainty, prompting investors to demand a higher premium for UK debt. A European collateralized loan obligation (CLO) managed by Bain Capital has defaulted on repayments, marking the first such event since post-2008 reforms, raising questions about credit quality.

Why it matters

These global developments highlight divergent economic trajectories, the impact of political shifts on sovereign debt, and potential vulnerabilities in credit markets, all influencing international capital flows and risk appetite.

The Bottom Line: The global economy is navigating a complex interplay of persistent geopolitical risks, a rapidly evolving but potentially overvalued AI sector, and domestic economic deceleration, demanding a nuanced and agile investment approach.


Recent briefings