ckandemir commited on
Commit
a76b911
·
verified ·
1 Parent(s): 2209772

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def web_search(search_query: str) -> str:
14
  Args:
15
  search_query: A string representing the search query.
16
  """
17
- search_tool = DuckDuckGoSearchTool(max_results=5) # You can adjust max_results
18
  return search_tool.forward(search_query)
19
 
20
 
 
14
  Args:
15
  search_query: A string representing the search query.
16
  """
17
+ search_tool = DuckDuckGoSearchTool()
18
  return search_tool.forward(search_query)
19
 
20