langchain/libs/partners/exa
2024-02-23 21:05:42 +00:00
..
langchain_exa exa[patch]: fix lint (#17610) 2024-02-15 20:45:16 -08:00
scripts infra: add print rule to ruff (#16221) 2024-02-09 16:13:30 -08:00
tests infra: add print rule to ruff (#16221) 2024-02-09 16:13:30 -08:00
.gitignore
LICENSE
Makefile
poetry.lock exa[patch]: fix lint (#17610) 2024-02-15 20:45:16 -08:00
pyproject.toml exa[patch]: fix lint (#17610) 2024-02-15 20:45:16 -08:00
README.md exa[patch]: update readme (#18047) 2024-02-23 21:05:42 +00:00

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)