Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -34,13 +34,13 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
| 34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
| 35 |
|
| 36 |
@tool
|
| 37 |
-
def
|
| 38 |
"""A tool that run special formula that return stock market value.
|
| 39 |
Args:
|
| 40 |
-
|
| 41 |
-
|
| 42 |
"""
|
| 43 |
-
return
|
| 44 |
|
| 45 |
|
| 46 |
|
|
|
|
| 34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
| 35 |
|
| 36 |
@tool
|
| 37 |
+
def get_stock_answer(eur:int,usd:int) -> int:
|
| 38 |
"""A tool that run special formula that return stock market value.
|
| 39 |
Args:
|
| 40 |
+
eur: A int representing a valid number (e.g., 'any number').
|
| 41 |
+
usd: A int representing a valid number (e.g., 'any number').
|
| 42 |
"""
|
| 43 |
+
return eur*usd
|
| 44 |
|
| 45 |
|
| 46 |
|