101 Jev examples: a categorized directory

Platformization’s HackerNoon roundup collects 101 examples of people using Jev for bounded decisions. This directory condenses that list into categories with direct project links, so it is easier to find an implementation worth exploring. What is counted: 101 source entries, including 91 distinct GitHub repositories. The remaining entries include demos, articles, social posts, a package listing, and a non-GitHub repository. These are not 101 independently tested tools. Evidence status: the descriptions below report the roundup’s use cases. The individual implementations have not been audited or run for this directory. A listing is a research lead, not a recommendation; performance claims need their own checks. ...

September 21, 2026 · 13 min

Call Coach AI: Jev decisions during a live sales call

Call Coach AI is a work-in-progress sales-call assistant from ZeroGold. Its useful pattern is not a model generating a stream of sales advice: Jev supplies typed judgments, and a local playbook decides which suggestion to show the human representative. One request, several narrow judgments The inspected server.mjs sends the conversation as state.sales_call_transcript, along with the questions in schema.json, to TypeSafe’s /v1/systemone endpoint. The API key stays on the server. The schema asks for: ...

September 21, 2026 · 3 min

How to Build Things with Jev and OpenJevs — Sam Witteveen

Sam Witteveen turns Jev’s typed decisions into a working model-router demonstration: a local endpoint chooses between small local models, cloud models, and image generation. He then replaces the hosted decision service with Semif, an open alternative running locally, to address the privacy problem in sending a sensitive prompt to a cloud classifier. ...

September 21, 2026 · 5 min

What Is Jev? The AI That Can't Talk Back — Nate B Jones

Nate B Jones, on AI News & Strategy Daily, argues that Jev matters precisely because it cannot write a response: it interprets complicated inputs and returns choices, scores, and probabilities. His focus is how to spot a Jev-shaped problem, not how to replace every LLM call. ...

September 21, 2026 · 6 min

Jev Is the First of a Whole New Class of AI Models — Cole Medin

Cole Medin walks through his experiments with Typesafe AI’s Jev, then surveys community projects and addresses the objection that it is just another classifier. His practical argument: reserve language models for generating and reasoning, and use a decision-focused model for the many small choices between those steps. ...

September 21, 2026 · 4 min

Open Jev Models Are Here!! — Sam Witteveen

Sam Witteveen surveys seven open projects inspired by Jev and demonstrates how fast, structured decisions can run locally. These are independent Jev-style implementations, not a release of TypeSafe’s actual Jev weights. His comparisons are a snapshot of a rapidly changing ecosystem, with compute sponsored by Dell. ...

September 20, 2026 · 5 min

Jev + Claude Code = The Cheapest Agentic Coding Loop Yet — Ray Amjad

