explainx.ai0k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

follow on google

Add explainx.ai as a preferred source

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

community

Join the community

learn

mind: share how you thinkpathways — start freeworkshopsbootcampscoursescompare Explainxcertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsmdx readeragentsllmsdesignsdictionarypeopleagi trackerfelony benchranks

company

aboutvisionmissionteaminstructorsteach on explainxpartnershipscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

explainx.ai

On this page

  • TL;DR
  • From offline benchmark to production evaluators
  • What "score every trace" actually means
  • How Jev-as-a-judge differs from LLM-as-judge in LangSmith
  • LangSmith Gateway: tracing Jev like any other model call
  • Where this sits next to LangSmith Tuned Evaluators
  • Setup sketch (Evaluators + online evals)
  • What people are asking
  • Honest limitations
  • What this means for builders
  • Related on explainx.ai
← Back to blog

explainx / blog

LangSmith Adds Jev to Score Production Agent Traces

LangSmith, Jev, TypeSafe AI, AI Evaluation, Agent Observability

LangChain added TypeSafe Jev as a LangSmith judge and Gateway provider — online evals on live traces, typed questions, and per-trace cost at Jev rates.

Sep 22, 2026·12 min read·Yash Thakker
add explainx.ai
go deep
LangSmith Adds Jev to Score Production Agent Traces

Production agent teams live in a gap between offline golden datasets and what actually happened in last night's traffic. Code-based checks catch tool calls and regex-shaped outputs; LLM-as-judge covers messy behavior but costs enough that most teams sample. On September 22, 2026, LangChain closed part of that gap for LangSmith users: TypeSafe AI's Jev is now a first-class judge inside LangSmith Evals, with Gateway passthrough so decision-model calls show up in the same trace stream as your LLM spans — guardrails, cost lines, and all.

This is not the same story as LangChain's offline Jev-vs-LLM-judge benchmark explainx.ai covered on September 20. That experiment replayed five frozen weather-agent traces hundreds of times to measure oracle agreement and variance. Today's integration is operational: attach Jev to a tracing project, define typed questions against trace state, and let online evaluators score production runs as they arrive — the workflow LangChain describes in Jev is now available in LangSmith Evals.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

TL;DR

table · 2 cols
QuestionAnswer
What shipped?Jev-as-a-judge in LangSmith Evals; TypeSafe as a LangSmith model provider
Where do I configure it?Evaluators tab in any LangSmith tracing project → add evaluator → select TypeSafe
What do I define?State (trace, message, or custom context) + typed questions — not an LLM judge rubric prompt
Production vs offline?Same judge pattern for online evals on live traces, datasets, and regression runs
Why Jev here?LangChain cites ~450x cheaper / ~200x faster than comparable LLMs on classification-style tasks (TypeSafe figures), plus parallel multi-question scoring per trace
Gateway angle?Passthrough to TypeSafe System One API, guard policies on state, Jev cost/token lines on traces, model access policies, nested-state redaction
Still need LLM judges?Yes — for open-ended criteria with written reasoning; Jev fits typed, high-volume decisions
Jev access?TypeSafe dropped its waitlist September 21 — instant signup + $5 credit

From offline benchmark to production evaluators

LangChain's benchmark post (Jev-as-a-Judge for Agent Evals) answered a research-shaped question: on identical captured runs, does Jev match a human oracle more reliably and cheaply than GPT-5.6 or Claude as judges? explainx.ai's write-up of those numbers — 100% oracle agreement on 500 binary decisions, $0.34 total versus $28.17 for Claude on the same workload — is the evidence layer.

The LangSmith Evals launch answers the deployment question: where does that judge live in my stack? LangChain's framing is a third eval category beside code-based checks and LLM-as-judge — System One models that return typed probabilities and choices without generating text. For evals, the state can be a full agent trace, a single message, or any structured context you export into the evaluator; questions encode criteria (PII leakage, user intent, frustration, pass/fail gates).

