Update app.py
Browse filesFixed bug (not describing the argument with correct name)
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 |
-
|
| 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)
|