HugeFighter commited on
Commit
7921f45
·
verified ·
1 Parent(s): 1206d04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -7,13 +7,13 @@ from tools.final_answer import FinalAnswerTool
7
 
8
  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 sum_tool(num1: int, num2: int) -> int:
13
- """
14
  Args:
15
- num1: the first integer
16
- num2: the second integer
17
  """
18
  try:
19
  res = num1 + num2
 
7
 
8
  from Gradio_UI import GradioUI
9
 
10
+
11
  @tool
12
  def sum_tool(num1: int, num2: int) -> int:
13
+ """ A tool that adds up the two integers
14
  Args:
15
+ num1: An integer representing a first argument num1
16
+ num2: An integer representing a second argument num2
17
  """
18
  try:
19
  res = num1 + num2