7 ms·
that's a really cool project! I'm building something similar, but for conference talks and podcasts[1], but in a form of a newsletter. I use semantic search oc
by techtalksweekly 9mo ago
that's a really cool project! I'm building something similar, but for conference talks and podcasts[1], but in a form of a newsletter.
I use semantic search ocasionally when building extra editions and use a sentence transformer with all-MiniLM-L6-v2 model.
How did you go about implementing semantic search in your app?
[1] https://techtalksweekly.io/ https://techtalksweekly.io/
- lucasfdacunha 9mo agoI'm using a Postgres database. So when articles are ingested, I use the Gemini Embedding model (they have a great free tier) and save that in a vector column that is used later to do the search.