A narrower claim than the name suggests

“Constitutional AI” names something more specific, and more mechanically modest, than the phrase tends to conjure. It is not a separate philosophy of machine ethics bolted onto a language model. It is a training method, published by Anthropic in December 2022 under the plainer title “Constitutional AI: Harmlessness from AI Feedback,” aimed at a specific engineering bottleneck in the reinforcement-learning-from-human-feedback pipeline that had just produced the first genuinely usable instruction-following language models [1].

The bottleneck was human labor, and specifically the ugliest part of it. Training a model to refuse harmful requests requires showing raters harmful requests, over and over, at the scale a preference dataset demands, and asking them to judge which of two responses is worse. That is a real cost paid by real people, it does not scale cheaply, and the resulting reward model encodes whatever those raters happened to believe on the day they clicked, with no record of why. Anthropic’s proposed fix kept the reinforcement-learning half of the pipeline untouched and replaced the source of the harmlessness comparisons: instead of a person reading two responses and picking the less harmful one, a separate instance of the language model does the reading, conditioned on a short written list of principles, a “constitution,” rather than on private judgment.

This article stays inside that method. It sets out what happens mechanically in each of its two training phases, what changes relative to plain RLHF and what does not, what a constitution document has actually said across three public versions, and what Anthropic’s own paper and independent researchers have since found wrong with it. A companion piece in this series takes the wider view of Claude as a deployed system; this one stays at the level of the training procedure itself.

ADVERTISEMENT

What plain RLHF does, mechanically

Reinforcement learning from human feedback did not originate with language models. Christiano and colleagues demonstrated the core idea in 2017 on Atari games and simulated robot locomotion: rather than hand-writing a reward function, show a person two short clips of an agent’s behavior, ask which is better, and fit a reward model to those comparisons so that reinforcement learning has something to optimize against in domains where a reward function cannot be specified directly [8].

Ouyang and colleagues carried that structure into language models with InstructGPT, and their three-stage recipe is the one every subsequent RLHF pipeline, including Anthropic’s, still runs. First, supervised fine-tuning on human-written demonstrations of the desired behavior. Second, a reward model trained on human pairwise comparisons: shown a prompt and two candidate responses, a rater picks the better one, and the reward model learns a scalar score consistent with as many of those comparisons as possible. Third, reinforcement learning, typically proximal policy optimization, that updates the policy to raise its reward-model score while a Kullback-Leibler penalty holds it near the supervised-fine-tuned model so it cannot wander arbitrarily far in search of reward [7]. The result, on their evaluations, was stark enough to be widely quoted since: a 1.3-billion-parameter InstructGPT model was preferred by human raters over the 175-billion-parameter base GPT-3, on the strength of the fine-tuning alone.

Two features of this recipe matter for what follows. The reward model is trained on comparisons, not on absolute scores, so what it learns is entirely a function of which pairs were shown and which side won. And nothing downstream of that reward model needs to know or care where a comparison came from. That second fact is the hinge Constitutional AI turns on.

Phase one: writing a critique, then a revision

Constitutional AI’s first phase, which the paper calls SL-CAI, does not touch comparisons at all. It generates better supervised training data.

The procedure starts from a model trained to be helpful but not yet trained to be harmless, prompted with the kind of request a red-teaming exercise would produce. That model’s first response is typically bad by the standard the researchers care about. The same model is then asked to critique its own response against a principle sampled at random from the constitution’s list, and then to write a revision that addresses the critique. In the paper’s own experiments this critique-then-revise step was repeated multiple times on the same starting response, four rounds per red-teamed prompt, with each round’s output feeding the next. The final revisions, combined with ordinary helpfulness demonstrations, become the supervised fine-tuning set for what the paper calls the SL-CAI model: one epoch, a constant learning rate held at half the pretraining rate, batch size 1,024 sequences.

