Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|