Ajwad commited on
Commit
bb8dd94
·
verified ·
1 Parent(s): 49422ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def websearch_tool(search_query:str) -> str:
24
  Args:
25
  search_query: the query to search
26
  """
27
- web_search_tool = DuckDuckGoSearchTool(max_results=5, rate_limit=2.0)
28
  results = web_search_tool(search_query)
29
 
30
  return results
 
24
  Args:
25
  search_query: the query to search
26
  """
27
+ web_search_tool = DuckDuckGoSearchTool(max_results=5)
28
  results = web_search_tool(search_query)
29
 
30
  return results