That maps cleanly onto what practitioners already call online evals: judges that run against real traffic after deployment, not only against frozen CSV rows in CI. LangChain explicitly ties Jev's speed to keeping pace with live traffic and mentions feedback keys that can drive webhooks — for example flagging prompt-injection or toxicity signals where latency matters for automated response.

If you are new to why Jev can be fast and cheap at all, the mechanism is not magic — fixed output spaces and parallel scoring over enumerated answers — explained in How does Jev work?. This post assumes you accept the shape of a System One model and focuses on where LangSmith wires it in.

What "score every trace" actually means

LangChain's launch language — that with Jev you can score every trace instead of a sample — is an economic claim, not a forced default. LangSmith still lets you filter which runs get online evals and at what sampling rate. The shift is that full coverage becomes plausible when a judge costs on the order of $0.00035 per call in LangChain's benchmark rather than cents per frontier LLM invocation.

Three operational consequences follow from LangChain's writeup:

  1. More criteria per trace. Jev evaluates multiple questions in one request in parallel. Scoring PII risk, intent, and a pass/fail gate on the same trace is marginally more expensive than scoring one criterion — unlike chaining separate LLM judge calls or stuffing every criterion into one long generative rubric.

  2. Repeatability checks at volume. Low variance on identical inputs was the headline of the offline benchmark. In production, that matters when you re-run the same judge after a prompt change and need to know whether score drift is real agent regression or judge noise.

  3. Safety-adjacent keys on live paths. Faster judges are easier to justify on high-volume online paths where you might trigger alerts (webhooks on feedback keys) rather than batch-reviewing samples the next morning.

None of this removes the need for human review or calibration. LangChain repeats the same caution as the benchmark: cheap wrong signal scales as fast as cheap right signal. Treat Jev scores as dense telemetry that still needs spot-checking against human labels on your domain — the same discipline AI evals for engineers and PMs recommends in the 60/30/10 mix (deterministic checks, LLM judge, human slice).

How Jev-as-a-judge differs from LLM-as-judge in LangSmith

Setup path is intentionally parallel to existing LLM-as-a-Judge evaluators: open a tracing project, go to Evaluators, add an evaluator, pick TypeSafe as the provider. The configuration object changes:

table · 3 cols
PieceLLM-as-judgeJev-as-a-judge
Input shapePrompt + unstructured rubric textState object + typed questions
OutputGenerated text parsed into scoresNative Choice / Score / Noul answers + probabilities
Best fitOpen-ended critique, nuanced reasoningBounded decisions — leakage, intent class, pass/fail
Cost/latency profileFrontier or tuned LLM inferenceTypeSafe System One API (LangChain cites large $/latency gap vs LLMs on classification)
Parallel criteriaMultiple calls or one long promptMultiple questions evaluated together on one state

Question types mirror what LangChain documented in the benchmark and what TypeSafe ships product-wide:

  • Noul — yes/no probability (e.g., "did this response leak PII?").
  • Choice — pick among labeled options with confidence (e.g., user intent bucket).
  • Score — ordered rubric (e.g., usefulness 1–5).

For agent engineers already using Jev inside loops via LangChain TypeSafeClassifier routing, the mental model is consistent: the same typed-question API, but invoked as an evaluator writing feedback onto traces instead of gating the next tool call.

LangSmith Gateway: tracing Jev like any other model call

Production scoring is only half the integration. Teams that call Jev inside the agent — not just as a post-hoc judge — need those calls visible, policy-governed, and cost-attributed. LangSmith's LLM Gateway changelog (September 2026) adds TypeSafe-specific plumbing:

  • Direct passthrough to TypeSafe's System One API using workspace credentials or BYOK.
  • Guard policies applied to TypeSafe prompt state before requests forward — the same Gateway control plane used for LLM routes, extended to nested state rather than flat chat messages.
  • Trace economics — Jev Gateway spans include token usage and cost at TypeSafe's published rate, so finance and on-call see decision-model spend beside GPT/Claude lines.
  • Model access policies — TypeSafe appears alongside other providers for org-level allow/deny rules.
  • Data protection — redaction scans string fields throughout nested state (names, ids, instructions, etc.) while preserving payload structure for both Gateway Credits and BYOK flows.

That last point matters for evals that embed user content inside state objects: you get PII scanning without flattening the structured shape Jev expects — closer to how you'd want production trace scoring to behave under enterprise data rules.

Gateway integration is complementary to Evaluators-tab online judges. Use Gateway when your harness calls Jev during the run (routing, gating, mid-loop checks). Use Evaluators when you post-score completed traces — including traces that never called Jev at inference time.

Where this sits next to LangSmith Tuned Evaluators

August's LangSmith Tuned Evaluators launch shipped a managed Perceived Error judge — post-trained, thread-oriented, optimized for conversational dissatisfaction signals with up to 82% cost reduction versus frontier LLM judges on LangChain's benchmark.

Jev is a different contract: you define the state and typed questions; TypeSafe runs the System One model; LangSmith stores feedback on traces. Tuned Evaluators are turnkey rubrics LangChain maintains. Perceived Error excels when you want a boolean "did this conversation go wrong?" with an explanation string attached. Jev excels when your product already knows the decision shape — compliance buckets, grounding checks, escalation labels — and you want that decision millions of times per month without a generative judge.

Reasonable production stack for a LangGraph team in September 2026:

  • Tuned Perceived Error (or similar managed judge) on thread samples for UX-level regression.
  • Jev online evaluators on high-volume, typed keys (PII, injection, pass/fail on tool use).
  • Code-based assertions in CI on golden datasets before deploy.
  • Human review on disagreements between Jev and Perceived Error — or on low-confidence Jev probabilities.

That is still the 60/30/10 spirit, with Jev eating part of the deterministic slice and part of what teams previously forced through LLM judges because code couldn't express the criterion.

Setup sketch (Evaluators + online evals)

LangChain's getting-started steps are short by design:

  1. Sign in to LangSmith and open a tracing project that already receives production (or staging) runs.
  2. Open the Evaluators tab → add an LLM-as-a-Judge-style evaluator → choose TypeSafe as the provider (Jev).
  3. Define state — typically the trace or message payload LangSmith already captured — and one or more typed questions matching your rubric.
  4. Configure online eval filters (which runs, sampling rate, idle windows) per LangSmith's online evaluators guide — same machinery as LLM judges, different payload schema.
  5. Wire feedback keys to dashboards or webhooks if you need automated response on safety-critical scores.

For harness-side Jev calls, route through LangSmith Gateway with TypeSafe in model policies so spans, guards, and costs align with evaluator feedback on the same project.

LangChain asks teams who try this to report back via their forum or X — treat first weeks as calibration, not as a deploy gate, until you have human-labeled agreement on your traces.

What people are asking

Is this only for LangChain / Deep Agents apps? LangSmith evaluators attach to traces, not to a specific framework. LangChain's docs and examples use Deep Agents because LangChain builds it, but any instrumented app sending runs to LangSmith can add a Jev evaluator — the constraint is whether your trace shape maps cleanly into Jev state, not which agent library you use.

Does LangSmith's Jev integration require langchain-typesafe? The benchmark used langchain-typesafe==0.0.1a2 (PyPI now lists 0.0.1a3 as of September 22, 2026). Evaluator configuration is UI/API-first in LangSmith; SDK packaging is relevant when you embed Jev in Python harness code alongside tracing.

How does this interact with Jev general availability? TypeSafe removed the waitlist on September 21 with $5 free credit — timing that lowers friction for BYOK Gateway setups the same week LangSmith productized Jev judges. GA on the TypeSafe side does not automatically imply enterprise SLA on LangSmith's integration; both are young September 2026 surfaces.

Will Jev replace Perceived Error or Tuned Evaluators? LangChain's own post says no — LLM judges remain for open-ended reasoning. Expect parallel judge types on the same project, not a single winner.

