Live data from Hacker News

Show HN: Talk to any ArXiv paper just by changing the URL

github.com

1–10 of 78 posts

Show HN: Talk to any ArXiv paper just by changing the URL

#1
Hello HN, Talk2Arxiv is a small open-source RAG application I've been building for a few weeks. To use it just prepend any arxiv.org link with 'talk2' to load the paper into a responsive RAG chat application (e.g. www.arxiv.org/abs/1706.03762 -> www.talk2arxiv.org/abs/1706.03762).

All implementation details are in the GitHub. Currently, because I've opted to extract text from the PDF of the paper rather than reading the LaTeX source code (since I wanted to build a more generic PDF RAG in the process), it struggles with symbolic text / mathematics, and sometimes fails to retrieve the correct context. I appreciate any feedback, and hope people find it useful!

Currently, the backend PDF processing server is only single-threaded so if embedding takes a while please be patient!

Show HN: Talk to any ArXiv paper just by changing the URL
github.com

Re: Show HN: Talk to any ArXiv paper just by changing the URL

#3

This is the first time I have seen someone use GROBID. It seems like an incredibly cool solution

I spent forever looking at various PDF parsing solutions like Unstructured, and eventually stumbled across GROBID, which was an absolute perfect fit since it's entirely made for scientific papers and has header/section level segmentation capabilities (splitting the paper into Abstract, Introduction, References, etc.) It's lightweight and fast too!

Re: Show HN: Talk to any ArXiv paper just by changing the URL

#9

This is the first time I have seen someone use GROBID. It seems like an incredibly cool solution

I've spent the last couple weeks diving into various PDF parsing solutions for scientific documents. GROBID is pretty cool, but it made some mistakes when trying to parse (I think arxiv) papers which removed some of the text.

Even though it gave a lot of great structured options, missing even a single sentence was unforgivable to me. I went with Nougat instead, for arxiv papers.

(Also check out Marker (mentioned on hn in the last month) for pretty high fidelity paper conversion to markdown. Does reasonable job with equations too.)

Post reply on HN