Viewing a single comment thread. View all comments

niclas_wue OP t1_j4k17s2 wrote

Thank you, I am glad you like it! At the moment, only the web server is public. You can find it here: https://github.com/niclaswue/arxiv-smry It is a Hugo server with a blog theme. Every blog is a markdown file. When a new file is pushed to git it automatically gets published on the blog.

The rest is basically a bunch of (messy) Python scripts for extracting the text, then asking GPT-3 for a summary and compiling the answers to a markdown file. Finally, I use GitPython to automatically push new summaries to the repo.

3

kroust2020 t1_j4lc61u wrote

Are you running GPT-3 yourself or using an API?

2

niclas_wue OP t1_j4liedo wrote

I am using OpenAI’s API, I think at the moment there are not many entities capable of running GPT-3 themselves 😄

2