Ashita Orbis

Constitutional AI: Method, Evolution, and Critique

Constitutional AI (CAI) is a post-training method, introduced by Anthropic in 2022, that uses a written set of principles to drive a model's self-critique, revision, and AI-generated preference labeling — replacing much of the direct human feedback used in RLHF for harmlessness training. The method has become one of the most operationally legible answers to scalable oversight, but its durable contribution lies less in any particular training recipe and more in the design pattern it normalized: making behavioral targets explicit, then using models to apply them at scale under human governance. This article describes the method, traces the evolution of the public Claude constitution, situates CAI among adjacent specification-and-optimization techniques (RLHF, DPO, deliberative alignment, Model Spec, rule-based rewards, constitutional classifiers), and takes the active critiques — moral disagreement, shallow alignment, adversarial robustness — seriously enough to ask whether CAI is a permanent technique or a transitional one.

Coverage note: verified through May 11, 2026.

The method

The two-stage pipeline

Constitutional AI as defined in Bai et al. 2022 is a specific procedure, not a posture or a governance philosophy. The method has two stages.

Stage 1 — Supervised self-critique and revision. A helpful but otherwise unaligned base model generates responses to prompts (including red-team prompts designed to elicit harmful behavior). The same model is then prompted to (a) critique its own response against one or more written constitutional principles, and (b) revise the response in light of the critique. The (prompt, revised-response) pairs are used as supervised fine-tuning data. The constitution enters the loop here as the text the model reads during critique generation.

Stage 2 — Reinforcement learning from AI feedback (RLAIF). The supervised model generates pairs of candidate responses to harmful prompts. A separate AI evaluator, again conditioned on constitutional principles, expresses preferences between the pairs. Those AI-generated preferences train a preference model, which then serves as the reward signal for reinforcement learning — analogous to the reward model in RLHF, but trained on AI-labeled comparisons rather than human ones.

