docs: providers pinecone fix (#19737)

Current providers page use link to the old package.
- Fixed installation instructions
- Added a reference to the Pinecone retriever
pull/14859/head
Leonid Ganeline 6 months ago committed by GitHub
parent 53a74ad12b
commit 5f814820f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -8,7 +8,7 @@
Install the Python SDK:
```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)
## 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).

Loading…
Cancel
Save