Ray Amjad shows how TypeSafe’s Jev could give Claude Code and Codex a cheap, fast decision layer. The video mixes hands-on demonstrations, other developers’ reported results, and ideas he still plans to test—not a controlled benchmark establishing the title’s “cheapest” claim. A classifier, not another text generator Jev takes a prompt, data, and predefined answers, then returns probabilities rather than writing a response token by token. Amjad calls it a smart switch statement: ordinary code decides what happens after the model scores the options. Bool evaluates a yes/no question. Choice selects among named options. Score places an input along an ordered, explicitly described rubric. His invoice demo shows why criteria matter: adding specific fraud signals changes the score. Repeated calls produce similar, but not identical, probabilities. His scoring examples cover sales-lead quality and log severity. He describes up to 255 choice options and up to 11 rubric positions for scoring in the version demonstrated. Several questions can share an input: a code diff can be checked for task completion, weakened tests, verification quality, and risk in one request. Fast decisions and deliberate planning do different jobs Amjad uses “System 1” for fast, reflex-like classification and “System 2” for slower planning and reasoning. The point is to combine them, not replace the latter. A fast layer can make frequent bounded decisions; a reasoning model can review outcomes and revise its criteria, examples, or thresholds. His trading-bot example illustrates low-latency action selection, not a demonstrated profitable strategy. He explicitly discourages treating it as a trading recommendation. The integrations discussed use TypeSafe’s service and an API key. Running a controller or browser on a local machine does not mean TypeSafe’s Jev weights are running locally. Minecraft makes the division of labor visible Amjad sets the overall goal: build shelter and obtain a diamond pickaxe. A reasoning model plans the strategy and reviews progress every two minutes and after significant setbacks or milestones. Jev chooses immediate tasks and tactics from the current state: health, hunger, time of day, mining progress, recent events, and available actions. A controller mod performs the physical movements. The run progresses through shelter and tools, pauses to survive the night and heal, obtains a diamond pickaxe, and eventually reaches the Nether. This is a layered agent demonstration, not Jev independently inventing a plan or controlling the game without supporting software. Select skills before filling the context window Large skill libraries can consume substantial context just by exposing every description. Amjad proposes using Jev to identify relevant skills before loading them into the main agent. He cites TypeSafe’s skill-suggestion cookbook: for a Hermes setup with 182 skills and Haiku 4.5, the reported wrong-skill rate falls from 17% to 7.3% with Jev suggestions. His proposed benefit is less irrelevant material in the main model’s context, as well as better routing. Those percentages belong to the cited example, not every agent or skill library. Browser verification as a cheap feedback loop Amjad highlights a browser-use demonstration reported to find a flight in roughly seven seconds for about 0.4 cents. He uses it to motivate rapid checks of application user flows. The proposed loop is: a coding agent implements a feature, a Jev-powered browser agent checks it, and the reasoning model fixes the failures. The reasoning model can also revise the browser agent’s options and criteria. He discusses another team’s parallel adversarial-browser testing and imagines running many such checks per pull request or continuously. Those large-scale testing costs are projections and third-party reports; he says he intends to test the approach himself. Browser and sandbox compute may become the limiting expense even when model calls are cheap. Audit comments before paying an agent to rewrite them Comment accuracy and usefulness are separate: “multiply by two” can accurately describe a line while adding no useful explanation. Amjad supplies the TypeSafe skill and asks his coding agent to propose criteria, obtain his approval, run a small sample, and estimate the full cost before expanding the work. The displayed sample analyzes 150 comments in 9.3 seconds for about one cent. The agent estimates roughly 57 cents to analyze the whole codebase and a shortlist of around 1,700 comments to improve. Classification creates the shortlist; separate coding agents would do the rewriting. The full-codebase figures are estimates, not a completed rewrite demonstrated in the video. Qualitative linters and code-smell screening A qualitative linter asks questions conventional syntax checks struggle to express: does a function name describe its side effects, or does a log statement expose sensitive information? Amjad proposes cheap checks on every pull request, with different handling for secrets, financial values, and personal information. For code smells—design warning signs such as duplication, dead code, or unexplained constants—his agent separates checks suitable for static analysis from questions worth sending to Jev. The agent estimates an exhaustive classification pass at 28 million input tokens and $1.19. Amjad acknowledges that Jev cannot find every kind of code smell. His refinement loop starts small, reviews the classifier’s decisions with a stronger model, revises the rubric, and runs again. This is adjustment of instructions and criteria, not a demonstrated retraining of Jev’s weights. Code review: screen broadly, investigate selectively Amjad points to Jev Review as an example of asking many inexpensive questions about a diff and forwarding important findings to a coding agent. His own agent suggests this could substantially reduce how much a full reviewer must read; the claimed tenfold reduction is a proposal, not a measured end-to-end result in this video. He imagines codebase-specific “reflexes”: invariants, security questions, compatibility checks, and rubrics applied to each pull request. Broad screening would trigger narrower follow-up questions and specialist review. He cites a Sentry engineer’s report of faster, cheaper classification with high accuracy on one security pipeline. That is supporting evidence from a particular workload, not proof that Jev replaces comprehensive security review. The pattern to test Keep reasoning, implementation, and difficult diagnosis with the coding agent. Give the classifier narrow questions, explicit allowed outcomes, and a clear path for escalating findings. Use cheap coverage to identify where expensive attention is worthwhile: skills, comments, suspicious code, risky changes, or failing browser flows. Amjad’s larger prediction is that coding agents will increasingly combine fast decision models with deliberate reasoning models. His concrete starting point is a small measured trial before trusting a broad automated workflow.

September 18, 2026 · 5 min

Jev: The Ultimate Classification Model? — Sam Witteveen

