Lulube commited on
Commit
9a3ad6f
·
verified ·
1 Parent(s): def6fa1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -14,6 +14,10 @@ def my_custom_tool(query:str)-> str: #it's import to specify the return type
14
  """A tool that performs a search using DuckDuckGo
15
  Args:
16
  query: A string representing the search query
 
 
 
 
17
  """
18
  return search_tool.search(query)
19
 
 
14
  """A tool that performs a search using DuckDuckGo
15
  Args:
16
  query: A string representing the search query
17
+
18
+ Returns:
19
+ str: A summary of formatted search results including references : titles, URLs
20
+
21
  """
22
  return search_tool.search(query)
23