fabriciojoc commited on
Commit
c7bda4d
·
verified ·
1 Parent(s): dc56724

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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: