mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
c2a3021bb0
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
70 lines
2.0 KiB
Python
70 lines
2.0 KiB
Python
"""Tool for the SearchApi.io search API."""
|
|
|
|
from typing import Optional
|
|
|
|
from langchain_core.callbacks import (
|
|
AsyncCallbackManagerForToolRun,
|
|
CallbackManagerForToolRun,
|
|
)
|
|
from langchain_core.tools import BaseTool
|
|
from pydantic import Field
|
|
|
|
from langchain_community.utilities.searchapi import SearchApiAPIWrapper
|
|
|
|
|
|
class SearchAPIRun(BaseTool):
|
|
"""Tool that queries the SearchApi.io search API."""
|
|
|
|
name: str = "searchapi"
|
|
description: str = (
|
|
"Google search API provided by SearchApi.io."
|
|
"This tool is handy when you need to answer questions about current events."
|
|
"Input should be a search query."
|
|
)
|
|
api_wrapper: SearchApiAPIWrapper
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool."""
|
|
return self.api_wrapper.run(query)
|
|
|
|
async def _arun(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[AsyncCallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool asynchronously."""
|
|
return await self.api_wrapper.arun(query)
|
|
|
|
|
|
class SearchAPIResults(BaseTool):
|
|
"""Tool that queries the SearchApi.io search API and returns JSON."""
|
|
|
|
name: str = "searchapi_results_json"
|
|
description: str = (
|
|
"Google search API provided by SearchApi.io."
|
|
"This tool is handy when you need to answer questions about current events."
|
|
"The input should be a search query and the output is a JSON object "
|
|
"with the query results."
|
|
)
|
|
api_wrapper: SearchApiAPIWrapper = Field(default_factory=SearchApiAPIWrapper)
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool."""
|
|
return str(self.api_wrapper.results(query))
|
|
|
|
async def _arun(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[AsyncCallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the tool asynchronously."""
|
|
return (await self.api_wrapper.aresults(query)).__str__()
|