<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>AI Model on TorchTree</title>
        <link>https://torchtree.com/en/tags/ai-model/</link>
        <description>Recent content in AI Model on TorchTree</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <copyright>TorchTree Co., Ltd.</copyright>
        <lastBuildDate>Wed, 23 Sep 2026 10:30:00 +0800</lastBuildDate><atom:link href="https://torchtree.com/en/tags/ai-model/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>What Is the Decision Model Jev?</title>
        <link>https://torchtree.com/en/post/jev-decision-model/</link>
        <pubDate>Wed, 23 Sep 2026 10:30:00 +0800</pubDate>
        
        <guid>https://torchtree.com/en/post/jev-decision-model/</guid>
        <description>&lt;p&gt;On September 15, 2026, TypeSafe AI released Jev, a model that generates no natural-language text at all. It takes a state and a set of predefined questions, and returns typed answers with probabilities for software to consume directly. The same day the company announced a $40 million seed round. Within a week its API briefly went down under load, and Cloudflare, Vercel, LangChain, and Pydantic all added integrations.&lt;/p&gt;
&lt;p&gt;This article covers the topic in five parts: what it is, the team and technology, performance and pricing, ecosystem adoption, and limitations.&lt;/p&gt;
&lt;h2 id=&#34;what-jev-is&#34;&gt;What Jev Is
&lt;/h2&gt;&lt;p&gt;Jev is a proprietary model built by TypeSafe AI, currently at version jev-1.13.0 and available in early access. It belongs to a new category TypeSafe calls System One models, named after the fast, intuitive System 1 in Kahneman&amp;rsquo;s &lt;em&gt;Thinking, Fast and Slow&lt;/em&gt;. Simon Willison and Maggie Appleton among others argue that &amp;ldquo;decision models&amp;rdquo; is the more accurate name.&lt;/p&gt;
&lt;p&gt;A Jev request has two parts:&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Part&lt;/th&gt;
          &lt;th&gt;Content&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;state&lt;/td&gt;
          &lt;td&gt;A string, JSON object, or array of text describing the current situation&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;questions&lt;/td&gt;
          &lt;td&gt;One or more typed questions about that state&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The model evaluates every question against the state in a single parallel pass. Answer structures are defined in advance, and every answer carries a probability distribution and a confidence score. The model cannot return a value outside the supplied schema. TypeSafe therefore claims hallucination and type errors do not apply, with type errors being mathematically impossible.&lt;/p&gt;
&lt;h3 id=&#34;three-question-primitives&#34;&gt;Three Question Primitives
&lt;/h3&gt;&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Primitive&lt;/th&gt;
          &lt;th&gt;Purpose&lt;/th&gt;
          &lt;th&gt;Returns&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Choice&lt;/td&gt;
          &lt;td&gt;Pick one option from a set&lt;/td&gt;
          &lt;td&gt;Selected option, per-option probabilities, confidence&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Score&lt;/td&gt;
          &lt;td&gt;Rate the state against ordered levels&lt;/td&gt;
          &lt;td&gt;Score, per-level distribution, confidence&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Noul&lt;/td&gt;
          &lt;td&gt;Evaluate a yes/no statement&lt;/td&gt;
          &lt;td&gt;Probability between 0 and 1&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The name Noul comes from Bernoulli, as the company&amp;rsquo;s CEO confirmed on Hacker News.&lt;/p&gt;
