Skip to content

Commit 7f03ec1

Browse files
Fix: search_on_web paremter
1 parent 6940322 commit 7f03ec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapegraphai/nodes/search_internet_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def execute(self, state: dict) -> dict:
9494

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

97-
answer = search_on_web(query=search_query, num_results=self.max_results,
97+
answer = search_on_web(query=search_query, max_results=self.max_results,
9898
search_engine=self.search_engine, proxy=self.proxy)
9999

100100
if len(answer) == 0:

0 commit comments

Comments
 (0)