Hi HN!
I'm Jonathan and I built Ask Hacker Search (https://hackersearch.net/ask), an LLM-powered version of Hacker News' Ask HN.
Unlike Ask HN, Ask Hacker Search doesn't solicit new contributions from HN readers. Instead, it leverages Hacker News' historical data to answer questions, and offers LLM-generated summaries of those. I've used it for questions like "Should I use Drizzle or Prisma?" or "What is a good screen capture that allows easy zooming effects on Mac?".
It is particularly useful when you're interested in understanding HN readers' sentiment about a topic, or when looking for expert insights on topics of interest to HN readers. I've been using it continually while building it, and have found it particularly useful to find software libraries recommended by HN or get quick vibe checks on hot topics.
This builds on my release of Hacker Search two weeks ago
(https://news.ycombinator.com/item?id=40238509), which offered a semantic search engine over top HN submissions. It's not just a small upgrade: covering comments was the #1 requested feature after that launch, so I rebuilt the near entirety of the product to support that.
Please try it out and let me know what you think of it! I have to limit the number of LLM summaries each person can get for free, as this is entirely self-funded. If you hit the limit, you can subscribe for more summaries generated by a better model ($8/month), or bring your own compute by running inference on Ollama on your machine!
One thing I've been wanting for with search in general, especially LLM-powered, is having some kind of date relevance - especially with the fast moving world of technology.
For example I want to know how ProductX and ProductY compare. Last year ProductY didn't have FeatureZ, but they implemented and announced it last month. There might be several comments lamenting the lack of FeatureZ from 2 months ago, but they shouldn't be considered with the same weight now that it does exist.
I don't have any ideas for how this should be done but it's something I'd like to see tackled in RAG systems in general, and wanted to put it out there.