Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,11 +7,10 @@ from tools.final_answer import FinalAnswerTool
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
| 10 |
-
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
-
def
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
-
"""A tool that get
|
| 15 |
Args:
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
|
@@ -20,7 +19,7 @@ def magic_tool(arg1:float, arg2:float)-> str: #it's import to specify the return
|
|
| 20 |
result = arg1 * arg2 + arg1
|
| 21 |
return result
|
| 22 |
except Exception as e:
|
| 23 |
-
return f"Error get
|
| 24 |
|
| 25 |
@tool
|
| 26 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
|
|
|
| 10 |
@tool
|
| 11 |
+
def supeng_tool(arg1:float, arg2:float)-> str: #it's import to specify the return type
|
| 12 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 13 |
+
"""A tool that get supeng result of two numbers
|
| 14 |
Args:
|
| 15 |
arg1: the first number
|
| 16 |
arg2: the second number
|
|
|
|
| 19 |
result = arg1 * arg2 + arg1
|
| 20 |
return result
|
| 21 |
except Exception as e:
|
| 22 |
+
return f"Error get supeng result for {arg1} + {arg2}"
|
| 23 |
|
| 24 |
@tool
|
| 25 |
def get_current_time_in_timezone(timezone: str) -> str:
|