You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/partners/exa
Danny McAteer e8be34f8c7
exa[patch]: update readme (#18047)
7 months ago
..
langchain_exa exa[patch]: fix lint (#17610) 7 months ago
scripts infra: add print rule to ruff (#16221) 8 months ago
tests infra: add print rule to ruff (#16221) 8 months ago
.gitignore exa: init pkg (#16553) 8 months ago
LICENSE exa: init pkg (#16553) 8 months ago
Makefile exa: init pkg (#16553) 8 months ago
README.md exa[patch]: update readme (#18047) 7 months ago
poetry.lock exa[patch]: fix lint (#17610) 7 months ago
pyproject.toml exa[patch]: fix lint (#17610) 7 months ago

README.md

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)