&lt;h3 id=&#34;division-of-labor-with-llms&#34;&gt;Division of Labor with LLMs
&lt;/h3&gt;&lt;p&gt;TypeSafe positions the split this way: LLMs handle open-ended reasoning and text generation, Jev handles fast structured judgment inside a pipeline. The company&amp;rsquo;s launch post summarizes the difference in a comparison table.&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Dimension&lt;/th&gt;
          &lt;th&gt;Frontier LLM&lt;/th&gt;
          &lt;th&gt;Jev&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Training&lt;/td&gt;
          &lt;td&gt;RLHF / RLVR&lt;/td&gt;
          &lt;td&gt;RLCD&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Output&lt;/td&gt;
          &lt;td&gt;Strings requiring parsing and validation&lt;/td&gt;
          &lt;td&gt;Typed structured values&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Sampling&lt;/td&gt;
          &lt;td&gt;Autoregressive, token by token&lt;/td&gt;
          &lt;td&gt;Single parallel pass&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Input price&lt;/td&gt;
          &lt;td&gt;$0.20 to $10 / MTok&lt;/td&gt;
          &lt;td&gt;$0.042 / MTok&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Output price&lt;/td&gt;
          &lt;td&gt;~5x the input rate&lt;/td&gt;
          &lt;td&gt;Free&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;End-to-end latency&lt;/td&gt;
          &lt;td&gt;3 to 329 seconds&lt;/td&gt;
          &lt;td&gt;70ms to 500ms&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;team-and-technology&#34;&gt;Team and Technology
&lt;/h2&gt;&lt;p&gt;TypeSafe AI was founded in 2024 by Diogo Almeida, Erik Gafni, and Sasha Sheng, is based in San Francisco, and worked in stealth for roughly two years. Almeida spent about four years at OpenAI on RLHF, InstructGPT, ChatGPT, and GPT-4. He told TechCrunch he left because conversational models, for all their power, were not useful for automation. &amp;ldquo;We have been optimizing for human language, but computers speak a different language.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Public technical details are limited:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Architecture&lt;/strong&gt;: transformer-based, with no published weights, architecture details, or technical paper. Outside observers suspect it is built on top of an open-weight LLM.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Training data&lt;/strong&gt;: entirely synthetic. Almeida called the bet on synthetic data one of the best he has made, &amp;ldquo;better than RLHF&amp;rdquo;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Training method&lt;/strong&gt;: RLCD (Reinforcement Learning for Calibrated Decisions), optimizing for calibrated probabilities against outcomes rather than human rater preference.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sampling&lt;/strong&gt;: a parallel sampler produces all outputs in one query instead of autoregressive generation.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The model is named after the 19th-century British economist William Stanley Jevons. Jevons paradox describes how more efficient use of a resource can increase total consumption, and TypeSafe expects machine intelligence to follow the same path, with each order of magnitude drop in cost unlocking orders of magnitude more use cases.&lt;/p&gt;
&lt;h2 id=&#34;performance-and-pricing&#34;&gt;Performance and Pricing
&lt;/h2&gt;&lt;p&gt;The official figures:&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Metric&lt;/th&gt;
          &lt;th&gt;Value&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Input price&lt;/td&gt;
          &lt;td&gt;$0.042 / MTok ($42 per billion tokens)&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Output price&lt;/td&gt;
          &lt;td&gt;Free&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;End-to-end latency&lt;/td&gt;
          &lt;td&gt;70ms to 500ms&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Claimed speedup&lt;/td&gt;
          &lt;td&gt;40x to 200x faster and 40x to 400x cheaper typically, peaking at 193.6x faster and 444.6x cheaper&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;For reference, OpenAI&amp;rsquo;s GPT-5 Nano charges $0.05 per million input tokens, which is still higher than Jev.&lt;/p&gt;
