Hacker News new | ask | show | jobs
by techtalksweekly 186 days 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/

1 comments

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.