mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
a32798abd7
<!-- Thank you for contributing to LangChain! Please title your PR "<package>: <description>", where <package> is whichever of langchain, community, core, experimental, etc. is being modified. Replace this entire comment with: - **Description:** a description of the change, - **Issue:** the issue # it fixes if applicable, - **Dependencies:** any dependencies required for this change, - **Twitter handle:** we announce bigger features on Twitter. If your PR gets announced, and you'd like a mention, we'll gladly shout you out! Please make sure your PR is passing linting and testing before submitting. Run `make format`, `make lint` and `make test` from the root of the package you've modified to check this locally. See contribution guidelines for more information on how to write/run tests, lint, etc: https://python.langchain.com/docs/contributing/ If you're adding a new integration, please include: 1. a test for the integration, preferably unit tests that do not rely on network access, 2. an example notebook showing its use. It lives in `docs/docs/integrations` directory. If no one reviews your PR within a few days, please @-mention one of @baskaryan, @eyurtsev, @hwchase17. --> - **Description: changes to you.com files** - general cleanup - adds community/utilities/you.py, moving bulk of code from retriever -> utility - removes `snippet` as endpoint - adds `news` as endpoint - adds more tests <s>**Description: update community MAKE file** - adds `integration_tests` - adds `coverage`</s> - **Issue:** the issue # it fixes if applicable, - [For New Contributors: Update Integration Documentation](https://github.com/langchain-ai/langchain/issues/15664#issuecomment-1920099868) - **Dependencies:** n/a - **Twitter handle:** @scottnath - **Mastodon handle:** scottnath@mastodon.social --------- Co-authored-by: Bagatur <baskaryan@gmail.com>
450 lines
12 KiB
Python
450 lines
12 KiB
Python
"""**Utilities** are the integrations with third-part systems and packages.
|
|
|
|
Other LangChain classes use **Utilities** to interact with third-part systems
|
|
and packages.
|
|
"""
|
|
from typing import Any
|
|
|
|
from langchain_community.utilities.requests import (
|
|
Requests,
|
|
RequestsWrapper,
|
|
TextRequestsWrapper,
|
|
)
|
|
|
|
|
|
def _import_alpha_vantage() -> Any:
|
|
from langchain_community.utilities.alpha_vantage import AlphaVantageAPIWrapper
|
|
|
|
return AlphaVantageAPIWrapper
|
|
|
|
|
|
def _import_apify() -> Any:
|
|
from langchain_community.utilities.apify import ApifyWrapper
|
|
|
|
return ApifyWrapper
|
|
|
|
|
|
def _import_arcee() -> Any:
|
|
from langchain_community.utilities.arcee import ArceeWrapper
|
|
|
|
return ArceeWrapper
|
|
|
|
|
|
def _import_arxiv() -> Any:
|
|
from langchain_community.utilities.arxiv import ArxivAPIWrapper
|
|
|
|
return ArxivAPIWrapper
|
|
|
|
|
|
def _import_awslambda() -> Any:
|
|
from langchain_community.utilities.awslambda import LambdaWrapper
|
|
|
|
return LambdaWrapper
|
|
|
|
|
|
def _import_bibtex() -> Any:
|
|
from langchain_community.utilities.bibtex import BibtexparserWrapper
|
|
|
|
return BibtexparserWrapper
|
|
|
|
|
|
def _import_bing_search() -> Any:
|
|
from langchain_community.utilities.bing_search import BingSearchAPIWrapper
|
|
|
|
return BingSearchAPIWrapper
|
|
|
|
|
|
def _import_brave_search() -> Any:
|
|
from langchain_community.utilities.brave_search import BraveSearchWrapper
|
|
|
|
return BraveSearchWrapper
|
|
|
|
|
|
def _import_duckduckgo_search() -> Any:
|
|
from langchain_community.utilities.duckduckgo_search import (
|
|
DuckDuckGoSearchAPIWrapper,
|
|
)
|
|
|
|
return DuckDuckGoSearchAPIWrapper
|
|
|
|
|
|
def _import_golden_query() -> Any:
|
|
from langchain_community.utilities.golden_query import GoldenQueryAPIWrapper
|
|
|
|
return GoldenQueryAPIWrapper
|
|
|
|
|
|
def _import_google_lens() -> Any:
|
|
from langchain_community.utilities.google_lens import GoogleLensAPIWrapper
|
|
|
|
return GoogleLensAPIWrapper
|
|
|
|
|
|
def _import_google_places_api() -> Any:
|
|
from langchain_community.utilities.google_places_api import GooglePlacesAPIWrapper
|
|
|
|
return GooglePlacesAPIWrapper
|
|
|
|
|
|
def _import_google_jobs() -> Any:
|
|
from langchain_community.utilities.google_jobs import GoogleJobsAPIWrapper
|
|
|
|
return GoogleJobsAPIWrapper
|
|
|
|
|
|
def _import_google_scholar() -> Any:
|
|
from langchain_community.utilities.google_scholar import GoogleScholarAPIWrapper
|
|
|
|
return GoogleScholarAPIWrapper
|
|
|
|
|
|
def _import_google_trends() -> Any:
|
|
from langchain_community.utilities.google_trends import GoogleTrendsAPIWrapper
|
|
|
|
return GoogleTrendsAPIWrapper
|
|
|
|
|
|
def _import_google_finance() -> Any:
|
|
from langchain_community.utilities.google_finance import GoogleFinanceAPIWrapper
|
|
|
|
return GoogleFinanceAPIWrapper
|
|
|
|
|
|
def _import_google_search() -> Any:
|
|
from langchain_community.utilities.google_search import GoogleSearchAPIWrapper
|
|
|
|
return GoogleSearchAPIWrapper
|
|
|
|
|
|
def _import_google_serper() -> Any:
|
|
from langchain_community.utilities.google_serper import GoogleSerperAPIWrapper
|
|
|
|
return GoogleSerperAPIWrapper
|
|
|
|
|
|
def _import_graphql() -> Any:
|
|
from langchain_community.utilities.graphql import GraphQLAPIWrapper
|
|
|
|
return GraphQLAPIWrapper
|
|
|
|
|
|
def _import_jira() -> Any:
|
|
from langchain_community.utilities.jira import JiraAPIWrapper
|
|
|
|
return JiraAPIWrapper
|
|
|
|
|
|
def _import_max_compute() -> Any:
|
|
from langchain_community.utilities.max_compute import MaxComputeAPIWrapper
|
|
|
|
return MaxComputeAPIWrapper
|
|
|
|
|
|
def _import_merriam_webster() -> Any:
|
|
from langchain_community.utilities.merriam_webster import MerriamWebsterAPIWrapper
|
|
|
|
return MerriamWebsterAPIWrapper
|
|
|
|
|
|
def _import_metaphor_search() -> Any:
|
|
from langchain_community.utilities.metaphor_search import MetaphorSearchAPIWrapper
|
|
|
|
return MetaphorSearchAPIWrapper
|
|
|
|
|
|
def _import_openweathermap() -> Any:
|
|
from langchain_community.utilities.openweathermap import OpenWeatherMapAPIWrapper
|
|
|
|
return OpenWeatherMapAPIWrapper
|
|
|
|
|
|
def _import_outline() -> Any:
|
|
from langchain_community.utilities.outline import OutlineAPIWrapper
|
|
|
|
return OutlineAPIWrapper
|
|
|
|
|
|
def _import_portkey() -> Any:
|
|
from langchain_community.utilities.portkey import Portkey
|
|
|
|
return Portkey
|
|
|
|
|
|
def _import_powerbi() -> Any:
|
|
from langchain_community.utilities.powerbi import PowerBIDataset
|
|
|
|
return PowerBIDataset
|
|
|
|
|
|
def _import_pubmed() -> Any:
|
|
from langchain_community.utilities.pubmed import PubMedAPIWrapper
|
|
|
|
return PubMedAPIWrapper
|
|
|
|
|
|
def _import_python() -> Any:
|
|
from langchain_community.utilities.python import PythonREPL
|
|
|
|
return PythonREPL
|
|
|
|
|
|
def _import_scenexplain() -> Any:
|
|
from langchain_community.utilities.scenexplain import SceneXplainAPIWrapper
|
|
|
|
return SceneXplainAPIWrapper
|
|
|
|
|
|
def _import_searchapi() -> Any:
|
|
from langchain_community.utilities.searchapi import SearchApiAPIWrapper
|
|
|
|
return SearchApiAPIWrapper
|
|
|
|
|
|
def _import_searx_search() -> Any:
|
|
from langchain_community.utilities.searx_search import SearxSearchWrapper
|
|
|
|
return SearxSearchWrapper
|
|
|
|
|
|
def _import_serpapi() -> Any:
|
|
from langchain_community.utilities.serpapi import SerpAPIWrapper
|
|
|
|
return SerpAPIWrapper
|
|
|
|
|
|
def _import_spark_sql() -> Any:
|
|
from langchain_community.utilities.spark_sql import SparkSQL
|
|
|
|
return SparkSQL
|
|
|
|
|
|
def _import_sql_database() -> Any:
|
|
from langchain_community.utilities.sql_database import SQLDatabase
|
|
|
|
return SQLDatabase
|
|
|
|
|
|
def _import_steam_webapi() -> Any:
|
|
from langchain_community.utilities.steam import SteamWebAPIWrapper
|
|
|
|
return SteamWebAPIWrapper
|
|
|
|
|
|
def _import_stackexchange() -> Any:
|
|
from langchain_community.utilities.stackexchange import StackExchangeAPIWrapper
|
|
|
|
return StackExchangeAPIWrapper
|
|
|
|
|
|
def _import_tensorflow_datasets() -> Any:
|
|
from langchain_community.utilities.tensorflow_datasets import TensorflowDatasets
|
|
|
|
return TensorflowDatasets
|
|
|
|
|
|
def _import_twilio() -> Any:
|
|
from langchain_community.utilities.twilio import TwilioAPIWrapper
|
|
|
|
return TwilioAPIWrapper
|
|
|
|
|
|
def _import_you() -> Any:
|
|
from langchain_community.utilities.you import YouSearchAPIWrapper
|
|
|
|
return YouSearchAPIWrapper
|
|
|
|
|
|
def _import_wikipedia() -> Any:
|
|
from langchain_community.utilities.wikipedia import WikipediaAPIWrapper
|
|
|
|
return WikipediaAPIWrapper
|
|
|
|
|
|
def _import_wolfram_alpha() -> Any:
|
|
from langchain_community.utilities.wolfram_alpha import WolframAlphaAPIWrapper
|
|
|
|
return WolframAlphaAPIWrapper
|
|
|
|
|
|
def _import_zapier() -> Any:
|
|
from langchain_community.utilities.zapier import ZapierNLAWrapper
|
|
|
|
return ZapierNLAWrapper
|
|
|
|
|
|
def _import_nasa() -> Any:
|
|
from langchain_community.utilities.nasa import NasaAPIWrapper
|
|
|
|
return NasaAPIWrapper
|
|
|
|
|
|
def _import_nvidia_riva_asr() -> Any:
|
|
from langchain_community.utilities.nvidia_riva import RivaASR
|
|
|
|
return RivaASR
|
|
|
|
|
|
def _import_nvidia_riva_tts() -> Any:
|
|
from langchain_community.utilities.nvidia_riva import RivaTTS
|
|
|
|
return RivaTTS
|
|
|
|
|
|
def _import_nvidia_riva_stream() -> Any:
|
|
from langchain_community.utilities.nvidia_riva import AudioStream
|
|
|
|
return AudioStream
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
if name == "AlphaVantageAPIWrapper":
|
|
return _import_alpha_vantage()
|
|
elif name == "ApifyWrapper":
|
|
return _import_apify()
|
|
elif name == "ArceeWrapper":
|
|
return _import_arcee()
|
|
elif name == "ArxivAPIWrapper":
|
|
return _import_arxiv()
|
|
elif name == "LambdaWrapper":
|
|
return _import_awslambda()
|
|
elif name == "BibtexparserWrapper":
|
|
return _import_bibtex()
|
|
elif name == "BingSearchAPIWrapper":
|
|
return _import_bing_search()
|
|
elif name == "BraveSearchWrapper":
|
|
return _import_brave_search()
|
|
elif name == "DuckDuckGoSearchAPIWrapper":
|
|
return _import_duckduckgo_search()
|
|
elif name == "GoogleLensAPIWrapper":
|
|
return _import_google_lens()
|
|
elif name == "GoldenQueryAPIWrapper":
|
|
return _import_golden_query()
|
|
elif name == "GoogleJobsAPIWrapper":
|
|
return _import_google_jobs()
|
|
elif name == "GoogleScholarAPIWrapper":
|
|
return _import_google_scholar()
|
|
elif name == "GoogleFinanceAPIWrapper":
|
|
return _import_google_finance()
|
|
elif name == "GoogleTrendsAPIWrapper":
|
|
return _import_google_trends()
|
|
elif name == "GooglePlacesAPIWrapper":
|
|
return _import_google_places_api()
|
|
elif name == "GoogleSearchAPIWrapper":
|
|
return _import_google_search()
|
|
elif name == "GoogleSerperAPIWrapper":
|
|
return _import_google_serper()
|
|
elif name == "GraphQLAPIWrapper":
|
|
return _import_graphql()
|
|
elif name == "JiraAPIWrapper":
|
|
return _import_jira()
|
|
elif name == "MaxComputeAPIWrapper":
|
|
return _import_max_compute()
|
|
elif name == "MerriamWebsterAPIWrapper":
|
|
return _import_merriam_webster()
|
|
elif name == "MetaphorSearchAPIWrapper":
|
|
return _import_metaphor_search()
|
|
elif name == "NasaAPIWrapper":
|
|
return _import_nasa()
|
|
elif name == "NVIDIARivaASR":
|
|
return _import_nvidia_riva_asr()
|
|
elif name == "NVIDIARivaStream":
|
|
return _import_nvidia_riva_stream()
|
|
elif name == "NVIDIARivaTTS":
|
|
return _import_nvidia_riva_tts()
|
|
elif name == "OpenWeatherMapAPIWrapper":
|
|
return _import_openweathermap()
|
|
elif name == "OutlineAPIWrapper":
|
|
return _import_outline()
|
|
elif name == "Portkey":
|
|
return _import_portkey()
|
|
elif name == "PowerBIDataset":
|
|
return _import_powerbi()
|
|
elif name == "PubMedAPIWrapper":
|
|
return _import_pubmed()
|
|
elif name == "PythonREPL":
|
|
return _import_python()
|
|
elif name == "SceneXplainAPIWrapper":
|
|
return _import_scenexplain()
|
|
elif name == "SearchApiAPIWrapper":
|
|
return _import_searchapi()
|
|
elif name == "SearxSearchWrapper":
|
|
return _import_searx_search()
|
|
elif name == "SerpAPIWrapper":
|
|
return _import_serpapi()
|
|
elif name == "SparkSQL":
|
|
return _import_spark_sql()
|
|
elif name == "StackExchangeAPIWrapper":
|
|
return _import_stackexchange()
|
|
elif name == "SQLDatabase":
|
|
return _import_sql_database()
|
|
elif name == "SteamWebAPIWrapper":
|
|
return _import_steam_webapi()
|
|
elif name == "TensorflowDatasets":
|
|
return _import_tensorflow_datasets()
|
|
elif name == "TwilioAPIWrapper":
|
|
return _import_twilio()
|
|
elif name == "YouSearchAPIWrapper":
|
|
return _import_you()
|
|
elif name == "WikipediaAPIWrapper":
|
|
return _import_wikipedia()
|
|
elif name == "WolframAlphaAPIWrapper":
|
|
return _import_wolfram_alpha()
|
|
elif name == "ZapierNLAWrapper":
|
|
return _import_zapier()
|
|
else:
|
|
raise AttributeError(f"Could not find: {name}")
|
|
|
|
|
|
__all__ = [
|
|
"AlphaVantageAPIWrapper",
|
|
"ApifyWrapper",
|
|
"ArceeWrapper",
|
|
"ArxivAPIWrapper",
|
|
"BibtexparserWrapper",
|
|
"BingSearchAPIWrapper",
|
|
"BraveSearchWrapper",
|
|
"DuckDuckGoSearchAPIWrapper",
|
|
"GoldenQueryAPIWrapper",
|
|
"GoogleFinanceAPIWrapper",
|
|
"GoogleLensAPIWrapper",
|
|
"GoogleJobsAPIWrapper",
|
|
"GooglePlacesAPIWrapper",
|
|
"GoogleScholarAPIWrapper",
|
|
"GoogleTrendsAPIWrapper",
|
|
"GoogleSearchAPIWrapper",
|
|
"GoogleSerperAPIWrapper",
|
|
"GraphQLAPIWrapper",
|
|
"JiraAPIWrapper",
|
|
"LambdaWrapper",
|
|
"MaxComputeAPIWrapper",
|
|
"MerriamWebsterAPIWrapper",
|
|
"MetaphorSearchAPIWrapper",
|
|
"NasaAPIWrapper",
|
|
"NVIDIARivaASR",
|
|
"NVIDIARivaStream",
|
|
"NVIDIARivaTTS",
|
|
"OpenWeatherMapAPIWrapper",
|
|
"OutlineAPIWrapper",
|
|
"Portkey",
|
|
"PowerBIDataset",
|
|
"PubMedAPIWrapper",
|
|
"PythonREPL",
|
|
"Requests",
|
|
"RequestsWrapper",
|
|
"SteamWebAPIWrapper",
|
|
"SQLDatabase",
|
|
"SceneXplainAPIWrapper",
|
|
"SearchApiAPIWrapper",
|
|
"SearxSearchWrapper",
|
|
"SerpAPIWrapper",
|
|
"SparkSQL",
|
|
"StackExchangeAPIWrapper",
|
|
"TensorflowDatasets",
|
|
"TextRequestsWrapper",
|
|
"TwilioAPIWrapper",
|
|
"YouSearchAPIWrapper",
|
|
"WikipediaAPIWrapper",
|
|
"WolframAlphaAPIWrapper",
|
|
"ZapierNLAWrapper",
|
|
]
|