Find answers from the community

Updated 2 months ago

This is what I am currently doing:

This is what I am currently doing:

pg_vector_store = PGVectorStore.from_params(
database=db_name,
host=url.host,
password=url.password,
port=url.port,
user=url.username,
table_name="nodes",
embed_dim=384, # bge-small-v1.5 embedding dimension
hybrid_search=True,
text_search_config="english",
)
L
A
7 comments
sadly no. I mean, you can add new columns manually to the table, but they wont be used when querying unless you modify the actual object class
Still thinking/working on the best kind of way (if possible) to provide what you ware wanting πŸ™‚
You CAN query/filter on the metadata column though
if it's in the metadata
Thanks Logan! Is there an example/tutorial for using metadata filtering with postgres hybrid search?
Every vectordb uses the same metadata-filtering concept. You can see an example here:

https://docs.llamaindex.ai/en/stable/optimizing/basic_strategies/basic_strategies.html#metadata-filters
Thanks @Logan M!
Add a reply
Sign up and join the conversation on Discord