CoachDiscoverMapCompareSavedAI LearningAI WeeklyAbout
← Back to library
Flashcard Deck · All Guides · 47 Unique Cards

Drill the Atoms

Filter by guide, shuffle the deck, or flip them all at once. Multi-tagged cards (like RAGAS faithfulness) appear once with all relevant guide pills.

Showing 47 cards · 0 flipped Click any card to flip · Sorted A→Z
03 · Advanced
Agentic Rubrics for SWE
tap to reveal →
Raghavendra et al., 2026. Generates per-instance code rubrics from repo + issue. Scores patches on file targeting, spec alignment, integrity, runtime. Sonnet-4.5 rubrics had only 2% flakiness.
← tap to flip back
02 · Applied
Answer Rubric
tap to reveal →
Asks: was the final expression correct, complete, grounded, constraint-compliant? Catches hallucinations, missing citations, format violations, off-topic responses.
← tap to flip back
01 · Foundations
answer_relevance
tap to reveal →
Atomic rubric dimension. Does the response actually address the user's goal, or does it answer a different question? A low score routes to intent recognition and task routing.
← tap to flip back
01 · Foundations
argument_correctness
tap to reveal →
Are tool arguments complete, legally formatted, and consistent with the task? Low scores route to schemas, validators, enums, and parameter examples in the tool description.
← tap to flip back
03 · Advanced
Bias tests
tap to reveal →
Adversarial probes for known LLM Judge weaknesses: position swap, repetitive-list verbosity attack, self-enhancement probe. Run on every candidate rubric or Judge model change.
← tap to flip back
01 · Foundations
Calibration Loop
tap to reveal →
Step 5 of the rubric closed loop. The mechanism that keeps the Judge honest — human spot-checks, calibration sets, bias attacks, drift alerts.
← tap to flip back
03 · Advanced
Calibration set
tap to reveal →
A small, hand-graded set of representative samples (good + bad) used to measure whether a Judge or rubric matches human judgment. The "staging environment" for eval changes.
← tap to flip back
02 · Applied
Code-based grader
tap to reveal →
Deterministic check using rules, schemas, sandboxes, or DB queries. Cheap, fast, reproducible. Use whenever the question has a non-probabilistic oracle.
← tap to flip back
03 · Advanced
Context Gathering Agent
tap to reveal →
First stage of the contextual rubric chain. Collects user goal, business rules, available tools, ground truth, end-state, and known failure modes before any judging happens.
← tap to flip back
01 · Foundations
context_precision
tap to reveal →
Is the retrieved context clean and ranked well? Low scores point at rerankers, filtering, and context compression — the noise side of retrieval, not the recall side.
← tap to flip back
01 · Foundations
context_recall
tap to reveal →
Was the necessary information actually retrieved at all? Low scores route to retriever, query rewrite, or chunking — never to the prompt.
← tap to flip back
01 · Foundations
dependency_order
tap to reveal →
Did tool calls happen in the required before/after order? Low scores route to workflow graphs and the planner — the structural constraints between steps.
← tap to flip back
03 · Advanced
Eval Case Generator
tap to reveal →
Final stage of the rubric chain. Packages today's failure into a reusable replay sample plus a candidate fix sketch. Today's incident becomes tomorrow's regression test.
← tap to flip back
01 · Foundations
Evidence Contract
tap to reveal →
Step 1 of the rubric closed loop. The rule that says which fields the Judge is allowed to read, and which fields force a return of "unknown" when missing.
← tap to flip back
02 · Applied
Evidence prerequisite
tap to reveal →
Entry condition for an atomic dimension. Before scoring, check that the evidence needed exists in the trace; if not, return "unknown." Prevents Judge hallucination on missing data.
← tap to flip back
01 · Foundations02 · Applied
faithfulness (RAGAS)
tap to reveal →
RAGAS metric. Did the generator faithfully use the retrieved context, or did it ignore/contradict it? The generator-side counterpart to context_recall — same symptom, different fix.
← tap to flip back
03 · Advanced
Failure Attribution
tap to reveal →
Maps a low score on a dimension to a broken layer (retrieval / tool / prompt / workflow / memory) and a specific remediation target. Turns "bad" into "fix this asset."
← tap to flip back
01 · Foundations
Failure Taxonomy
tap to reveal →
Step 3 of the rubric closed loop. Low scores get categorized into actionable failure types — not just "bad" but "retrieval miss" or "tool argument error."
← tap to flip back
01 · Foundations
G-Eval
tap to reveal →
Structured LLM-as-Judge method (Liu et al., 2023). Auto-generates chain-of-thought evaluation steps from criteria, scores by form-filling, uses token probability for continuous output.
← tap to flip back
02 · Applied
Grader stratification
tap to reveal →
Anthropic's three-tier eval system: code-based for deterministic checks, model-based for semantic judgment, human for calibration. Each tier catches what the cheaper tier below it cannot.
← tap to flip back
01 · Foundations
groundedness
tap to reveal →
Are the key claims in the answer actually supported by retrieved context or tool results? A low score routes to retrieval, citation logic, or evidence constraints in the prompt.
← tap to flip back
02 · Applied
Human grader
tap to reveal →
Expert review or crowdsourced judgment. Expensive and slow but the gold standard. Reserved for calibration sets, gray-area cases, and taxonomy review — not bulk grading.
← tap to flip back
01 · Foundations
interaction_efficiency
tap to reveal →
Are turn count, tool calls, and cost within normal range? An efficiency anomaly is often the first signal of a loop or redundant-call failure mode.
← tap to flip back
02 · Applied
Model-based grader
tap to reveal →
LLM-as-Judge. Flexible, handles open-ended quality and semantic claims. Non-deterministic and biased — requires human calibration to be trustworthy.
← tap to flip back
02 · Applied
Must-pass assertion
tap to reveal →
Hard-constraint check on a specific step that must happen. Reserve for safety / business hard-rules (auth, payment, data deletion) — never for full path lockdown.
← tap to flip back
02 · Applied
Outcome Rubric
tap to reveal →
Asks: did the end-state in the world actually match the target? Verifies files written, records updated, tests passing, reports containing required conclusions. The main judge.
← tap to flip back
01 · Foundations
outcome_state
tap to reveal →
Did the end-state in the world actually become the target state — was the record updated, the file written, the test passing? Verified by code, not by LLM judgment.
← tap to flip back
02 · Applied
Parameter-blind selection
tap to reveal →
TRAJECT-Bench failure mode. Right tool, wrong arguments — wrong values, formats, or units. Fix: tighter schemas, validators, enums, parameter examples in tool descriptions.
← tap to flip back
02 · Applied
pass@k
tap to reveal →
Probability of at least one success in k attempts. Use for creative or exploratory tasks where best-of-k retries are part of the product experience.
← tap to flip back
02 · Applied
pass^k
tap to reveal →
Probability that ALL k attempts succeed. Use for reliability-critical flows like payments or data deletion — any single bad attempt is a real-world incident.
← tap to flip back
01 · Foundations
Position bias
tap to reveal →
LLM Judge bias toward whichever option appears first. MT-Bench: Claude-v1 75%, GPT-3.5 50%, GPT-4 lowest. Defend by swapping order and only counting answers stable across both.
← tap to flip back
02 · Applied
Redundant tool calling
tap to reveal →
TRAJECT-Bench failure mode. Tool called more times than needed, or with unrelated hallucinated calls. Fix: stopping rules, cost guardrails, planner — also a training-data smell.
← tap to flip back
01 · Foundations
Remediation Target
tap to reveal →
Step 4 of the rubric closed loop. Each failure type points at exactly one asset — prompt, tool, workflow, memory, retriever, model, or human review.
← tap to flip back
03 · Advanced
Repairable signal
tap to reveal →
The Rubric's actual output goal. Not a number; a failure type + asset target + candidate fix that a teammate can use to file a ticket with one owner and one suggested action.
← tap to flip back
03 · Advanced
Rubric aging signals
tap to reveal →
Four canonical signals that the rubric (not the Agent) is broken: humans overturning the Judge, persistent unknown rates, low scores that can't map to fixes, perma-pass dimensions.
← tap to flip back
03 · Advanced
Rubric Builder
tap to reveal →
Generates task-specific criteria from gathered context. Each criterion comes with an evidence prerequisite and a remediation target. Replaces generic checklists.
← tap to flip back
03 · Advanced
Rubric version release
tap to reveal →
Treat each rubric change like a code release: bug report → candidate patch → calibration set replay → bias tests → shadow eval → version pin. Rolling forward and back become safe operations.
← tap to flip back
01 · Foundations
Score Dimensions
tap to reveal →
Step 2 of the rubric closed loop. Quality is broken into atomic, independently scorable dimensions so each low score can route to one fix direction.
← tap to flip back
01 · Foundations
Self-enhancement bias
tap to reveal →
LLM Judges favor their own model family's outputs. GPT-4 +10% win-rate boost on its own. Claude-v1 +25%. Never let Judge and Generator share a family in regression-critical lanes.
← tap to flip back
03 · Advanced
Shadow evaluation
tap to reveal →
Run a candidate rubric in parallel with the live rubric on real traffic. Only release if human-agreement, false-positive rate, false-negative rate, and remediation-pointing accuracy all improve.
← tap to flip back
02 · Applied
Similar tool confusion
tap to reveal →
TRAJECT-Bench failure mode. Overlapping tool capabilities confuse the agent into picking the worse option. Fix: sharper tool descriptions, router improvements, disambiguation examples.
← tap to flip back
01 · Foundations
tool_selection
tap to reveal →
Did the agent pick the right tool from a set with overlapping capabilities? Low scores route to tool descriptions and the router — not to the model's intelligence.
← tap to flip back
02 · Applied
Trace (transcript)
tap to reveal →
The complete record of a trial: outputs, tool calls, reasoning, intermediate results, costs. The substrate every rubric reads from. If the trace is incomplete, the Judge is forced to guess.
← tap to flip back
03 · Advanced
Trace Inspector
tap to reveal →
Structured reader of the trace: tool calls, intermediate states, end-state, costs. Feeds the Judge the evidence each rubric dimension needs.
← tap to flip back
02 · Applied
Trajectory Rubric
tap to reveal →
Asks: were tool choice, parameters, dependency order, exception recovery, cost, and turn count reasonable? Catches risks invisible in the final answer. Acts as diagnostic evidence.
← tap to flip back
02 · Applied
UNKNOWN (insufficient evidence)
tap to reveal →
First-class rubric output for when the trace doesn't contain enough evidence to judge. The single most important defense against fabricated verdicts being written into asset fixes.
← tap to flip back
01 · Foundations
Verbosity bias
tap to reveal →
LLM Judge bias toward longer answers. "Repetitive list" attack fooled Claude-v1 and GPT-3.5 91.3%, GPT-4 only 8.7%. Defend by length-normalizing and CI-attacking.
← tap to flip back
47 unique cards · Agent Eval Rubric · self-learning library