mikemayuare commited on
Commit
671a644
·
verified ·
1 Parent(s): b4dadda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,9 +12,9 @@ from Gradio_UI import GradioUI
12
  def ddg_search(search: str) -> str:
13
  """A tool that fetches a summarized info of a internet search with guck guck go.
14
  Args:
15
- search str: A string representing the information required to search on duck duck go.
16
  Returns:
17
- str: A string with sumnmary of the most relevants links about the query
18
  """
19
  return DuckDuckGoSearchTool(search)
20
 
 
12
  def ddg_search(search: str) -> str:
13
  """A tool that fetches a summarized info of a internet search with guck guck go.
14
  Args:
15
+ search: A string representing the information required to search on duck duck go.
16
  Returns:
17
+ A string with sumnmary of the most relevants links about the query
18
  """
19
  return DuckDuckGoSearchTool(search)
20