From fbe592a5ce10e69e3a2bd549cb067466356e4e6e Mon Sep 17 00:00:00 2001 From: s-g-1 Date: Mon, 22 Jan 2024 23:01:33 +0100 Subject: [PATCH] community[patch]: fix typo in pgvecto_rs debug msg (#16318) fixes typo in pip install message for the pgvecto_rs community vector store no issues found mentioning this no dependents changed --- libs/community/langchain_community/vectorstores/pgvecto_rs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/vectorstores/pgvecto_rs.py b/libs/community/langchain_community/vectorstores/pgvecto_rs.py index 18d66c80a8..2b14cd8036 100644 --- a/libs/community/langchain_community/vectorstores/pgvecto_rs.py +++ b/libs/community/langchain_community/vectorstores/pgvecto_rs.py @@ -38,7 +38,7 @@ class PGVecto_rs(VectorStore): except ImportError as e: raise ImportError( "Unable to import pgvector_rs.sdk , please install with " - '`pip install "pgvector_rs[sdk]"`.' + '`pip install "pgvecto_rs[sdk]"`.' ) from e self._store = PGVectoRs( db_url=db_url,