Back to News
RSS feedmlnotes.substack.com

Jev Introduces a Fast, Type-Safe Alternative to Conversational AI Workflows

Summary

The article examines TypeSafe AI’s Jev, a non-generative model designed to make bounded software decisions rather than produce conversational text. Jev accepts unstructured state together with typed questions and returns choices, continuous scores, or calibrated probabilities in roughly 70 to 300 milliseconds. Its three primitives, Choice, Score, and Noul, can be evaluated concurrently in one API call, leaving policy and execution to deterministic application code. The article contrasts this design with prompting autoregressive language models to emit JSON, which can introduce latency, parsing failures, schema drift, and unexpected keys. It presents a 50-prompt benchmark using safety-related fields across TypeSafe’s hosted Jev, a quantized Qwen 2.5 1.5B model with parallel constrained decoding on Apple Silicon, and the same model generating JSON autoregressively. The local parallel system was reported as 3.2 times faster, required 96.8% fewer forward passes, and matched the local autoregressive decision on 47 of 50 prompts. The hosted Jev reached 84.0% accuracy, 90.9% precision, one false positive, and a Brier score of 0.1096, compared with about 52% accuracy and 16 false positives for the untuned local model. The article also describes a schema failure in which the autoregressive baseline produced irrelevant keys, while constrained decoding could not emit undeclared fields. It discusses possible uses in lossless coding-agent context compaction, sub-150-millisecond guardrails, and real-time control loops. Its central argument is architectural: conversational or reasoning models remain suited to dialogue and complex synthesis, while fast bounded models can supply frequent semantic judgments inside deterministic software systems.