Pran10 commited on
Commit
07af295
·
verified ·
1 Parent(s): d1f9f68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -16,7 +16,8 @@ def sum_of_two_numbers(arg1:int, arg2:int)-> int: #it's import to specify the re
16
  arg1: the first number
17
  arg2: the second number
18
  """
19
- return arg1+arg2
 
20
 
21
  @tool
22
  def difference_of_two_numbers(arg1:int, arg2:int)-> int:
@@ -26,7 +27,8 @@ def difference_of_two_numbers(arg1:int, arg2:int)-> int:
26
  arg1: the first number
27
  arg2: the second number
28
  """
29
- return arg1-arg2
 
30
 
31
  @tool
32
  def get_current_time_in_timezone(timezone: str) -> str:
 
16
  arg1: the first number
17
  arg2: the second number
18
  """
19
+ sum = arg1+arg2
20
+ return sum
21
 
22
  @tool
23
  def difference_of_two_numbers(arg1:int, arg2:int)-> int:
 
27
  arg1: the first number
28
  arg2: the second number
29
  """
30
+ diff = arg1 - arg2
31
+ return diff
32
 
33
  @tool
34
  def get_current_time_in_timezone(timezone: str) -> str: