proomt

Search

Search posts, papers, and topics

All posts

Hacker News front page12 min readintermediate

OpenAI is well positioned to fast-follow Jev

Summary

The post argues OpenAI can quickly replicate TypeSafe’s Jev – a classifier‑style LLM that uses token‑level log‑probabilities – by training similar data and folding the capability into its own models, but notes the only real moat might be Jev’s synthetic training data and calibration process.

  • Jev treats classification as a single‑token probability lookup (e.g., true/false, choice options) using LLM log‑probs.
  • OpenAI already uses similar micro‑classifiers for tool calling, suggesting they could extend this to general classification.
  • Potential moat may lie in TypeSafe’s synthetic, highly curated training data and reinforcement‑learning pipeline, not the architecture.
  • If OpenAI integrates classification directly into LLMs (e.g., via a <prediction> tag), it could offer faster, cheaper decisions without external tool calls.

Understanding how LLMs can be repurposed as general classifiers informs product roadmaps for AI platforms and highlights the importance of data quality versus model architecture in building reliable decision‑making services.

4/10

Related reading

  1. TypeSafe AI's Jev now available on AI Gateway

    Vercel AI Gateway now offers Jev, a probabilistic decision model that returns typed choices, scores, and booleans instead of raw text. TypeSafe AI reports it runs up to 193× faster and 445× cheaper than standard LLMs, exposed via the experimental evaluate API in AI SDK 7.

    Vercelvercel.com2 minrelease
  2. Introducing System One Models and Jev

    TypeSafe AI announced its first “System One” model, Jev, a non‑text‑generating LLM that outputs type‑safe structured decisions with calibrated probabilities. It claims 40‑200× lower latency (70‑500 ms) and 100‑500× lower cost versus frontier LLMs, no hallucinations, and parallel sampling. The post includes a side‑by‑side demo, a custom “workflow” benchmark comparing Jev to GPT‑5.6/6 and other mod…

    Hacker News front pagetypesafe.ai9 minHN1824480lobste.rs26
  3. Jev is the fastest-adopted model in AI Gateway history

    Vercel reports that the Jev decision model was adopted by 13% of paid teams within its first day, outpacing prior model launches. Jev claims to be up to 194× faster and 445× cheaper than general‑purpose LLMs while returning structured, probabilistic decisions.

    Vercelvercel.com1 minHN21
  4. Reverse-engineered Jev-like model

    Jevlike is an open‑source starter model that scores a list of text options in a single forward pass. It provides a minimal architecture (option queries, shared dot‑product scorer), synthetic data generation, training/evaluation CLI, and examples on Doom and chess. The repo supports a byte‑level encoder or a frozen Hugging‑Face encoder (e.g., Qwen2.5‑0.5B), runs on CPU/MPS/CUDA, and reports benchm…

    Hacker News front pagegithub.com4 minreleaseHN16224