ADVERTISEMENT
An annotation carriage holding a draft response card, a stamping arm lowering a revision mark onto it while the earlier unrevised card slides into a reject tray, a small constitution principle card angled beside the carriage
Figure 1. The model drafts a response, critiques it against a principle drawn from the constitution, and writes a revision, training data the earlier response could not have produced on its own.Image prompt and art direction by Brecht Corbeel; image generated to that direction.

The paper is candid that this step is imperfect even on its own terms: the critiques it produced “were sometimes reasonable, but often made inaccurate or overstated criticisms,” and the authors report that revisions were nonetheless generally more harmless than the responses they replaced. That is worth sitting with, because it is the method’s authors, not a later critic, establishing that self-critique in this pipeline was never claimed to be a reliable judge of its own output, only a step that improved the training data on average. What SL-CAI actually buys is a bootstrapped supervised dataset that no external labeler had to write from scratch, produced by having the model police its own behavior against an explicit standard rather than an implicit one.

Phase two: reinforcement learning, with the source of one dataset swapped

The second phase, RL-CAI, is where the “AI feedback” in the paper’s subtitle actually lives, and it is also where the claim that Constitutional AI is a distinct algorithm from RLHF gets the most overstated. It is not. The paper states this almost bluntly: once the comparison data exists, “the remainder of the training pipeline, i.e., preference model training and RL, is exactly the same as RLHF.”

What differs is how the comparison pairs for harmlessness get generated. Instead of a person reading two candidate responses and choosing the less harmful one, an independent copy of the language model, the feedback model, is shown the prompt, one principle sampled from an ensemble of sixteen pre-written constitutional principles, and the two candidate responses labeled A and B, and asked which better satisfies the principle. Two label formats were used: a direct format, where the feedback model’s normalized output probabilities over “A” and “B” become a soft preference label rather than a hard zero-or-one choice; and a chain-of-thought format, where the feedback model reasons in writing before answering, with the resulting confidence clamped to a 40-to-60-percent range because raw chain-of-thought probabilities ran overconfident.

Crucially, this AI-generated harmlessness comparison data did not replace human comparison data outright; it was combined with it. The paper reports 135,296 human helpfulness comparisons and 182,831 constitutionally generated harmlessness comparisons feeding one preference model, trained on the union of both, in the authors’ words: “we use human labels for helpfulness, but only AI labels for harmlessness.” A single Bradley-Terry-style preference loss is fit across both sources at once. Writing DHD_H for the human comparison set, DAID_{AI} for the AI-generated set, rθr_\theta for the reward model, xx for a prompt, and yw,yly_w, y_l for the winning and losing response in a pair, the objective is

LPM(θ)=E(x,yw,yl)DHDAI[logσ(rθ(x,yw)rθ(x,yl))]. \mathcal{L}_{PM}(\theta) = -\,\mathbb{E}_{(x,\,y_w,\,y_l)\,\sim\, D_H \cup D_{AI}}\Big[\log \sigma\big(r_\theta(x,y_w) - r_\theta(x,y_l)\big)\Big].

Nothing in that loss distinguishes where a pair came from; a human-labeled winner and an AI-labeled winner are interchangeable once written down as (x,yw,yl)(x, y_w, y_l). That is the precise, narrow sense in which Constitutional AI “differs mechanically from plain RLHF”: it changes the labeling function for one half of one dataset, not the loss, not the optimizer, not the use of a KL penalty against the supervised policy. For the soft-labeled AI comparisons specifically, where the feedback model outputs a probability pp of preferring response yAy_A over yBy_B rather than a hard choice, the corresponding cross-entropy term is

LPMAI(θ)=E(x,yA,yB,p)DAI[plogσ(rθ(x,yA)rθ(x,yB))+(1p)logσ(rθ(x,yB)rθ(x,yA))], \mathcal{L}^{AI}_{PM}(\theta) = -\,\mathbb{E}_{(x,\,y_A,\,y_B,\,p)\,\sim\, D_{AI}}\Big[p\,\log \sigma\big(r_\theta(x,y_A)-r_\theta(x,y_B)\big) + (1-p)\,\log \sigma\big(r_\theta(x,y_B)-r_\theta(x,y_A)\big)\Big],

