Johnsonin commited on
Commit
6c76ed4
·
verified ·
1 Parent(s): 9f894ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -35,7 +35,11 @@ def get_current_time_in_timezone(timezone: str) -> str:
35
 
36
  @tool
37
  def add_nums(a: int, b: int) -> int:
38
- """A tool that takes two integers as parameters and returns their sum."""
 
 
 
 
39
  return int(a) + int(b)
40
 
41
 
 
35
 
36
  @tool
37
  def add_nums(a: int, b: int) -> int:
38
+ """A tool that takes two integers as parameters and returns their sum.
39
+ Args:
40
+ a: first int
41
+ b: second int
42
+ """
43
  return int(a) + int(b)
44
 
45