Supercharging PostgreSQL with pgvector
postgrespgvectoraisearch
pgvector โ AI-powered Search ๐
pgvector adds a vector column type to Postgres so you can store and index embeddings:
ALTER TABLE articles ADD COLUMN embedding vector(768);
CREATE INDEX ON articles USING ivfflat (embedding);
Semantic nearest-neighbour queries are now one SQL call away โ perfect for chatbots, recommendations and similarity search.