AbeJAbraham commited on
Commit
07dd4a2
·
verified ·
1 Parent(s): 29d8b63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,14 +9,14 @@ from Gradio_UI import GradioUI
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
- def scrape_wiki_fifa_winners(arg1: int, arg2: str) -> str:
13
  """
14
  This tool is used to obtain information regarding FIFA World Cup winners
15
  for the male and female soccer competitions.
16
 
17
  Args:
18
- arg1 : An integer representing the year of the World Cip.
19
- arg2 : A string representing The competition category, either "Men" or "Women".
20
 
21
 
22
  """
 
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
+ def scrape_wiki_fifa_winners(year: int, cat: str) -> str:
13
  """
14
  This tool is used to obtain information regarding FIFA World Cup winners
15
  for the male and female soccer competitions.
16
 
17
  Args:
18
+ year : An integer representing the year of the World Cip.
19
+ cat : A string representing The competition category, either "Men" or "Women".
20
 
21
 
22
  """