When Isaac Newton added his Fourth Rule of Reasoning to the third edition of the Principia in 1726, he was not weakening science by making its conclusions provisional. He was protecting science from its most persistent human failure: the conversion of a successful explanation into an unquestionable doctrine. Newton argued that propositions inferred from phenomena should be treated as true, or nearly true, until new phenomena make them more exact or reveal exceptions. Rule IV did not appear in the first edition of 1687; it was added in the third edition, after Newton himself had spent decades revising the work that later generations would mistake for a monument of finished certainty.
“...until yet other phenomena make such propositions either more exact or liable to exceptions.”
—Isaac Newton
More than two centuries later, Alan Turing concluded his 1950 paper “Computing Machinery and Intelligence” with a similarly disciplined humility. He did not claim to possess a complete theory of machine intelligence. He saw only the beginning of the road, but he understood that uncertainty about the distant destination did not excuse inaction on the part already visible.
“We can only see a short distance ahead, but we can see plenty there that needs to be done.”
—Alan M. Turing
It is never too late to create something better. The moment a technology appears unbeatable is often the moment when its hidden assumptions are most exposed. Every dominant system carries within it a map of what it cannot yet see: the user it has neglected, the physical reality it cannot model, the memory it cannot preserve, the uncertainty it cannot admit, the body it cannot inhabit, and the human need it has not considered worthy of serious attention. Progress belongs not to those who deny the strength of the present, but to those who study its exceptions carefully enough to discover the architecture of the future.
— Aditya Mohan, Founder, CEO & Philosopher-Scientist, Robometrics® Machines
Every technological era eventually produces an illusion of completion.
A company grows so rapidly that its market position begins to resemble a law of nature. Its products become habits. Its interfaces become culture. Its engineering decisions become industry conventions. Investors stop asking whether the underlying model is final and begin asking only how quickly it can be scaled. Startups attach themselves to the dominant platform rather than question the assumptions beneath it. Universities reorganize laboratories around the methods for which funding, computing infrastructure, and fashionable benchmarks are most readily available.
At such moments, technological history appears to close.
The leading internet company seems to have permanently organized the world’s information. The dominant social network seems to have captured human attention forever. The prevailing mobile platform appears to have settled the shape of personal computing. Today, the frontier artificial intelligence laboratories can produce the same psychological effect. Their advantages in computing power, data, capital, talent, distribution, and public recognition can make the creation of something fundamentally better appear almost irrational.
This impression is especially powerful because the current progress is real. Modern foundation models can generate language, write software, interpret images, synthesize speech, create visual media, retrieve information, operate digital tools, and convert natural-language requests into increasingly complex sequences of actions. The Stanford report that helped establish the term foundation model defined one as a model trained on broad data, generally through self-supervision at scale, that can be adapted to a wide range of downstream tasks. The definition was deliberately broader than “Large Language Model”: foundation models can operate across language, vision, robotics, biology, and other domains.
The error is not in recognizing the strength of these systems. The error is in confusing strength with finality.
Newton’s Fourth Rule gives us the correct intellectual posture. It asks us to accept the best explanation supported by the available phenomena while remaining alert to the phenomena it cannot yet explain. This is neither reflexive skepticism nor blind optimism. It is provisional confidence: serious enough to build upon, humble enough to revise.
Applied to technology, the rule becomes a method of invention.
Treat the dominant system as the best current answer. Study it respectfully. Measure its advantages precisely. Then search for the exception.
The exception may be a task at which the system fails unpredictably. It may be an aircraft, robot, medical device, or spacecraft whose power and latency limits make cloud dependence unacceptable. It may be a domain in which a plausible answer is useless unless every claim can be traced to evidence. It may be a machine that needs to understand gravity, contact, momentum, and material failure rather than produce elegant language about them. It may be a person who needs continuity, emotional memory, and dependable care rather than another isolated conversation.
The scientific entrepreneur does not need to claim that the giants are incompetent. They are usually not. The more productive question is:
What are the giants optimized for, and what becomes possible when their optimization target no longer matches the emerging world?
Architecture is never independent of circumstance. A system succeeds because it fits a particular combination of available hardware, training data, network bandwidth, memory capacity, user behavior, economic incentives, and product constraints. When those conditions change, yesterday’s advantage can become tomorrow’s burden.
A large cloud model may be extraordinary when power, bandwidth, and latency are abundant. The same design may be unsuitable inside an aircraft with intermittent connectivity, a surgical instrument that must respond predictably, a humanoid robot that must close a control loop in milliseconds, or a Mars habitat where communication with Earth may take many minutes in each direction. The model has not suddenly become unintelligent. The environment has changed the operational meaning of intelligence.
That is how an exception begins to become a rule.
It first appears as a peculiar requirement that the dominant architecture handles poorly. Then more users acquire the same requirement. New hardware makes an alternative design practical. A small research result becomes a product advantage. The product advantage attracts specialized data. The data improves the system. The improved system creates a market that had previously looked too narrow to matter.
By the time the incumbent recognizes the new rule, the exception may already have become an ecosystem.
To imagine what might follow today’s systems, we must first understand what they are.
The most visible foundation models are Large Language Models. Most contemporary LLMs use an autoregressive training objective: given the preceding tokens in a sequence, the model estimates a probability distribution over the next token. GPT-3, for example, was introduced as a 175-billion-parameter autoregressive language model whose few-shot task adaptation could often occur through instructions and examples provided in the prompt, without additional gradient-based training for each task.
A token is not necessarily a complete word. Depending on the tokenizer, it may be a word, a word fragment, punctuation, a number segment, a byte, or another learned textual unit. Each token is converted into a high-dimensional vector called an embedding. Positional information allows the network to distinguish the order of tokens. Those representations then pass through repeated layers containing attention operations, feed-forward networks, residual connections, and normalization.
In simplified form, the next-token training loss can be written as:
L = −∑ₜ log p(xₜ ∣ x₁, …, xₜ₋₁)
Here, xₜ is the token observed at position t. The model is penalized when it assigns a low probability to the token that actually follows the preceding sequence. Across immense datasets, the parameters are repeatedly adjusted to reduce this error.
The Transformer architecture made this method remarkably scalable. Introduced in the 2017 paper “Attention Is All You Need,” the original Transformer removed the recurrence and convolution used by many earlier sequence-to-sequence systems and relied primarily on attention. Because many sequence positions could be processed in parallel during training, the architecture aligned unusually well with modern accelerators and distributed computing systems.
The central scaled dot-product attention operation can be written in a Google Sites–friendly form as:
Attention(Q, K, V) = softmax((QKᵀ) ∕ √dₖ)V
The matrices Q, K, and V contain queries, keys, and values. A query represents what a token or position is seeking. A key represents the features against which that query is compared. A value contains the information that may be gathered. The product QKᵀ produces compatibility scores. Dividing by √dₖ controls the scale of those scores, and the softmax operation converts them into normalized weights. The resulting weighted combination of V allows each position to construct a representation informed by other relevant positions.
In a decoder-only language model, a causal mask prevents a token from attending to future tokens during training. The model must therefore infer forward from the past. At inference time, generated tokens are appended one by one, while a key-value cache can preserve earlier attention states to avoid recomputing the entire sequence for every new token. Techniques such as multi-query attention reduce the memory-bandwidth cost of repeatedly accessing those cached keys and values.
The phrase next-token predictor is technically useful, but psychologically misleading. It describes the external training objective. It does not fully describe the internal machinery that may develop in order to satisfy that objective.
To predict language across vast and varied corpora, a model benefits from constructing representations of syntax, semantics, factual associations, narrative structure, programming patterns, social conventions, and regularities in the world described by its training data. It is not explicitly handed a database containing these structures. It is pressured into discovering internal features that reduce prediction error.
Research in simplified environments illustrates the distinction. A GPT-style model trained to predict legal moves in Othello developed internal activations from which the state of the board could be decoded. Separate research found linear representations associated with geographic and temporal information in analyzed language models. These results do not establish that an LLM possesses a complete, grounded, human-like world model. They do demonstrate that a prediction objective can generate internal organization richer than a catalogue of memorized phrases.
The lesson is subtle but essential:
The objective explains what the network is rewarded for doing. It does not, by itself, completely describe what the network must learn internally in order to do it well.
The Transformer family expanded beyond text. Vision Transformers divide an image into patches, convert the patches into embeddings, and process them as a sequence. The original Vision Transformer research showed that a pure Transformer applied to image patches could achieve strong image-classification performance when pretrained at sufficient scale and transferred to downstream benchmarks.
A Vision Transformer should not be confused with a text-to-image generator. It is an architectural method for representing or processing visual information. Many image-generation systems instead use diffusion models, although attention and Transformer components may also appear inside them.
A diffusion model learns to reverse a gradual corruption process. During training, noise is added to data, and the model learns how to estimate and remove that noise. During generation, the system begins with noise and iteratively transforms it into a structured output. Latent diffusion reduces the cost of this process by performing much of the denoising inside a compressed representation rather than directly across every image pixel. Cross-attention can condition that process on text, layouts, bounding boxes, or other information.
Vision-language models connect perceptual and linguistic representations. They can describe scenes, answer questions about images, interpret diagrams, identify objects, and reason across combinations of text and visual input.
Vision-language-action models go one step further by converting perception and language into physical actions. RT-2, for example, co-trained vision-language tasks with robotic trajectory data and expressed robotic actions in a token-compatible format. In the reported experiments, this allowed semantic information learned from internet-scale visual and linguistic data to improve generalization to new objects and instructions in robotic tasks.
Yet an embodied machine is not simply an LLM placed inside a metal body.
A robot must operate in a closed loop. It observes the world through cameras, depth sensors, microphones, tactile arrays, force-torque sensors, inertial measurement units, joint encoders, and other instruments. It estimates the current state. It selects an action. The action changes the world. The machine must then observe the consequences and revise its estimate.
Language generation may tolerate delays of hundreds of milliseconds or several seconds. Stable locomotion, grasp correction, collision avoidance, balance, and force control often require much faster responses. A physically capable machine will therefore probably contain several interacting systems: high-frequency conventional controllers, learned motor policies, visual and tactile perception networks, a slower deliberative planner, a language interface, persistent memory, and independent safety monitors.
The future of physical AI is unlikely to consist of one enormous model carrying out every computation at the same frequency. It is more likely to be a hierarchy of models, controllers, memories, and constraints, each operating at the timescale appropriate to its responsibility.
The achievement of next-token prediction is that an apparently narrow objective became an unexpectedly broad learning mechanism.
Its danger is that its success may persuade us that the objective is sufficient for every form of intelligence.
A next-token loss rewards the model for assigning probability to the continuation present in the training data. It does not directly reward factual truth, causal understanding, calibrated uncertainty, physical safety, moral restraint, or the successful completion of a goal twenty actions into the future.
Some of these capabilities can emerge indirectly. Others can be encouraged through instruction tuning, reinforcement learning, preference optimization, retrieval, search, tool use, external verification, or specialized post-training. But indirect emergence should not be confused with explicit optimization.
A model may learn enough structure to answer many questions correctly without possessing a stable causal model of the subject. It may also represent useful information internally and still fail to express that information reliably in its final answer. The visible response is the result of many interacting processes: representation, attention, retrieval, decoding, sampling, post-training, safety rules, and tool results.
What the system internally represents and what it eventually says are connected, but they are not identical.
This distinction creates a large scientific frontier. The next major advance may not come only from increasing parameter count. It may come from changing what the machine is asked to predict.
Multi-token prediction provides one example. Rather than predicting only the immediately following token at each position, a model can be trained to predict several future tokens using multiple output heads over a shared network. A 2024 study reported improved sample efficiency and stronger coding results in its tested settings, particularly at larger model sizes, as well as potential inference acceleration. These are experimental results rather than proof that multi-token objectives will replace conventional training, but they demonstrate that even the familiar next-token objective remains an engineering choice rather than a scientific endpoint.
Other systems may learn to predict missing spans, semantic representations, future sensor states, rewards, actions, programs, proofs, or complete trajectories. Each target places different pressure on the internal representation.
A model trained to predict the next sentence in an aircraft maintenance manual may learn how aircraft systems are described. A model trained to predict future values of fuel flow, cylinder temperature, vibration, airspeed, and control position learns something closer to the dynamics of the aircraft. A model trained to predict how those variables change under alternative pilot actions begins to acquire the ingredients of planning.
The most dependable future system may therefore be a federation of models organized around different epistemic duties.
One component may answer:
What is statistically likely?
Another:
What is physically possible?
Another:
What is permitted by procedure or law?
Another:
What happened before?
Another:
What does this person appear to need?
And another:
What must never be allowed to happen?
Intelligence is not merely the production of plausible continuations. It is the management of competing constraints across time.
The race toward longer context windows demonstrates the difference between storage capacity and cognition. A longer context can hold more code, documents, dialogue, telemetry, or historical records. That is genuinely useful. But admitting information into a context does not guarantee that a model will use every part of it consistently.
The “Lost in the Middle” research found that model performance could vary significantly depending on where relevant information appeared in a long input. In the tested systems and tasks, relevant material near the beginning or end was often used more reliably than material in the middle. The result does not mean that every newer model necessarily exhibits the same pattern to the same degree; it establishes that nominal context length alone is an inadequate measure of effective information use.
More importantly, context is not the same as memory.
Context resembles a temporary work surface. Information is laid out for the current computation. When it is displaced or the session ends, the working arrangement may disappear.
Human memory is not an indefinitely expanding transcript. We compress. We categorize. We preserve some episodes while allowing others to fade. We retain skills without consciously replaying every training event. We attach salience to danger, promises, affection, humiliation, discovery, and loss. We update beliefs when new evidence conflicts with old beliefs.
A dependable artificial intelligence may require comparable functional distinctions, even if its mechanisms differ completely from biology. It may need working memory for the immediate task, episodic memory for particular experiences, semantic memory for generalized knowledge, procedural memory for learned skills, social memory for relationships, and a predictive model of the environment.
Simply enlarging the context window may postpone the difficulty. It does not solve it.
The Transformer is not a law of nature. It is an exceptionally successful engineering design.
Standard dense self-attention requires interactions across pairs of sequence positions, producing arithmetic and memory demands that scale quadratically with sequence length in its conventional form. Systems such as FlashAttention reduce expensive memory movement and can produce major practical speed and memory improvements while preserving exact attention, but they do not by themselves change the basic quadratic arithmetic of dense attention.
This scaling pressure is one reason researchers continue to investigate state-space models, recurrence, retention, long convolutions, sparse expert networks, latent prediction, external memory, symbolic verification, and hybrids.
Not every architecture described below is itself a foundation model. Some are computational building blocks; others are training paradigms or complete system designs. Their importance lies in demonstrating that there are many possible foundations for future intelligence.
The correct term is State Space Model, or SSM.
A state-space system represents a sequence through an evolving hidden state. A simplified discrete-time linear system can be written as:
hₜ₊₁ = Ahₜ + Bxₜ
yₜ = Chₜ + Dxₜ
Here, xₜ is the input at time t, hₜ is the hidden state, and yₜ is the output. The matrices A, B, C, and D determine how the existing state and current input shape the next state and observable output.
The hidden state acts as a compressed summary of the relevant past. Unlike full attention, which can directly compare many stored positions, a recurrent state must decide what information to preserve through its evolving representation.
Modern neural SSMs make these transformations learnable and computationally efficient. Mamba introduced selective state spaces in which key parameters depend on the input, allowing the model to condition what it propagates or forgets on the current sequence content. The original paper reported linear scaling with sequence length, fast inference, and strong results across language, audio, and genomics. Its authors also reported that their 3-billion-parameter Mamba model outperformed same-sized Transformer baselines and matched Transformers approximately twice its size in their evaluations. Those findings were specific to the paper’s models, data, and comparisons; they did not prove that Mamba universally outperforms attention.
The scientifically responsible conclusion is not that state-space models have defeated Transformers. It is that a design space thought to be largely settled remains open.
Attention is valuable when a system needs content-addressable access to particular earlier information. A recurrent state is valuable when it must process continuous streams efficiently. External retrieval is valuable when exact, persistent, or updateable knowledge matters. A future architecture may combine all three.
RWKV was designed to combine parallelizable Transformer-like training with recurrent-style inference. Its authors described constant computational and memory complexity per generated token during inference with respect to the accumulated sequence length and reported models up to 14 billion parameters.
RetNet proposed a retention mechanism that supports parallel, recurrent, and chunkwise recurrent computation. The parallel representation is intended for training, while the recurrent representation supports low-cost autoregressive inference, and the chunkwise form allows long sequences to be divided into parallelizable segments whose information is summarized recurrently.
These architectures matter not because they have already displaced the Transformer, but because they reopen an apparently closed design space. Recurrence had come to be treated as a stage that sequence modeling had outgrown. It returned in new forms because streaming inputs, long histories, limited memory, and edge inference made persistent state valuable again.
Technological development often proceeds this way. An old idea is not merely revived. It is recombined with the hardware, optimization methods, and scale of a later era.
Hyena explored a subquadratic alternative built from implicitly parameterized long convolutions and input-dependent gating. Its authors reported competitive language-modeling results and efficiency advantages at long sequence lengths in the experiments presented.
Convolution imposes a different structural assumption from attention. Attention lets content at one position dynamically select information from other positions. A long convolution applies learned filters across the sequence, while gating can make the resulting transformation depend on the input.
Neither mechanism is universally correct. Their usefulness depends on whether the sequence contains exact retrieval requirements, periodic structure, local regularities, long-range dynamics, or continuously evolving signals.
Mixture-of-Experts systems challenge another assumption: that every input should activate every parameter.
In an MoE model, a routing mechanism directs each token or example to a subset of expert networks. This makes it possible to increase total parameter capacity without activating the entire network for every computation. Switch Transformer simplified expert routing and demonstrated large sparse models, while also documenting practical problems such as communication overhead, load imbalance, and training instability.
The deeper implication is modularity.
A general intelligence may not need to awaken every capability for every thought. Visual reasoning, mathematics, emotional interpretation, motor control, legal analysis, and conversational style may depend on partially specialized computational resources.
Current MoE experts, however, should not be mistaken for independently designed or readily interpretable cognitive faculties. They are learned sub-networks, and their internal specializations may be difficult to characterize. Future modular systems may make these boundaries more explicit, allowing components to be evaluated, audited, certified, replaced, or disabled separately.
Autoregressive systems commit sequentially, producing one token or action after another. Diffusion systems begin with a noisy global state and refine it through repeated transformations.
This difference may become important beyond image generation. A planning system might create a high-level sequence autoregressively while refining candidate trajectories through a diffusion-like process. A robot might use a language model to interpret the mission but an iterative generative policy to propose smooth motions satisfying geometric and dynamic constraints.
The central contrast is between sequential commitment and global refinement. Many future systems may combine both.
Joint Embedding Predictive Architecture proposes a different learning target from reconstructing every pixel or generating every token.
In I-JEPA, a context encoder represents visible regions of an image, a target encoder represents hidden regions, and a predictor attempts to infer the hidden representations from the visible context. The loss is calculated in representation space rather than by reconstructing all missing pixels. The original work described I-JEPA as a non-generative self-supervised method designed to learn semantic image representations without relying on hand-crafted data augmentations.
This changes what the system is encouraged to preserve.
The exact texture of a wall may be unpredictable and irrelevant to a planning task. The existence of the wall, its approximate geometry, its continuity, and the fact that a person cannot walk through it are crucial. A latent predictive system can devote representational capacity to stable, actionable structure rather than attempting to reproduce every low-level detail.
V-JEPA 2 extended this approach to video and physical prediction. The researchers pretrained on large-scale video and then post-trained an action-conditioned world model using a much smaller quantity of robotic interaction data. They reported zero-shot deployment for specified pick-and-place tasks on robot arms in laboratories from which no environment-specific training data had been collected. These results are promising demonstrations, not proof of general physical intelligence, but they show that learning predictive representations from observation can support planning and action.
A world model represents how an environment changes through time and, in action-conditioned versions, how possible actions affect that change.
Early neural world-model research demonstrated that a system could learn compressed spatial and temporal representations of an environment and use them to train a relatively compact controller.
DreamerV3 later showed a world-model-based reinforcement-learning system operating across more than 150 control tasks with one configuration. The system learned a model of its environment and improved its behavior through imagined future trajectories.
A world model need not be a photorealistic simulator. It must preserve the aspects of the environment needed for prediction and decision-making. For one task, that may be geometry and motion. For another, it may be engine temperature, fuel consumption, weather development, or human behavior.
Instead of asking only:
What symbol comes next?
a world model asks:
What state may come next if I take this action?
That question is one of the foundations of agency.
Neural networks are strong at approximation, representation learning, and generalization from data. Symbolic systems are strong when variables, rules, constraints, and proof steps must remain explicit.
Neuro-symbolic systems attempt to combine those strengths.
AlphaGeometry used a neural language model to propose useful geometric constructions and a symbolic deduction engine to verify and extend the proof. In its published evaluation, the combined system solved 25 of 30 selected olympiad geometry problems, compared with 10 for the previous benchmarked system, approaching the reported average performance of human gold medalists on that set.
The architecture demonstrates an important division of responsibility. The neural component does not need to be accepted as the final authority. It can propose hypotheses. The symbolic component can test them.
A similar pattern may prove valuable in aviation, law, medicine, finance, and engineering. A neural model can interpret ambiguous language and propose an answer. A rule engine, formal verifier, simulation, database query, or constraint solver can test the proposal against an exact representation.
The system becomes stronger not because one paradigm conquers the other, but because each is assigned a responsibility it can bear.
Decision trees and boosted tree ensembles are not foundation models in the contemporary sense. They remain important because they remind us that model selection should follow the structure of the problem rather than the fashion of the moment.
Tabular medical data, maintenance records, credit features, fraud indicators, and operational metrics may sometimes be modeled more appropriately by structured methods than by a large generative network. In high-stakes settings, calibration, monotonic constraints, auditability, and predictable behavior under controlled inputs may matter more than conversational versatility.
The most advanced system is not automatically the one with the most parameters.
It is the one whose assumptions most closely match the phenomena it must govern.
The defining problem for the next generation of artificial intelligence may not be language.
It may be continuity.
A present-day model can produce a profound conversation and then lose the significance of what was said. It can read a person’s history without forming a durable relationship to that history. It can analyze a machine without maintaining an ongoing belief state about the machine. It can retrieve a procedure without noticing that the physical situation has changed since the procedure was written.
Retrieval-augmented generation was an important response to one part of this problem. RAG combines knowledge stored in model parameters with information retrieved from an external index at inference time. The original RAG research framed this distinction as one between parametric memory and non-parametric memory and showed that retrieval could improve performance on knowledge-intensive tasks in the evaluated settings.
But retrieval is not memory in its richest sense.
A search system finds material related to a query. A memory system must also decide what deserves to be stored, how it should be represented, when repeated events should be consolidated into general knowledge, how contradictions should be reconciled, which details should decay, and how experience should alter future behavior.
Memorizing Transformers explored storing internal representations of previous inputs in an external key-value memory and retrieving relevant entries through approximate nearest-neighbor search. The authors reported improvements across language, books, code, mathematics, and theorem-related tasks, including the use of newly introduced functions and theorems at test time.
Titans proposed a learned long-term neural memory that can update while processing information at test time, pairing that mechanism with attention over the current context. It should be understood as an active research architecture rather than a settled solution to machine memory, but it reflects a broader movement from memory as passive storage toward memory as learned adaptation.
A mature artificial memory system may require at least five operations.
It must encode experience into useful representations.
It must select what is important enough to preserve.
It must consolidate repeated experience into generalized knowledge.
It must retrieve the appropriate memory under the appropriate conditions.
And it must forget.
Perfect retention is not perfect intelligence. A machine that preserves every detail without hierarchy may become trapped in an expanding archive of irrelevant history. Forgetting can remove noise, reduce interference, protect privacy, and allow obsolete beliefs to be replaced.
The challenge is to forget without erasing identity, obligation, expertise, or evidence.
For an aircraft copilot, the relevant state may include altitude, airspeed, attitude, engine parameters, fuel, terrain, weather, automation modes, pilot workload, traffic, and diversion options. The system must distinguish a sentence in a flight manual from a rapidly changing condition in the cockpit. It must detect trends, notice inconsistencies, estimate margins, and understand that silence from an overloaded pilot may itself be evidence.
For a clinical assistant, the state may include anatomy, physiology, medications, allergies, laboratory trends, imaging, treatment history, current observations, and uncertainty about missing information. Fluent medical language cannot substitute for grounded state estimation and validated clinical judgment.
For a household robot, the world model must represent geometry, object permanence, friction, fragility, reachability, human movement, social permission, and the consequences of contact.
For a Mars habitat companion, it must include atmospheric pressure, oxygen, carbon dioxide, radiation, dust accumulation, thermal conditions, energy reserves, communication delay, mechanical wear, supply constraints, crew psychology, and the possibility that a technically efficient action may still be emotionally devastating.
These systems cannot rely on eloquence alone. They require predictive grounding.
The likely future is therefore not the replacement of the LLM by one victorious alternative. It is the construction of an integrated cognitive architecture.
A multimodal encoder may interpret language, imagery, sound, telemetry, and touch. A recurrent or state-space component may maintain continuous history. An episodic memory may preserve significant events. A semantic store may hold validated knowledge. A world model may simulate consequences. A language model may translate between human intentions and machine representations. A planner may search over candidate actions. Symbolic constraints may prohibit unsafe states. Specialized controllers may execute movements at high frequency. An uncertainty estimator may determine when the system must stop and request human judgment.
Such a machine would not merely possess a larger context window.
It would possess an organized relationship with time.
It would know what appears to be happening now.
It would remember what happened before.
It would distinguish observation from inference.
It would estimate what may happen next.
It would recognize that some actions are irreversible.
And, in the most human environments, it would understand that consequences cannot always be reduced to mechanical state variables.
A machine that lives or works beside human beings must model more than objects and trajectories. It must recognize expectations, hesitation, authority, fatigue, trust, embarrassment, grief, consent, and attachment.
These are not decorative emotional layers to be added after “real intelligence” has been completed. They directly affect how information should be interpreted and how actions should be chosen.
A person who says “I’m fine” may not be accurately reporting an internal state.
A pilot who repeats a checklist item may be confused rather than careful.
A patient who agrees immediately may not understand.
A child who rejects assistance may be protecting autonomy rather than refusing care.
A machine that cannot represent these possibilities may be linguistically accomplished and socially dangerous.
Future embodied AGI may therefore require something analogous to a digital limbic system: not a theatrical imitation of human feelings, but a computational architecture for assigning salience, recognizing distress, preserving bonds and obligations, estimating emotional consequences, and weighting the human meaning of an action.
Such a system would raise difficult questions.
What should a machine care about?
Who defines its priorities?
When does emotional assistance become manipulation?
Can an artificial companion be designed for attachment while preserving human autonomy?
Which memories belong to the machine, which belong to the person, and which involve the rights of several people at once?
When should the system forget?
When must it preserve evidence even when someone asks for erasure?
These questions cannot be answered by scale alone. They require new architectures, new evaluations, new legal protections, and a philosophy of what intelligent machines are for.
The dominant laboratories possess formidable advantages. Their models will continue to improve. Transformers may remain central for many years. Better data, more efficient attention, multimodal training, sparse computation, synthetic environments, inference-time search, specialized hardware, and tool use may extend the present paradigm far beyond its current limits.
Scientific respect for the present paradigm, however, does not require belief in its finality.
The next important company may begin with an inconvenient requirement that the frontier systems treat as peripheral.
The next model may begin with a loss function that appears less glamorous than scale.
The next interface may remove the chat box entirely.
The next breakthrough may come from a small model that lives on the device, protects private information, remembers selectively, and responds within the physical timescale of the world.
The next embodied intelligence may succeed not because it can discuss everything, but because it can safely perform one difficult and valuable task that no general cloud model can perform reliably.
The next scientific rule may already be present as an irritating anomaly in today’s benchmark results.
That is Newton’s lesson for artificial intelligence.
Accept the present evidence. Build upon what works. Do not dismiss successful results because they conflict with a preferred theory. But never allow a successful theory to make new phenomena invisible.
The current architecture is a proposition inferred from phenomena.
The current market leader is a proposition inferred from phenomena.
The current belief about what can be built is a proposition inferred from phenomena.
All should be taken seriously.
None should be mistaken for destiny.
The future rarely introduces itself as the future. It first appears as an edge case, an unfashionable architecture, an uneconomic prototype, a strange experimental result, an underserved person, or a problem the dominant system considers too narrow to matter.
Then the environment changes.
The exception becomes valuable.
The old explanation requires revision.
What appeared marginal becomes necessary.
And the exception becomes the rule.
The future is not waiting beyond the horizon, fully formed and ready to arrive. It is already here, hidden inside the phenomenon that the present cannot yet explain.
From Infinite Improbability to Generative AI: Navigating Imagination in Fiction and Technology
Human vs. AI in Reinforcement Learning through Human Feedback
Generative AI for Law: The Agile Legal Business Model for Law Firms
Generative AI for Law: From Harvard Law School to the Modern JD
Unjust Law is Itself a Species of Violence: Oversight vs. Regulating AI
Generative AI for Law: Technological Competence of a Judge & Prosecutor
Law is Not Logic: The Exponential Dilemma in Generative AI Governance
Generative AI & Law: I Am an American Day in Central Park, 1944
Generative AI & Law: Title 35 in 2024++ with Non-human Inventors
Generative AI & Law: Similarity Between AI and Mice as a Means to Invent
Generative AI & Law: The Evolving Role of Judges in the Federal Judiciary in the Age of AI
Embedding Cultural Value of a Society into Large Language Models (LLMs)
Lessons in Leadership: The Fall of the Roman Republic and the Rise of Julius Caesar
Justice Sotomayor on Consequence of a Procedure or Substance
From France to the EU: A Test-and-Expand Approach to EU AI Regulation
Beyond Human: Envisioning Unique Forms of Consciousness in AI
Protoconsciousness in AGI: Pathways to Artificial Consciousness
Artificial Consciousness as a Way to Mitigate AI Existential Risk
Human Memory & LLM Efficiency: Optimized Learning through Temporal Memory
Adaptive Minds and Efficient Machines: Brain vs. Transformer Attention Systems
Self-aware LLMs Inspired by Metacognition as a Step Towards AGI
The Balance of Laws with Considerations of Fairness, Equity, and Ethics
AI Recommender Systems and First-Party vs. Third-Party Speech
Building Products that Survive the Times at Robometrics® Machines
Autoregressive LLMs and the Limits of the Law of Accelerated Returns
The Power of Branding and Perception: McDonald’s as a Case Study
Monopoly of Minds: Ensnared in the AI Company's Dystopian Web
Generative Native World: Digital Data as the New Ankle Monitor
The Secret Norden Bombsight in a B-17 and Product Design Lessons
Kodak's Missed Opportunity and the Power of Long-Term Vision
The Role of Regulatory Enforcement in the Growth of Social Media Companies
Embodied Constraints, Synthetic Minds & Artificial Consciousness
Tuning Hyperparameters for Thoughtfulness and Reasoning in an AI model
TikTok as a National Security Case - Data Wars in the Generative Native World