Skip to content
06 of 06From the Caves to AGI

Chapter 5 — Beyond the Transformer (≈ 2022–Q1 2026)

Library

Series and technical notes.

You are in From the Caves to AGI · Beyond the Transformer.

Watch video, summary and related content

Estimated reading11 min

This chapter describes the limits exposed by pure Transformer scaling and the directions the field is opening to move beyond them. By the end, you will understand why a long context window is not the same as persistent memory, what architectures such as Mamba contribute relative to standard attention, and how active search over solution spaces—exemplified by AlphaGo and its descendants—is changing the kinds of systems we build. The chapter also covers world models, foundation robotics and the capital bets that reveal where the ecosystem believes the next frontier lies. It is intended for readers who already understand foundation models and want to see where the field may go beyond scaling alone.

Update

This chapter covers the state of the field through Q1 2026. Sections on specific models, invested capital and benchmarks can change quickly; the sections on structural Transformer limitations are more stable.

This chapter follows the previous one not only chronologically but conceptually. Transformer scaling remains a central force, but it is no longer enough on its own to describe where the frontier is moving.

Several new intuitions have emerged in recent years. Some address practical limits of the Transformer itself, such as the cost of long context and memory. Others expand the kind of system being built: models that use tools, actively search for solutions, learn during inference or try to construct internal representations of the world rather than only predict the next piece of text.

This chapter follows that new phase.


1. Why the Transformer is no longer a complete map

The Transformer reorganized the field because it was parallelizable, scalable and extremely general. But scaling it also made several limits increasingly visible.

The first is computational. Standard attention becomes expensive as context length grows, turning long memory into a hardware and efficiency problem.

The second is functional. A pretrained Transformer can know a great deal, but its weights are usually fixed at inference time. It can use immediate context, but it does not naturally maintain a living, persistent memory that keeps learning while it works.

The third is structural. Predicting the next element of a sequence well is not necessarily equivalent to planning, actively searching for a solution, manipulating external tools or constructing a causal model of an environment.

That is why the current frontier is not only about training larger models. It is about combining scale with memory, search, tools and representations of the world.

1.1 Truth, uncertainty and hallucination

Another important limitation appears here. Generative LLMs trained around next-token prediction are not directly optimized to distinguish truth, falsehood and unknown information. They are optimized to produce plausible continuations given their training distributions and reward signals. When information is insufficient or the context is underspecified, that pressure can push the model to complete rather than abstain.

This is why the problem should be framed carefully. There are serious arguments that hallucinations may never disappear completely in open-ended, general-purpose systems. Recent theory argues that hallucination is unavoidable for computable LLMs used as general problem solvers, while more applied work argues that standard training and evaluation procedures reward guessing over admitting uncertainty.

It would also be too strong, however, to turn this into an absolute condemnation of the Transformer architecture or to claim that every mitigation is superficial. Much of the problem depends on the training objective, calibration, abstention behavior and access to external verification. Retrieval, tools, verification, uncertainty detection and explicit refusal policies can substantially reduce hallucinations in bounded domains. The strongest defensible statement is therefore not that the problem will disappear, but that in open generative systems it remains a serious structural limitation even though well-designed products can mitigate it substantially.


2. From next-token prediction to search over solution spaces

One of the most important directions in this new phase is a renewed emphasis on something that the LLM boom had pushed somewhat into the background: search.

In 2016, AlphaGo showed that a powerful neural network alone was not enough: the system combined networks, tree search and reinforcement learning to navigate an enormous game space. In 2017, AlphaZero generalized that approach to Go, chess and shogi using only the rules of each game. The underlying idea was already there: for some problems, practical intelligence is not only about predicting a good answer, but about actively exploring a space of possibilities and evaluating promising trajectories.

The same logic later reappeared in other contexts. In 2022, ReAct showed that even language-based agents can improve when they alternate reasoning and action, call external tools, observe the result and use that information to choose the next step. ReAct is not a direct architectural descendant of AlphaGo, but it participates in the same broader shift away from the idea that a useful model simply emits a one-shot answer.

