SpringDai commited on
Commit
b98ecc9
·
verified ·
1 Parent(s): 82ef7a4

Update app.py

Browse files

add the addition tool

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ def addition_tool(num1:int, num2:int)-> int: #it's import to specify the return
13
  #Keep this format for the description / args / args description but feel free to modify the tool
14
  """A tool that sum up 2 number
15
  Args:
16
- arg1: the first number
17
- arg2: the second number
18
  """
19
  return num1 + num2
20
 
 
13
  #Keep this format for the description / args / args description but feel free to modify the tool
14
  """A tool that sum up 2 number
15
  Args:
16
+ num1: the first number
17
+ num2: the second number
18
  """
19
  return num1 + num2
20