mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
574 B
574 B
langchain-exa
This package contains the LangChain integrations for Exa Cloud generative models.
Installation
pip install -U langchain-exa
Exa Search Retriever
You can retrieve search results as follows
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)