Hacker News new | ask | show | jobs
by leobg 1514 days ago
Is this using OpenAI‘s GPT3 search endpoint? Someone here mentioned a code snippet from the extension that seems to suggest that. Reason I‘m asking: Last time I checked, OpenAI‘s GPT3 „search“ endpoint actually performed a lot worse than, say, a BM25 or fastText search (which has the added benefit that you can run it on your own server).
1 comments

Good point, I'll look into this to see if performance is improved.
If you use Python on the backend, rank-bm25 is a great library for quick and dirty bm25 search.