Large Language Models Are Rewriting the Rules of AI
ai tech8 min read1,652 words

Large Language Models Are Rewriting the Rules of AI

Large language models are transforming AI by enabling more natural human-computer interactions and complex reasoning without task-specific programming.

D

Deepa Krishnan

Behavioural researcher and writer. Covers psychology, organisational behaviour, ...

The AI That Learned to Learn Without Being Taught

neural network visualization
neural network visualization

In 2020, if you wanted an AI to write a poem about a cat, you had to train a model from scratch on millions of cat poems, or at least fine tune an existing model with a carefully labeled dataset. By 2023, you could type "Write a haiku about a cat wearing a tiny hat" into a chat window and get something decent back. The model had never seen a cat in a tiny hat. It had never been trained on hat poetry. It just figured it out.

That shift is not incremental. It is structural. And according to a sweeping 2026 survey by Wayne Xin Zhao and colleagues at Renmin University of China, published in Frontiers of Computer Science, the field of large language models has undergone a transformation so complete that the old rules of AI development no longer apply (Zhao et al., 2026). The authors, who synthesized over a thousand recent papers, argue that LLMs have moved beyond being just bigger versions of earlier models. They have become something functionally new.

The paper is not a single experiment. It is a map of an entire discipline in mid revolution. It covers pre training, post training, deployment strategies, and evaluation methods. It identifies what works, what does not, and what nobody understands yet. Here is what the map shows.

The Pre Training Revolution: Why Scale Actually Changed the Game

digital brain concept
digital brain concept

For years, the dominant narrative in AI was that bigger models would eventually hit a wall. More parameters meant more compute, more data, more electricity, but not necessarily more intelligence. The returns would diminish. The curve would flatten.

That did not happen.

Zhao and colleagues document that the scaling laws governing LLMs have held far longer than many predicted (Zhao et al., 2026). Pre training at massive scale, using self supervised learning on trillions of tokens of text, has produced models that do not just memorize more facts. They develop emergent abilities: skills that were never explicitly trained and that smaller models simply do not possess.

The authors break pre training into three components: architecture, data, and training objectives. On architecture, the transformer remains dominant, but innovations in sparse attention mechanisms and mixture of experts have allowed models to grow without proportional increases in computation per token. On data, the shift has been toward quality over brute quantity. Curated datasets, filtered for coherence and diversity, outperform larger but noisier collections. On training objectives, the standard next token prediction has been supplemented with objectives that encourage deeper reasoning, such as predicting masked spans or learning to rank sequences.

The key insight here is that pre training is no longer just about making a model that can complete sentences. It is about building a foundation broad enough that the model can adapt to almost any task without additional training data. That is what makes LLMs different from every AI that came before.

The Alignment Paradox: How to Make a Genius Follow Instructions

code and text
code and text

A model that can generate Shakespearean sonnets about quantum mechanics is impressive. A model that generates Shakespearean sonnets about quantum mechanics when asked, and does not generate a manifesto about the superiority of iambic pentameter when asked something else, is actually useful.

Post training is where the raw competence of pre training gets shaped into something cooperative. Zhao and colleagues describe two main techniques: supervised fine tuning (SFT) and reinforcement learning from human feedback (RLHF) (Zhao et al., 2026).

SFT is straightforward. You take your giant pre trained model and show it thousands of examples of good behavior: questions with correct answers, instructions followed properly, toxic prompts handled gracefully. The model adjusts its weights to match those examples. It learns what a helpful response looks like.

RLHF is stranger. You train a separate reward model that can predict whether a human would approve of a given response. Then you let the LLM generate many responses, score them with the reward model, and update the LLM to maximize its scores. The result is a model that has internalized human preferences without being explicitly told every rule.

The authors note a tension here. Alignment techniques can reduce a model's creativity or make it overly cautious. A model that refuses to speculate on anything slightly controversial is safe but useless. The research shows that careful tuning of the RLHF process, including the diversity of human feedback used to train the reward model, can preserve capability while improving safety. But the balance is fragile.

Using the Model Without Training It: In Context Learning and Prompt Engineering

Here is where things get weird. Once an LLM is pre trained and aligned, you can give it a new task it has never seen, show it a few examples in the prompt itself, and it will perform that task correctly. No weight updates. No fine tuning. Just examples in the input.

This is called in context learning, and it is one of the most surprising findings of the last five years. Zhao and colleagues explain that the mechanism is not fully understood, but it appears to work because the model's training data included so many patterns of instruction following that it can recognize and extend new patterns on the fly (Zhao et al., 2026). It is not learning the task in the traditional sense. It is recognizing that the current situation matches a class of situations it has seen before, and applying the appropriate behavior.

