Skip to main content

An integration package connecting Exa and LangChain

Project description

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.invoke("What is the capital of France?")

# Print the results
print(results)

Exa Search Results

You can run the ExaSearchResults module as follows

from langchain_exa import ExaSearchResults

# Initialize the ExaSearchResults tool
search_tool = ExaSearchResults(exa_api_key="YOUR API KEY")

# Perform a search query
search_results = search_tool._run(
    query="When was the last time the New York Knicks won the NBA Championship?",
    num_results=5,
    text_contents_options=True,
    highlights=True
)

print("Search Results:", search_results)

Exa Find Similar Results

You can run the ExaFindSimilarResults module as follows

from langchain_exa import ExaFindSimilarResults

# Initialize the ExaFindSimilarResults tool
find_similar_tool = ExaFindSimilarResults(exa_api_key="YOUR API KEY")

# Find similar results based on a URL
similar_results = find_similar_tool._run(
    url="http://espn.com",
    num_results=5,
    text_contents_options=True,
    highlights=True
)

print("Similar Results:", similar_results)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langchain_exa-0.2.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

langchain_exa-0.2.0-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file langchain_exa-0.2.0.tar.gz.

File metadata

  • Download URL: langchain_exa-0.2.0.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for langchain_exa-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0373faf5f181b4cb4d35796d66b3950c107efed896f9859ceec4a4d306de47de
MD5 c27734913ca0e7b28a3452f34c3efb54
BLAKE2b-256 47092dfb4f1afc3f939575e995a704f03adeb674f95c38adee502800f41f0b72

See more details on using hashes here.

File details

Details for the file langchain_exa-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_exa-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6b295600c1da28ea413bba6dbac454862042cee79b1204872930e700b39bb5c6
MD5 f8cda7ef4a0967cd42bd1549019b7ec3
BLAKE2b-256 d148982512d31f51da8777c94c4426430a2138d0a2e5d1e23a59bc3e8753d1f7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page