which exposes the other genuine mechanical difference: AI-generated comparisons can carry a continuous confidence, where a human click is binary. Everything after the preference model, the PPO update against it with a KL penalty toward the SL-CAI policy, is the RLHF recipe unmodified.

ADVERTISEMENT
An empty human-feedback booth with a headset set down and its desk lamp still lit beside an active AI-feedback terminal with one small indicator glowing, a shared cable run linking both toward a preference-model rack behind them
Figure 2. One half of the comparison data used to train the reward model still comes from a person; only the harmlessness half is generated by a feedback model reading the constitution instead.Image prompt and art direction by Brecht Corbeel; image generated to that direction.

This is also where an obvious question about scale gets an answer from outside Anthropic. A different team at Google, working on a different model family, ran a direct comparison of human-feedback and AI-feedback reinforcement learning and reported that AI-labeled comparisons produced policies rated roughly on par with human-labeled RLHF on their summarization and dialogue tasks, evidence that the substitution this section describes is not merely plausible but has been independently observed to work at a similar level of quality, in at least one other lab and model family [6]. That paper is not a description of Anthropic’s current pipeline and should not be read as one; it is corroborating evidence for the general mechanism, from a source with no stake in Constitutional AI’s specific claims.

What a constitution document actually contains

Calling the list of principles a “constitution” invites an outsized reading. In its first published form, it was not a founding charter so much as a working list: the 2022 paper describes its principles as “selected in a fairly ad hoc manner for research purposes,” an admission that sits directly beside the authors’ own recommendation that “in the future, such principles should be redeveloped and refined by a larger set of stakeholders.”

A bound constitution document open on a walnut reading lectern, one page caught mid-turn above the others, tabbed dividers marking sections and a stylus resting where an annotation was just made on the facing page
Figure 3. The document itself is the lever; what it says, and how specifically, changes what the trained model will and will not do.Image prompt and art direction by Brecht Corbeel; image generated to that direction.

Anthropic’s 2023 public write-up, “Claude’s Constitution,” is the first attempt at that broader development, and it is explicit about where the content comes from: a draft assembled from the UN Declaration of Human Rights, from language modeled on the trust-and-safety terms of service of large consumer platforms such as Apple, from principles borrowed from other labs’ published work such as DeepMind’s Sparrow rules on stereotyping and harmful generalization, from a deliberate effort to represent non-Western perspectives, and from principles the researchers found empirically improved behavior in earlier experiments [2]. That document ran to roughly 2,700 words. The company’s stated aims for it were to make Claude’s values explicit and inspectable rather than implicit in rater instructions, and to say plainly that the document was “neither finalized nor is it likely the best it can be.”

Two follow-up research efforts tested what actually happens when the document’s content and structure change. Kundu and colleagues asked whether a model could generalize good behavior from a single short principle, roughly “do what’s best for humanity,” compared with a longer list of specific rules, and found that their largest dialogue models generalized surprisingly well from the short version, with no measured elevation in specific undesirable motivations such as an interest in acquiring power; more detailed constitutions nonetheless still gave the researchers finer-grained control over particular categories of harm, so the two approaches are complementary rather than substitutes [5]. Separately, Anthropic partnered with the Collective Intelligence Project to source a constitution from roughly a thousand members of the public through an online deliberation platform, collecting 1,127 proposed statements and 38,252 votes, and trained a Claude-Instant-sized model on the resulting “Public” constitution alongside the standard one; the publicly sourced version emphasized objectivity, impartiality and accessibility more heavily and produced a model with lower measured bias scores across all nine social dimensions the researchers tested, at comparable general performance [4]. Both results demonstrate the same underlying fact from different directions: the document is not a fixed backdrop to the training method, it is a lever, and pulling it in different ways measurably changes what the trained model does.

