Postgresql – What JPA + Hibernate data type should I use to support vector extension in postgres database
What JPA + Hibernate data type should I use to support vector extension in postgres database, so that it allows me to create embeddings using a JPA Entity CREATE TABLE items (id bigserial PRIMARY KEY, embedding vector(3)); https://github.com/pgvector/pgvector