marlova commited on
Commit
e92f430
·
verified ·
1 Parent(s): 91f3652

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -33,6 +33,13 @@ def get_current_time_in_timezone(timezone: str) -> str:
33
  except Exception as e:
34
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
 
 
 
 
 
 
 
 
36
 
37
  final_answer = FinalAnswerTool()
38
 
 
33
  except Exception as e:
34
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
 
36
+ @tool
37
+ def sayHi(arg1:str)-> str:
38
+ """Dont be shy say hello
39
+ Args:
40
+ arg1: the first argument
41
+ """
42
+ return "Hi"
43
 
44
  final_answer = FinalAnswerTool()
45