PGVector
Open-source vector similarity search for Postgres Store your vectors with the rest of your data. Supports: exact and approximate nearest neighbor search L2 distance, inner product, and cosine distance any language with a Postgres client Plus ACID compliance, point-in-time recovery, JOINs, and all of the other great features of PostgresImplementation
This handler usespgvector
python library to make use of the vector data type in postgres created from the pgvector extension
The required arguments to establish a connection are the same as a regular postgres connection:
host
: the host name or IP address of the postgres instanceport
: the port to use when connectingdatabase
: the database to connect touser
: the user to connect aspassword
: the password to use when connecting
Usage
Installing the pgvector extension
where you have postgres installed run the following commands to install the pgvector extensioncd /tmp git clone --branch v0.4.4 https://github.com/pgvector/pgvector.git cd pgvector make make install
Installing the pgvector python library
Ensure you install all from requirements.txt in the pgvector_handler folderCreating a database connection in MindsDB
You can create a database connection like you would for a regular postgres database, the only difference is that you need to specify the engine aspgvector