Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. AI agents can modify themselves without humans telling them to do so(theregister.com ↗)
    discuss
  2. When A.I. Becomes an Enemy [video](youtube.com ↗)
    1comments
  3. Lakera – Test your AI hacking skills(lakera.ai ↗)
    discuss
  4. From Operations to a Robot Arm(huggingface.co ↗)
    discuss
  5. GrapheneOS accuses Google of gatekeeping Android 17 features and security fixes(androidauthority.com ↗)
    discuss
  6. Apprentice: A Slim, Extensible Coding Harness (Written in Common Lisp)(github.com/skarnati20 ↗)
    2comments
  7. Getting Outbound Email to Work on DigitalOcean(mailfully.com ↗)
    discuss
  8. Anthropic says Claude now leads a quarter of work building its next AI models(businesstimes.com.sg ↗)
    1comments
  9. Mini-Jev – typesafe's Jev implemented on top of an LLM locally(github.com/r-ms ↗)
    discuss
  10. Inside Microsoft and OpenAI, Worry About Damaging the Publishing Industry(nytimes.com ↗)
    discuss
  11. Richard Feynman – The World from another point of view [video](youtube.com ↗)
    discuss
  12. Talk to JEV(chatgpt.site ↗)
    2comments
  13. Muse for macOS(meta.com ↗)
    discuss
  14. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    discuss
  15. Where Awareness Is Not the Problem(medium.com/gurvinder372 ↗)
    discuss
  16. Microsoft exec called AI scraping 'the largest theft of labor in human(techcrunch.com ↗)
    1comments
  17. NASA satellite discovers a new crater on the moon bigger than the Colosseum(cbc.ca ↗)
    1comments
  18. Forget doomsday: The AI hacking crisis is here(axios.com ↗)
    1comments
  19. Base's B20 Bet Is Growing – Could the Next Billion-Dollar Project Be Built Here?(fika.bar ↗)
    1comments
  20. The FAA's plan to fix air traffic? $875M worth of AI(techcrunch.com ↗)
    discuss
  21. Red and Blue America Have Found Something to Agree On: Flock Cameras Must Go(wsj.com ↗)
    discuss
  22. LawConnect(lawconnect.com ↗)
    1comments
  23. Email marketing from Grok Bot official integration(twitter.com/migma_ai ↗)
    discuss
  24. OSU's Bag Man - What was his bag, man?(oregonstater.org ↗)
    discuss
  25. Mistral Hacked(frenchbreaches.com ↗)
    discuss
  26. Dear developers, we are open‑sourcing our dictation app, Blurt(assemblyai.com ↗)
    discuss
  27. Can an AI chatbot save lives by answering texts about pregnancy?(npr.org ↗)
    discuss
  28. Publishers block the robots.txt path their own affiliate redirects live on(disclosed.info ↗)
    discuss
  29. Productivity Effects Across Generations of AI Coding Tools(ssrn.com ↗)
    1comments
  30. Talk to JEV(github.com/mkotlikov ↗)
    discuss

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

3 pointsby 52m agocactuscompute.com
0 comments
Hey HN, Henry from Cactus here.

We submitted Needle 2 here a few weeks ago, and the feedback in the discussion thread was incredibly valuable, thanks! Thanks to all that feedback, we’ve been able to move quickly to release Needle 3 and I'd love to hear what you think again.

The key features:

1) Automation (tool calls & structured JSON output): Needle still doesn't chat by design, its quite challenging to pack general capacity into such small models, so we focus on tool calls and structured JSON. If no tool you declared fits the request, you get an empty list back (note for when playing with the demo).

2) Intelligence Laddering: Every layer (2 to 20) is a deployable subnetwork, so one set of weights, 25 to 121 million parameters at 2-bit, shipping as 8-29MB binaries. On a Raspberry Pi 5 it decodes at up to 4k tokens/sec and prefills at up to 10k.

3) Monarch Hadamard MLP: replaces the dense FFN with three learnable Walsh-Hadamard-initialized Kronecker (Monarch) factor pairs interleaved with per-channel diagonal scales, fixed permutations, a SiLU nonlinearity, and a rank-8 input-conditioned gate, so each token gets a fully mixed nonlinear transform of its d_model channels at O(d√d) parameters and compute instead of the O(d²) a dense 4x-expansion MLP would cost.

4) Performance: On Mobile Actions (phone commands, scored on the exact call) the 20-layer model gets 86.0 through the shipped 2-bit binary; LFM2.5 1.2B is at 82.4, Qwen3.5 0.8B at 76.0, Apple's on-device model at 57.6, all at f16. More results on the link, we do not win everywhere ofc.

5) Multilingual: Needle 3 now supports English, French, Spanish, German, Dutch, Italian, Polish, with more languages coming.

6) Finetuning: You can achieve DeepSeek v4 Flash grade performance on a narrow task with just 4L, stress on "narrow task", we found that production users often prefer tuning before production.

7) Triggers: Grounding is a common challenge for tool call, at least for Needle 2, so we added support case-insensitive regular expressions matched against each request to gate false negatives.

8) Confidence: Every response also carries a calibrated confidence score, the minimum of a judgement on the finished call and its decode probability. Act above your threshold, show the call and ask below it, or escalate to a bigger model.

9) Supported Platforms: macOS, Linux on x86-64, ARM64, ARMv7, RISC-V and MIPS32, Windows x64 and ARM, Android, iOS, watchOS, tvOS, the browser as WebAssembly, and a WASI component.

Thanks for reading and as always, thoughts appreciated!

A quiet thread, for now.Start the conversation on HN ↗