A developer built a specialist System One model on an RTX 3070 by fine-tuning ModernBERT-base with LoRA adapters on banking, spam, and sentiment datasets, then distilled knowledge from Qwen2.5-7B using teacher logits. The model achieved 88.5% on banking intent classification and 98.9% on spam detection, with selective prediction reaching 99% accuracy on high-confidence examples.
Jev is a Large Language Model that generates a single token to answer classification questions, comparing user-provided data against predefined criteria. The article explains the technical mechanics of how such a system works and discusses similar projects that have emerged.
Jev is a classification model that promises zero-setup deployment without requiring labeled training data, unlike XGBoost or fine-tuned BERT models. Its genuinely novel aspects are RLCD training for calibrated confidence scores and skip-the-training-phase usability, though it trades some accuracy and per-inference cost advantages that established tools retain on stable, high-volume tasks.
A developer tested TypeSafe's Jev, a text-only language model, on a drawing-guessing task by converting doodles into SVG coordinates and base64-encoded images. Using 400 drawings from Google's Quick, Draw! dataset across ten object categories, they evaluated how well Jev could classify sketches despite being designed for text input only.
In November 2024, the author fine-tuned a small language model on r/SkincareAddiction comments and built a classifier to filter training data by usefulness, objectivity, and quality. The article explains different approaches to text classification—regex, vectorization, LLM prompting, and teacher-student distillation—with the author using the last method to label ~120,000 comments for training.
Laya-Vision is an open-source multimodal model that makes calibrated decisions about images with optional text, answering choice, score, and yes/no questions in a single forward pass without text generation. It replaces Laya's encoder with SmolVLM-256M-Instruct and maintains the original API and training methodology. The experimental model, trained on VQAv2, A-OKVQA, and ScienceQA datasets, achieves calibrated outputs with ~71ms latency on NVIDIA L4 hardware.
An analysis of Jev's architecture based on API probing reveals it uses a causal transformer with sparse MoE to replace text-based confidence claims with decision probabilities read directly from internal representations, enabling parallel outputs for classification tasks without generating text. The system addresses reliability and computational efficiency issues common in existing LLM-based fraud screening and moderation systems.
Jev, a TypeSafe AI decision model, evaluates structured state against typed questions and returns choices, scores, and probabilities without text generation. The AI SDK's experimental_evaluate API exposes Jev through the Vercel AI Gateway in TypeScript, enabling applications to route decisions—like support ticket departments or severity scores—based on model assessments while keeping business logic in code.
Diogo Almeida, an OpenAI researcher who helped invent RLHF, left the company to start Typesafe AI and released Jev, a non-LLM transformer model that outputs probabilities instead of text for software automation tasks. Jev is significantly faster and cheaper than existing LLMs while eliminating hallucinations, with developers reporting 5-20x performance improvements in classification and routing applications.
TypeSafe AI released Jev, a specialized model that answers typed questions in parallel without generating text, sparking rapid adoption in browser agents, trading, and robotics. Unlike general-purpose LLMs, Jev provides calibrated probabilities and schema-constrained outputs, representing a shift toward specialized decision primitives optimized for specific tasks rather than conversational AI.
A writeup describes internal experimentation with Jev, a new classifier model from TypeSafe AI designed for fast, instant classification rather than step-by-step reasoning. The post covers how Jev was integrated into elvex, a model-agnostic LLM harness, to enable new UX patterns like self-assembling interfaces and ambient classification, with practical examples including expense report classification and intelligent notification filtering.
A researcher reverse-engineered Jev, a decision-probability system by TypeSafe, through API probing and concluded it uses a causal transformer (likely sparse MoE) that outputs direct probabilities from internal representations rather than generating text-based confidence claims, enabling more reliable and efficient classification for applications like fraud screening and support routing.
An NLP practitioner criticizes OpenAI for prioritizing reasoning-heavy models and agents over efficient, cost-effective solutions for traditional text classification and entity extraction tasks. The author argues that GPT-5's mandatory reasoning features add latency and cost without benefiting simple NLP use cases, prompting consideration of alternative providers.
TypeSafe released Jev, an early-access model that answers structured questions with calibrated probabilities rather than generating text. The model uses RLCD training instead of RLHF to optimize for reliable predictions, costs $0.042 per million input tokens, and was tested on 24 Norwegian documents about salmon farming and tax policy.
Groundcover compares Jev, a specialized classification model by TypeSafe, with traditional generative LLMs for AI observability tasks. Jev uses a novel parallel-sampling architecture and reinforcement learning to classify agent success and user sentiment with calibrated probabilities, offering a more efficient alternative to token-by-token generation for trace enrichment.
Mini-Jev demonstrates an alternative to grammar-constrained JSON generation for structured classification on frozen language models. Instead of generating JSON tokens, the method reads next-token logits to classify against schema fields as multiple-choice options, achieving comparable quality while reducing decode costs on Qwen3-4B.
A developer uses local LLMs to evaluate e-commerce search relevance by comparing product attributes against human-labeled data from Wayfair's WANDS dataset. They test various prompting strategies—including forced decisions, consistency checking, and single-attribute analysis—to create a reliable laptop-based search judge that can guide relevance improvements without expensive API costs.
LLMs used directly as classifiers have significant limitations including poor calibration, inability to properly incorporate structured data, and lack of interpretability. The solution is to treat LLM outputs as features in traditional ML models like logistic regression, which recovers desirable properties like calibration, information integration, and interpretability.
A new DuckDB extension enables users to classify rows in CSV, Parquet files, or DuckDB tables using Jev. It processes approximately 1,000 rows in 10 seconds, offering faster performance than LLMs and better ergonomics than traditional classifiers for data analysis workflows.
TypeSafe AI introduced Jev, a specialized 'System One' model designed for fast, bounded decisions in production systems. Unlike general-purpose LLMs, Jev outputs typed probabilistic decisions directly rather than generating text, achieving significantly lower latency and cost for operational tasks like incident routing and severity assessment.