Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. After AI models escaped testing environments,Irregular seeks $1.5B valuation(calcalistech.com)
    discuss
  2. "Can Jev Emulate a CPU?"(agihunt.info)
    discuss
  3. Go System One(rcarmo.github.io)
    discuss
  4. Jensen Huang says the junior developer problem ends in two years(thenewstack.io)
    discuss
  5. Physical Self-Play(skild.ai)
    discuss
  6. Ask HN: Can you suggest an interesting skill?
    5comments
  7. LensVLM-9B by Apple(huggingface.co)
    discuss
  8. Agent Etna – Automated staging environment and regression compiler for AI agents(agentetna.com)
    discuss
  9. WebGPU-Bench: A WebGPU Microbenchmark(ben3d.ca)
    discuss
  10. Realtime Raytracing in Bevy 0.20 (Solari)(jms55.github.io)
    discuss
  11. AI can never produce sublime art(hilariusbookbinder.substack.com)
    discuss
  12. ALP: Adaptive Lossless Floating-Point Encoding in Apache Parquet(apache.org)
    discuss
  13. Show HN: Lifeboat, 2-6x more concurrent agent sessions per GPU, no quantization(github.com/iterateai)
    discuss
  14. Why Omarchy Exists(pika.page)
    discuss
  15. The Python documentation is now available in Persian(python.org)
    discuss
  16. An LLM Beat NetHack(kenforthewin.github.io)
    discuss
  17. The Most Important Market in AI Is the Middle(tomtunguz.com)
    discuss
  18. Cursor Introducing Projects(cursor.com)
    discuss
  19. Immigration changes are driving foreign researchers to leave the U.S.(statnews.com)
    discuss
  20. Are we going to use the same Desktop UX forever? [video](ccc.de)
    discuss
  21. How the pro-nicotine 'wellness' movement rebranded an addictive drug(theconversation.com)
    discuss
  22. Empire of Grift(theatlantic.com)
    discuss
  23. CP/M-80 2.2 Compilers. (Update from June 19, 2026: Dave Glover – by David Lee(medium.com/davidly_33504)
    discuss
  24. Signature 27 is likely Motorola's first smartphone with GrapheneOS support(heise.de)
    discuss
  25. Ten thousand magnets later – CERN Courier(cerncourier.com)
    discuss
  26. Developers Song (2011) [video](youtube.com)
    discuss
  27. What are passkeys? A simple guide for friends and family(whatarepasskeys.info)
    1comments
  28. Show HN: QBasic 1.1 in the Browser(vahidyousefzadeh.com)
    1comments
  29. How can this Amazon scammer keep going, not shipping any goods?(amazon.de)
    15comments
  30. The Cloudflare error page X icon is not centered(infosec.exchange)
    discuss

Jev is 13.6x faster, 2.7x cheaper than GPT Luna 6

2 pointsby 59m agotessl.io
2 comments
59m agoHN ↗

We ran a bunch (2,725) of Tessl verifier tests which are part of our test suite for our internal code base and switched the judge model to Jev and GPT Luna 6

The results:

- Jev is 13.6x faster - Jev is 2.7x cheaper - The models had a 85.9% agreement on verdicts

Jev finished the suite in 32 seconds. GPT Luna 6 took 436.5 seconds.

The interesting part is where the models disagreed, particularly on rules about comment structure and content. We published the approach, what we tested, and a workflow you can reproduce on your own codebase.

46m agoHN ↗

- This is only true if your constraint is online

- If it is offline processing (e.g. classifying text snippets stored in a DB (from call transcript, from logs)), you can batch to Luna

- If you batch to Luna and then divide both cost and time by the batch size, you will find that Luna beats Jev.

- Now tune your batch size for your test dataset and see where the batch size causes accuracy falloff.

Tested this approach with GPT-6 Luna. It was 1.6x cheaper, 1.2x slower, within margin of error performance vs Jev with batch size 20 using a CFPB complaint dataset. Tuning batch size up to even double would likely yield similar accuracy while reducing both the per-record run time as well as per-record token cost.

The methodology of comparing single record is only valid for the on-line, real-time use case. For every other case, Luna can match or beat Jev by simply batching. If you find no dropoff at larger batch sizes, you will be significantly cheaper than Jev.

* Batching here does not mean the native batch API but actually placing 20 records (batch size) into one prompt and getting 20 results back in one response.