ConceptFine-Tuning & Adaptation
Constitutional AI & RLAIF
At a glance
Align a model against a written set of principles by having it critique and revise its own outputs, then train on the result.
- Who this is for
- Engineers and technical readers learning the terms used in AI systems.
- Topics
- Fine-Tuning & Adaptation
- Concept
Constitutional AI makes the alignment target explicit. Instead of relying only on human preference labels, the system gives a model a written constitution: principles about helpfulness, harmlessness, honesty, privacy, and refusal behavior. The model uses those principles to critique and improve responses, then training uses the improved data.
Phase 1: critique and revise#
The first phase starts with an assistant response, asks the model to critique it against a principle, and asks for a better revision. Those revisions become supervised fine-tuning data. The important part is legibility: the principle can be read, edited, debated, and tested.
Phase 2: RLAIF#
The second phase replaces some human preference labels with AI-generated labels. A model compares candidate responses against the constitution and chooses the better one. Those preferences train the assistant with reinforcement learning or preference optimization. This is RLAIF: reinforcement learning from AI feedback.
Why it matters#
Human feedback is expensive, inconsistent, and hard to scale to every edge case. Constitutional AI makes oversight more scalable and makes the values more auditable than a pile of unlabeled preferences. Anthropic's published Claude constitution is the canonical example, and collective constitutional AI experiments show how public input can shape principles.
Limits#
Written principles are incomplete. They conflict. They can be interpreted differently by different models. A constitution also does not solve capability risks by itself; it is one layer in post-training. Like any guardrails, it needs evals, red teaming, and monitoring.
Practical takeaways#
Use constitutional techniques when you need consistent policy behavior and a reviewable alignment target. Treat the constitution as product and safety code: version it, test it, and inspect failures. RLAIF scales labeling, but humans still need to choose the principles and audit the outcomes.