@Logan M what is collection_name? is it the embedding table i have which is look like this:
CREATE TABLE book_embeddings (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
title TEXT NOT NULL,
author TEXT,
content TEXT,
embedding VECTOR(1536),
metadata JSONB,
created_at TIMESTAMP DEFAULT NOW()
);
now all i need is to put the name of my table in collection_name ~?
vector_store =
SupabaseVectorStore(
postgres_connection_string=(
"postgresql://:@:/"
),
collection_name="book_empeddings",
)
storage_context = StorageContext.from_defaults(vector_store=vector_store)
index = VectorStoreIndex.from_documents(
documents, storage_context=storage_context
)
i am confused because even i write any other name in collection_name it still will work π΅βπ«