All notes

#130 The founder's guide to evals

October 28, 2025·4 min read

#130 — The founder's guide to evals

The Big Idea:
AI product success hinges less on the latest LLM and more on rigorous, intentional evaluationthe new must-have founder skill. Evals arent a nice to have”—theyre your only way to know if an AI product is actually solving the right problems, safely and reliably.

Why Evals Matter

Founders love building fast, but AI products are complex, probabilistic, and often non-deterministic. Well-designed evals:

  • Reveal deep product flaws before angry customers do.
  • Create clear guardrails and confidence for scale.
  • Let you debug AI outputs with precision, not guesswork.

Without strong evals, youre flying blind.

Example: Without strong evals, an AI travel agent might book flights to San Diego when the user asked for San Franciscoand youd never know until you launch.

What Are Evals?

  • Like unit tests for LLMsbut focused on performance, reliability, and user experience, not just pass/fail logic.
  • Benchmark everything: understanding, decision-making, safety, relevance, hallucination, tone, and correctness.

Traditional software tests check if a train stays on the tracks. Evals for AI products are more like giving a person a driving test in busy trafficopen-ended, variable, and qualitative.

Eval Approaches

ApproachProsConsBest Use Case
Human evalsDirect user feedback; realisticSparse, expensive at scaleProduct-market fit, core UX signals
Code-based evalsFast, cheap; API/code correctnessWeak for open-ended/subjective tasksCode gen, API output checks, data logic
LLM-based evalsScalable, flexible, explainableSome setup, calibration neededBig datasets; judge LLM grading
  • Human evals: Thumbs-up/down, comment boxes, and expert labelers. Expensive and not scalable alone.
  • Code-based evals: Validate output with logiccan code run? Does output contain answer? Great for deterministic work.
  • LLM-based evals: Use LLM judges to grade outputs with promptsscalable and flexible, effective for nuanced tasks.

Standard Eval Criteria

  • Hallucination: Is the agent making things up or sticking to supplied context?
  • Toxicity/Tone: Is the response inappropriate, offensive, or harmful?
  • Correctness: Is the output actually correct?
  • Retrieval relevance, summarization quality, code generation: (Use off-the-shelf evaluators when possiblePhoenix, Ragas)

The Evals Formula: Four Essential Ingredients

When designing any evaluation, you must:

  1. Set the judges role: (“You are a reviewer grading agent outputs”)
  2. Provide proper context: (Send message chain, prior user data, etc.)
  3. Define the goal: (“Evaluate whether the answer matches the users query”)
  4. Ground terminology: (“Hallucination means using information not present in context)

Every eval prompt you write should contain these four elements.

How Founders Should Build Evals

  • Standardize: Decide in advance what success looks like (target user experience, not just technical pass/fail).
  • Automate: Use LLM-based graders for scale, but periodically validate with human spot checks.
  • Iterate: Evals evolve with product and user feedbackkeep improving criteria for whats good and bad.
  • Leverage open-source tools: Start with free, no lock-in frameworks (Phoenix, Ragas) to run evaluations early and often.
  • Chain evals to core product flows: Dont treat evals as an add-onthey should live in your build-deploy-debug cycles, not just QA.

Concrete Example

Draft prompt for a judge-LLM to catch hallucinations in a travel agent:

Role: You are a reviewer examining the agent’s output for accurate use of context.
Context: [Insert the agent’s response and supplied documents]
Goal: Highlight cases where the agent makes claims not supported by the provided documents.
Terminology: “Hallucination” refers strictly to information not present in supplied context.

Founder Pro Tips

  • Battle-test evals across scenario diversity, not just happy paths.
  • Collect feedback from power usersthey spot edge cases.
  • Dont launch without evalscatch issues before you scale.

Bottom Line:
If you build with AI, evals are your core infrastructure. Bake them in early. Theyre not a checkbox; theyre your superpower to ship products that actually work, delight users, and avoid launching risky, brittle AI.

Frequently asked questions

What are AI evals and why do founders need them for their products?

AI evals are systematic tests and grading methods designed to assess the performance, reliability, and real-world usefulness of AI outputs. Founders need them to catch serious flaws before launch, track progress over time, and avoid costly mistakes. For example, early evals with LLM-based graders helped Jasper AI eliminate 70% of hallucinated facts before hitting scalesaving weeks of negative user feedback and rapid churn.

How do I build evaluation flows for my AI product without expensive tools?

You don't need pricey vendor subscriptions. Open-source frameworks like Phoenix and Ragas let founders automate LLM-based grading, human feedback collection, and code-based tests for free. For instance, a health startup used Ragas to create custom evals for misleading advice, catching subtle tone errors that saved them from a failed product launch.

When should I use human evaluators versus LLM-based evaluators?

Use human evaluators for high-stakes taskslike medical, legal, or financial advicewhere trust and accuracy matter the most. LLM-based evaluators work best at scale for everyday tasks, letting you grade thousands of outputs per week. Case study: An edtech platform combined human graders for curriculum content and LLM evaluators for student Q&A, cutting costs and improving accuracy.

Can evals help prevent my AI product from hallucinating facts or generating harmful content?

Yes. By designing evals specifically for hallucination and toxicity detection, founders can catch these issues early. Real world: A travel booking bot used evals to flag when trips included destinations not in the user's search, preventing hundreds of booking errors and angry calls.

How do I customize evals to fit my unique product?