Sam Witteveen explores Jev as a fast classification service rather than a conversational model. His demos cover the basic decision types, support routing, content checks, and tool selection; his closing analysis is careful about what Typesafe has—and has not—disclosed. Why small software decisions need a different interface Witteveen contrasts slow, deliberate System 2 reasoning with the fast System 1 decisions invoked by Jev’s branding. Many software tasks are modest: classify a support ticket, detect urgency, or check whether an agent output breaks a rule. Generating a long answer before returning a label can add unnecessary latency. He introduces Typesafe founder Diogo Almeida through his work on InstructGPT and presents the company’s motivating question: why has improvement in chat not translated into more automation? The product premise is that software often needs a usable value, not a paragraph it must interpret. State plus typed questions The state is the material to judge, such as a ticket, log, or agent trace. Questions specify the decisions to make about it. Choice: select from supplied options, returning the choice and probabilities for the alternatives. Score: rate the state against an ordered scale defined by the caller. Yes/no probability: estimate whether a statement or condition is true. The transcript and description spell the name of this third type inconsistently; its behavior is the important distinction here. Rather than asking one broad question such as whether a startup pitch is good, Witteveen suggests smaller questions about feasibility and market type. Ordinary application code can then combine the results and adjust thresholds. He contrasts these outputs with asking a language model to write a confidence number into JSON. A generated number alone does not demonstrate calibrated probability; the demos also do not independently establish Jev’s calibration. Basic tests: language, sentiment, and question detection Language classification: examples identify French and romanized Thai, the latter avoiding the easy clue of Thai script. Sentiment scoring: a scale from zero to two separates negative, mixed, and positive examples. Repeated calls produce slightly different scores and confidence values. Question detection: the demo includes questions without question marks and short, ambiguous inputs. Witteveen observes lower confidence on some underspecified phrases. These are useful spot checks, not a representative evaluation set. The visible variation is also a reminder that structured decisions are not necessarily deterministic decisions. Practical classification tasks A duplicate-charge complaint routes to billing; a sales query routes to sales. A more ambiguous support message produces less confidence and an unclear classification. The same support state can be assessed for refund requested and time sensitivity. Adding urgent wording changes the urgency result without requiring a different workflow. Witteveen also tries injection-like text and sarcasm, and describes promising results on code-safety judgments, personally identifiable information, and spam detection. Those examples do not establish adversarial robustness or certify code safety. They show candidate tasks for further testing. Selecting a tool is not calling a tool Jev can choose which tool should handle a request, but Witteveen emphasizes that this is not the same as extracting the arguments and issuing a complete function call. The application still needs another component to construct the tool input and execute it. He also runs a sequence of 20 tasks, reporting a total cost just over one-twentieth of a cent. Some could have run in parallel; the point is how inexpensive a chain of small classifications can be. At recording time, he quotes OpenRouter pricing of 4.2 cents per million input tokens and no output-token charge. That is historical pricing reported in the video, not a current price check. What is known about the model—and what is speculation Witteveen says Typesafe advertises a new architecture, a parallel sampler, and reinforcement learning for calibrated decisions (RLCD). He also says the launch material provides no paper or architecture diagram explaining those mechanisms in detail. His idea that a transformer might use its input-processing stage to feed classification or regression heads is explicitly a hypothesis, not a disclosed implementation. He quotes a roughly 70–500 millisecond decision range and links the speed argument to avoiding sequential text generation. Network round-trip time still affects application latency. “Cannot hallucinate” needs a narrow reading Witteveen interprets the claim as an output constraint: no malformed JSON, invented tool names, or answers outside the supplied schema. That does not prevent the model from selecting the wrong allowed answer. Format validity and decision quality are different properties. He cites Doom gameplay as an illustration of rapid repeated choices and reports an example cost of about $7 per hour at ten queries per second. This capture has not reproduced that workload or its billing. His practical recommendation is to compare Jev with existing classification approaches, including task-specific BERT models, on the actual use case—not assume the demonstrations settle the question. The open question Witteveen wonders whether general-purpose decision models will reduce the need to fine-tune small classifiers and predicts interest in open-source alternatives. Both are forward-looking judgments. He closes by asking for failure cases as well as successes: where does Jev not work, and which tasks expose its limitations? This post is an outline of the full transcript, checked against the video’s title, channel, description, and original publication timestamp. It does not independently verify the vendor’s speed, calibration, or architecture claims.

September 18, 2026 · 5 min

Jev CEO: What's Next After RLHF — Diogo Almeida

Diogo Almeida, a co-author of InstructGPT, ChatGPT, and GPT-4, makes the case for a different target for post-training: reliable automation rather than a satisfying interaction. In this roughly 18-minute AI Engineer talk, the TypeSafeAI/Jev CEO explains why he considers Claude Code part of the assistance era—and sketches, without disclosing its mechanism, the alternative his team is building. ...

July 31, 2026 · 5 min