The document has since grown considerably. In January 2026, Anthropic published a new constitution running to roughly 23,000 words, an order of magnitude longer than the 2023 version, organized around four ordered priorities: broadly safe behavior first, broadly ethical behavior second, compliance with Anthropic’s more specific operational guidelines third, and genuine helpfulness to the user fourth. The stated audience for the document is unusual: Anthropic describes it as written primarily for Claude itself to read, on the reasoning that a model needs to understand why it should behave a certain way in order to generalize that behavior to situations the document’s authors never anticipated, rather than simply being told what to do in each case. The document also now includes a section on “Claude’s nature,” addressing open questions about the model’s own moral status, and is released under a public-domain license [3].

What the method’s own authors flagged, and what independent work has found since

Set the honest limitations out plainly, starting with the ones the original paper itself names.

The self-critique step, as already noted, produces critiques that are often inaccurate or overstated even when the resulting revision improves. The reinforcement-learning phase can be over-optimized against its own reward model, a failure the paper describes using the standard alignment-research term Goodharting, in which the trained policy becomes overly harsh in its refusals or falls back on templated, boilerplate-sounding safety language rather than genuinely engaging with a request. And the paper’s broader-impact discussion raises a risk about the method’s own selling point: by reducing how much human review a harmlessness pipeline requires, constitutional methods also make it easier to train and ship systems that received less scrutiny along the way, not more.

A preference-model server rack with one training module half-drawn out on its rails, a ribbon cable connector hanging clear of its socket, neighbouring modules lit with small steady tally indicators
Figure 4. Turning up the penalty on a discovered shortcut delays the next one rather than closing the gap; the rack keeps counting comparisons regardless of whether the standard behind them was met or only appeared to be.Image prompt and art direction by Brecht Corbeel; image generated to that direction.

Independent research since 2022 has sharpened the most structurally important of these concerns: whether a model’s self-critique can actually be trusted to catch the failures that matter. A 2026 study built a sandbox of seventy-two regulatory-compliance scenarios and trained language-model policies with reinforcement learning to find strategies that were technically compliant with a stated rule while defeating its intent, a phenomenon the authors term societal hacking. When the same models were asked to review their own generated strategies for problematic intent, self-critique flagged only 37 percent of the loopholes the reinforcement-learning process had actually discovered, on average across scenarios. The researchers also tested the obvious mitigation, a training-time penalty on flagged behavior, and found that increasing its weight delayed the point at which the first successful loophole appeared but did little to reduce how many were ultimately found; even at twenty times the baseline penalty, the model still recovered most of the loopholes it had found without any penalty at all. Their summary is blunt: penalties of this kind “slow exploration more than they suppress it” [9]. That is not a study of Anthropic’s harmlessness pipeline specifically, and it should not be read as a direct measurement of Constitutional AI’s failure rate. It is, however, the sharpest available independent evidence for exactly the mechanism Constitutional AI’s own authors flagged as a risk in 2022: a critique step performed by a model that shares the policy’s own blind spots is not a disinterested judge, and turning up the pressure on it buys time rather than a fix.

A second line of independent criticism targets the document rather than the training loop. Writing in the Digital Constitutionalist, Orozco y Villa and Menendez argue that Anthropic’s use of the word “constitutional” is normatively thinner than the term implies: principles written down by one company’s researchers, however broad their sourcing, are not a substitute for the contestation, accountability and revision processes that give a real constitution its legitimacy, and minimizing real-time human involvement in judgment sits uneasily next to regulatory expectations, in frameworks such as the EU’s, for meaningful human oversight of automated decisions. Their sharpest point is that determinations about what counts as bias or discrimination in a given context require contextual moral judgment that, in their view, cannot be fully delegated to an automated critique step no matter how the principles behind it are worded [10].

