10You're building a classifier that flags risky contract clauses. Do you optimize for precision or recall?▼easyScaleMicrosoftOpenAI1 repliesunlockedA classic metrics question with a domain twist. The answer isn't 'recall'; it's a cost-of-errors argument plus a threshold strategy, and interviewers grade the reasoning, not the metric you pick.Open full answer →
15When does fine-tuning beat few-shot prompting? How much data do you need, and how do you prevent regressions?▼mediumOpenAICohereMistral1 replies○ sign inThe data-volume thresholds, the break-even math, and the regression-prevention checklist that turn 'just fine-tune it' into a defensible engineering decision. Includes the crossover rule interviewers listen for.Open full answer →
22How do you version, test, and roll out prompt changes like code?▼mediumOpenAIAnthropicScale1 replies◆ premiumPrompts are production code that nobody treats like code, until an innocent one-line tweak tanks accuracy. The version-eval-canary-rollback pipeline that AI-native interviewers expect by default.Open full answer →
23Your provider is deprecating the model you built on. How do you detect and measure regression before migrating?▼mediumOpenAIAnthropicMicrosoft1 replies◆ premiumModel migrations break things that benchmarks never show, format quirks, refusal shifts, tool-calling drift. The eval-replay and shadow-traffic playbook for migrating without surprises.Open full answer →
25Design the pre-launch eval suite for a customer support bot.▼hardOpenAIAnthropicSierra1 replies◆ premiumEvals are the #1 probing area in AI-lab FDE loops. The full suite design, golden sets, component metrics, safety red-teaming, CI gates, and the launch-blocking thresholds, in interview-ready form.Open full answer →
26When can you trust LLM-as-judge, and how do you calibrate it against human labels?▼hardOpenAIAnthropicScale2 replies◆ premiumPosition bias, verbosity bias, self-preference, and the agreement-rate workflow that turns a sloppy judge into eval infrastructure you can defend. AI labs probe this hard; here's the calibrated answer.Open full answer →
36How do you know your AI system is actually working well?▼hardOpenAI1 replies◆ premiumReported as the question OpenAI FDE interviewers push hardest on, and the one where 'we look at the outputs' ends loops. The three-legged answer that passes: automated metrics, calibrated human evaluation, and feedback loops wired to a business number.Open full answer →
38Design an eval suite that catches silent quality regressions when you upgrade the underlying model.▼hardOpenAIAnthropicScale1 replies◆ premiumProvider model upgrades ship faster than your release cycle and quietly shift behavior. The design that turns 'we hope it's fine' into a blocking gate: a frozen golden set, pairwise diffing, segmented scoring, and a shadow-traffic canary.Open full answer →
57Here are 30 examples where our prompt gets the wrong answer. Improve it, show me the eval before and after, and do not overfit to the 30.▼hardNewAnthropicOpenAI2 replies◆ premiumThis is the live practical several labs run, and it is scored on protocol more than on the prompt you end with. Read all thirty before editing, cluster them, hold some out, change one thing at a time, and report with intervals, because 24 of 30 fixed is somewhere between 63% and 91%.Open full answer →
59Design the eval for a voice agent taking inbound support calls. What do you measure offline, and what can only production tell you?▼hardNewSierraDecagonCresta2 replies◆ premiumWord error rate is the number every vendor quotes and the one that predicts the least. The offline suite is built from confirmed real calls with noise and codecs applied, scored on entity accuracy, tail latency and false interruptions. Production adds what a recording cannot simulate: real callers and the reopen rate.Open full answer →
05How would you evaluate a RAG system before letting a customer launch it?▼easy★ EssentialOpenAIAnthropicScale1 repliesunlocked'Evals first' is the #1 hiring signal in FDE design rounds. This is the foundational version: what a 50-case golden set looks like, which metrics split retrieval from generation, and the launch gate that convinces interviewers.Open full answer →
08A customer's RAG pilot answers only 60% of questions correctly. Diagnose it.▼mediumOpenAIScaleAnthropic1 repliesunlockedThe modal FDE design question of the last two years. There's a scoring trap in the first 60 seconds, and most candidates jump to fixes and fail. Here's the diagnostic tree that wins it.Open full answer →
15Design text-to-SQL for executives, where a wrong-but-plausible query must never mislead anyone▼mediumDatabricksSnowflakeOpenAI1 replies○ sign inText-to-SQL's nightmare isn't syntax errors, it's the query that runs, returns a confident number, and is silently wrong. The defense is a semantic layer plus transparency UX. Here's the full design.Open full answer →
19Design the full eval harness for an LLM product: offline goldens, LLM-judge, online A/B, CI gates▼hard★ EssentialOpenAIAnthropicScale1 replies○ sign inThe staff-level version of 'evals first.' Four layers, each with a job, a cost, and a blind spot, plus judge calibration numbers and the data flywheel that ties production failures back into CI.Open full answer →
35Explain the RAGAS evaluation dimensions, faithfulness, answer relevance, context precision, context recall, and when to trust them▼mediumOpenAIScale1 replies◆ premiumReciting the four definitions is table stakes; the differentiator is knowing which two need ground truth, what each dimension tells you to fix, and where the judge-model scores quietly lie. The 2x2 that turns RAGAS into a debugging tool.Open full answer →
38RAG accuracy dropped 12 points in production this week and nobody shipped a prompt change. Debug it.▼hardOpenAICohereGlean1 replies◆ premiumThe classic 'it regressed and the prompt is untouched' triage. The answer that scores walks a decisional tree from retrieval to generation and names the silent culprit most candidates miss: the embedding stack changed under you.Open full answer →
40You have no labels on production traffic. How do you monitor RAG retrieval quality before users complain?▼hardGleanNotionCohere1 replies◆ premiumGolden sets catch what you anticipated. The harder problem is the live traffic you never labeled. The answer that scores layers cheap proxy signals against a small anchored golden set and knows what each can and cannot tell you.Open full answer →
65Design a simulated-customer regression suite for a support agent in production. What does it catch, what does it miss, how big must it be?▼hardNewSierraDecagonAnthropic2 replies◆ premiumA nightly suite of fifty simulated conversations per intent catches a collapsed tool with certainty and a five-point drift almost never. Knowing which is which, and sizing each layer for what it can actually see, is the whole design. The grader checks outcomes, not transcripts, or the agent learns to sound resolved.Open full answer →
66Build the eval for a text-to-SQL feature over a customer's warehouse: what is in the golden set, what is the metric, how many cases?▼hardNewDatabricksSnowflakeGlean2 replies◆ premiumThree correct queries scored 0 of 3 on exact match and 3 of 3 on execution. The golden set is question, reference SQL and result set, stratified by the ways queries go wrong, with abstention as its own column. A hundred cases gives plus or minus eight points; four hundred gives four.Open full answer →
33How do you measure whether a RAG pipeline is actually working? Walk me through the metrics.▼hardDatabricksGoldman SachsOpenAI2 replies◆ premiumThe 2026 successor to 'explain precision and recall', interviewers now test whether your classical ML evaluation discipline survives contact with GenAI. The decomposition, the RAGAS dimensions, and the judge-calibration step everyone skips.Open full answer →
29Design the data model for AI-agent conversation logs, for product analytics AND eval mining.▼mediumDatabricksSnowflakeRetool1 replies◆ premiumThe question where data engineering meets the AI-native FDE job. Conversations, turns, LLM calls and tool calls each have their own grain, model them wrong and neither the cost dashboard nor the eval set can be built.Open full answer →
11Design observability for an LLM application. What do you log, trace, and alert on, and how is it different from normal services?▼mediumOpenAIAnthropicGlean1 replies○ sign inStandard observability tells you the request returned 200 in 800ms. It cannot tell you the answer was wrong. The strong answer names the new failure plane LLMs introduce, and takes a real position on the prompts-and-PII question.Open full answer →
12How do you version and roll out prompt changes like code, review, canary, rollback, audit?▼mediumAnthropicOpenAIGlean1 replies○ sign inPrompts are production code with a worse failure mode: the regression returns 200 OK. The answer interviewers reward treats a one-word prompt edit with the same machinery as a schema migration, with one LLM-specific twist at every stage.Open full answer →
33The OpenAI FDE take-home: build something real on the API in ~5 hours, record a walkthrough, how do you stand out?▼mediumOpenAI1 replies◆ premiumReported loop detail: roughly 5 hours to build a RAG system, agent, or eval harness on OpenAI's APIs, a recorded video walkthrough, then a 60-minute defense. The hour-by-hour allocation, why the eval section is the differentiator, and what the video is actually screening for.Open full answer →
39Design tracing for a multi-step agent where the failures are silent. The run returns a plausible answer that is wrong.▼hardOpenAIAnthropicLangChain1 replies◆ premiumA crashed agent is easy. The hard one returns a confident answer after a tool quietly returned nothing and the model made up the rest. The strong answer instruments the steps that fail without throwing, ties traces to an outcome signal, and refuses to call a 200 a success.Open full answer →
40A contract specifies 95% resolution accuracy and a $0.50 cost-per-resolution cap for an agent. Design the eval suite and the go/no-go.▼hardOpenAIAnthropicDecagon2 replies◆ premiumTwo hard numbers in the contract: 95% accuracy and $0.50 per resolution. The job is an eval and rollout system that proves both hold on real traffic before you scale, with rollback triggers wired to the same numbers.Open full answer →