An Apache Airflow provider package that integrates pgvector, enabling vector similarity search operations in Airflow via hooks and operators. Current version is 1.7.1, released under the Airflow provider maintenance cadence.
pip install apache-airflow-providers-pgvectorNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Minimal DAG using PgvectorOperator to create a table with vector column and insert data.
Update imports to use the new paths as shown in the imports section.
Ensure your PostgreSQL instance has the pgvector extension installed (e.g., CREATE EXTENSION vector;).
Set up a Postgres connection in Airflow (conn_type='postgres') and in extras provide e.g., {"pgvector": true}. Ensure host, schema, login, password are correct.