thomastri / tldr-extension

text summary extension / plugin
0 stars 0 forks source link

research different text summary APIs and see what works best for us #1

Open thomastri opened 5 years ago

thomastri commented 5 years ago

explore different languages it may be compatible with

Alexander-Karp commented 5 years ago

Api approaches: http://textsummarization.net/text-summarization-api-document - Limited to 100 requests per day with free account https://rapidapi.com/aylien/api/Text%20Analysis/functions/Summarization - 1000 per day with free account

Could always just roll our own, doesn't look terribly difficult: https://towardsdatascience.com/text-summarization-96079bf23e83

thomastri commented 5 years ago

there's some pretty good info here: https://github.com/miso-belica/sumy

it lists a few other open source summarizers that we may be able to snag and use without a limit

Alexander-Karp commented 5 years ago

So it looks pretty likely that we'd be able to use the github package above via an aws lambda call to serve as the backend for the time being at least. The free tier of lambda should be enough for testing especially if we profile the memory usage of the python script.

thomastri commented 5 years ago

okay awesome, that's exactly what i was hoping for. we should look to see if there's anything we can customize or improve on based on our needs, but i guess this is a good starting point since it is open source