Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
|
|
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 |
|