roger33303 commited on
Commit
5a08cfc
·
verified ·
1 Parent(s): 03fe355

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -38,8 +38,9 @@ web_search_tool =DuckDuckGoSearchTool()
38
  @tool
39
  def search_web(question: str) ->str:
40
  """A tool that can go to web and search the entire web to find the answer.
41
- Args:
42
- question: actual question that needed to be searched."""
 
43
  result = web_search_tool(question)
44
  return result
45
 
 
38
  @tool
39
  def search_web(question: str) ->str:
40
  """A tool that can go to web and search the entire web to find the answer.
41
+ Args:
42
+ question: Actual question that needed to be searched.
43
+ """
44
  result = web_search_tool(question)
45
  return result
46