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
This commit is contained in:
s-g-1 2024-01-22 23:01:33 +01:00 committed by GitHub
parent d511366dd3
commit fbe592a5ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ class PGVecto_rs(VectorStore):
except ImportError as e: except ImportError as e:
raise ImportError( raise ImportError(
"Unable to import pgvector_rs.sdk , please install with " "Unable to import pgvector_rs.sdk , please install with "
'`pip install "pgvector_rs[sdk]"`.' '`pip install "pgvecto_rs[sdk]"`.'
) from e ) from e
self._store = PGVectoRs( self._store = PGVectoRs(
db_url=db_url, db_url=db_url,