1
0
mirror of https://github.com/hwchase17/langchain.git synced 2025-05-08 00:28:47 +00:00

docs: fix kinetica vectorstore typo ()

Description:
- fix kinetica vectorstore typo
- add links

Co-authored-by: jamesongithub@users.noreply.github.com <jamesongithub@users.noreply.github.com>
This commit is contained in:
James Yang 2025-02-26 05:31:56 -08:00 committed by GitHub
parent 6177b9f9ab
commit 8c28742980
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ from langchain_community.chat_models.kinetica import ChatKinetica
The Kinetca vectorstore wrapper leverages Kinetica's native support for [vector
similarity search](https://docs.kinetica.com/7.2/vector_search/).
See [Kinetica Vectorsore API](/docs/integrations/vectorstores/kinetica) for usage.
See [Kinetica Vectorstore API](/docs/integrations/vectorstores/kinetica) for usage.
```python
from langchain_community.vectorstores import Kinetica
@ -28,8 +28,8 @@ from langchain_community.vectorstores import Kinetica
## Document Loader
The Kinetica Document loader can be used to load LangChain Documents from the
Kinetica database.
The Kinetica Document loader can be used to load LangChain [Documents](https://python.langchain.com/api_reference/core/documents/langchain_core.documents.base.Document.html) from the
[Kinetica](https://www.kinetica.com/) database.
See [Kinetica Document Loader](/docs/integrations/document_loaders/kinetica) for usage