Skip to content

Jev Alternatives: Open-Source and LLM Options

Last checked · Independent guide, not affiliated with TypeSafe AI

ANSWER

There is no open-weights Jev. The closest alternatives are community projects that copy its interface on small open models (SemIf, formerly OpenJev; jevlike; mini-jev), TypeSafe's own open-source adapter that answers the same questions with OpenAI or Anthropic models, and existing zero-shot classifiers such as GLiClass. None of them is the same model.

Within a week of Jev’s launch, developers had published several projects that imitate it. Most copy the interface: give the model some text and a set of options, and read back one probability per option in a single pass instead of generating an answer. None of them reproduces Jev’s model or training, which TypeSafe has not released.

Star counts and descriptions below were checked on September 19, 2026. Performance claims are the projects’ own; we have not benchmarked them.

Community projects that copy Jev’s interface

Section titled “Community projects that copy Jev’s interface”
Project What it is Runs on License
SemIf (formerly OpenJev) Reads typed option probabilities directly from open models (4B-class) instead of generating text; includes a browser demo using WebGPU A GPU that fits a 4B model, Apple Silicon via MLX, or the browser MIT
jevlike Trains a small scorer that picks among a changing list of text options in one pass; demos play Doom and chess CPU or GPU; trains your own checkpoint MIT
mini-jev Shows a Jev-style interface on a frozen Qwen3-4B by reading the option letter’s logits A GPU for the 4B model MIT

SemIf, with more than 1,600 GitHub stars, is the most popular of these. It renamed itself from OpenJev and states that it is not affiliated with TypeSafe. jevlike drew the biggest Hacker News discussion of the group when it was posted as a “reverse-engineered Jev-like model”.

Other experiments announced the same week include a Jev-compatible API running a diffusion model on Cloudflare Workers, a proposed Jev-like mode for DiffusionGemma in vLLM, and at least two Reddit posts announcing open-source versions of Jev, one of them claiming to beat Jev’s benchmarks. Treat those claims as unverified until they publish reproducible evaluations.

TypeSafe publishes system-one-adapter-python, an MIT-licensed package that mimics the official SDK’s system_one call but sends the questions to an LLM from OpenAI or Anthropic. Its stated purpose is comparing TypeSafe with an LLM on cost, speed and quality. It is also a convenient way to keep one codebase while you wait for access, as long as you accept LLM prices and latency.

Existing tools that solve similar problems

Section titled “Existing tools that solve similar problems”

Jev’s job, choosing among labels from a text description, is an old one. Before Jev, the usual options were:

  • Zero-shot classifiers such as GLiClass, which scores text against labels you provide without training. It predates Jev by two years; someone posted it to Hacker News as an open-source Jev.
  • An LLM with structured output, asking for one label in JSON. Flexible and easy, but slower, more expensive, and the “confidence” it reports is not a calibrated probability.
  • A small fine-tuned classifier trained on your own labeled examples. Fast and cheap at scale, but you need data and a retraining loop every time the labels change.

For a side-by-side of these trade-offs against Jev, see Jev vs classifiers and embeddings and Jev vs LLMs.

If you need Consider
The real Jev without waiting for TypeSafe OpenRouter, Vercel or Cloudflare; see How to get a Jev API key
Everything on your own hardware SemIf or mini-jev, accepting that they are research projects on smaller models
A model trained for one narrow task you have data for jevlike or a fine-tuned classifier
The same code path against an LLM for comparison TypeSafe’s system-one-adapter
Labels scored with no training and no API A zero-shot classifier like GLiClass

TypeSafe has not announced open weights, a paper or a local version as of September 19, 2026. See Is Jev open source?

Sources

  1. SemIf (formerly OpenJev) on GitHub
  2. jevlike on GitHub
  3. mini-jev on GitHub
  4. system-one-adapter-python (TypeSafe AI on GitHub)
  5. GLiClass (Knowledgator) on GitHub
  6. Reverse-engineered Jev-like model (Hacker News)