The agent as a loop, not an arrow
An agent does not perceive, think and act in a straight line. It verifies, updates its state and observes again. The architecture is a closed loop with the objective at the center.
1 Observe 2 Plan 3 Execute 4 Verify 5 Memory OBJECTIVE 🎯 policy
👁
Observe
Perceives the environment: messages, results from previous tools, system state, images or documents. Everything that fits in the current context window.
textimagesprevious resultsenvironment state
🧠
Plan
Reasons about which action to take given the objective and what was observed. It can decompose complex tasks into substeps and select the appropriate tool before acting.
chain-of-thoughtsubgoalstool selection
Execute
Carries out the action: an API call, code execution, search, text generation, or interaction with the physical or digital environment.
tool callscodeexternal APIswriting
Verify
Evaluates the result. Was the expected outcome achieved? Was there an error? If it fails, the loop restarts with additional information. This stage distinguishes an agent from a chatbot.
result evaluationerror detectiondecision to continue
💾
Update memory
Stores what matters before observing again. The context window is temporary; external memory persists across sessions. Without this stage, the agent repeats mistakes.
context windowvector memorystep history

DeepMind's lineage can be traced more continuously. In July 2024, AlphaProof and AlphaGeometry 2 showed that combining language models, search and reinforcement learning could reach silver-medal performance at the International Mathematical Olympiad. In May 2025, AlphaEvolve extended that idea to algorithm discovery: Gemini models, automated evaluators and an evolutionary framework working together to improve code and discover new algorithms. Later that year, in the official IMO 2025 evaluation, Gemini Deep Think reached gold-medal level, reinforcing the idea that a base model combined with active search and formal verification can cross the threshold of top human competitors in olympiad mathematics.

DeepMind's March 2026 retrospective on ten years of AlphaGo makes this genealogy explicit. It presents AlphaProof and AlphaEvolve as continuations of the same intuition that made AlphaGo and AlphaZero powerful: combine capable models with search, verification and planning to traverse enormous spaces where answering well once is not enough.

A change in the basic unit is becoming visible. The useful system is no longer only the model; it is the model plus search, plus tools, plus evaluation.

From next-token prediction to search over the solution space
DIRECT PREDICTION
Problem Model direct prediction Answer
One path — without exploring alternatives
WITH SEARCH
Problem Model generates candidates candidate best ★ candidate
Explore · evaluate · select the best trajectory
For some problems, practical intelligence is not about predicting one answer well once, but about actively exploring a space of possibilities and evaluating promising trajectories.
2016
AlphaGo
Neural networks + tree search + RL → first system to defeat a world champion at Go
2017
AlphaZero
Only the game rules, without human game data → masters Go, chess and shogi through self-play and search
2022
ReAct
LLMs alternate reasoning and action, call tools and observe results before deciding the next step
2024
AlphaProof
LLM + search + formal RL → silver-medal-level performance at the International Mathematical Olympiad
2025
AlphaEvolve
Gemini models + automated evaluators + evolutionary framework → discovery and improvement of mathematical algorithms
AlphaGo's central idea reappears nine years later in mathematics and code: combine capable models with search, verification and planning to navigate enormous spaces.

3. Memory beyond the context window

Another clear frontier is memory. LLM context windows have grown dramatically, but a long window is not the same as persistent, selective memory.

Three types of memory, three different mechanisms
Long context ≠ persistent memory ≠ permanent learning. Confusing them creates false expectations about what an agent can remember and when.
1
Immediate context
What is active in the context window right now
system instruction
conversation history
attached documents
current query
Context window (e.g. 128K tokens)
Direct access without retrieval latency
Usually disappears when the active session ends
Compute cost grows with context size
The model can use everything in the active window, but it does not learn or retain it persistently.
2
External memory
What is retrieved from outside the model at use time
🗄
Vector database / RAG
similarity search
📄
retrieved chunks → context
Can persist across sessions
Can scale to millions of documents
Available only when actively retrieved
The model does not intrinsically remember documents; it can use them when retrieval brings them into context. Retrieval can fail.
3
Parametric memory
What the model encoded during training
Model weights (fixed during inference)
Always available without retrieval
Knowledge compressed during training
Frozen at inference: ordinary use does not update it
Subject to hallucinations and training-data cutoff
What the model knows through its parameters. Updating those parameters requires a training or weight-update process.
The most common mistake
Expanding the context window does not turn immediate context into persistent memory. Retrieving documents with RAG does not mean the model has learned their contents either. These are three different mechanisms with different properties.

3.1 Mamba and the return of State Space Models

