Replies: 6 comments 1 reply
-
Oh well we do have OpenSearch in the stack that does essentially the same thing, afaik it's much better than PGVector at handling large data, which of course should be a requirement in regard to actual and future SN growth |
Beta Was this translation helpful? Give feedback.
-
In general, I prefer to issues to be about features/enhancement and fixes, ie use case driven, rather than about technologies in search of a use case. Also, this is another level of indirection, because it seems you mean use (1) embeddings via (2) pgvector. What's the most compelling use case for storing embeddings? That would probably be worth an issue. |
Beta Was this translation helpful? Give feedback.
-
This is true. If we have a pure search/embedding application for posts/comments, OpenSearch is already doing this for us. There might be very good reason to have embedding be used in other contexts where we are already doing postgres queries, but what those things are aren't immediately obvious to me. |
Beta Was this translation helpful? Give feedback.
-
Yeah opensearch is more robust but a little harder to use for custom ML models. But i guess there's not too much ML development at SN right now lol. |
Beta Was this translation helpful? Give feedback.
-
The telegram bot? I think a third party maintains that. If you want to open an issue detailing that use case, all the requirements (beyond adding a postgres extensions ... like how/which models, what we're storing, etc), then we can figure out a bounty for it. |
Beta Was this translation helpful? Give feedback.
-
Describe the problem you're trying to solve
Adding PGVector to the database allows for vector search on all the database models. This is super useful if you want to add any LLM or ML features to the app. This makes any natural language questions return super accurate data really fast and allows for easy implementing of tools like langchain or crewAI
Cool features that this will make easy to implement
Describe the solution you'd like
Add PGVector extension to postgresql database (there are other options like pinecone but I believe this is the most common)
Add embedding to post and item
Describe alternatives you've considered
No response
Additional context
What Is Vector Search?
Beta Was this translation helpful? Give feedback.
All reactions