Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Oxford Economics Global Cities Index 2026(oxfordeconomics.com ↗)
    discuss
  2. Jev and AI SDK Template by Vercel Labs(github.com/vercel-labs ↗)
    discuss
  3. Show HN: Paste a domain and watch four AI engines judge every page(citegraph.app ↗)
    discuss
  4. Jev at the Branches: The State Machine Is the Agent(stacktoheap.com ↗)
    discuss
  5. Show HN: Sealr – E2EE messenger with per-message rules and screenshot blocking(sealr.chat ↗)
    discuss
  6. Letting Astra decide when to compact its own context(github.com/manuelcecchetto ↗)
    1comments
  7. Holocene Calendar(holocenecalendar.com ↗)
    discuss
  8. Show HN: Deterministic UI testing that checks backend logs, not just the UI(get-verirun.duely.in ↗)
    discuss
  9. Google Home MCP Server(home.google.com ↗)
    discuss
  10. OpenAI's Agentic Software Factory(pragmaticengineer.com ↗)
    discuss
  11. Show HN: I found the free SaaS listing directory(goodsaas.xyz ↗)
    discuss
  12. AI hallucination of Chinese nuclear components almost led to US Military attack(arstechnica.com ↗)
    discuss
  13. Show HN: SnipStash, a snippet keyboard for iOS with no accounts or servers(khancreators.netlify.app ↗)
    discuss
  14. Show HN: Using Qwen to track under-covered news(pressaudit.org ↗)
    1comments
  15. Diogo Almeida: Thoughts on a Typesafe Coding Agent(docs.google.com ↗)
    discuss
  16. Bsdkrun: A Firecracker-style MicroVM for BSD/Linux guests, built on libkrun(github.com/tsirysndr ↗)
    discuss
  17. Unix Year 2038 problem and the art of underestimating(buzzsprout.com ↗)
    discuss
  18. Adversarial examples for fast hash functions(thomasahle.com ↗)
    discuss
  19. Hackathons in the vibe coding era: our token economics experiment(quesma.com ↗)
    1comments
  20. Show HN: Jeeva – A modular trading engine for mid-frequency trading using Jev(github.com/saratangajalaoffl ↗)
    discuss
  21. Use your computer the right way: tmux(chappelle.dev ↗)
    discuss
  22. Ask HN: What's hardest about keeping PII out of unnecessary systems?
    discuss
  23. In September, AI generated code has made up 17.25% of all Linux Kernel patches(twitter.com/lundukejournal ↗)
    20comments
  24. CSS features you can use today with no build step(flaviocopes.com ↗)
    discuss
  25. Show HN: Bridgeflare – Replace Docker with Cloudflare(github.com/ianrumac ↗)
    discuss
  26. Kit foxes show adaptive compromise characteristics under intraguild predation(nature.com ↗)
    1comments
  27. ChatGPT Pets(chatgpt.com ↗)
    discuss
  28. Disney+: New user agreement allows ads before movies in all subscriptions(consumerrights.wiki ↗)
    discuss
  29. Cracking Software with AI(apsecurity.dev ↗)
    discuss
  30. Show HN: A fact-checker where the model can't fabricate a quote(grounnel.vercel.app ↗)
    1comments

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

42 pointsby 1h agogithub.com
24 comments
59m agoHN ↗

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

53m 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?

52m agoHN ↗

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

46m 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.

39m 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.

38m 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.

21m 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.

47m 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.

41m 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"

2m agoHN ↗

Thanks to these projects, what was an innovative-but-closed piece of technology one week ago is now much more accessible. Whether they're in it for fame or not, I couldn't care less!

12m agoHN ↗

It’s because it’s practically useful and enabled things that were impractical previously.

39m agoHN ↗

Why does nobody ever ship these as a docker image?

36m agoHN ↗

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

41m 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.

31m 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

8m agoHN ↗

even with knowledge cutoff set a second from now, you still want to provide as much info as you can if you’re using such tools for delegating decisions

28m 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.

5m agoHN ↗

Take a look at Thomson 1.0-small, which is a variant of qwen 3.6 35b post trained by Thomson Reuters for text analysis. It classifies text content very well.

21m 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.

10m agoHN ↗

Can someone tell me what is the difference between Jev and a normal neural network that does classification ?

My understanding is: it takes text input and it does one shot classification (no training data)

8m agoHN ↗

Yes, this is essentially it.

As a corollary, the output classes can be any set, rather than needing to be set before training.

6m agoHN ↗

Interesting approach with Qwen3.5 for decision models. Curious how "tiny" they've made them while keeping LLM reliability for critical paths.

3m agoHN ↗

Interesting to see a Jev-like approach applied to Qwen3.5. Always appreciated Jev's simplicity for quick decisions.