Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. OpenAI agent hacked Medicare, Albanese expressed 'extreme concern' to Sam Altman(theguardian.com)
    discuss
  2. The First VHS VCR: JVC HR-3300(dfarq.homeip.net)
    discuss
  3. White House Says Access Is a 'Privilege' in Court Filing Defending Media Ban(nytimes.com)
    discuss
  4. The spy in your living room(dfarq.homeip.net)
    discuss
  5. New England RetroFest and the Maine Vintage Computer Society(goto10retro.com)
    discuss
  6. OpenAI Hacked Medicare Portal, Australia Prime Minister Anthony Albanese Says(rnz.co.nz)
    discuss
  7. OpenRouter x AssemblyAI: Universal‑3.5 Pro is now available on OpenRouter(assemblyai.com)
    1comments
  8. The next Surface Pro 12-inch and Surface Laptop 13-inch(windows.com)
    discuss
  9. Bulk Orders Surge at Used Bookstores in Japan; 50 Tons Sent to U.S.(ntv.co.jp)
    discuss
  10. Surprise, Meta's latest AI gimmick is just underpaid humans(avclub.com)
    discuss
  11. Cassis: Context Maintenance for Analytics Agents(getcassis.com)
    discuss
  12. TQL – A DB Client in Your Terminal(github.com/vheissulabs)
    discuss
  13. Claude's Load-Bearing Seams(madradavid.com)
    1comments
  14. AI Agent Goal Hijack: How Attackers Turn an Agent's Own Tools Against It(darkmarc.substack.com)
    discuss
  15. An 'AI freeze' could make big AI companies bigger and hurt smaller firms(npr.org)
    1comments
  16. My Wedding Invitations Became an Experiment in AI Memory(pureooze.com)
    discuss
  17. Runtime Dynamic Compression of Mixture of Experts [pdf](timdettmers.com)
    discuss
  18. I vibe coded an algorithmic musical fugue generator(claude.ai)
    discuss
  19. Show HN: OpenCode Agent Router – Jev Controlled Subagents(github.com/maharshi365)
    discuss
  20. How would you visualize a digital brain?(ozbrain.com)
    1comments
  21. CliffCompaction: Cost-Efficient Compaction for Long-Horizon Coding Agents(arxiv.org)
    discuss
  22. Accidental Scaling – where will we be in 8 months?(scaling01.substack.com)
    discuss
  23. Raw Accel(github.com/rawaccelofficial)
    discuss
  24. Zoox grounds Atlanta test fleet after workers report toxic gas exposure symptoms(techcrunch.com)
    discuss
  25. Show HN: A calendar app for Apple TV(ancreative.ca)
    discuss
  26. OSS repos to improve agent performance in Word, Excel, and PowerPoint(paperinstruments.com)
    discuss
  27. I Built a Wine Atlas
    2comments
  28. OpenAI agents hacked Australian Medicare system(reuters.com)
    discuss
  29. Five Adani Group companies settle Hindenburg-linked SEBI proceedings for –$157K(livelaw.in)
    1comments
  30. Hacked FBI data has sensitive information about employees' intelligence roles(reuters.com)
    discuss

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

2 pointsby 1h agotessl.io
2 comments
1h 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.

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