{"id":118934,"date":"2026-09-20T01:56:10","date_gmt":"2026-09-20T01:56:10","guid":{"rendered":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/"},"modified":"2026-09-20T01:56:10","modified_gmt":"2026-09-20T01:56:10","slug":"typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text","status":"publish","type":"post","link":"https:\/\/youzum.net\/es\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/","title":{"rendered":"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text"},"content":{"rendered":"<p class=\"wp-block-paragraph\">The ChatGPT moment in 2022 taught AI to talk to people. One of its builders now bets the next moment is AI that talks to software, not people. <a href=\"https:\/\/typesafe.ai\/\">TypeSafe AI<\/a> released <a href=\"https:\/\/typesafe.ai\/blog\/introducing-system-one-models-and-jev\">Jev<\/a>. Jev is transformer-based, but it is not a large language model. It does not generate text. You send a state and typed questions. It returns typed decisions with probabilities that code can branch on.<\/p>\n<p class=\"wp-block-paragraph\"><strong>Is it deployable?<\/strong> Yes, as a hosted API in early access behind a waitlist. TypeSafe has not published weights, a parameter count, or a self-hosting option.<\/p>\n<h2 class=\"wp-block-heading\"><strong>What is a System One Model?<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">The name borrows from Daniel Kahneman\u2019s split between fast intuition and slow reasoning. TypeSafe team argues RLHF tuned models for human preference. That produced chat, and overconfidence and mode dropping. Those flaws keep a human in the loop.<\/p>\n<p class=\"wp-block-paragraph\">Jev uses a new stack: a new architecture, a parallel sampler, and Reinforcement Learning for Calibrated Decisions (RLCD). TypeSafe has not disclosed the architecture. <\/p>\n<h2 class=\"wp-block-heading\"><strong>How the Jev API Works<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">One endpoint handles everything: <code>POST https:\/\/api.typesafe.ai\/v1\/systemone<\/code>. The body carries <code>state<\/code>, <code>model<\/code>, and a map of <code>questions<\/code>. The <a href=\"https:\/\/docs.typesafe.ai\/introduction\">docs<\/a> define 3 question types.<\/p>\n<figure class=\"wp-block-table\">\n<table class=\"has-fixed-layout\">\n<thead>\n<tr>\n<th>Primitive<\/th>\n<th>Asks<\/th>\n<th>Returns<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Choice<\/td>\n<td>Pick 1 option from a list<\/td>\n<td><code>choice<\/code>, <code>probabilities<\/code>, <code>confidence<\/code><\/td>\n<\/tr>\n<tr>\n<td>Score<\/td>\n<td>Rate against ordered levels<\/td>\n<td><code>score<\/code>, <code>probabilities<\/code>, <code>confidence<\/code><\/td>\n<\/tr>\n<tr>\n<td>Noul<\/td>\n<td>Is this statement true?<\/td>\n<td><code>noul<\/code>, a probability from 0 to 1<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p class=\"wp-block-paragraph\">Questions run in parallel and in isolation against the same state. TypeSafe says adding questions barely changes response time. A Choice supports up to 255 options.<\/p>\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\">\n<div class=\"control-language\">\n<div class=\"dm-buttons\">\n<div class=\"dm-buttons-left\">\n<div class=\"dm-button-snippet red-button\"><\/div>\n<div class=\"dm-button-snippet orange-button\"><\/div>\n<div class=\"dm-button-snippet green-button\"><\/div>\n<\/div>\n<div class=\"dm-buttons-right\"><a><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\">Copied<\/span><span class=\"dm-error-message\">Use a different Browser<\/span><\/a><\/div>\n<\/div>\n<pre class=\"no-line-numbers\"><code class=\"no-wrap language-php\">from typesafe_sdk import Choice, Noul, TypeSafeClient\n\nclient = TypeSafeClient()  # reads TYPESAFE_API_KEY\nr = client.system_one(\n    state=ticket,\n    questions={\n        \"department\": Choice(\n            instructions=\"Which team should handle this\",\n            criteria={\"billing\": \"Payment issues\", \"technical\": \"Bugs\"},\n        ),\n        \"is_urgent\": Noul(instructions=\"The message conveys urgency\"),\n    },\n)\nprint(r.answers[\"department\"].choice, r.answers[\"is_urgent\"].noul)<\/code><\/pre>\n<\/div>\n<\/div>\n<p class=\"wp-block-paragraph\">Install with <code>pip install typesafe-sdk<\/code> (Python 3.10 or later). A JavaScript SDK ships as <code>@typesafe-ai\/sdk<\/code>. The <a href=\"https:\/\/docs.typesafe.ai\/introduction\/quickstart\">quickstart<\/a> also covers cURL and an agent skill for Claude Code.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Confidence is the Product<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Every Choice and Score answer carries a <a href=\"https:\/\/docs.typesafe.ai\/confidence\">confidence<\/a> value from 0 to 1. TypeSafe derives it from the shape of the probability distribution. In the docs example, <code>billing<\/code> wins at 0.84. Confidence is only 0.596, because <code>technical<\/code> still holds 0.159.<\/p>\n<p class=\"wp-block-paragraph\">The docs suggest 3 paths. Act on high confidence. Review the middle. Send low confidence to a human. Thresholds should scale with the cost of a wrong action.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Pricing, Speed, and the Benchmark Fine Print<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Jev costs $42 per billion input tokens. TypeSafe quotes existing LLMs at $0.20 to $10 per 1M input tokens. In its recorded demo, Jev finished in 0.114s for $0.000081. GPT-5.6 Terra took 8.566s for $0.013880.<\/p>\n<p class=\"wp-block-paragraph\">The TypeSafe team claims it to be 193.6x faster and 444.6x cheaper. Those figures come from TypeSafe\u2019s own <a href=\"https:\/\/evals.typesafe.ai\/\">workflow evals<\/a>. <strong>But hold on here are some things to keep in mind:<\/strong><\/p>\n<ul class=\"wp-block-list\">\n<li>The reference answer is the average of GPT-6 Astra and Fable 5.1.<\/li>\n<li>TypeSafe\u2019s capabilities team wrote the workflows.<\/li>\n<li>TypeSafe expects these gains to sit at the high end of real use.<\/li>\n<li>TypeSafe says it cannot prove the price is unsubsidized.<\/li>\n<\/ul>\n<p class=\"wp-block-paragraph\">\u2018Zero hallucinations\u2019 means schema matching is guaranteed. The 0% figure is not empirical. Answers can still be wrong.<\/p>\n<h2 class=\"wp-block-heading\"><strong>What Developers are Building with Jev<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Community projects appeared within days of launch. <strong>Here are some examples:<\/strong><\/p>\n<ul class=\"wp-block-list\">\n<li><strong>Command safety<\/strong>: Vercel CEO <a href=\"https:\/\/x.com\/rauchg\/status\/2100307962262872105\">Guillermo Rauch<\/a> reported Jev up to 18x faster at p95 than GPT Luna, and more accurate. His post said the fx reviewer still ran on Luna. Engineer <a href=\"https:\/\/x.com\/fazxes\/status\/2100300097695232164\/photo\/1\">Pranit Sharma<\/a> shared the benchmark.<\/li>\n<li><strong>Email triage<\/strong>:Bryo AI CTO <a href=\"https:\/\/x.com\/nikhilmudholkar\/status\/2100604560335139083\">Nikhil Mudholkar<\/a> found Gemini slightly more accurate, but 10 to 20 times more expensive.<\/li>\n<li><strong>Browser agents<\/strong>: Browser Use\u2019s <a href=\"https:\/\/github.com\/browser-use\/jev-ultrafast\">jev-ultrafast<\/a> ran a Z\u00fcrich to London Google Flights search in 7.1 seconds (<a href=\"https:\/\/github.com\/browser-use\/jev-ultrafast\/blob\/main\/docs\/demo.mp4\">video<\/a>).<\/li>\n<li><strong>Phone agents<\/strong>: Droidrun\u2019s <a href=\"https:\/\/github.com\/droidrun\/mobile-jev\">mobile-jev<\/a> drove Uber on a real Android phone: 9 actions in about 21 seconds (<a href=\"https:\/\/github.com\/droidrun\/mobile-jev\/blob\/main\/docs\/media\/uber-demo.mp4\">video<\/a>). No booking was completed.<\/li>\n<li><strong>Video scoring<\/strong>: <a href=\"https:\/\/github.com\/ChetasLua\/jevmeter\">jevmeter<\/a> scores every sentence of a debate for about $0.05 (<a href=\"https:\/\/x.com\/chetaslua\/status\/2100473581251748216\">demo on X<\/a>).<\/li>\n<li><strong>Live typing<\/strong>: Steve Krouse\u2019s <a href=\"https:\/\/x.com\/stevekrouse\/status\/2100287368221659289\">Typewriter<\/a> updates 16 judgments as you type (<a href=\"https:\/\/typesafe-demo.val.run\/\">try it<\/a>).<\/li>\n<li><strong>Games<\/strong>: Jev <a href=\"https:\/\/github.com\/phyous\/tsai-sc\">completed StarCraft\u2019s first combat mission<\/a> (<a href=\"https:\/\/github.com\/phyous\/tsai-sc\/releases\/download\/v0.1.0\/jev-starcraft-strongarm.mp4\">video<\/a>). It also runs the guards in <a href=\"https:\/\/github.com\/AbdelStark\/heist-one\">heist-one<\/a> (<a href=\"https:\/\/github.com\/AbdelStark\/heist-one\/releases\/download\/v0.1.0\/heist-one-launch.mp4\">video<\/a>).<\/li>\n<li><strong>Agent guardrails<\/strong>: <a href=\"https:\/\/github.com\/leepokai\/jev-guard\">jev-guard<\/a> rates each tool call as deny, ask, or allow (<a href=\"https:\/\/github.com\/leepokai\/jev-guard\/raw\/main\/assets\/launch.mp4\">78-second video<\/a>).<\/li>\n<li><strong>Data and homes<\/strong>: <a href=\"https:\/\/github.com\/realZachi\/pg-jev\">pg-jev<\/a> adds plain-language filters to Postgres. <a href=\"https:\/\/github.com\/AboveColin\/HA-Jev\">HA-Jev<\/a> turns answers into Home Assistant entities.<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\">Interactive Explainer<\/h2>\n<p class=\"wp-block-paragraph\">\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n<ul class=\"wp-block-list\">\n<li>Jev outputs typed decisions with probabilities, not strings.<\/li>\n<li>3 primitives (Choice, Score, Noul) can share 1 request.<\/li>\n<li>Input costs $0.042 per 1M tokens. Output tokens are free.<\/li>\n<li>TypeSafe reports 70ms to 500ms end-to-end response times.<\/li>\n<li>The main benchmarks are vendor-run. Test on your own data.<\/li>\n<\/ul>\n<\/p><p class=\"wp-block-paragraph\">\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n<\/p><p class=\"wp-block-paragraph\">\n<\/p><p class=\"wp-block-paragraph\">Check out the <a href=\"https:\/\/typesafe.ai\/blog\/introducing-system-one-models-and-jev\"><strong>launch post<\/strong><\/a>, <a href=\"https:\/\/docs.typesafe.ai\/\"><strong>docs<\/strong><\/a>, and <a href=\"https:\/\/github.com\/typesafe-ai\/skills\"><strong>TypeSafe\u2019s GitHub<\/strong><\/a>. All credit goes to the researcher of this project. Also,\u00a0feel free to follow us on\u00a0<strong><a href=\"https:\/\/x.com\/intent\/follow?screen_name=marktechpost\" target=\"_blank\" rel=\"noopener\"><mark>Twitter<\/mark><\/a><\/strong>\u00a0and don\u2019t forget to join our\u00a0<strong><a href=\"https:\/\/www.reddit.com\/r\/machinelearningnews\/\" target=\"_blank\" rel=\"noopener\">150k+ML SubReddit<\/a><\/strong>\u00a0and Subscribe to\u00a0<strong><a href=\"https:\/\/magic.beehiiv.com\/v1\/f5e63dd4-5653-4f09-83e2-321a8b1ba526?email=%7B%7Bemail%7D%7D\" target=\"_blank\" rel=\"noopener\">our Newsletter<\/a><\/strong>. Wait! are you on telegram?\u00a0<strong><a href=\"https:\/\/t.me\/machinelearningresearchnews\" target=\"_blank\" rel=\"noopener\">now you can join us on telegram as well.<\/a><\/strong><\/p>\n<p class=\"wp-block-paragraph\">Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0<strong><a href=\"https:\/\/forms.gle\/MJjjVDPS7whH8Ngs6\" target=\"_blank\" rel=\"noopener\"><mark>Connect with us<\/mark><\/a><\/strong><\/p>\n<p>The post <a href=\"https:\/\/www.marktechpost.com\/2026\/09\/19\/typesafe-ai-releases-jev\/\">TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text<\/a> appeared first on <a href=\"https:\/\/www.marktechpost.com\/\">MarkTechPost<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>The ChatGPT moment in 2022 taught AI to talk to people. One of its builders now bets the next moment is AI that talks to software, not people. TypeSafe AI released Jev. Jev is transformer-based, but it is not a large language model. It does not generate text. You send a state and typed questions. It returns typed decisions with probabilities that code can branch on. Is it deployable? Yes, as a hosted API in early access behind a waitlist. TypeSafe has not published weights, a parameter count, or a self-hosting option. What is a System One Model? The name borrows from Daniel Kahneman\u2019s split between fast intuition and slow reasoning. TypeSafe team argues RLHF tuned models for human preference. That produced chat, and overconfidence and mode dropping. Those flaws keep a human in the loop. Jev uses a new stack: a new architecture, a parallel sampler, and Reinforcement Learning for Calibrated Decisions (RLCD). TypeSafe has not disclosed the architecture. How the Jev API Works One endpoint handles everything: POST https:\/\/api.typesafe.ai\/v1\/systemone. The body carries state, model, and a map of questions. The docs define 3 question types. Primitive Asks Returns Choice Pick 1 option from a list choice, probabilities, confidence Score Rate against ordered levels score, probabilities, confidence Noul Is this statement true? noul, a probability from 0 to 1 Questions run in parallel and in isolation against the same state. TypeSafe says adding questions barely changes response time. A Choice supports up to 255 options. Copy CodeCopiedUse a different Browser from typesafe_sdk import Choice, Noul, TypeSafeClient client = TypeSafeClient() # reads TYPESAFE_API_KEY r = client.system_one( state=ticket, questions={ &#8220;department&#8221;: Choice( instructions=&#8221;Which team should handle this&#8221;, criteria={&#8220;billing&#8221;: &#8220;Payment issues&#8221;, &#8220;technical&#8221;: &#8220;Bugs&#8221;}, ), &#8220;is_urgent&#8221;: Noul(instructions=&#8221;The message conveys urgency&#8221;), }, ) print(r.answers[&#8220;department&#8221;].choice, r.answers[&#8220;is_urgent&#8221;].noul) Install with pip install typesafe-sdk (Python 3.10 or later). A JavaScript SDK ships as @typesafe-ai\/sdk. The quickstart also covers cURL and an agent skill for Claude Code. Confidence is the Product Every Choice and Score answer carries a confidence value from 0 to 1. TypeSafe derives it from the shape of the probability distribution. In the docs example, billing wins at 0.84. Confidence is only 0.596, because technical still holds 0.159. The docs suggest 3 paths. Act on high confidence. Review the middle. Send low confidence to a human. Thresholds should scale with the cost of a wrong action. Pricing, Speed, and the Benchmark Fine Print Jev costs $42 per billion input tokens. TypeSafe quotes existing LLMs at $0.20 to $10 per 1M input tokens. In its recorded demo, Jev finished in 0.114s for $0.000081. GPT-5.6 Terra took 8.566s for $0.013880. The TypeSafe team claims it to be 193.6x faster and 444.6x cheaper. Those figures come from TypeSafe\u2019s own workflow evals. But hold on here are some things to keep in mind: The reference answer is the average of GPT-6 Astra and Fable 5.1. TypeSafe\u2019s capabilities team wrote the workflows. TypeSafe expects these gains to sit at the high end of real use. TypeSafe says it cannot prove the price is unsubsidized. \u2018Zero hallucinations\u2019 means schema matching is guaranteed. The 0% figure is not empirical. Answers can still be wrong. What Developers are Building with Jev Community projects appeared within days of launch. Here are some examples: Command safety: Vercel CEO Guillermo Rauch reported Jev up to 18x faster at p95 than GPT Luna, and more accurate. His post said the fx reviewer still ran on Luna. Engineer Pranit Sharma shared the benchmark. Email triage:Bryo AI CTO Nikhil Mudholkar found Gemini slightly more accurate, but 10 to 20 times more expensive. Browser agents: Browser Use\u2019s jev-ultrafast ran a Z\u00fcrich to London Google Flights search in 7.1 seconds (video). Phone agents: Droidrun\u2019s mobile-jev drove Uber on a real Android phone: 9 actions in about 21 seconds (video). No booking was completed. Video scoring: jevmeter scores every sentence of a debate for about $0.05 (demo on X). Live typing: Steve Krouse\u2019s Typewriter updates 16 judgments as you type (try it). Games: Jev completed StarCraft\u2019s first combat mission (video). It also runs the guards in heist-one (video). Agent guardrails: jev-guard rates each tool call as deny, ask, or allow (78-second video). Data and homes: pg-jev adds plain-language filters to Postgres. HA-Jev turns answers into Home Assistant entities. Interactive Explainer Key Takeaways Jev outputs typed decisions with probabilities, not strings. 3 primitives (Choice, Score, Noul) can share 1 request. Input costs $0.042 per 1M tokens. Output tokens are free. TypeSafe reports 70ms to 500ms end-to-end response times. The main benchmarks are vendor-run. Test on your own data. Check out the launch post, docs, and TypeSafe\u2019s GitHub. All credit goes to the researcher of this project. Also,\u00a0feel free to follow us on\u00a0Twitter\u00a0and don\u2019t forget to join our\u00a0150k+ML SubReddit\u00a0and Subscribe to\u00a0our Newsletter. Wait! are you on telegram?\u00a0now you can join us on telegram as well. Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0Connect with us The post TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text appeared first on MarkTechPost.<\/p>","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"pmpro_default_level":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_pvb_checkbox_block_on_post":false,"footnotes":""},"categories":[52,5,7,1],"tags":[],"class_list":["post-118934","post","type-post","status-publish","format-standard","hentry","category-ai-club","category-committee","category-news","category-uncategorized","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text - YouZum<\/title>\n<meta name=\"description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youzum.net\/es\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text - YouZum\" \/>\n<meta property=\"og:description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youzum.net\/es\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\" \/>\n<meta property=\"og:site_name\" content=\"YouZum\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DroneAssociationTH\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-20T01:56:10+00:00\" \/>\n<meta name=\"author\" content=\"admin NU\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin NU\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\"},\"author\":{\"name\":\"admin NU\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\"},\"headline\":\"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text\",\"datePublished\":\"2026-09-20T01:56:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\"},\"wordCount\":794,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"articleSection\":[\"AI\",\"Committee\",\"News\",\"Uncategorized\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\",\"url\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\",\"name\":\"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text - YouZum\",\"isPartOf\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#website\"},\"datePublished\":\"2026-09-20T01:56:10+00:00\",\"description\":\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\",\"breadcrumb\":{\"@id\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youzum.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yousum.gpucore.co\/#website\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"name\":\"YouSum\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yousum.gpucore.co\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\",\"name\":\"Drone Association Thailand\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"width\":300,\"height\":300,\"caption\":\"Drone Association Thailand\"},\"image\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/DroneAssociationTH\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\",\"name\":\"admin NU\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"caption\":\"admin NU\"},\"url\":\"https:\/\/youzum.net\/es\/members\/adminnu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text - YouZum","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youzum.net\/es\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/","og_locale":"es_ES","og_type":"article","og_title":"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text - YouZum","og_description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","og_url":"https:\/\/youzum.net\/es\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/","og_site_name":"YouZum","article_publisher":"https:\/\/www.facebook.com\/DroneAssociationTH\/","article_published_time":"2026-09-20T01:56:10+00:00","author":"admin NU","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"admin NU","Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#article","isPartOf":{"@id":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/"},"author":{"name":"admin NU","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c"},"headline":"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text","datePublished":"2026-09-20T01:56:10+00:00","mainEntityOfPage":{"@id":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/"},"wordCount":794,"commentCount":0,"publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"articleSection":["AI","Committee","News","Uncategorized"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/","url":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/","name":"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text - YouZum","isPartOf":{"@id":"https:\/\/yousum.gpucore.co\/#website"},"datePublished":"2026-09-20T01:56:10+00:00","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","breadcrumb":{"@id":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/youzum.net\/typesafe-ai-releases-jev-a-system-one-model-that-returns-typed-calibrated-decisions-instead-of-text\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youzum.net\/"},{"@type":"ListItem","position":2,"name":"TypeSafe AI Releases Jev: A System One Model That Returns Typed, Calibrated Decisions Instead of Text"}]},{"@type":"WebSite","@id":"https:\/\/yousum.gpucore.co\/#website","url":"https:\/\/yousum.gpucore.co\/","name":"YouSum","description":"","publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yousum.gpucore.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/yousum.gpucore.co\/#organization","name":"Drone Association Thailand","url":"https:\/\/yousum.gpucore.co\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","width":300,"height":300,"caption":"Drone Association Thailand"},"image":{"@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DroneAssociationTH\/"]},{"@type":"Person","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c","name":"admin NU","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","caption":"admin NU"},"url":"https:\/\/youzum.net\/es\/members\/adminnu\/"}]}},"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"admin NU","author_link":"https:\/\/youzum.net\/es\/members\/adminnu\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/youzum.net\/es\/category\/ai-club\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/youzum.net\/es\/category\/committee\/\" rel=\"category tag\">Committee<\/a> <a href=\"https:\/\/youzum.net\/es\/category\/news\/\" rel=\"category tag\">News<\/a> <a href=\"https:\/\/youzum.net\/es\/category\/uncategorized\/\" rel=\"category tag\">Uncategorized<\/a>","rttpg_excerpt":"The ChatGPT moment in 2022 taught AI to talk to people. One of its builders now bets the next moment is AI that talks to software, not people. TypeSafe AI released Jev. Jev is transformer-based, but it is not a large language model. It does not generate text. You send a state and typed questions.&hellip;","_links":{"self":[{"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/posts\/118934","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/comments?post=118934"}],"version-history":[{"count":0,"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/posts\/118934\/revisions"}],"wp:attachment":[{"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/media?parent=118934"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/categories?post=118934"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/youzum.net\/es\/wp-json\/wp\/v2\/tags?post=118934"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}