Glossary · Term

interpreter

← all terms

Definition

Plain language

The program that actually runs your code and reports what it produced.

As stated in the literature

Runtime that executes source or bytecode directly; used here as the trusted oracle for computing expected outputs instead of having the model predict them.

Also called: interpreters

Why it matters: Letting the machine compute expected values instead of having the model guess them removes a whole class of confidently wrong test expectations.

For example, rather than asking the model what "add(2, 3)" should return, you hand the line to the interpreter, it runs the real code, and it reports 5.

Heard on the show

“Like a professional interpreter — you stammer, you apologize, you say "sorry, this is probably a stupid question.”
Episode 241 — Swapping the Name Did Nothing, But Hedging Moved Every Model

Mentioned in 4 episodes

  1. 241
    Swapping the Name Did Nothing, But Hedging Moved Every Model
  2. 233
    Why a Model Can Grade an Answer But Not Write the Answer Key
  3. 130
    Why AI Agents Coordinate Better Through a Shared Board Than a Boss
  4. 063
    Why Web Agents Are Slow: A Compiler-Style Fix for Computer-Use Latency

Related concepts

Related terms