179 questions
No questions match those filters.
What is Constitutional AI, and how does the self-critiq...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansThe underlying research idea is broader than the prompting pattern: Constitutional AI trains a model to critique and revise its own outputs against a written set of principles during fine-tuning, reducing reliance on large volumes of human-labeled preference data for every possible failure mode. What’s directly usable at the application layer, without any fine-tuning, is the self-critique loop itself — generate, critique against named criteria, revise — which any model can be prompted to do at inference time.
The criteria you critique against should be specific and named, not a vague “check if this is good” instruction — “list every claim in this text that isn’t directly supported by the provided context” produces a far more actionable critique than “review this for accuracy,” because it gives the critiquing pass something concrete to check line by line rather than a subjective quality judgment. The revision step then only needs to address the specific issues the critique surfaced, which keeps the final output close to the original except where a real problem was found.
Where this fits in a broader safety stack: self-critique is one layer among several, not a replacement for retrieval grounding (which reduces the chance of unsupported claims in the first place) or output filtering (which catches categorical policy violations a critique prompt might miss, like PII leakage). The honest framing for an interview is that self-critique is cheap insurance against a specific class of error — plausible-sounding but unsubstantiated or non-compliant claims — bought at the cost of one extra LLM call and a bit of added latency before the user sees a response.