&lt;h3 id=&#34;caveats-on-the-numbers&#34;&gt;Caveats on the Numbers
&lt;/h3&gt;&lt;p&gt;TypeSafe itself annotated the boundaries of these claims in its launch post:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The 193.6x and 444.6x figures come from workflow evals whose workflows were designed by members of the company&amp;rsquo;s model capabilities team, which the company acknowledges could introduce bias.&lt;/li&gt;
&lt;li&gt;Reference answers are the average of GPT-6 Astra and Fable 5.1, which the company acknowledges skews answers toward OpenAI and Anthropic models.&lt;/li&gt;
&lt;li&gt;The company describes the reported gains as sitting at the high end of real-world results.&lt;/li&gt;
&lt;li&gt;Independent outlet ts2.tech titled its coverage to note that the 445x cost claim is still self-tested, with no third-party replication.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Two claims are easier to verify directly: latency and pricing are transparent, and the absence of type errors is guaranteed mathematically.&lt;/p&gt;
&lt;h2 id=&#34;ecosystem-and-adoption&#34;&gt;Ecosystem and Adoption
&lt;/h2&gt;&lt;p&gt;Adoption within the first week:&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Type&lt;/th&gt;
          &lt;th&gt;Project&lt;/th&gt;
          &lt;th&gt;Detail&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Platform&lt;/td&gt;
          &lt;td&gt;Cloudflare Workers AI&lt;/td&gt;
          &lt;td&gt;models/typesafe/jev&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Platform&lt;/td&gt;
          &lt;td&gt;Vercel&lt;/td&gt;
          &lt;td&gt;Command safety review classifier&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Framework&lt;/td&gt;
          &lt;td&gt;LangChain&lt;/td&gt;
          &lt;td&gt;langchain-typesafe package&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Framework&lt;/td&gt;
          &lt;td&gt;Pydantic&lt;/td&gt;
          &lt;td&gt;TypeSafeModel&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Tooling&lt;/td&gt;
          &lt;td&gt;Simon Willison&lt;/td&gt;
          &lt;td&gt;llm-typesafe plugin for the LLM CLI&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Open recreation&lt;/td&gt;
          &lt;td&gt;Kev&lt;/td&gt;
          &lt;td&gt;0.8B / 4B / 9B built on Qwen 3.5&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Benchmark&lt;/td&gt;
          &lt;td&gt;JevBench&lt;/td&gt;
          &lt;td&gt;Compares Jev-class decision models&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Three concrete cases:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Vercel&lt;/strong&gt;: engineer Pranit Sharma reported replacing ChatGPT Luna 5.6 with Jev for a command safety review classifier, running 5 to 18 times faster with higher accuracy.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bryo AI&lt;/strong&gt;: CTO Nikhil Mudholkar tested Jev against Gemini on business email classification. Gemini was slightly more accurate but 10 to 20 times more expensive. He highlighted Jev&amp;rsquo;s confidence score as &amp;ldquo;the only one that hands back a real probability&amp;rdquo;, which makes it suitable for automated workflows.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;LangChain official examples&lt;/strong&gt;: model routing by request complexity, and AutoModeMiddleware, which uses Jev to classify tool-call risk before bash executes.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Community experiments appeared quickly, including jevchat generating chat text symbol by symbol, jev-leftpad implementing left-pad with a Choice question, and jev-2048 playing the 2048 puzzle. Open recreations and a dedicated benchmark within one week indicate real developer demand to validate the direction.&lt;/p&gt;
