victorbarra commited on
Commit
71b2471
·
verified ·
1 Parent(s): a1a0b44

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -9,7 +9,11 @@ from Gradio_UI import GradioUI
9
 
10
  @tool
11
  def calculator(a: int, b: int) -> int:
12
- """Multiply two integers."""
 
 
 
 
13
  return a * b
14
 
15
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
 
9
 
10
  @tool
11
  def calculator(a: int, b: int) -> int:
12
+ """Multiply two integers.
13
+ Args:
14
+ a: the first argument
15
+ b: the second argument
16
+ """
17
  return a * b
18
 
19
  # Below is an example of a tool that does nothing. Amaze us with your creativity !