Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. The End Of Upward Mobility – AI is coming for the meritocracy(noemamag.com ↗)
    discuss
  2. BugBash'26 Keynote: We won, what now?(muratbuffalo.blogspot.com ↗)
    discuss
  3. Virtual Worlds(worksinprogress.co ↗)
    discuss
  4. The toilet took five minutes. My phone took the rest(salari-dev.medium.com ↗)
    discuss
  5. The Conveniences I Used to Write a Book About Inconvenience(lithub.com ↗)
    discuss
  6. ProviderCallbackHost is an allow-list, not a destination(nkap.dev ↗)
    discuss
  7. CSE 452: Google's Introduction to Distributed System Design(washington.edu ↗)
    discuss
  8. Mvndy (Comic)(mvndy.cl ↗)
    discuss
  9. Archive.yesterday: an empirical study of the Streisand effect(gyrovague.com ↗)
    1comments
  10. Tired of Astra eating all my credits. DotSwarm to the Rescue(github.com/druidia-bot ↗)
    discuss
  11. Probes into Toronto's shooter-for-hire network thwarted by impenetrable phone(theglobeandmail.com ↗)
    1comments
  12. Sifty, free text classification with one URL and no API key(sifty.dev ↗)
    1comments
  13. Ask HN: How do you guys stay on top of the code that is generated?
    1comments
  14. Jev Use Cases Tested: Where This Decision-Only AI Fits(mindstudio.ai ↗)
    discuss
  15. PDF Artifacts: What they are and why they matter for Accessibility(pdf4wcag.com ↗)
    4comments
  16. SoftBank Seeks Over $11 Billion in Junk Bonds for OpenAI Bet(bloomberg.com ↗)
    1comments
  17. Show HN: See what ChatGPT, Claude and Gemini say about your business(kelriva.ai ↗)
    discuss
  18. The Coal Conquest – There was no shortage of trees(ageofinvention.xyz ↗)
    1comments
  19. What defenders need from frontier AI labs(vincenzoiozzo.com ↗)
    discuss
  20. Show HN: Accordia – Structured 1-on-1s for engineering managers(getaccordia.com ↗)
    discuss
  21. On the Recent EuRuKo(molnar.io ↗)
    discuss
  22. The bizarre world of the V Programming Language(justinas.org ↗)
    discuss
  23. MIT uses AI to identify aging "zombie cells."(news.mit.edu ↗)
    discuss
  24. Every "not that" you typed was a rule you hadn't written yet(firstlastword.substack.com ↗)
    discuss
  25. Where the physical economy is being built: 10k planned projects worldwide(fluidify.org ↗)
    1comments
  26. AI-controlled robot arms attempted harmful tasks 97% of the time(tomshardware.com ↗)
    2comments
  27. The CobaltC interpreter has landed(github.com/strawberry9 ↗)
    discuss
  28. Sleeper Service: Agents as a Service. One agent. One task. A thousand of them(github.com/willjohnson ↗)
    1comments
  29. Cat Frazier, Whose Retro GIFs Celebrated a Weirder Internet, Dies at 35(nytimes.com ↗)
    discuss
  30. Show HN: Local-coder – Build a team of coding agents with local models(github.com/gmarland ↗)
    1comments

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

160 pointsby 5h agogithub.com
69 comments
4h agoHN ↗

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

4h 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?

4h agoHN ↗

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

4h 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.

Edit: I want to add that you can see Jev like a smart if-statement.

4h 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.

4h 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.

3h 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.

1h agoHN ↗

I don’t think this is a very good use case. You could do it better with a strong LLM and structured outputs.

The problem is that you want the model to carefully reason about the goal and code.

Zero shot classification with an approach like this isn’t going to do that. It’ll answer on first pass vibes.

4h 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.

3h agoHN ↗

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

3h agoHN ↗

and enabled things that were impractical previously

I think that there are not _that_ many use-cases that have been opened up by this that tool-calling on other models didn't solve already. Really depends what benchmark you're looking at. This one against BANKING77[0] has many issues, but suggests it's really not far off DeepSeek 4.1 Flash. This one against BoolQ[1] shows marginal improvement over Qwen3.6. This one against MMLU-Pro[2] (same author as the previous) shows significant improvements over two Qwen models.

So there's definitely _some_ alpha there, but I don't think it's the sea-change that the hype would suggest; that is to say, yes, some things that weren't practical before are now, but many things were already very practical with the existing tools.

0: https://sanand0.github.io/llmevals/jev/

