From e8be34f8c7728b337adc7baea762ace8e3a2f4c4 Mon Sep 17 00:00:00 2001 From: Danny McAteer Date: Fri, 23 Feb 2024 16:05:42 -0500 Subject: [PATCH] exa[patch]: update readme (#18047) --- libs/partners/exa/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/libs/partners/exa/README.md b/libs/partners/exa/README.md index 3fda1cae28d..0b5c089078e 100644 --- a/libs/partners/exa/README.md +++ b/libs/partners/exa/README.md @@ -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) +``` \ No newline at end of file