State space models (SSMs) are a family of architectures with roots in classical control theory. Instead of computing attention between every pair of tokens in the context, they maintain a compact hidden-state vector that is updated at each sequence step, allowing long sequences to be processed with linear rather than quadratic cost.

Mamba revived this tradition with a key idea: make some parameters input-dependent to improve selection of relevant information while achieving linear scaling with sequence length. The point was not only speed. It was an attempt to preserve useful reasoning over long sequences without always paying the price of full attention.

Mamba-2 went further and showed a deep mathematical relationship between attention and state space models, proposing a refined layer that is faster and competitive. The deeper message matters: this may not be a total break with the Transformer, but the emergence of a broader family of sequence and memory mechanisms.

3.2 Titans, MIRAS and memory that learns during inference

Google Research's line goes one step further. Titans introduces long-term neural memory that updates while the model is operating. The central idea is not merely to retain more context, but to decide what deserves consolidation into memory according to novelty or surprise.

Google later presented Titans + MIRAS as an explicit direction toward test-time memorization: systems that maintain useful memory during execution without relying only on offline retraining. This introduces an important intuition for the current phase: learning may not need to be confined to training. Some relevant learning may happen during use as well.

3.3 Nested Learning

For now, the same direction culminates in Nested Learning, presented by Google Research in 2025 as a continual-learning paradigm based on nested optimization problems with different update frequencies. The idea is to reinterpret architecture and optimization as parts of one multilevel system.

It is not yet a new field standard. But it points to something important: the future of learning may depend less on one large training loop and more on several levels of adaptation operating at different rates, from immediate memory to more persistent internal modification.

Beyond the Transformer: three problems, three responses
Mamba, Titans and continual-learning approaches target different Transformer limitations. They are not general replacements: they are solutions to specific problems.
TRANSFORMER LIMITATION
O(N²)
Self-attention has quadratic cost. Doubling the context quadruples the compute. For long sequences (audio, genomics, long documents), the Transformer becomes prohibitively expensive.
NEW IDEA
SSM
State Space Models process tokens through a compact hidden state that is updated at every step. Linear O(N) cost. Mamba adds selectivity: the state decides which information to retain at each moment.
TRADEOFF
±
Efficient on long sequences, but the hidden state is compressed: it can lose long-range dependencies that full attention would capture. Less expressive on tasks where every relationship between tokens matters.
TRANSFORMER LIMITATION
KV
Transformer memory lives only in the KV cache of the active window. Outside that window, the model remembers nothing. Expanding the window is costly and does not solve true persistence across sessions.
NEW IDEA
∇W
Titans uses model weights themselves as memory at inference time. A secondary network learns to compress and retrieve relevant information by updating its parameters during use, without full retraining.
TRADEOFF
±
Persistent memory without a large context window, but inference-time learning adds latency. Memory can become corrupted or overwritten without careful management of forgetting. The architecture is more complex to train.
TRANSFORMER LIMITATION
✗∇
Current models are trained once and then frozen. Learning something new requires retraining or fine-tuning, which can cause "catastrophic forgetting": the model loses previous knowledge as it acquires new knowledge.
NEW IDEA
CL
Continual Learning aims to let the model incorporate knowledge incrementally without forgetting what came before. Techniques include regularizing important weights, expandable modules and architectures with episodic memory.
TRADEOFF
±
Mitigating catastrophic forgetting is difficult: current solutions work well in narrow domains but are hard to scale. The stability-plasticity balance remains an open problem at scale.

4. World models: learning structure, not only sequences

Another strong direction tries to move beyond next-token prediction by learning internal representations of how an environment evolves.

World models: simulate before acting
A sequential model predicts the next state. A world model simulates several possible futures before choosing what to do. The difference is the ability to anticipate, not just continue.
SEQUENTIAL MODEL
Predicts the next state
next state
The model predicts step by step. It cannot evaluate consequences before acting.
It only continues the sequence. No internal simulation of the environment.
vs
WORLD MODEL
Simulates several possible futures
chosen trajectory
The model simulates collision, rebound and alternatives before acting. It chooses the trajectory with the best anticipated outcome.
Anticipates environment dynamics. Plans before committing to an action.
🚫
IMPLICATION 1 · PREVENTION
Reject before acting
A world model can discard actions that lead to an undesirable state before executing them. A sequential model can only learn from what has already happened.
🤖
IMPLICATION 2 · PHYSICAL AGENTS
Necessary, not optional
For robotics, autonomous driving or agents in the physical world, simulating consequences before acting is a structural capability, not an add-on.
🔬
STATE OF THE ART · OPEN DEBATE
Different architecture or LLM?
DreamerV3 and LeCun's JEPA models point in this direction. The debate is whether LLMs already contain implicit world-model representations or whether a different architecture is needed.