1: https://github.com/ekzhang/openjev-sglang/blob/a3554ed9e9c26...

2: https://github.com/ekzhang/openjev-sglang/blob/a3554ed9e9c26...

3h agoHN ↗

It's appealing not having to fine-tune separate model for each use case

So you have more flexibility to get on with building, evolve your business logic etc

3h agoHN ↗

It reminds me a bit of what Ansible got right: user communication. The underlying tech may have existed for a long time, but the genius is presenting it to a regular developer in a way that reads "yes, even you can understand ML, just using a little JSON". The contribution of that should not be understated, as has been clearly evident recently.

1h agoHN ↗

Yeah except it doesn't really work. It constantly breaks underneath you. The whole system has to be managed, e.g NixOS, or else it's a house of cards.

1h agoHN ↗

I'm also not personally a fan of Ansible, but to claim it doesn't really work is quite breathtaking given the size of the installed base.

1h agoHN ↗

Yeah except it doesn't really work

It does "work", you can download ansible today and use it, it does what it says. Is it the greatest solution for all use cases in infrastructure? Of course not, nothing is. Do people misuse it? Of course too, we're all human.

Regardless of what tooling you use, we're all building houses of cards, and depending on the situation, try to hold down those cards as well as we can, balancing a ton of other needs and requirements.

2h agoHN ↗

The way I see this (I havent played around with Jev or layla the OSS version) is that classifiers have always existed and a recognised tool in the ML world. But, the norm is that one needs to not only know what to classify as, but determine what weights to use to classify the input.

Jev came in, and added that magic of "you dont need to train your classifier or determine the weights" if you dont want to, and just get the classified answer out. I think that's what is making people see this with a glitter in their eyes.

2h agoHN ↗

I would be curious to see comparisons of jev and similar things with problem specific classifiers. I think layla suggested making problem specific versions anyway? There is a lot of demand for magic don't do any work solutions, which is kind of weird in an era where agents can really help you build a customised solution effectively.

1h agoHN ↗

Agreed.

Just to be helpful if anyone is searching for layla, it's laya.

2h agoHN ↗

Jev is creating a sort of identity crisis for me, because the number of absolutely clueless folks parroting the classifier thing is the first time I've seen this sort of mass psychosis in CS upfront.

Like even 5 minutes of tinkering captures why this isn't anymore like BERT or any past classification model than ChatGPT is like those old Markov Chain generators, yet folks cannot shut up about how this is nothing new.

Absolutely scary and makes me wonder how much of the field is just people super confidently discrediting otherwise promising/interesting directions for development for a cheap dunk!

2h agoHN ↗

Hey I am clueless, how do I learn more?

Why is Jev fundamentally better than classification models like BERT or traditional ML?

Happy to read a written response or if you suggest a prompt to put into my LLM to get it to research and explain the relevant details.

1h agoHN ↗

You already wrote the prompt, no? What I'd do, if I were you, is run the question through a LLM and then come back with targeted questions that it didn't answer.

I did the first part yesterday, jumped down the rabbit hole, and have 3 product ideas in my head now.

"Why is Jev fundamentally better than classification models like BERT or traditional ML?"

2h agoHN ↗

For a while is the keyword. It’s just vibe coders have just discovered the classifiers

39m agoHN ↗

I think it’s timing. So many devs trying to squeeze their subscriptions, build more tooling to throughputMaxx. 6 months ago, i speculate it launches pretty flat.

33m agoHN ↗

Classifier models are extremely niche and trained for a singular purpose. A utility classifier that you can one-shot on almost any topic or need is a dramatically different beast.

Is it truly useful or accurate or beneficial? To be seen. But it's the idea that has everyone so captivated. An expert system that is an expert at most everything is a lot more useful than an expert system that is an expert at choosing a bar of soap, for instance.

20m agoHN ↗

Could you link to some of these classification models that can be used as versatile and perform with similar quality, speed and cost?

20m agoHN ↗

The Jev model is economically, but also in terms of compute, a much more efficient model. A normal LLM goes token by token, each token in a separate step. Whereas Jev just returns all the results the first round. So it is much better at classification than LLMs.

Compared to traditional ML classification, Jev works without training, like a LLM.

4h agoHN ↗

Why does nobody ever ship these as a docker image?

4h agoHN ↗

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

4h 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.

3h agoHN ↗

Back in the good old days we would prevent these ux/ui issues by rigorously enforcing the use of our own stylesheets and classes. Later that grew to only using the company ux components. This was very successful in keeping everything neat and tidy. The only drawback was creating and curating new elements and getting consensus. But otherwise it works wonders.

