phdsilver22 commited on
Commit
92d3360
·
verified ·
1 Parent(s): a02d04d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ def web_search(query:str)-> str: #it's import to specify the return type
30
  Returns:
31
  The search result.
32
  """
33
- results = search_tool.invoke(query) # Execute the search
34
  return results
35
 
36
 
 
30
  Returns:
31
  The search result.
32
  """
33
+ results = search_tool(query) # Execute the search
34
  return results
35
 
36