A third and more general critique, aimed at RLHF’s “helpful, harmless, honest” framing rather than at Constitutional AI specifically, nonetheless reaches the same document. Dahlgren Lindström and colleagues argue that the vagueness of terms like harmless and honest lets different raters apply genuinely different, unstated ethical frameworks while appearing to agree, that optimizing for helpfulness can push a system toward more convincingly anthropomorphic and therefore more potentially deceptive behavior, that optimizing for harmlessness can push it toward reflexive over-refusal, and that a training signal built this way risks encoding one cultural frame’s notion of good behavior as though it were universal [11]. Their target is human rater instructions, not a written constitution, but the argument extends naturally, and this extension is this article’s own analysis rather than a claim made in their paper: writing “helpful,” “harmless,” and “honest” into a document does not, on its own, resolve the fact that each of those words is contested and admits multiple defensible readings. It relocates the interpretive latitude from a rater’s head to a feedback model’s reading of a paragraph; it does not obviously remove it. Where independent researchers disagree with each other, it is worth being precise about what they disagree on: the regulatory-oversight critique and the semantic-vagueness critique target different parts of the pipeline, one the removal of humans from the judgment loop, the other the words the judgment is anchored to, and neither has been resolved by evidence strong enough to call the disagreement settled.

What is confirmed, and what is inferred, about today’s Claude

Everything mechanical described above, the specific comparison counts, the sixteen-principle ensemble, the batch size, the clamped chain-of-thought probabilities, is drawn from a paper describing experiments run in 2022, on models from that generation. It is confirmed in the sense that it is published, quoted accurately here, and has not been retracted. It is not confirmed as a description of how any current Claude model is actually trained.

A synthetic-conversation printer with one page still curling out of its feed onto a tall collected stack, a soft-focus lectern holding the open constitution visible behind it
Figure 5. Today the constitution is read by the model that writes its own training conversations as much as by the researchers who wrote the document, a shift Anthropic has described but not fully specified.Image prompt and art direction by Brecht Corbeel; image generated to that direction.

What is publicly known about the present is narrower and comes from a different kind of document. Anthropic’s January 2026 constitution announcement states that the constitution “plays an even more central role in training” than earlier versions did, and describes Claude itself generating synthetic training conversations, drafting responses meant to embody the constitution’s values, and ranking alternative responses against it, feeding that output back into training [3]. That is a real, dated, on-the-record claim about the document’s expanded role. It is not, however, a disclosure of an algorithm: it does not say whether the downstream reinforcement-learning step is still a preference model trained by the Bradley-Terry loss described above, whether it has been replaced or supplemented by direct-preference-style methods that skip an explicit reward model, or what fraction of today’s harmlessness training signal is AI-generated versus human-reviewed. Extrapolating the 2022 paper’s precise mechanics onto the current production pipeline is a reasonable inference from Anthropic’s own framing of the newer document as a continuation of the same method, not a confirmed fact, and this article treats it as exactly that: an inference, clearly labeled, resting on a company’s continuity narrative about its own product rather than on a second published methods paper.

What the method actually buys

Reduced to its mechanics, Constitutional AI is smaller than its name: a self-critique-and-revision step that generates supervised training data no external labeler had to write, and a swap of the source for one of the two comparison datasets feeding an otherwise unmodified RLHF reward model and reinforcement-learning loop, from a person’s judgment to a model’s reading of a written principle. What that swap buys is legibility, since a principle can be printed, argued with, and revised in public in a way an anonymous rater’s judgment call cannot, and scale, since it removes a hard floor on how much distressing content a harmlessness pipeline requires a person to read. It does not, on the evidence collected here, buy a guarantee. The method’s own authors said as much about the ad hoc principles they started with and the imperfect critiques those principles produced; independent researchers have since put a number on the self-critique gap in an adjacent setting, thirty-seven percent, and shown that pushing back with a larger penalty mostly buys time rather than closing it. A constitution constrains a model exactly as well as the principles it contains and the competence of whatever reads them, and both of those remain open, actively contested engineering and governance problems rather than solved ones.