Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Does Georgism work? Five years later (astralcodexten.com)
    24comments
  2. DeepSeek Elastic Compute (DSec) (arxiv.org)
    40comments
  3. Evolving programming languages in the AI era (dashbit.co)
    9comments
  4. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    164comments
  5. An agent used DNS to reach an external chatbot (alignment.openai.com)
    19comments
  6. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    47comments
  7. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    23comments
  8. Go Concurrency Distilled (antonz.org)
    1comments
  9. Welcome to the Medical Clinic at the Interplanetary Relay Station (lightspeedmagazine.com)
    7comments
  10. LA Metro has some of the slowest escalators on Earth (basin.la)
    49comments
  11. Drawgent: Coding agent on a live Excalidraw canvas (tangled.org/yanndegat.tngl.sh)
    32comments
  12. Fifteen years later, the Apple Cards origin story (lexontech.org)
    86comments
  13. How one Twitch chat message became code execution on a streamer’s PC (scrt.ch)
    4comments
  14. HomeBody: A humanoid that explores, remembers, and acts on its own (stanford.edu)
    2comments
  15. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    3comments
  16. The Lost Atomic Update on Loongson CPU (jia.je)
    6comments
  17. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    57comments
  18. The Evolution of Vending Machines (saturdayeveningpost.com)
    1comments
  19. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    369comments
  20. Generate fonts where every LLM token is the same width (mesh.host)
    5comments
  21. Reading’s Bayeux Tapestry (diamondgeezer.blogspot.com)
    1comments
  22. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    4comments
  23. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    127comments
  24. How to keep enjoying programming in a world of LLMs (haskell.org)
    208comments
  25. Dutch designer made DE9: Closer to the Edit into a playable web-based instrument (creativeboom.com)
    1comments
  26. Japan moves to tighten rules for foreigners (aljazeera.com)
    320comments
  27. Analyzing Frontier Model Progress with My Favourite Game: Prince of Persia (blog.priyan.in)
    38comments
  28. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    3comments
  29. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    249comments
  30. The Rise of Audio AR (dbreunig.com)
    10comments

Turning GLM-5.3-Flash into a Jev-like decision model

8 pointsby 8h agoprivatemode.ai
3 comments
We found an approach to get Jev-like properties from standard LLMs like GLM-5.3-Flash.

The core idea is to craft the input prompt so that the first output token answers the question. This makes it possible to get a decision with a single forward pass.

In the blog post, we describe the approach in detail for GLM-5.3-Flash and vLLM. We benchmark this setup against Jev and Laya. We find that our setup is on-par with Jev in terms of accuracy and speed and that it substantially outperforms Laya.

Still, in terms of costs per decision, Jev is several x better than our setup. In turn, our setup supports vision inputs.

8h agoHN ↗

My question is why not use Jev instead? It's faster and cheaper.

44m agoHN ↗

These questions are answered by the OP (Same speed, image support) - additionally, GLM is open weight.

15m agoHN ↗

There's some speculation that Jev is essentially an open weight model with novel post-training (RLCD). So, if these folks have competitive accuracy with just the base model, it could raise some questions about the necessity of Jev's architecture. You generally don't want to find yourself competing only on price.

Fyi, I haven't tested this yet.