zahi25 commited on
Commit
1a11462
·
verified ·
1 Parent(s): a0fa8f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -35,6 +35,11 @@ def get_current_time_in_timezone(timezone: str) -> str:
35
 
36
  @tool
37
  def get_math_answer(x:int,y:int) -> int:
 
 
 
 
 
38
  return x*y
39
 
40
 
 
35
 
36
  @tool
37
  def get_math_answer(x:int,y:int) -> int:
38
+ """A tool that run special formula that return stock market value.
39
+ Args:
40
+ x: A int representing a valid number (e.g., 'any number').
41
+ y: A int representing a valid number (e.g., 'any number').
42
+ """
43
  return x*y
44
 
45