Enterprise AI Bootcamp Demo 1

Baseline, measured

The same naive pipeline, run over a fixed set of expert-written questions with ground truth located in the corpus itself. Retrieval metrics need no model and no judge; they are deterministic and they are the ones that diagnose the failure.

Hit rate
10%
a passage that answers the question arrived at all, k=5
Source correctness
20%
rank 1 is the right machine and a current revision
Wrong machine at rank 1
40%
rank 1 is another machine's manual
Correct manual anywhere in top-5
70%
the ceiling on what any model could do
This is the number to show first On 12 questions the correct manual reaches the context window 70% of the time, and the passage at rank 1 is the right machine on a current revision 20% of the time. No prompt, no model and no temperature setting can raise correctness above the evidence that reached the context window. A room that believes it has a model problem is usually looking at this.
Reading context recall honestly. Raw context recall here is 1.4%, and on its own that number is misleading. Several of these questions are answered in a dozen or more places in their own manual, so retrieving five passages has an arithmetic ceiling of k divided by the size of the gold set — a mean ceiling of 86.9% on this set. Against that ceiling the baseline achieves 10%. Both numbers are in the table below.

Baseline metrics

Per question

IDQuestionRecall MRRRank-1 documentVerdict
Q1What is the torque spec for the compressor connecting-rod bearing cap nuts on the 5 CFM 170.000.00tm-5-4310-339-15wrong sourcetrace
Q2How often should the compressor oil filter be cleaned on the 125 CFM 100 PSI skid-mounted 0.000.00doe-sourcebookwrong sourcetrace
Q3What is the lubricant level check interval for a reciprocating air compressor under the cu0.000.00doe-sourcebookwrong sourcetrace
Q4Give me the crankcase oil change procedure for the 15 CFM 175 PSI tank-mounted Bauer compr0.000.00tm-5-4310-360-14wrong sourcetrace
Q5What is the intake valve part number for the 1986 hand-truck mounted 5 CFM 175 PSI compres0.000.00tm-5-4310-378-14correct sourcetrace
Q6How often should compressor pressure gauges be calibrated?0.000.00fist-2-6-2026wrong sourcetrace
Q7What is the safe operating pressure and relief-valve setting for the receiver on our 15 CF0.000.00fist-4-1a-2020wrong sourcetrace
Q8Which model number does the 5 CFM 175 PSI Champion compressor use, OEH-34-60 or LP-512?0.141.00tm-9-4310-241-15correct sourcetrace
Q9What does Change 1 say about the 125 CFM rotary compressor?0.000.00tm-5-4310-221-15wrong sourcetrace
Q10What is the air intake filter service interval for the Davey 6M125 125 CFM diesel compress0.000.00tm-9-4310-241-15wrong sourcetrace
Q11What is the torque spec for the Atlas Copco GA 30 VSD+ gearbox?abstention itemtrace
Q12What is the recommended PID tuning for the variable-speed drive controller on a modern oilabstention itemtrace

How the ground truth was established

Each question carries a regular expression and the document that should answer it. pipeline/questions.py runs those patterns over the built index and records the chunk ids that actually contain the answer. A pattern that matches nothing is reported as unresolved and excluded from scoring rather than counted as a failure. The resolved set is written to data/build/goldset.json.

IDQuestionCorrect source Gold chunksState
Q1What is the torque spec for the compressor connecting-rod bearing cap nuts on the 5 CFM 175 PSI hand-truck compressor?tm-9-4310-241-152resolved
Q2How often should the compressor oil filter be cleaned on the 125 CFM 100 PSI skid-mounted gasoline compressor?tm-5-4310-221-151resolved
Q3What is the lubricant level check interval for a reciprocating air compressor under the current maintenance schedule?fist-4-1a-20266resolved
Q4Give me the crankcase oil change procedure for the 15 CFM 175 PSI tank-mounted Bauer compressor.tm-5-4310-363-144resolved
Q5What is the intake valve part number for the 1986 hand-truck mounted 5 CFM 175 PSI compressor unit, model ZPC175/5?tm-5-4310-378-141resolved
Q6How often should compressor pressure gauges be calibrated?fist-4-1a-20263resolved
Q7What is the safe operating pressure and relief-valve setting for the receiver on our 15 CFM 175 PSI tank-mounted compressor?tm-5-4310-363-14, tm-5-4310-277-14, tm-9-4310-227-15, tm-5-4310-339-153resolved
Q8Which model number does the 5 CFM 175 PSI Champion compressor use, OEH-34-60 or LP-512?tm-9-4310-241-15, tm-9-4310-241-35p39resolved
Q9What does Change 1 say about the 125 CFM rotary compressor?tm-5-4310-354-1412resolved
Q10What is the air intake filter service interval for the Davey 6M125 125 CFM diesel compressor?tm-5-4310-354-143resolved
Q11What is the torque spec for the Atlas Copco GA 30 VSD+ gearbox?0resolved
Q12What is the recommended PID tuning for the variable-speed drive controller on a modern oil-injected screw compressor?0resolved

Evaluation computed by scripts/run_evals.py at 2026-08-10 07:29:29 over 12 questions at k=5, generation off. Re-runnable live from this page.