Hello,
I have enabled pgvector extension in my pgsql server, which is the database for my Parse Server.
Is pgvector extension supported in Parse Server Object? And how can I add embedding column in the schema?
Thanks v much
Hello,
I have enabled pgvector extension in my pgsql server, which is the database for my Parse Server.
Is pgvector extension supported in Parse Server Object? And how can I add embedding column in the schema?
Thanks v much
By embedding column, I just mean the VECTOR column as shown below.
Any help is highly appreciated.
CREATE TABLE test_questions (
id SERIAL PRIMARY KEY,
content TEXT NOT NULL,
embedding VECTOR(512)
);