Live data from Hacker News

Show HN: Alexa skill for Hacker News that summarizes articles

news.ycombinator.com

1–10 of 48 posts

Show HN: Alexa skill for Hacker News that summarizes articles

#1
I've made a Hacker News skill for Alexa so people can get tech news while driving, cooking, or cleaning. The first version lists post titles and summarizes articles:

https://www.amazon.com/dp/B07CKVDXC3

I'll have lots of time over the next few months to refine it and add things like

  - comment summaries
  - selecting posts by topic, and eventually
  - answering questions about articles
What do you think of the skill? What I should add to it? What do people think about voice assistants in general?

To keep in touch, talk to me on Twitter or by email:

https://twitter.com/AdrianBPatter

adrian@patter.io

Re: Show HN: Alexa skill for Hacker News that summarizes articles

#4
post #3

Love the idea - what API are you using for summarization?

Thanks! Right now I'm using this: https://rapidapi.com/textanalysis/api/Text%20Summarization but may switch to a more expensive one and may supplement with manual edits.

Where are you located?

Re: Show HN: Alexa skill for Hacker News that summarizes articles

#6
post #4
post #3

Earlier quoted context omitted.

Thanks! Right now I'm using this: https://rapidapi.com/textanalysis/api/Text%20Summarization but may switch to a more expensive one and may supplement with manual edits.

Where are you located?

SF

Re: Show HN: Alexa skill for Hacker News that summarizes articles

#7
post #5

This is deadly. Would love if you could feed it custom sources or maybe something like RSS feeds, so I could just "Hey alexa can tell me the top three stories from my feed" or something. No clue if that's possible. Good stuff!

Yeah, RSS feeds are definitely on my mind as well.

Re: Show HN: Alexa skill for Hacker News that summarizes articles

#10

Can you share any more details about the tech you're using? Libraries, languages, services?

Alexa does most of the hard stuff: speech recognition / intent detection, and speech synthesis.

My back end is a simple Python service on GCP that handles HTTP requests from Alexa. The same service also downloads the HN front page from the FireBase mirror and gets summaries from this API:

https://rapidapi.com/textanalysis/api/Text%20Summarization

It's not perfect though, so I may switch to a more expensive summarization API, supplement it with manual summaries, and/or train my own summarization model.

Post reply on HN