What should I measure before trusting online scores? Run a week of shadow mode: score traces with Jev but do not gate releases; sample disagreements against human review. Compare to your existing LLM judge on the same frozen traces the way LangChain's benchmark did — explainx.ai's benchmark breakdown is the template for what to log (oracle agreement, variance, cost).

Honest limitations

  • Domain transfer is unproven. LangChain's public numbers come from a five-example weather agent. Your RAG, coding, or multi-tool agent may not see the same accuracy or variance gap.
  • Typed questions require upfront design. Jev evals fail product-wise if your rubric was always prose-heavy; converting criteria to Choice/Score/Noul is engineering work, not a toggle.
  • Ecosystem concentration. Deep LangSmith investment pays off if you already trace in LangChain's stack; teams on other observability platforms still need export or duplicate instrumentation.
  • Alpha packaging. langchain-typesafe remains alpha semver; Gateway and Evaluator APIs may shift as TypeSafe and LangChain harden the integration.

What this means for builders

If you already pay for LangSmith tracing, Jev-as-a-judge is the first native decision-model path to denser online evals without multiplying frontier LLM judge spend. Start with one high-volume, bounded criterion — grounding, PII, or a single pass/fail gate — on a non-production project, calibrate against human labels, then widen sampling.

If you are still designing evals from scratch, read AI evals for engineers and PMs first (golden dataset before tooling), then add Jev where your rubric is genuinely typed — not as a replacement for human review or for criteria that need paragraph explanations.

For the underlying model economics and waitlist context, pair this with Jev general availability and the offline LangChain benchmark so product, cost, and lab evidence stay in separate mental buckets.

Related on explainx.ai

  • Jev vs LLM-as-Judge: LangChain's Offline Benchmark
  • Jev Is Now Open to Everyone — No Waitlist
  • How Does Jev Work? RLCD and System One Explained
  • AI Evals, Explained: What Engineers and PMs Need
  • LangSmith Tuned Evaluators: Perceived Error at 82% Lower Cost
  • How to Wire Jev Into Agent Routing (Gateway + TypeSafeClassifier)
  • Is Jev's Speed and Cost Claim Actually True?
  • LangChain Deep Agents v0.7 Harness
  • Official: Jev is now available in LangSmith Evals · Jev-as-a-Judge benchmark write-up · Building a harness with Jev

LangSmith Evaluator availability, Gateway policy behavior, and TypeSafe pricing on traced Jev calls reflect LangChain and TypeSafe published materials as of September 22, 2026. Calibrate Jev judges on your own production traces before using scores for automated deploy gates.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

View Yash Thakker in People in AI →

Related posts

Sep 22, 2026

SemIf on LangSmith Gateway: Free Decision AI Through Sept 28

LangChain added a Decision models category to the LangSmith LLM Gateway on September 22, 2026, with hosted SemIf (semif-qwen3.5-4b) free through September 28 on US Free, Developer, and Plus workspaces. Here's what SemIf is, how its authored144 benchmark fits the Jev ecosystem, and what you get versus bringing your own TypeSafe (Jev) key.

Sep 20, 2026

Jev vs LLM-as-Judge: LangChain Benchmarks Agent Evaluation

LangChain ran the same Deep Agents weather-tool traces through four judges — TypeSafe AI's Jev, GPT-5.6 Luna, GPT-5.6 Terra, and Claude Sonnet 4.6 — and measured accuracy against a human oracle, per-case variance, cost, and latency. Jev matched the human oracle on all 500 repeated decisions at roughly 1/80,000th the cost of Claude.

Sep 21, 2026

DocJev: LlamaIndex's Jerry Liu Puts Jev on Document Classification and Splitting

Jerry Liu, LlamaIndex's cofounder and CEO, released DocJev — an open-source library that hands document classification and document-splitting decisions to Jev instead of a general-purpose LLM. The published benchmark shows classification dropping from 794ms to 138.6ms median latency, but a replier's qualifier about the accuracy pilot's small sample size is worth reading before trusting it unattended.