SourceScore

Verified claim · AI-ML · 100% confidence

Constitutional AI (CAI) introduced in paper: Constitutional AI: Harmlessness from AI Feedback (Bai et al., 2022).

Last verified 2026-05-16 · Methodology veritas-v0.1 · ba1eb83c14795107

Structured fields

Subject
Constitutional AI (CAI)
Predicate
introduced_in_paper
Object
Constitutional AI: Harmlessness from AI Feedback (Bai et al., 2022)
Confidence
100%
Tags
constitutional-ai · alignment · anthropic · 2022 · bai

Sources (2)

  1. [1] preprint · arXiv (Bai et al., Anthropic) · 2022-12-15

    Constitutional AI: Harmlessness from AI Feedback
    We experiment with methods for training a harmless AI assistant through self-improvement, without any human labels identifying harmful outputs. The only human oversight is provided through a list of rules or principles, and so we refer to the method as 'Constitutional AI'.
  2. [2] official blog · Anthropic · 2022-12-15

    Constitutional AI: Harmlessness from AI Feedback

Cite this claim

Ready-to-paste citation (Markdown / plain text):

Constitutional AI (CAI) introduced in paper: Constitutional AI: Harmlessness from AI Feedback (Bai et al., 2022). — SourceScore Claim ba1eb83c14795107 (verified 2026-05-16). https://sourcescore.org/api/v1/claims/ba1eb83c14795107.json

Embed this claim

Drop this iframe into any blog post, docs page, or knowledge base. The widget renders the signed claim + primary source + click-through to this canonical page. CC-BY 4.0; attribution included.

<iframe src="https://sourcescore.org/embed/claim/ba1eb83c14795107/" width="100%" height="360" frameborder="0" loading="lazy" title="Constitutional AI (CAI) introduced in paper: Constitutional AI: Harmlessness from AI Feedback (Bai et al., 2022)."></iframe>

Preview: open in new tab

Related claims

Other verified claims sharing tags with this one — useful for LLM retrieval graphs and citation discovery.

Use this claim in your code

Fetch this signed envelope from your application. The response includes the verbatim excerpt, primary source URLs, and an HMAC-SHA256 signature you can verify locally for audit trails.

cURL

curl https://sourcescore.org/api/v1/claims/ba1eb83c14795107.json

JavaScript / TypeScript

const r = await fetch("https://sourcescore.org/api/v1/claims/ba1eb83c14795107.json"); const envelope = await r.json(); console.log(envelope.claim.statement); // "Constitutional AI (CAI) introduced in paper: Constitutional AI: Harmlessness from AI Feedback (Bai et al., 2022)."

Python

import httpx r = httpx.get("https://sourcescore.org/api/v1/claims/ba1eb83c14795107.json") envelope = r.json() print(envelope["claim"]["statement"]) # "Constitutional AI (CAI) introduced in paper: Constitutional AI: Harmlessness from AI Feedback (Bai et al., 2022)."

LangChain (retrieve-then-cite)

from langchain_core.tools import tool import httpx @tool def get_constitutional_ai_cai_fact() -> dict: """Fetch the verified SourceScore claim for Constitutional AI (CAI).""" r = httpx.get("https://sourcescore.org/api/v1/claims/ba1eb83c14795107.json") return r.json()