Postgres

Creates an instance of Postgres Vector Store.

Configure

Using Postgres as a vector store requires pgvector extension.

Docker quick start
docker run -d --name postgres-pgvector -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword ankane/pgvector

Additional pgvector install instructions here.

Inputs

URL

The postgres URL

User name

The username.

Password

The password.

Database

The database name.

Table name

The table name.

Vector Size

The size of the vector.

Outputs

Vector Store

The vector store instance.

Last updated