An integration package connecting Exa and GigaChain
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gigachain_exa-0.1.0.tar.gz
(4.9 kB
view details)
Built Distribution
File details
Details for the file gigachain_exa-0.1.0.tar.gz
.
File metadata
- Download URL: gigachain_exa-0.1.0.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6de00b3e96f98f6d0415346c3c7f9ae74cd0aca1d8ed835e2c2ad04b5bc2df8d |
|
MD5 | 8c96260c06f2c14bcd4dc6f8753625ba |
|
BLAKE2b-256 | 9fd60c04150792bbe2779e062c7d15b8d1df720a040e4e095030b271eb22d82f |
File details
Details for the file gigachain_exa-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: gigachain_exa-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e71ea28987c3d150dc0b23e83040ca9354c28e7f14896437a03d9b305bcb82a6 |
|
MD5 | c3336a55f8839e9836a31c0688790b5c |
|
BLAKE2b-256 | ac9950567ba6e762bb55d0fb92798a8ba3bd4b625c19e230562ffe5d48bdff8c |