RemVdH commited on
Commit
a6065b4
·
verified ·
1 Parent(s): 06788d0

Update app.py

Browse files

Fixed bug (not describing the argument with correct name)

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ def search_wikipedia_pages(search_string: str) -> str:
7
  """This tool helps to search for wikipedia pages related to a search string.
8
  The output are the first 10 pages related to the search string.
9
  Args:
10
- arg1: the search string
11
  """
12
  try:
13
  page_titles = wikipedia.search(search_string, results=10)
 
7
  """This tool helps to search for wikipedia pages related to a search string.
8
  The output are the first 10 pages related to the search string.
9
  Args:
10
+ search_string: the search string
11
  """
12
  try:
13
  page_titles = wikipedia.search(search_string, results=10)