mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
a79345f199
#16396 Fixed 1. golden_query 2. google_lens 3. memorize 4. merriam_webster 5. open_weather_map 6. pub_med 7. stack_exchange 8. generate_image 9. wikipedia
78 lines
2.2 KiB
Python
78 lines
2.2 KiB
Python
"""Tool for the SearxNG search API."""
|
|
from typing import Optional
|
|
|
|
from langchain_core.callbacks import (
|
|
AsyncCallbackManagerForToolRun,
|
|
CallbackManagerForToolRun,
|
|
)
|
|
from langchain_core.pydantic_v1 import Extra, Field
|
|
from langchain_core.tools import BaseTool
|
|
|
|
from langchain_community.utilities.searx_search import SearxSearchWrapper
|
|
|
|
|
|
class SearxSearchRun(BaseTool):
|
|
"""Tool that queries a Searx instance."""
|
|
|
|
name: str = "searx_search"
|
|
description: str = (
|
|
"A meta search engine."
|
|
"Useful for when you need to answer questions about current events."
|
|
"Input should be a search query."
|
|
)
|
|
wrapper: SearxSearchWrapper
|
|
kwargs: dict = Field(default_factory=dict)
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool."""
|
|
return self.wrapper.run(query, **self.kwargs)
|
|
|
|
async def _arun(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[AsyncCallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool asynchronously."""
|
|
return await self.wrapper.arun(query, **self.kwargs)
|
|
|
|
|
|
class SearxSearchResults(BaseTool):
|
|
"""Tool that queries a Searx instance and gets back json."""
|
|
|
|
name: str = "searx_search_results"
|
|
description: str = (
|
|
"A meta search engine."
|
|
"Useful for when you need to answer questions about current events."
|
|
"Input should be a search query. Output is a JSON array of the query results"
|
|
)
|
|
wrapper: SearxSearchWrapper
|
|
num_results: int = 4
|
|
kwargs: dict = Field(default_factory=dict)
|
|
|
|
class Config:
|
|
"""Pydantic config."""
|
|
|
|
extra = Extra.allow
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool."""
|
|
return str(self.wrapper.results(query, self.num_results, **self.kwargs))
|
|
|
|
async def _arun(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[AsyncCallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool asynchronously."""
|
|
return (
|
|
await self.wrapper.aresults(query, self.num_results, **self.kwargs)
|
|
).__str__()
|