Skip to content

Commit

Permalink
exa[patch]: update readme (#18047)
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyMac180 committed Feb 23, 2024
1 parent ee6a773 commit e8be34f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions libs/partners/exa/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# 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)
```

0 comments on commit e8be34f

Please sign in to comment.