Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix Typo Correct "embedding" to "embeddings" in PGVector initialization example - Problem There is a typo in the example code for initializing the PGVector class. The current parameter "embedding" is incorrect as the class expects "embeddings". - Correction The parameter should be updated to embeddings for correct usage. The corrected code snippet is: ``` vector_store = PGVector( embeddings=embeddings, collection_name="my_docs", connection="postgresql+psycopg://...", ) ```
- Loading branch information