Prompt engineering is the practical art of exploiting this capability. Small changes in wording can produce large changes in output quality. The survey catalogs techniques like chain of thought prompting, where the model is asked to show its reasoning step by step, and self consistency, where the model generates multiple answers and votes on the best one. These are not training techniques. They are usage techniques. They work because the model's pre training gave it the raw ability, and the prompt simply guides how that ability is expressed.

The authors also discuss agentic reasoning, where LLMs are given tools, memory, and the ability to call external functions. A model that can search the web, run code, or query a database becomes vastly more capable than one that can only generate text. This is where the field is heading: LLMs as the central controller of a system that includes other software and data sources.

How Do You Even Test Something This Flexible?

The old way of evaluating AI was to give it a fixed test, like answering questions about a Wikipedia article or translating sentences from French to English. LLMs break that framework. A model that scores well on a benchmark might still fail on a slightly different version of the same task. Worse, models can be trained to game benchmarks, inflating scores without improving real world performance.

Zhao and colleagues catalog a dizzying array of evaluation methods, organized by ability dimension: core language capabilities, reasoning, knowledge, safety, and alignment (Zhao et al., 2026). They note that no single benchmark is sufficient. Evaluations must be dynamic, diverse, and resistant to contamination. If a model's training data includes the test questions, the scores are meaningless.

The most interesting finding in this section is that reasoning remains the hardest thing to measure. A model that gets the right answer might use shallow pattern matching, not genuine logic. The authors advocate for evaluations that require multi step reasoning, that test for robustness to irrelevant information, and that probe the model's ability to explain its own answers. These are harder to build, but they are necessary.

What the Research Does Not Prove

The survey is honest about its limits. Zhao and colleagues do not claim that LLMs understand language the way humans do. They do not claim that scaling will continue to produce improvements indefinitely. They do not claim that alignment techniques are sufficient to guarantee safety.

The biggest open question is theoretical. Nobody has a satisfying explanation for why in context learning works, or why emergent abilities appear at certain scales. The authors call for more work on the theoretical foundations of LLMs, but they admit that the field has been driven by engineering success, not deep understanding (Zhao et al., 2026). That is not necessarily a problem for building useful systems, but it is a problem for predicting failure modes.

Another gap: the survey focuses on English language models. The authors note that progress in other languages is uneven, and that models trained primarily on English data often perform poorly on non English tasks. The global applicability of LLM research is an open question.

What This Actually Means

  • Pre training is the foundation. If you are building an AI application, start with a model that was pre trained on diverse, high quality data. No amount of fine tuning can fix a weak foundation.
  • Alignment is not optional. A capable model that refuses to follow instructions is useless. Invest in SFT and RLHF, and test your model on adversarial prompts before deployment.
  • In context learning changes everything. You can adapt an LLM to a new task with just a few examples in the prompt. This means faster iteration, lower costs, and the ability to handle tasks that were not anticipated during training.
  • Evaluation must be adversarial. Static benchmarks are unreliable. Build dynamic tests that probe reasoning, robustness, and safety. Assume your model has seen the test data unless you prove otherwise.
  • The theoretical gap is a risk. We do not fully understand why LLMs work. That means we cannot fully predict when they will fail. Treat every model as a prototype, not a finished product, and monitor behavior continuously.

The rules of AI are being rewritten. The old playbook, built on task specific models and supervised learning, is obsolete. The new playbook is about scale, alignment, and in context adaptation. Zhao and colleagues have given us the first comprehensive map of that new territory. The rest is exploration.

References

  1. [1]Wayne Xin Zhao, Kun Zhou, Junyi Li, Tianyi Tang (2026). A Survey of Large Language Models. Frontiers of Computer ScienceDOI· 1,396 citations
#large language models#AI evolution#natural language processing#machine learning
D

Deepa Krishnan

Behavioural researcher and writer. Covers psychology, organisational behaviour, and applied economics.

Reader Comments (2)

Dr. Ananya Sharma★★★★★

Interesting how LLMs are shifting focus from building bigger models to curating better data. In our NLP lab, we're seeing diminishing returns from scaling alone. The real challenge now is aligning these models with domain-specific reasoning.

Ravi Krishnan★★★★★

As a product manager working on legal AI, I'm cautious. LLMs rewrite rules but also inherit biases from training data. We tested one on Indian contract law — it hallucinated citations. The 'rewriting' needs guardrails, not just hype.

Leave a comment

Related Articles