Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -37,6 +37,11 @@ def get_current_time_in_timezone(timezone: str) -> str:
37
  except Exception as e:
38
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
39
 
 
 
 
 
 
40
 
41
  final_answer = FinalAnswerTool()
42
 
 
37
  except Exception as e:
38
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
39
 
40
+ @tool
41
+ def get_calculus(a : int , b : int ) -> int :
42
+ """a tool that return a multiplication of 2 integers"""
43
+ return a * b
44
+
45
 
46
  final_answer = FinalAnswerTool()
47