source&pool
A daily wire of long-form journalism, video, and discourse — filed, tagged, and laid out flat.
VOL. I·NO. 01
SUNDAY, SEPTEMBER 20, 2026
Hacker News3657X 主题热门3494CNBC68MacRumors649to5Mac59YahooFinance49Kotaku46IGN35Verge35aihot28TechCrunch269to5Google25NintendoLife25Gematsu24BusinessInsider21Eurogamer19NBC15Engadget14Guardian14NPR13Polygon13PushSquare13SeekingAlpha13bgr12Fortune12FoxBusiness12AndroidAuthority11Gizmodo11USAToday11WarhammerCommunity11ArsTechnica10Fox10TechPowerUp10ABC9AppleInsider9Mashable9Wccftech9CNET8CNN8Notebookcheck8PureXbox8PetaPixel7VideoGamesChronicle7WindowsCentral7CoinDesk6GSMArena6Investor'sBusinessDaily6NintendoEverything6SamMobile6Yahoo6BleepingComputer5CBS5DigitalFoundry5GameInformer5WIRED5AndroidCentral4Deadline4GameRant4XBOXWire4NewYorkPost4Pokemon4Conversation4Register4TweakTown4VideoCardz4WSB-TV4404Media3Aftermath3AlJazeera3AndroidPolice3CTech3GearPatrol3Hodinkee3HuffPost3LosAngelesTimes3Lifehacker3Motor13CrudeOilPricesToday3RockPaperShotgun3RPGSite3SlashGear3Space3Variety380Level2AOL2BellofLostSouls2BleedingCool2BuzzFeed2CanonRumors2DualShockers2DW2EventHubs2MotleyFool2FratelloWatches2Futurism2GamesIndustry.biz2InsiderGaming2MassivelyOverpowered2Maxroll2MP1st2Nature2Newser2PCWorld2qz2SouthChinaMorningPost2SeattleTimes2Intercept2WindowsLatest2YourTango2ABC7LosAngeles1AboveLaw1BusinessInsiderAfrica1Alternet1AVClub1AwfulAnnouncing1Benzinga1BikeRadar1Billboard1BloodyDisgusting1Boston1Bungie1CalMatters1cbn1ChromeUnboxed1Chron1ColoradoSun1comicbook1CreativeBloq1ChristianScienceMonitor1Currently1CyberSecurityNews1Cyclingnews1DailyDownforce1DailyKos1DaringFireball1DCRainmaker1Defector1Defense1denver71DenverPost1DigitalCameraWorld1DirtonDirt1Draftsim1DroidLife1empireonline1erictopol.substack1Euronews1Fangoria1FOX191DetroitFreePress1FrequentMiler1GameDeveloper1GamingOnLinux1AAAGasPrices1GeekWire1GeekyGadgets1HollywoodReporter1HouseDigest1Independent1InterestingEngineering1Jalopnik1KITCO1KSL1Lloyd'sList1Macworld1Magic:Gathering1MakeUseOf1Mercury1MonochromeWatches1MorningBrew1MortgageDaily1MyNintendo1Blizzard1SemiAnalysis1Newsshooter1Newsweek1nrn1NYT1OneMileataTime1OregonLive1PageSix1PaulKrugman1PCMag1PlayStationLifeStyle1PokémonGOHub1politico.eu1PittsburghPost-Gazette1QuantaMagazine1Road&Track1RoadtoVR1RockstarINTEL1Salon1CultureMapSanAntonio1ScienceAlert1ScientificAmerican1Semafor1SFGATE1YahooSingapore1SportsIllustrated1SimpleFlying1Slate1YahooTech1TechSpot1Tedium1TelecomTalk1DailyBeast1Hacker1NextWeb1Times1TimeExtension1LongmontTimes-Call1TimesUnion1Tom'sGuide1TwistedVoxel1YahooFinanceUK1UploadVR1VisualCapitalist1WOWT1
  1. 001Hacker NewsSEP · 19English

    I Built a System One Model on a RTX 3070

    A developer built a specialist System One model on an RTX 3070 by fine-tuning ModernBERT-base with LoRA adapters on banking, spam, and sentiment datasets, then distilled knowledge from Qwen2.5-7B using teacher logits. The model achieved 88.5% on banking intent classification and 98.9% on spam detection, with selective prediction reaching 99% accuracy on high-confidence examples.

    By lafalce
  2. 002Hacker NewsSEP · 19English

    You could have built Jev

    Jev is a Large Language Model that generates a single token to answer classification questions, comparing user-provided data against predefined criteria. The article explains the technical mechanics of how such a system works and discusses similar projects that have emerged.

    By baobabKoodaa
  3. 003Hacker NewsSEP · 19English

    Jev vs. XGBoost and Bert

    Jev is a classification model that promises zero-setup deployment without requiring labeled training data, unlike XGBoost or fine-tuned BERT models. Its genuinely novel aspects are RLCD training for calibrated confidence scores and skip-the-training-phase usability, though it trades some accuracy and per-inference cost advantages that established tools retain on stable, high-volume tasks.

    By Yash Thakker
  4. 004Hacker NewsSEP · 19English

    TypeSafe's Jev Can't See. I Made It Guess What I Drew Anyway

    A developer tested TypeSafe's Jev, a text-only language model, on a drawing-guessing task by converting doodles into SVG coordinates and base64-encoded images. Using 400 drawings from Google's Quick, Draw! dataset across ten object categories, they evaluated how well Jev could classify sketches despite being designed for text input only.

    By Bartosz Mikulski
  5. 005Hacker NewsSEP · 19English

    In 2024 I fine-tuned an LLM. Jev could have removed the side quests

    In November 2024, the author fine-tuned a small language model on r/SkincareAddiction comments and built a classifier to filter training data by usefulness, objectivity, and quality. The article explains different approaches to text classification—regex, vectorization, LLM prompting, and teacher-student distillation—with the author using the last method to label ~120,000 comments for training.

    By jc4p
  6. 006Hacker NewsSEP · 19English

    Show HN: Laya (open source jev) with vision

    Laya-Vision is an open-source multimodal model that makes calibrated decisions about images with optional text, answering choice, score, and yes/no questions in a single forward pass without text generation. It replaces Laya's encoder with SmolVLM-256M-Instruct and maintains the original API and training methodology. The experimental model, trained on VQAv2, A-OKVQA, and ScienceQA datasets, achieves calibrated outputs with ~71ms latency on NVIDIA L4 hardware.

    By someguy101010
  7. 007Hacker NewsSEP · 19English

    Jev's Architecture Unmasked

    An analysis of Jev's architecture based on API probing reveals it uses a causal transformer with sparse MoE to replace text-based confidence claims with decision probabilities read directly from internal representations, enabling parallel outputs for classification tasks without generating text. The system addresses reliability and computational efficiency issues common in existing LLM-based fraud screening and moderation systems.

    By Archer Hume
  8. 008Hacker NewsSEP · 19English

    How to classify, route, and score with Jev and AI SDK

    Jev, a TypeSafe AI decision model, evaluates structured state against typed questions and returns choices, scores, and probabilities without text generation. The AI SDK's experimental_evaluate API exposes Jev through the Vercel AI Gateway in TypeScript, enabling applications to route decisions—like support ticket departments or severity scores—based on model assessments while keeping business logic in code.

    By Ben Sabic Content Engineer
  9. 009Hacker NewsSEP · 19English

    Inventor of ChatGPT and RLHF Launches Typesafe.ai

    Diogo Almeida, an OpenAI researcher who helped invent RLHF, left the company to start Typesafe AI and released Jev, a non-LLM transformer model that outputs probabilities instead of text for software automation tasks. Jev is significantly faster and cheaper than existing LLMs while eliminating hallucinations, with developers reporting 5-20x performance improvements in classification and routing applications.

    By Tim Fernholz
  10. 010Hacker NewsSEP · 19English

    The Great Unbundling of the LLM

    TypeSafe AI released Jev, a specialized model that answers typed questions in parallel without generating text, sparking rapid adoption in browser agents, trading, and robotics. Unlike general-purpose LLMs, Jev provides calibrated probabilities and schema-constrained outputs, representing a shift toward specialized decision primitives optimized for specific tasks rather than conversational AI.

    By nlpnerd
  11. 011Hacker NewsSEP · 18English

    Using jev to improve product experiences is pretty crazy

    A writeup describes internal experimentation with Jev, a new classifier model from TypeSafe AI designed for fast, instant classification rather than step-by-step reasoning. The post covers how Jev was integrated into elvex, a model-agnostic LLM harness, to enable new UX patterns like self-assembling interfaces and ambient classification, with practical examples including expense report classification and intelligent notification filtering.

    By Doyle Irvin
  12. 012Hacker NewsSEP · 18English

    Jev's Architecture Unmasked

    A researcher reverse-engineered Jev, a decision-probability system by TypeSafe, through API probing and concluded it uses a causal transformer (likely sparse MoE) that outputs direct probabilities from internal representations rather than generating text-based confidence claims, enabling more reliable and efficient classification for applications like fraud screening and support routing.

    By Archer Hume
  13. 013Hacker NewsSEP · 18English

    OpenAI lost the plot on boring LLM use cases (2025)

    An NLP practitioner criticizes OpenAI for prioritizing reasoning-heavy models and agents over efficient, cost-effective solutions for traditional text classification and entity extraction tasks. The author argues that GPT-5's mandatory reasoning features add latency and cost without benefiting simple NLP use cases, prompting consideration of alternative providers.

    By Doug Turnbull
  14. 014Hacker NewsSEP · 18English

    An early-access test of TypeSafe's Jev: calibrated judgments for half a cent

    TypeSafe released Jev, an early-access model that answers structured questions with calibrated probabilities rather than generating text. The model uses RLCD training instead of RLHF to optimize for reliable predictions, costs $0.042 per million input tokens, and was tested on 24 Norwegian documents about salmon farming and tax policy.

    By Emil Lindfors
  15. 015Hacker NewsSEP · 18English

    Jev vs. Luna for AI Observability

    Groundcover compares Jev, a specialized classification model by TypeSafe, with traditional generative LLMs for AI observability tasks. Jev uses a novel parallel-sampling architecture and reinforcement learning to classify agent success and user sentiment with calibrated probabilities, offering a more efficient alternative to token-by-token generation for trace enrichment.

    By Avital Tamir
  16. 016Hacker NewsSEP · 18English

    Mini-Jev – typesafe's Jev implemented on top of an LLM locally

    Mini-Jev demonstrates an alternative to grammar-constrained JSON generation for structured classification on frozen language models. Instead of generating JSON tokens, the method reads next-token logits to classify against schema fields as multiple-choice options, achieving comparable quality while reducing decode costs on Qwen3-4B.

    By R-Ms
  17. 017Hacker NewsSEP · 17English

    Classic ML to Cope with Dumb LLM Judges (2025)

    A developer uses local LLMs to evaluate e-commerce search relevance by comparing product attributes against human-labeled data from Wayfair's WANDS dataset. They test various prompting strategies—including forced decisions, consistency checking, and single-attribute analysis—to create a reliable laptop-based search judge that can guide relevance improvements without expensive API costs.

    By Doug Turnbull
  18. 018Hacker NewsSEP · 17English

    LLM Classification Is Feature Engineering

    LLMs used directly as classifiers have significant limitations including poor calibration, inability to properly incorporate structured data, and lack of interpretability. The solution is to treat LLM outputs as features in traditional ML models like logistic regression, which recovers desirable properties like calibration, information integration, and interpretability.

    By Taylor Pospisil
  19. 019Hacker NewsSEP · 17English

    A DuckDB extension where you can use Jev to do quick classification of rows

    A new DuckDB extension enables users to classify rows in CSV, Parquet files, or DuckDB tables using Jev. It processes approximately 1,000 rows in 10 seconds, offering faster performance than LLMs and better ergonomics than traditional classifiers for data analysis workflows.

    By porridgeraisin
  20. 020Hacker NewsSEP · 17English

    Jev Is the Missing Piece in Production AI Systems

    TypeSafe AI introduced Jev, a specialized 'System One' model designed for fast, bounded decisions in production systems. Unlike general-purpose LLMs, Jev outputs typed probabilistic decisions directly rather than generating text, achieving significantly lower latency and cost for operational tasks like incident routing and severity assessment.

    By Nimendra