mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-03 11:47:49 +00:00
exa[patch]: update readme (#18047)
This commit is contained in:
parent
ee6a773456
commit
e8be34f8c7
@ -1 +1,28 @@
|
|||||||
# langchain-exa
|
# langchain-exa
|
||||||
|
|
||||||
|
This package contains the LangChain integrations for Exa Cloud generative models.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install -U langchain-exa
|
||||||
|
```
|
||||||
|
|
||||||
|
## Exa Search Retriever
|
||||||
|
|
||||||
|
You can retrieve search results as follows
|
||||||
|
|
||||||
|
```python
|
||||||
|
from langchain_exa import ExaSearchRetriever
|
||||||
|
|
||||||
|
exa_api_key = "YOUR API KEY"
|
||||||
|
|
||||||
|
# Create a new instance of the ExaSearchRetriever
|
||||||
|
exa = ExaSearchRetriever(exa_api_key=exa_api_key)
|
||||||
|
|
||||||
|
# Search for a query and save the results
|
||||||
|
results = exa.get_relevant_documents(query="What is the capital of France?")
|
||||||
|
|
||||||
|
# Print the results
|
||||||
|
print(results)
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user