Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,9 @@ import requests
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
-
|
|
|
|
|
8 |
|
9 |
@tool
|
10 |
def my_custom_tool(arg1:str, arg2:int)-> str: # it's important to specify the return type
|
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
+
from datetime import datetime
|
8 |
+
from datetime import timedelta
|
9 |
+
from Gradio_UI import GradioUI
|
10 |
|
11 |
@tool
|
12 |
def my_custom_tool(arg1:str, arg2:int)-> str: # it's important to specify the return type
|