I think you are onto to something big! WOW, impressive.
Show HN: Alexa skill for Hacker News that summarizes articles
11–20 of 48 posts
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#12Show HN: Hacker Daily, a daily podcast for Hacker News readers
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#13Can 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 summarizat…
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#14Interesting to compare the automation vs. a manual approach started last month. Show HN: Hacker Daily, a daily podcast for Hacker News readers https://news.ycombinator.com/item?id=16850689
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#15Earlier quoted context omitted.
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 summarizat…
Thank you, I didn't know Alexa handled all of that.
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#16Re: Show HN: Alexa skill for Hacker News that summarizes articles
#17Is this on github, I'd love to contribute!
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#18This 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!
I looked into developing one last week, but as far as I can tell, you can't programatically manipulate the feed in any way. You just give it a RSS feed, and it reads the first five results.
Re: Show HN: Alexa skill for Hacker News that summarizes articles
#19This 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!
Alexa has a feature called Flash Briefing: https://developer.amazon.com/docs/flashbriefing/understand-t... I looked into developing one last week, but as far as I can tell, you can't programatically manipulate the feed in any way. You just give it a RSS feed, and it reads the first five results.