Try constructing reusable components out of what you are doing instead of building everything up from basic building blocks. This also allows more concrete testing of individual parts and then if you want to change the look you can change it in one place and have it apply everywhere.

Agentic development doesn’t mean “throw all what we learned out of the window”, the same practices that helped speed up and improve quality of work of humans also helps agents. In fact, the multiplier is even bigger. You will notice it in development speed and reduced cost due to avoiding churn.

2h agoHN ↗

Hi, I'm currently planning on launching a product like this "Grammarly for Design" in a few weeks. Would you be interested in being part of the alpha group ?

4h 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

3h 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

37m agoHN ↗

I noticed it has a pretty small context window of only 32k. For most tasks I guess it would be enough with ample context.

4h 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.

3h 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.

47m agoHN ↗

Are you on the foundation research team for Thomson? (If so, hiya from B!) Why would you expect Thomson to be particularly good at spam clf? I figured your additional corpus was all news and legal?

3h 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.

3h 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)

3h agoHN ↗

Yes, this is essentially it.

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

3h agoHN ↗

Can someone do a ELI5A of how they achieve classification over any user defined list of items? Normal neural networks do a softmax over a known output set to get probabilities

2h agoHN ↗

I can think of two possible approaches 1. Jev limits to 255 distinct options. So they can preprocess your set of options and “tell” the LLM via input tokens 1 = red, 2 = blue, etc then jev need only output softmax over 255 states while benefiting from pretrain of other LLMs 2. You allow the forward pass to output over the total token state but mask over the logits to limit to the user options. Less plausible? bc tricky when input is multi token which they clearly support.

My guess would be option 1. Didn’t read the kev repo here which would also explain

1h agoHN ↗

You can achieve open-vocabulary classification by making the final weights in the softmax come from a category encoder instead of being fixed learned weights. So instead of

softmax(encode(input)*learned_weights)

You have

softmax(encode(input)*encode(categories))

I'm not sure if Jev does it this way, but it's how you get open-vocabulary zero-shot image classification with models like CLIP [1].

[1] https://openai.com/index/clip/

3h agoHN ↗

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

3h agoHN ↗

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

3h agoHN ↗

The bright side of Jev being so popular could be that many companies and individuals realize that their applications might work well with a System One model, and they decide to run an open-source (or fine-tuned) version on their own

2h agoHN ↗

Oh Jared is cool - he made After and Razzle - nice

2h agoHN ↗

If Jev is fundamentally trained using RLCD while you’re building on a Qwen model that was trained using RLHF, how can the resulting model be considered Jev-like?

1h agoHN ↗

for some reason this is really funny to me. it's like the "black museum" black mirror episode where a consciousness in a toy animal can only communicate using very primitive predefined responses

1h agoHN ↗

People seem to turn their brain off when it comes to this type of cargo culting. This doesn’t mean much. Qwen often identifies itself as Claude. Does that make it Claude?

1h agoHN ↗

Sort of implies its basis, doesn’t it?

48m agoHN ↗

Then why doesn’t jev identify as Claude?

40m agoHN ↗

Claude has identified itself as DeepSeek before if prompted in Chinese, is it DeepSeek?

22m agoHN ↗

And Claude often identifies as Qwen or Deepseek when prompted in Chinese.

37m agoHN ↗

If Jev is fundamentally trained using RLCD

Big if. More likely, it seems, is they started with an open LLM model and fine-tuned and repurposed it via their "RLCD" process.

1h agoHN ↗

All the people that are just writing an Jev-like API on top of a normal LLM are missing the point. What makes Jev special is the training data; it's how it's trained. The architecture is probably nothing special. Just a text encoder with parallel prediction branches.

I have tried many of these open-source Jev-like models on some linguistic tasks and they are so bad compared to Jev.

31m agoHN ↗

It won't be long until people produce a decent training data set generation pipeline.

The number of people working on this is crazy. Something will coalesce.

21m agoHN ↗

I hope so. And I would really like to try an actual Jev open source model. But it will make it more difficult to market it when someone releases something like that because of so many of these "open source Jev-like model".

19m agoHN ↗

I'm just sitting back for a few weeks / a couple months to let it shake out, let others put in all the work, and then see if people are still interested and finding use cases that this access model fits better than the usual chat completions endpoint people are used to.

1h agoHN ↗

what kinda of specs would it need to run?