DreamerV3, and later its version published in Nature, showed that a world model can learn to imagine possible futures and reuse that ability to solve more than 150 tasks with a single configuration, including collecting diamonds in Minecraft from scratch. The key is not only performance but the kind of approach: the system learns a latent model of the environment and plans within it.

In parallel, I-JEPA pushes a different but related intuition. Rather than reconstructing every pixel, it predicts semantic representations in a latent space. It is not a complete world model in Dreamer's sense, but it belongs to the same family of ideas that prioritize structure over literal reconstruction.

Genie 2 takes this direction into an especially suggestive domain: generating playable, controllable 3D environments from a single input image. The work is still early and demonstrative, but the thesis is visible: if a system can model world dynamics well enough, it can become useful not only for answering questions but for training agents and exploring action spaces.

4.1 The thesis is already moving capital

This is no longer only an academic research direction. In March 2026, Reuters reported that AMI, Yann LeCun's startup, raised $1.03 billion to develop systems centered on reasoning, planning and modeling the real world. A month earlier, Reuters reported that Fei-Fei Li's World Labs raised $1 billion to advance “spatial intelligence.”

Those numbers do not prove that this will be the winning route. They do show that a significant part of the ecosystem believes the next leap will not come from scaling language alone, but from modeling the world's spatial, causal and interactive structure more effectively.

These are no longer laboratory bets measured in hundreds of millions. In 2026 alone, OpenAI announced $110 billion in new investment, Anthropic closed $30 billion, and xAI another $20 billion. In parallel, large technology companies plan roughly $635 billion of AI capital expenditure in 2026 alone.

The signal is hard to ignore: the frontier is no longer only an algorithmic problem. Capital is moving toward four concrete bottlenecks—models, compute, energy and the physical world—because better training is no longer enough.

Those systems must also be deployed, powered, and given spatial perception and action in the real world.

The frontier no longer scales only in the model
Capital is no longer concentrated only in foundation-model labs: it is spread across models, compute and infrastructure, firm power, and physical-world robotics. The implicit 2025–26 thesis is that the next leap requires a complete system, not just more parameters.
🧠
Models
Reasoning, multimodality and new architectures
$165B+ visible in announced or raised capital
OpenAI$110B2026
Anthropic$30B2026
xAI$20B2026
Mistral, SSI, Thinking Machines and Cohere~$5B2024–26
Compute and infrastructure
Data centers, specialized clouds and acceleration
$635B in AI capital expenditure in 2026; $23B+ visible across specialized players
Big tech (est.)$635B2026
CoreWeave$14.5B+cumulative
Nebius$4.34B2026
Groq$2.1B+2024–25
Cerebras + SambaNova$2B+visible
🔋
Energy for compute
Advanced nuclear and firm power for data centers
1.95 GW+ visible; >5 GW target and $500M in funding
Microsoft + Constellation835 MW20-year PPA
Google + Kairos Power500 MW2030–35
Amazon + X-energy$500M2024 funding
Amazon + Energy Northwest320 MWinitial phase
Amazon + Dominion300 MWVirginia
🤖
Robotics and the physical world
Embodied intelligence, spatial models and general-purpose robots
$5.2B+ visible (AMI, World Labs, Skild, Figure, Physical Intelligence, Apptronik, 1X)
AMI$1.03B2026
World Labs$1B2026
Skild AI$1.7B2024–26
Figure AI$675M2024
Physical Intelligence$400M2024
Apptronik + 1X$450M2024–25
The thesis signaled by capital
The bottleneck is no longer only algorithmic. The frontier depends on available compute, firm power, physical deployment capacity and systems that can act beyond the screen. The dominant player will not simply be whoever trains the best model, but whoever closes all four layers most effectively at once.

5. From model to body: robotics and physical action

If the frontier moves toward systems that perceive, plan and act, robotics stops being a footnote and returns to the center of the debate.

