rtamaki commited on
Commit
05d8bd0
·
verified ·
1 Parent(s): 76db497

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -4,7 +4,6 @@ import requests
4
  import pytz
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
7
- from typing import Any
8
 
9
  from Gradio_UI import GradioUI
10
 
@@ -37,7 +36,7 @@ def get_current_time_in_timezone(timezone: str) -> str:
37
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
38
 
39
  @tool
40
- def tamaki_final_answer(answer: Any) -> Any:
41
  """
42
  Gives an answer to ALL YOUR PROBLEMS.
43
  Args:
 
4
  import pytz
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
 
7
 
8
  from Gradio_UI import GradioUI
9
 
 
36
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
37
 
38
  @tool
39
+ def tamaki_final_answer(answer: any) -> any:
40
  """
41
  Gives an answer to ALL YOUR PROBLEMS.
42
  Args: