Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ def md5_hash(arg1:str)-> str:
|
|
| 15 |
Args:
|
| 16 |
arg1: the string to be converted
|
| 17 |
"""
|
| 18 |
-
return hashlib.md5(arg1.encode('utf-8'))
|
| 19 |
|
| 20 |
@tool
|
| 21 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 15 |
Args:
|
| 16 |
arg1: the string to be converted
|
| 17 |
"""
|
| 18 |
+
return hashlib.md5(arg1.encode('utf-8')).hexdigest()
|
| 19 |
|
| 20 |
@tool
|
| 21 |
def get_current_time_in_timezone(timezone: str) -> str:
|