docs: providers pinecone fix (#19737)

Current providers page use link to the old package.
- Fixed installation instructions
- Added a reference to the Pinecone retriever
This commit is contained in:
Leonid Ganeline 2024-03-29 05:30:30 -07:00 committed by GitHub
parent 53a74ad12b
commit 5f814820f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@
Install the Python SDK: Install the Python SDK:
```bash ```bash
pip install pinecone-client pip install langchain-pinecone
``` ```
@ -22,3 +22,26 @@ from langchain_pinecone import PineconeVectorStore
``` ```
For a more detailed walkthrough of the Pinecone vectorstore, see [this notebook](/docs/integrations/vectorstores/pinecone) For a more detailed walkthrough of the Pinecone vectorstore, see [this notebook](/docs/integrations/vectorstores/pinecone)
## Retrievers
### Pinecone Hybrid Search
```bash
pip install pinecone-client pinecone-text
```
```python
from langchain_community.retrievers import (
PineconeHybridSearchRetriever,
)
```
For more detailed information, see [this notebook](/docs/integrations/retrievers/pinecone_hybrid_search).
### Self Query retriever
Pinecone vector store can be used as a retriever for self-querying.
For more detailed information, see [this notebook](/docs/integrations/retrievers/self_query/pinecone).