Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions langchain/utilities/serpapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,23 @@ def validate_environment(cls, values: Dict) -> Dict:
return values

async def arun(self, query: str) -> str:
"""Use aiohttp to run query through SerpAPI and parse result."""
"""Run query through SerpAPI and parse result async."""
return self._process_response(await self.aresults(query))

def run(self, query: str) -> str:
"""Run query through SerpAPI and parse result."""
return self._process_response(self.results(query))

def results(self, query: str) -> dict:
"""Run query through SerpAPI and return the raw result."""
params = self.get_params(query)
with HiddenPrints():
search = self.search_engine(params)
res = search.get_dict()
return res

async def aresults(self, query: str) -> dict:
"""Use aiohttp to run query through SerpAPI and return the results async."""

def construct_url_and_params() -> Tuple[str, Dict[str, str]]:
params = self.get_params(query)
Expand All @@ -97,18 +113,6 @@ def construct_url_and_params() -> Tuple[str, Dict[str, str]]:
async with self.aiosession.get(url, params=params) as response:
res = await response.json()

return self._process_response(res)

def run(self, query: str) -> str:
"""Run query through SerpAPI and parse result."""
return self._process_response(self.results(query))

def results(self, query: str) -> dict:
"""Run query through SerpAPI and return the raw result."""
params = self.get_params(query)
with HiddenPrints():
search = self.search_engine(params)
res = search.get_dict()
return res

def get_params(self, query: str) -> Dict[str, str]:
Expand Down