top | item 46228249

(no title)

techtalksweekly | 2 months 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/

discuss

order

lucasfdacunha|2 months ago

I'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.