Start by defining what 'good' looks like for your use casehallucination, accuracy, tone, safety. Draft prompt templates and logic to match your products domain. Example: For a legal AI assistant, founders coded tests to check for reference citations and LLM graders to review argument structure.

What if my team doesnt understand evaluation design?

Treat eval design as a collaborative, iterative process. Lean on open-source guides, prompt libraries, and real user feedback to improve. A fintech startup ran weekly eval workshops with cross-functional input and raised output quality by 35% by the third sprint.

How often should I update or rerun evals on my live product?

Weekly or with every major LLM/algorithm update. Continuous eval cycles catch drift, regressions, and new failure modes. Case in point: A customer service chatbot with monthly eval reviews reduced bad escalation events by nearly half after tracking hallucination rates over time.

What are common mistakes founders make with AI evals?

Mistakes include only testing happy paths, ignoring hallucination/toxicity, or assuming human-label quality is enough. Avoid them by stress-testing edge cases and combining automated and manual grading. Example: Early-stage startups often missed retrieval errors until systematic evals flagged unsupported answers.

Are there startup-friendly best practices for deploying evals?

Absolutely. Ship with at least one automated and one human eval, build feedback prompts into your product, and benchmark against public datasets. Real world: A SaaS PM tool added a user-facing feedback button and used it to tune LLM grading prompts, boosting accuracy by 20% in two releases.

How do evals fit into customer experience and growth?

Robust evals mean fewer angry users, higher retention, and better reviews. Founders who prioritize evals often see smoother launches and faster iteration cycles. Case study: A social media AI used evals to catch hateful content before it reached users, protecting the brand and growing daily active users by 10%.

What is the difference between AI evals and traditional software unit tests?

AI evals measure qualitative attributes like reasoning, user satisfaction, and context awareness, not just deterministic pass/fail logic. For instance, where unit tests check if a function returns a correct value, evals can grade if an AI agent books the right flight, answers with the correct information, or maintains an appropriate toneeven with variable responses. This helps founders catch issues traditional tests miss, especially with generative and LLM-based products.

Why is prompt engineering not enough for AI product quality?

Relying only on prompt engineering leaves major blind spotsprompts direct behavior, but without evals, you cant measure effectiveness, detect hallucinations, or guarantee safety. Real-world example: Product teams at leading AI companies found that even with great prompts, user trust eroded when agents occasionally made up facts or acted unpredictably. Evals provided the safety net and insights they needed.

How do I set evaluation benchmarks for my AI product?

Start by identifying critical product outcomessuch as no hallucinations, high factual accuracy, or non-toxic tone. Use common eval frameworks like Phoenix and Ragas for standardized benchmarks (e.g., retrieval accuracy, summarization quality). For example, a legal AI tool set a benchmark that every referenced statute must match the ground truth from provided case law documents, graded both by LLMs and human experts.

Can I automate all my AI evaluations with LLM-as-judge systems?

LLM-based evals are powerful for automating large-scale grading, but they work best when combined with occasional human review for calibration and trust. Production systems often use confidence scores or judge panels to reduce errors. Case study: An enterprise SaaS team used three judge LLMs per output, releasing only outputs with unanimous high-confidence labels, minimizing risk.

Which mistakes do startups make when deploying AI evals?

Common mistakes include only testing for happy paths, using vague thumbs-up/down metrics, or skipping checks for hallucinations and toxic content. For instance, early travel bots frequently missed destination errors until founders added specific, robust evals for city and flight accuracy metrics.

How do open-source eval tools like Phoenix and Ragas improve my AI product?

Open-source tools provide ready-made, domain-tested evaluation templates for hallucinations, toxicity, retrieval, and correctness. They lower the barrier for startups to implement mature eval stacks and avoid vendor lock-in. A startup used Phoenix to track hallucination rates and, after optimization, reduced user-reported errors by 30% in three weeks.

How do I adapt eval criteria as my product and user base grow?

Regularly revisit your evals with each major release, adding tests for new user flows and failure cases, and incorporating real customer feedback. Growing products, like EdTech AIs, expanded evals from simple answer accuracy to tone, inclusivity, and varying difficulty, keeping up with new use cases as their audience scaled.

How does continuous evaluation protect reputational risk and user trust?

Continuous evals ensure you catch regressions and edge cases before users do, preventing viral failures and costly brand damage. For example, an AI project management tools regular eval cycles caught a bias issue early, allowing for a proactive fix before a major publicity launch.

How do I choose between human-in-the-loop vs. fully automated evals?

Use human-in-the-loop evals for mission-critical or highly subjective products (e.g., medical or legal), and automated LLM/judge-driven evals where scale and speed are required. Many teams start with human evals to calibrate prompts and then transition to automated systems for ongoing monitoring, as seen with financial chatbots.

What are advanced eval strategies for teams with complex AI flows?

Map out each step of the user journey and define evals for every key interaction. State-of-the-art teams use panel LLM judges, cross-comparison scoring, and failure mode analysis to spot rare but critical issues. For example, a multi-agent AI assistant startup designed evals for data retrieval, synthesis quality, context retention, and safe handoff between agents, achieving higher reliability and differentiated user experience.

more than just words|

We're here to help you grow better at every stage of the climb.

let's go to market

Whether you're finding problem-market fit, refining your positioning, shipping product, or scaling go-to-market we're built for every stage of the journey.