The Anthropic-facing version of the same story uses the constitution in two places: "self-critique and revision" and "AI preference judgment" (Claude's Constitution, Anthropic 2023). The substantive substitution is at the labeling layer: human harmlessness preference judgments are replaced by AI judgments guided by an explicit normative target.

The reason this matters is upstream of any particular safety metric. RLHF, as exemplified by Ouyang et al. 2022 on InstructGPT, bottlenecks on humans rating outputs one at a time. That bottleneck has cost, latency, inter-rater inconsistency, and a non-trivial worker-welfare profile (harmlessness labeling means reading harmful content). CAI proposes that for harmlessness specifically, the relevant human labor can be relocated to writing the principles, designing the evaluator, choosing the prompt distribution, and auditing the result — rather than reading each output. The original paper reports that CAI-trained models reach favorable harmlessness-versus-helpfulness frontiers relative to RLHF baselines on Anthropic's evaluations, with less direct human harmlessness labeling.

What the constitution actually does in the loop

It is worth being precise about the constitution's mechanical role, because the looser interpretations ("the model reasons from principles") overclaim. Within CAI's two-stage pipeline:

  • The constitution is text that conditions a generation. The critique model sees (prompt, response, principle) and produces a critique; it sees (prompt, response, critique, principle) and produces a revision; it sees (prompt, response_A, response_B, principle) and produces a preference. The "use" of the principle is whatever the underlying model does when that text appears in its context.
  • The constitution is not a logical specification compiled into a policy. There is no formal interpreter that checks responses against principles in a verifiable sense. The model's interpretation of the principle text is itself a learned function.
  • The constitution conditions training data; the resulting policy parameters are then frozen relative to that constitution unless retrained. A model trained under constitution C does not automatically "follow" a new constitution C′ at inference time — though variants such as deliberative alignment, discussed below, push policy-application toward inference.

This precision matters because two of the strongest critiques of CAI — that it produces shallow alignment, and that it merely relocates rather than resolves the question of whose values are encoded — depend on what the principle text actually does inside the loop.

What humans still supply

A common framing is that CAI replaces human feedback with AI feedback. The more accurate framing is that CAI shifts where human judgment enters. Under CAI, humans still:

  • Author the constitution, including which sources to draw from, which principles to include or exclude, and how to phrase them.
  • Curate the red-team prompt distribution used to generate the harmful-response examples that critique-and-revision operates on.
  • Choose and validate the critiquing model and the preference-labeling model.
  • Design and run evaluations, including the benchmarks against which the trained model is scored.
  • Audit deployed behavior, gate releases, and decide how to update the principles and the training procedure over time.

This is not a marginal observation. It changes what CAI is claiming. The original method's empirical contribution is that the per-output harmlessness labeling step — historically the most painful piece of RLHF — can be performed by AI evaluators guided by written principles, with measurable harm-rate reductions on the evaluations Anthropic ran. It does not establish that the system is principle-governed in any deeper sense, nor that human normative responsibility has been removed.

The Claude constitution as artifact

From a principle list to a behavioral document

The text that Anthropic calls the Claude constitution has changed materially over the project's lifetime, and treating "the Claude constitution" as a single stable document is a category error.

The 2023 public constitution post presents a list of principles drawn from a heterogeneous set of sources: the Universal Declaration of Human Rights, Apple's terms-of-service framing for trust and safety, DeepMind's Sparrow rules, principles encouraging non-Western and non-WEIRD perspectives, and a set of Anthropic-internal research-derived rules. The principles are short statements (often single sentences) phrased as "please" requests to the model. They were the textual input to the supervised critique-and-revision and RLAIF stages described in Bai et al.

The current Claude constitution, published at anthropic.com/constitution and most recently updated in January 2026, is a substantially longer document — a structured statement of Anthropic's intended behavior for general-access Claude models, covering honesty, helpfulness, broad safety, hard constraints, corrigibility, Claude's character and nature, and a section on possible model welfare. It is described as "the final authority for Claude's intentions," with the explicit acknowledgement that actual behavior may diverge from these ideals and that the document is a work in progress.

This is not "the same document, updated." The 2023 artifact is a principle list optimized for use as text-in-context during training. The 2026 artifact is closer to a behavioral specification with a self-aware governance role — closer in form to OpenAI's Model Spec than to its own predecessor. The 2026 document also explicitly identifies its preface and acknowledgements as "not official," suggesting an internal distinction between the parts that govern training and the parts that contextualize the project.

What the public artifact does and doesn't show

The published constitution is unusually transparent for a frontier-lab governance document. That transparency is genuinely valuable — it makes the normative target inspectable, criticizable, and comparable across systems. But it is not the production pipeline. Several things the public document does not reveal:

  • The actual prompt templates and chain-of-prompt structures used during critique, revision, and preference labeling.
  • The relative weights, ordering, or conflict-resolution heuristics applied when multiple principles bear on a single response.
  • The synthetic-data generation, evaluator-model details, and audit gating that determine which behaviors actually ship.
  • The full set of internal policies layered on top of the constitution at deployment — system prompts, tool-use restrictions, classifier-based safeguards, runtime overrides, and operator-provided instructions per Anthropic's principal hierarchy framing.

A responsible reading is that the public constitution is the stated normative target, not the deployed control surface. The article-level claim "the Claude constitution shapes Claude's behavior" is well-supported by Anthropic's own statements; the stronger claim "the public Claude constitution is the mechanism by which Claude's deployed behavior is determined" is not supported by anything public.

Pluralism experiments and collective constitutions

The 2023–2024 Collective Constitutional AI work with the Collective Intelligence Project is a useful counterpoint to the "one corporate constitution" framing. CCAI took roughly 1,000 Americans through a Polis-style deliberation to produce a public-input constitution, then trained a Claude variant under that constitution and compared it to the standard-constitution variant. The results were modest — the public-input model performed similarly to the standard model on most evaluations, with some shifts on political and demographic bias dimensions. The main contribution is methodological rather than empirical: it shows that the constitution is a movable input, not a fixed property of the method, and that different constitutions produce measurably different models.

This is structurally important. It means the question "whose values does CAI encode?" is not a property of CAI; it is a property of the constitution chosen. CAI as a mechanism is compatible with corporate authorship, deliberative public input, regulatory mandate, or other governance arrangements. The 2022 paper picks corporate authorship by default; the method does not require it.

Comparison: where CAI sits in the design space

Why the comparisons are easy to get wrong

The most common analytic error in discussions of CAI is treating it as comparable to RLHF, DPO, deliberative alignment, Model Spec, instruction hierarchy, rule-based rewards, and constitutional classifiers along a single axis. They are not comparable along a single axis. They differ in:

  • Specification format: what artifact (if any) encodes the desired behavior — natural-language principles, a public spec, a rule list, an internal policy.
  • Feedback source: who or what supplies the preference, classification, or reward signal — humans, AI evaluators conditioned on text, hard-coded rules, model-internal reasoning.
  • Optimization method: how the signal is turned into a policy — supervised fine-tuning, PPO-style RL with a learned reward model, direct preference optimization without a reward model, classifier-based filtering.
  • Decision-time vs training-time application: whether the policy is baked into weights via training, or whether the model applies a spec by reasoning over it at inference.
  • Governance role: whether the artifact is internal (training input), external (public commitment), or both.

A taxonomy along these axes prevents most of the confusion.

Comparison table

Method Specification Feedback source Optimizer Application time Governance role
RLHF (Ouyang et al. 2022) Implicit — encoded in labeler instructions Human preference labels Reward model + PPO RL Training Internal; labeler guidelines may be partially published
Constitutional AI / RLAIF (Bai et al. 2022) Explicit — written constitution as text AI critiques + AI preference labels conditioned on the constitution SFT (revisions) + reward model + RL on AI-labeled comparisons Training Mixed — constitution can be public (Anthropic), partial, or absent
DPO (Rafailov et al. 2023) None — agnostic to where preferences come from Whatever preferences are supplied (human or AI) Direct loss over preference pairs; no separate reward model Training None — pure optimization technique
Rule-Based Rewards (Mu et al. 2024; OpenAI blog) Explicit — propositions/rules graded by an LLM judge LLM-graded rule satisfaction features Reward model with rule features as inputs; RL Training Internal; rule sets typically not fully public
Deliberative Alignment (Guan et al. 2024; OpenAI blog) Explicit — safety specifications presented to the model The model's own reasoning over the spec, supervised against spec-correct behavior SFT + RL with spec-faithful chain-of-thought Mixed — training conditions a model to reason over the spec at inference Internal; specs partially documented
OpenAI Model Spec (OpenAI 2024) Explicit — public document with chain of command, hard rules, defaults N/A — the spec is a target, not a method Used as input to training and as a public commitment Mixed — informs training and runtime behavior Public governance artifact
Constitutional Classifiers (Sharma et al. 2025; Anthropic blog) Explicit — natural-language rules describing allowed/disallowed content Synthetic data generated from the rules Classifier training on synthetic data Runtime — classifier filters inputs/outputs around a deployed model Internal; runtime safeguard
Instruction Hierarchy (Wallace et al. 2024) Implicit/explicit — principal ordering (system > developer > user > tool output) Training data designed to enforce hierarchy SFT/RL on hierarchy-respecting traces Both — trained-in disposition, applied at inference Internal

A few observations are worth making explicit.

DPO is not an alternative to CAI in any meaningful sense. DPO can be applied to the same preference pairs that RLHF or CAI would use; it is a way to optimize a policy from preferences without a separately trained reward model. A system that "uses DPO" tells you nothing about where the preferences came from. Comparing CAI and DPO on normative grounds is a category error.

Deliberative alignment is closer to CAI than DPO is — both center an explicit specification — but they apply the specification at different points. CAI applies it during training (the principles condition the critique-and-revision data and the preference labels, then the policy weights are fixed). Deliberative alignment teaches the model to consult the spec during inference, reasoning over it before answering. This shift has real consequences: deliberative alignment makes policy application more inspectable per-decision (the chain-of-thought can be examined) but more compute-expensive at inference, while CAI bakes the policy into the weights and pays the cost upfront.

The Model Spec and constitutional classifiers are not training methods at all in the same sense. The Model Spec is a public document describing intended behavior, used as input to OpenAI's training and as a public commitment. Constitutional classifiers are runtime safeguards trained on synthetic data generated from rules. Comparing them to CAI on training-method grounds is meaningful only if the comparison axis is specified.

Rule-based rewards are perhaps the closest training-time relative. They share with CAI the move of encoding desired behavior in explicit text, then using an LLM to judge that text against generated outputs. The differences are local: RBRs evaluate outputs against a structured set of propositions and use the rule-satisfaction features as inputs to a reward model, whereas CAI uses constitutional principles to condition critique generation and preference labeling. The published RBR work reports F1 gains over a human-feedback baseline on a specific safety-behavior test set in OpenAI's setup — a real but narrow result.

What the comparisons settle

Across these methods, two things are stable. First, every approach that has produced credible benchmark wins improves measured behavior on the distribution it optimizes against. Second, every approach exposes new failure modes under distribution shift, adversarial pressure, or changed objectives. None of them has public evidence of settling pluralistic moral legitimacy, deception, or robust normative generalization in the strong sense that future highly capable agents would require.

The shared design pattern is more important than any single method: externalize the behavioral target into text or rules, use models (or humans, or both) to produce signals that approximate the target, optimize a policy against those signals, then audit. The methods are variations on where that text lives, who produces the signal, and whether the policy is applied at training or inference.

Constitutional AI as scalable oversight

The scalable-oversight problem

Scalable oversight, in the alignment-research sense formalized by Leike et al. 2018 and others, is the question of how humans can supervise systems whose outputs become too complex, too numerous, or too specialized for unaided human evaluation. The naïve RLHF labeling loop — humans rate every output pair — does not scale to systems generating tens of millions of outputs per day across thousands of task types, especially when the relevant judgment requires expertise the labeler may lack.

The CAI proposal is one operational answer to scalable oversight in the harmlessness domain: amortize human judgment by encoding it into a written constitution and letting AI evaluators do the bulk per-output labeling. This is not a clever trick; it is a reasonable allocation of comparative advantage. Humans are better at articulating values, weighing edge cases in deliberation, and noticing systemic failure patterns. AI evaluators are better at consistent, high-throughput, low-marginal-cost judgment against an explicit target.

The empirical evidence supports the operational claim. Bai et al. show that CAI achieves favorable harmlessness-versus-helpfulness frontiers on Anthropic's evaluations relative to RLHF baselines, with substantially less direct human harmlessness labeling. Subsequent work — RBRs, deliberative alignment, constitutional classifiers — adds variations on the same theme, all reporting credible improvements on the test distributions chosen.

What scalable oversight via principles actually buys

The thing the CAI design pattern buys is not free supervision. It is a shift in the location and form of human oversight burden:

  • From per-output to per-principle. Humans no longer label every output; they argue about what the principles should be, how they should be ordered, and what they should say about edge cases.
  • From implicit to explicit. RLHF guidelines are typically internal labeler instructions; CAI's constitution can be public, examined, debated, and varied (as the CCAI experiment shows).
  • From terminal to iterable. A constitution can be revised; the resulting model can be retrained or partially fine-tuned. RLHF preference labels are typically discarded after the reward model is trained.
  • From bottleneck to budget. Per-output labeling is a hard throughput bottleneck on RLHF. Constitution authorship and audit are budgets — labor-intensive but front-loaded, amenable to deliberation and external input.

Each of these is a real benefit. None of them eliminates the underlying normative responsibility. The transparency of an explicit constitution is precisely what makes the next set of critiques possible — and necessary.

Critiques

The critique literature on CAI does not converge on a single complaint. Three distinct lines of critique matter, each pointing at a different layer of the system.

Moral disagreement and political legitimacy

Schuster and Kilov (2025) argue that crowdsourcing, RLHF, and constitutional AI all fail to accommodate reasonable moral disagreement in a way that gives affected people good epistemic or political reasons to accept morally controversial AI outputs. The claim is not that the methods produce bad outputs (sometimes they do, sometimes they don't); it is that they cannot produce legitimate outputs on contested moral questions, because their procedures do not give the relevant publics standing or voice.

Applied to CAI specifically: a written constitution makes the normative target inspectable but does not make it legitimate. A user who reasonably rejects a particular principle has no procedural standing under CAI. Anthropic's constitution lists Anthropic's "legitimate decision-making processes" as the final authority in important conflicts — which is honest, but precisely identifies the legitimacy problem. CAI operationalizes whichever values the constitution encodes. The mechanism is neutral about authorship. The 2022 paper, the 2023 constitution, and the 2026 constitution all reflect a single firm's normative choices, with selective input from external sources.

The CCAI experiment is the most serious response to this critique in practice, and the result is informative in two directions. It shows the constitution can be replaced with one derived from public deliberation, demonstrating that the legitimacy problem is not architectural. But it also shows that the public-input constitution produced a model substantially similar to the corporate-input one on most evaluations — suggesting that for many decisions, the legitimacy bottleneck is not the mechanism's capacity to encode different values but the question of which values matter for which decisions.

The Schuster–Kilov critique applies to RLHF and DPO and other preference-based methods equally; it is not specifically a CAI problem. But CAI's transparency raises the stakes: an explicit constitution is easier to criticize for legitimacy than an opaque set of labeler instructions.

Shallow alignment

Millière (2025) makes a different and more mechanistic claim: that current alignment methods — RLHF, CAI, related preference-optimization techniques — reinforce shallow behavioral dispositions rather than producing a human-like capacity to resolve normative conflicts rationally. The evidence is the brittle behavior of aligned models under adversarial pressure, distribution shift, and constitutional conflicts that the training process did not anticipate.

The shallow-alignment critique is not "the model is doing pattern matching" — that framing is too coarse to be useful. It is more specific: the model's behavior on the training and evaluation distributions is well-aligned with the target, but the underlying mechanism does not generalize to novel cases where principles conflict, where the prompt encodes pressure to violate principles, or where the training distribution did not include the relevant edge case. A system trained to produce principled-looking outputs on a measured distribution will, under sufficient pressure or out-of-distribution prompting, produce outputs that look principled while violating the principles.

This is the correct empirical posture for CAI specifically. The Bai et al. results demonstrate behavioral improvements on Anthropic's evaluations. They do not demonstrate that the trained model has internalized normative principles in a way that generalizes to genuine novel conflicts. The shallow-alignment hypothesis is not refuted by improved benchmark scores, because the benchmarks themselves are part of the training-distribution-relevant signal.

What would refute it? Held-out, blinded, adversarial, cross-cultural evaluation showing that constitution-trained models resolve novel principle conflicts more robustly than non-constitutional alternatives at equal compute and data. That evidence does not yet exist publicly, in either direction.

Robustness and adversarial pressure

The robustness picture for constitutional methods is more complicated than the discourse usually acknowledges. The original CAI paper reports favorable harmlessness frontiers but does not extensively test adversarial generalization. The follow-on work on constitutional classifiers reports surviving over 3,000 estimated red-team hours without a universal jailbreak in the tested setup — a strong result for runtime safeguards in their threat model.

But more recent work in 2026 reports successful attacks against constitutional classifiers under different threat models. Fine-tuning and data-poisoning attacks achieve high classifier evasion when the attacker can submit adversarial fine-tuning data, and Anthropic's own alignment research reports successful small-number poisoned-example backdoors against constitutional classifiers under specific threat models. These are not refutations of constitutional methods; they are calibrations of which attack surfaces are covered.

The empirical lesson is that "constitutional methods are robust" and "constitutional methods are brittle" are both true under different specifications. They are robust against the attacks they were red-teamed against. They are vulnerable to attacks at surfaces the red-team did not test. This is the normal state of security engineering and should not be presented as a unique problem for CAI — but it does undercut any claim that explicit principles produce robustness as a side effect.

Behavioral compliance vs normative understanding

The three critiques above point at a shared structural concern: the gap between behaving as if principle-governed and being principle-governed in any deeper sense. The shallow-alignment hypothesis frames this gap as a property of current training methods. The legitimacy critique frames it as a procedural failure of authorship. The robustness work frames it as a property of the attack-surface specification.

The honest position is that current evidence supports behavioral steering under measured conditions. It does not support claims about internal normative understanding, because we do not have the interpretability tools to make such claims. The claim "CAI produces models that understand morality" is unsupported. The claim "CAI produces models that behave consistently with a written constitution on the distributions tested" is supported. The space between these two claims is large, and the article-level position on CAI depends entirely on which one is being made.

The counter-case to the critiques is also worth stating directly. The shallow-alignment critique, taken in its strongest form, demands a standard of "deep normative understanding" that no AI system can currently meet — and possibly no system, AI or human, can be shown to meet from behavioral evidence alone. Treating this standard as a prerequisite for useful safety engineering would block all near-term alignment work. The right position is that CAI's contribution is operational, not philosophical: it is a working method for making behavioral targets explicit and reducing per-output human supervision cost, while leaving the deep questions open for separate work.

Permanent technique or transitional recipe?

The question of whether CAI is a permanent alignment technique or a transitional one cannot be answered without distinguishing which part of CAI is meant.

The durable contribution

The durable contribution is the design pattern, not the 2022 recipe. The pattern is:

  1. Externalize the behavioral target into explicit text.
  2. Use models — under human governance — to apply the text at scale, in training, evaluation, or runtime.
  3. Make the target inspectable, criticizable, and (at least in principle) variable.
  4. Combine the target with other layers of oversight: independent audits, adversarial evaluation, runtime safeguards, interpretability, and governance arrangements that go beyond the developer.

This pattern is highly likely to persist. It appears in Anthropic's CAI and constitutional classifiers, in OpenAI's Model Spec, deliberative alignment, and rule-based rewards, and in instruction-hierarchy work that organizes the principal structure of an aligned system. The pattern's recurrence across labs suggests it is not a vendor choice; it is what scalable oversight looks like in 2026.

What is likely transitional

The specific 2022 recipe — supervised self-critique-and-revision plus RLAIF with a learned reward model — is probably transitional. Several developments point this way.

Deliberative alignment moves more policy application into inference, taking advantage of reasoning models' ability to consult specifications at decision time. This is a strict generalization of the CAI pattern: instead of baking the constitution into weights once, the model reasons over it per decision. If reasoning-model inference economics continue to improve, this approach is likely to displace pure CAI for at least some failure modes.

DPO and related direct-optimization methods may make the reward-modeling step in CAI's stage 2 unnecessary. If you can produce preference pairs from constitutional critique, you can train against them directly without a reward model.

Constitutional classifiers and runtime safeguards may absorb some of CAI's burden. Some classes of behavior are easier to enforce at runtime than to train in — particularly when the policy changes faster than retraining is feasible.

Public model specifications and pluralistic constitution design are likely to displace single-firm authorship for at least some normative content. The CCAI experiment is a proof of concept; future regulatory and procedural arrangements may push further.

What survives is the design pattern: explicit principles, model-assisted application, human governance, multiple oversight layers. What may not survive in its 2022 form is the specific two-stage SFT-plus-RLAIF pipeline, treated as a complete alignment method.

What would change the verdict

The most decisive piece of evidence would be an equal-base-model, equal-compute ablation across RLHF, CAI/RLAIF, DPO on the same preferences, rule-based rewards, and a deliberative spec-reasoning variant — preregistered, with held-out test sets covering ordinary harmful prompts, benign over-refusal, constitutional conflicts, moral-disagreement cases, multilingual variation, paraphrase stability, and adversarial jailbreaks, with plural blinded human adjudicators.

If CAI generalizes better than RLHF/DPO/RBR under unseen constitutional conflicts without unacceptable over-refusal, the case for principle-conditioned training as a robust alignment technique strengthens substantially. If it only wins on familiar harm categories within the training distribution, the shallow-compliance hypothesis gains weight and the design pattern becomes the durable claim while the specific recipe weakens.

If interpretability work eventually shows that constitution-trained models develop internal representations corresponding to constitutional principles in some non-trivial sense, the picture changes again. If interpretability shows that the same behaviors are produced by very different internal mechanisms across methods, the "method matters" framing weakens and the "evaluation matters" framing strengthens.

If governance research and pluralistic constitution-design experiments mature into procedures that produce constitutions with broader legitimacy than single-firm authorship, the Schuster–Kilov critique loses much of its force as applied to CAI specifically — though it remains a critique of any preference-based alignment method that does not engage with pluralism.

None of these results exists publicly at the time of writing. The article-level position is therefore conditional: CAI is a serious, operationally useful, behaviorally validated method for scalable oversight in harmlessness training. It is not a complete alignment technique, it does not eliminate human normative judgment, and it does not produce deep moral understanding. Its 2022 recipe is probably transitional; its design pattern is probably permanent. Both claims should be held loosely pending the kinds of evidence described above.

Companion entries

Core theory:

Practice:

  • Model Spec and Behavioral Specification
  • Constitutional Classifiers
  • Red-Teaming and Adversarial Evaluation
  • Pluralistic Constitution Design
  • Collective Constitutional AI
  • Synthetic Data for Safety Training
  • Runtime Safety Safeguards

Counterarguments and critique:

  • Moral Disagreement in AI Alignment
  • Shallow Alignment
  • Behavioral Compliance vs Normative Understanding
  • Political Legitimacy of AI Governance
  • Distribution Shift in Aligned Models

Adjacent governance and method:

  • AI Constitutions as Governance Artifacts
  • Principal Hierarchy in AI Systems
  • Audit and Evaluation Infrastructure for Aligned Models
  • Interpretability and Alignment Verification
  • Reward Hacking and Evaluator Gaming

AI-researched reference article. Something wrong here? Tell us.