RT-2 showed that a vision-language-action model can transfer some knowledge acquired from web data into robotic-control tasks. The important point is not only that the robot can execute movements, but that it can use more general representations to interpret instructions and generalize beyond a strictly robotic training set.

Figure is one of the most visible bets in this phase. First because of its early commercial orientation: in 2024 it announced a partnership with BMW to deploy humanoid robots in a factory. Then because of its intelligence layer: Helix was introduced in 2025 as a general vision-language-action model for humanoid control, capable of controlling the full upper body and even coordinating two robots on shared tasks. By late 2025, the company had published deployment metrics for Figure 02 at BMW, including accumulated operating hours, parts handled and documented production contribution. Figure therefore combines a clear general-purpose VLA narrative with explicit industrial deployment.

Tesla represents a different bet. Its Optimus approach is a general humanoid deeply integrated with the rest of its physical-AI, perception, control and manufacturing stack. The company presents it as a general-purpose autonomous robot for unsafe, repetitive or boring tasks. Public evidence through Q1 2026, however, remains more programmatic than Figure's: Reuters reported in 2024 that Tesla aimed to use Optimus internally at low scale in 2025 and later expand toward external customers, but that ambition still looks more like a corporate roadmap than an industrial deployment documented as explicitly as Figure's.

NVIDIA Project GR00T expresses the same intuition from another angle: foundation models for humanoid robots, combined with simulation, synthetic data, perception and specialized hardware.

We are not yet at reliable general-purpose robots that work in arbitrary environments. But the change in approach is clear. Robotics is beginning to inherit the logic of foundation models: one base is expected to transfer across many tasks instead of being completely reprogrammed for each one.

Robotics: real-world maturity scale
In robotics, "progress" can mean very different things. This scale makes it possible to compare systems honestly: a controlled demo is not the same as a documented deployment in a real environment.
Lower maturity Higher maturity
Controlled demo
An impressive demonstration under conditions designed for the system. The environment is calibrated, the objects are known and failure conditions are avoided.
Robotics videos in laboratory environments "Zero-shot" generalization on objects very similar to those seen in training
Benchmark / semi-structured environment
The system passes standard tests or works in partially controlled environments. The results are reproducible, but under conditions favorable to the system.
RT-2 (Google), multitask in the lab OpenVLA, manipulation benchmarks Spot (Boston Dynamics), industrial inspection
Industrial pilot
Operating in a real environment but under active supervision. The system performs useful tasks; errors are documented and mitigated by human operators.
Optimus (Tesla), internal factory pilots Figure 02, trials with BMW Physical Intelligence (π), kitchen / warehouse
Documented deployment
Continuous operation in an uncontrolled real environment. Performance metrics, failure rates and coverage are published or independently verifiable.
Industrial assembly lines in production Amazon warehouse robots (dedicated environments)
Why this distinction matters
Most AI-robotics headlines correspond to rung 1 or 2. Reaching rung 3 or 4 requires solving reliability, safety and cost problems that do not appear in demos. The jump between rungs is where the field's real challenges lie.

6. What this new phase is trying to solve

Taken together, the movement is clear. Transformer scaling produced extremely capable systems, but it also exposed several limitations: memory that is short relative to long-horizon tasks, little internal adaptation during inference, planning that remains weak in some domains and incomplete understanding of the physical world.

The directions that currently appear most promising are aimed precisely at those points:

  • Search and verification over solution spaces,
  • Selective memory during inference,
  • Continual learning across multiple timescales,
  • Internal models of environments,
  • Systems capable of perceiving and acting in the physical world.

We do not yet know which combination will prevail. What does appear clear is that AI's future is not determined only by larger models, but by better-organized systems that can interact with the world more effectively.

Next series

This chapter closes the history of how we got here. The next series enters one of today's most active fronts: Multimodality in Generative AI →


7. References

