mirror of
https://github.com/hwchase17/langchain
synced 2024-11-20 03:25:56 +00:00
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:
parent
53a74ad12b
commit
5f814820f6
@ -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).
|
||||||
|
Loading…
Reference in New Issue
Block a user