&lt;p&gt;Armin Ronacher, CTO of Earendil, expects competitors to follow. &amp;ldquo;LLMs are so cheap and subsidized that you often don&amp;rsquo;t have to be creative yet.&amp;rdquo;&lt;/p&gt;
&lt;h2 id=&#34;limitations-and-controversies&#34;&gt;Limitations and Controversies
&lt;/h2&gt;&lt;h3 id=&#34;a-deeper-black-box&#34;&gt;A Deeper Black Box
&lt;/h3&gt;&lt;p&gt;This is the core criticism in Simon Willison&amp;rsquo;s review. An LLM at least produces an explanation, unreliable as it may be. Jev returns a single floating-point number with no visible reasoning. Willison explicitly argues against using Jev to rank job applicants, since the number could conceal bias baked into training data. In his Bay Area city experiment, Jev rated Cupertino best and East Palo Alto last, a suspicious result.&lt;/p&gt;
&lt;h3 id=&#34;calibration-responsibility-moves-to-the-user&#34;&gt;Calibration Responsibility Moves to the User
&lt;/h3&gt;&lt;p&gt;Armin Ronacher&amp;rsquo;s framing is that Jev &amp;ldquo;delegates the hallucination problem a little bit to the user&amp;rdquo;. A 50% probability means the caller decides whether to act on it, and only a high value such as 95% justifies action. The model owns uncertainty, the code owns business policy, and adjusting thresholds needs no retraining, but where to set them is the human&amp;rsquo;s responsibility.&lt;/p&gt;
&lt;h3 id=&#34;weaknesses-the-vendor-acknowledges&#34;&gt;Weaknesses the Vendor Acknowledges
&lt;/h3&gt;&lt;p&gt;The official jaggedness documentation for Jev 1.13 flags:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Numbers and dates&lt;/li&gt;
&lt;li&gt;Adversarial content&lt;/li&gt;
&lt;li&gt;CJK (Chinese, Japanese, Korean) characters, with accuracy significantly lower than English&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The CJK point matters directly for Chinese-language use cases, which should be validated against in-house data before adoption.&lt;/p&gt;
&lt;h3 id=&#34;zero-reproducibility&#34;&gt;Zero Reproducibility
&lt;/h3&gt;&lt;p&gt;No technical paper, no public architecture, no third-party benchmark replication. The core performance numbers all come from vendor self-tests. The company acknowledges evaluation bias in its blog, but the conclusions still rest on self-reported evidence.&lt;/p&gt;
&lt;h2 id=&#34;a-decision-framework&#34;&gt;A Decision Framework
&lt;/h2&gt;&lt;p&gt;Three questions to judge whether a task fits Jev:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Can the task be expressed as classification, scoring, or a boolean test?&lt;/strong&gt; If yes it fits; if it needs open-ended generation it does not.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;How does the downstream consume the probability?&lt;/strong&gt; The caller needs an explicit threshold policy, otherwise the probability never turns into action.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;How much of the input is Chinese?&lt;/strong&gt; The CJK weakness is a vendor-acknowledged limitation, so Chinese-heavy data needs its own evaluation first.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;sources&#34;&gt;Sources
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;TypeSafe AI launch post, &lt;a class=&#34;link&#34; href=&#34;https://typesafe.ai/blog/introducing-system-one-models-and-jev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://typesafe.ai/blog/introducing-system-one-models-and-jev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Wikipedia, Jev (AI model), &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/Jev_%28AI_model%29&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://en.wikipedia.org/wiki/Jev_(AI_model)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;TechCrunch (Sep 18, 2026), &lt;a class=&#34;link&#34; href=&#34;https://techcrunch.com/2026/09/18/a-new-kind-of-ai-model-from-a-chatgpt-inventor-is-thrilling-developers/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://techcrunch.com/2026/09/18/a-new-kind-of-ai-model-from-a-chatgpt-inventor-is-thrilling-developers/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Simon Willison review (Sep 21, 2026), &lt;a class=&#34;link&#34; href=&#34;https://simonwillison.net/2026/Sep/21/jev/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://simonwillison.net/2026/Sep/21/jev/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;LangChain tutorial (Sep 17, 2026), &lt;a class=&#34;link&#34; href=&#34;https://www.langchain.com/blog/building-a-harness-with-jev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://www.langchain.com/blog/building-a-harness-with-jev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;OSCHINA, &lt;a class=&#34;link&#34; href=&#34;https://www.oschina.net/news/502609/typesafe-ai-system-one-models-and-jev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://www.oschina.net/news/502609/typesafe-ai-system-one-models-and-jev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Forbes funding report (Sep 15, 2026), &lt;a class=&#34;link&#34; href=&#34;https://www.forbes.com/sites/the-prompt/2026/09/15/this-200-million-startup-wants-to-fix-ais-overconfidence-problem/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://www.forbes.com/sites/the-prompt/2026/09/15/this-200-million-startup-wants-to-fix-ais-overconfidence-problem/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;ts2.tech cost claim check, &lt;a class=&#34;link&#34; href=&#34;https://ts2.tech/en/typesafe-ai-raises-40-million-for-jev-but-its-445x-cost-claim-is-still-self-tested/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://ts2.tech/en/typesafe-ai-raises-40-million-for-jev-but-its-445x-cost-claim-is-still-self-tested/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
        </item>
        
    </channel>
</rss>