**Core sources**
Key Source Short description
R1 Silver et al. (2016) — AlphaGo Networks, tree search and RL in Go.
R2 Silver et al. (2017) — AlphaZero Generalization of self-play and search; submitted in December 2017.
R3 Yao et al. (2022) — ReAct Integrating reasoning and action with tools in LLMs.
R4 DeepMind (2024) — AlphaProof and AlphaGeometry 2 July 2024 announcement: silver-medal IMO level through search, RL and mathematical formalization.
R5 DeepMind (2025) — AlphaEvolve May 2025 announcement: agent for algorithm discovery and optimization.
R6 DeepMind (2026) — 10 years of AlphaGo March 2026 retrospective linking AlphaGo, AlphaZero, AlphaProof and AlphaEvolve through search and planning.
R7 Gu & Dao (2023) — Mamba Selective state space models and long sequences.
R8 Dao & Gu (2024) — Transformers are SSMs Mamba-2 and the duality between attention and SSMs.
R9 Behrouz, Zhong & Mirrokni (2025) — Titans Long-term neural memory during inference.
R10 Google Research (2025) — Titans + MIRAS Test-time memorization and long-term memory.
R11 Google Research (2025) — Nested Learning Multilevel paradigm for continual learning.
R12 Hafner et al. (2023) — DreamerV3 World models for general control.
R13 Hafner et al. (2025) — Mastering diverse control tasks through world models Nature publication of DreamerV3.
R14 Assran et al. (2023) — I-JEPA Prediction in representation space.
R15 DeepMind (2024) — Genie 2 Playable, controllable 3D world from an image.
R16 Brohan et al. (2023) — RT-2 Vision-language-action models in robotics.
R17 Figure (2025) — Helix General VLA for humanoid control.
R18 Figure (2025) — Figure 02 at BMW Public industrial deployment metrics.
R19 Reuters (2024) — BMW and Figure Initial deployment agreement with BMW.
R20 Tesla — AI & Robotics Official positioning of Optimus as a general-purpose humanoid.
R21 Reuters (2024) — Tesla and internal Optimus use Tesla's public roadmap for Optimus.
R22 NVIDIA (2024) — Project GR00T Foundation model for humanoid robots.
R23 Reuters (2026) — AMI financing Capital signal toward world models and reasoning.
R24 Reuters (2026) — World Labs financing Capital signal toward spatial and 3D intelligence.
R25 OpenAI (2025) — Why Language Models Hallucinate Argument that standard objectives reward guessing over abstention.
R26 Xu et al. (2024/2025) — Hallucination is Inevitable Theoretical inevitability argument for general LLMs.
R27 Kadavath et al. (2022) — Language Models (Mostly) Know What They Know Model calibration and self-evaluation.
R28 Kapoor et al. (2024) — Large Language Models Must Be Taught to Know What They Don’t Know Useful calibration does not emerge automatically; it needs explicit training.
R29 Madhusudhan et al. (2025) — Do LLMs Know When to NOT Answer? Abstention as a key reliability dimension.
R30 Dhuliawala et al. (2024) — Chain-of-Verification Internal verification for reducing hallucination.
R31 Farquhar et al. (2024) — Detecting hallucinations in large language models using semantic entropy Hallucination detection through uncertainty.

Frequently asked questions

Why is active inference-time search relevant if LLMs already reason?
Because practical intelligence on complex problems is not just about predicting the next token in one pass. It often requires actively exploring a solution space and evaluating alternative trajectories. Systems such as AlphaProof combine a base model, search and formal verification to outperform direct answering, showing that how much computation a system spends while answering can matter as much as what it learned during training.

If massive context windows already exist, what problem do Mamba or Titans solve?
Long windows are computationally expensive and their contents disappear when the session ends. Mamba proposes linear sequence scaling by maintaining a compact hidden state that updates at each step at much lower cost, although that state compresses history. Titans goes further by introducing neural memory that updates during inference and supports selective persistence without relying only on retraining or indefinitely expanding the context window.

What is the fundamental difference between an LLM and a world model?
An LLM statistically predicts the next element of a sequence without necessarily constructing a causal representation of the environment in which it operates. A world model learns internal representations of how an environment evolves, allowing it to simulate possible futures and reject undesirable consequences before acting. DreamerV3 is a mature example: it learns a latent model and uses it to solve more than 150 tasks with one configuration.

How do VLA models change robotics?
Vision-language-action models can transfer general knowledge learned from web-scale data into physical-control tasks through natural-language instructions. This reduces the need to hand-program every movement: one base can generalize across multiple tasks rather than requiring a full rewrite for each. Figure 02 has already published real deployment metrics from BMW's factory, moving the approach beyond purely experimental demonstrations and showing how robotics is beginning to inherit the logic of foundation models.

Keep learning
Series completedChoose the next pathAll series