Skip to content

Commit

Permalink
Fix: search_on_web paremter
Browse files Browse the repository at this point in the history
  • Loading branch information
aziz-ullah-khan committed Oct 11, 2024
1 parent 6940322 commit 7f03ec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapegraphai/nodes/search_internet_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def execute(self, state: dict) -> dict:

self.logger.info(f"Search Query: {search_query}")

answer = search_on_web(query=search_query, num_results=self.max_results,
answer = search_on_web(query=search_query, max_results=self.max_results,
search_engine=self.search_engine, proxy=self.proxy)

if len(answer) == 0:
Expand Down

0 comments on commit 7f03ec1

Please sign in to comment.