EvalSignal 013 / Independent agent analysis
Jev can make bounded AI decisions in milliseconds. Whether it makes an entire agent faster is a different question.
TypeSafe AI launched Jev with an unusually direct proposition: many software decisions do not need a language model to write anything. They need a fast choice among known options, a score, or a probability that ordinary code can use.
The early demonstrations are impressive. The early results are also inconsistent. Browser Use reports a materially faster browser loop. WebBrain reports little benefit on its broader workloads. Meanwhile, a 2.8 MB task-specific model has already beaten hosted Jev on one narrow form-filling evaluation.
Those results do not cancel one another out. Together, they tell us where Jev may actually matter.
Jev is TypeSafe AI's first System One model. It receives unstructured state plus questions whose possible output types are defined in advance. Instead of generating prose or JSON token by token, it returns typed decisions with probabilities and confidence scores.
In practical terms, Jev is designed for questions such as:
It is not a chat model, and it does not generate strings. TypeSafe reports 70–500 ms response times, an input price of $0.042 per million tokens, and no metered output-token cost. The company also says the output schema cannot contain type errors. These are meaningful properties, but they do not mean the chosen answer is always correct: type safety constrains the shape of a decision, not its truth.
For browser agents, that limitation creates an important architectural fact. Jev can choose an operation and target, but when the operation is “type text,” another model still has to write the value. The deployed system is therefore often a fast classifier-like decision model plus an LLM, not Jev replacing the LLM outright.
Two days after Jev's launch, Layton Gott highlighted a sharp counterexample: Cua had built a 706,048-parameter model with a 2.8 MB checkpoint that scored 99.7% on its form-filling evaluation, compared with 83.6% for hosted Jev.
The headline is real, but its scope matters. CUA-S1-FORMS was trained specifically to map document values onto form fields and choose among fill, check, click, and skip. Hosted Jev was used without task-specific fine-tuning. On decisions that required an action, Jev reportedly scored 96%; much of its deficit came from recognizing the benchmark's “skip an already-filled field” convention.
So a 700K-parameter model did not broadly defeat Jev. A specialist beat a general decision model on the specialist's home field. That is still important. It suggests Jev's most durable contribution may be the decision-model interface it popularizes, not an assumption that one hosted model should own every bounded decision.
Browser Use's open-source Jev Ultrafast project is the clearest positive browser result so far.
Its loop converts each page into an indexed table of visible controls. Jev chooses the operation and compatible target in one request. Screenshots are not part of the default decision loop, and a small LLM is called only when text has to be generated.
| Google Flights test | Baseline | Jev loop |
|---|---|---|
| Median task time | 9.450 s | 7.092 s |
| Browser protocol calls | 1,092 | 101 |
| Successful runs | 3 / 3 | 3 / 3 |
That is a 25% reduction in median task time and a large drop in browser calls. The project also documents the limitation clearly: three runs per version, one task, one browser profile. It is evidence that the architecture can work, not a general browser-agent benchmark.
WebBrain's Jev integration reached a different result. It uses Jev as an optional action sidecar over a bounded inventory of observed controls, while retaining the main model for screenshots, interpretation, text generation, unsupported controls, safety checks, stale-page recovery, and completion verification.
On those workloads, WebBrain did not see a meaningful speed improvement. The system still had to observe the page, construct Jev's state, make the remote decision, validate the result, and frequently call the main model afterward. The added classifier did not consistently avoid enough expensive work to pay for its own place in the loop.
WebBrain's description is blunt and useful: the practical design is classifier + LLM. Jev handles a supported decision when it can; the LLM remains the general planner, writer, visual interpreter, and verifier.
This does not show that Browser Use is wrong. Browser Use deliberately shaped a compact, screenshot-free loop around indexed actions. WebBrain tested Jev inside a broader loop whose difficult steps often survive the optimization. Different harnesses asked Jev to remove different amounts of work.
The same WebBrain release included a useful comparison: SafeSocial, a 13.6 MB local EfficientNet-Lite0 image classifier for selected social-comparison themes in Instagram images and video covers.
SafeSocial has a narrow label set: romance and jealousy, social FOMO, luxury and status, travel and lifestyle, body comparison, achievement, popularity, and exclusivity. It runs locally after a one-time download and can blur or hide a matching image until the user reveals it.
Unlike the Jev browser sidecar, this model does not participate in an open-ended planning loop. It sees an image, answers a fixed classification question, and stops. WebBrain reports that it works well for that narrow role.
The contrast is the lesson. Small models win most cleanly when they replace a bounded decision. They deliver less obvious value when they are inserted into a workflow that still needs the large model for the next step.
Is Jev good? For System One-shaped calls, probably yes. It offers a useful contract for fast choices, scores, routing, and verification. Typed outputs and explicit probabilities are better building blocks than asking a chat model to improvise JSON for every small branch.
Is Jev a proven universal accelerator for agents? No. The public browser evidence is promising but small, and another implementation has already shown that integration overhead and fallback frequency can erase the gain.
We would evaluate Jev with four measurements:
Jev may be the right general decision layer while a product is still discovering its recurring patterns. Once a high-volume decision becomes stable, CUA-S1-FORMS and SafeSocial point toward the next step: train a tiny specialist, run it locally where possible, and keep the larger model for ambiguity, language, and long-horizon reasoning.
That is less magical than replacing the agent's brain. It may also be the more important architecture.