Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,14 +9,27 @@ 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 |
-
|
| 14 |
-
"""A tool that does nothing yet
|
| 15 |
Args:
|
| 16 |
-
arg1: the first
|
| 17 |
-
arg2: the second
|
|
|
|
| 18 |
"""
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
+
def my_custom_tool(arg1:int, arg2:int, arg3:str)-> str: #it's import to specify the return type
|
| 13 |
+
"""A tool that performs the specified mathematical operation on the specified integer arguments
|
|
|
|
| 14 |
Args:
|
| 15 |
+
arg1: the first integer
|
| 16 |
+
arg2: the second integer
|
| 17 |
+
arg3: the operator. Supported operations are +,-,*,
|
| 18 |
"""
|
| 19 |
+
match arg3:
|
| 20 |
+
case "*":
|
| 21 |
+
return arg1 * arg2
|
| 22 |
+
case "/":
|
| 23 |
+
if(arg2!=0)
|
| 24 |
+
return arg1 / arg2
|
| 25 |
+
else
|
| 26 |
+
return f"Error: Division by zero not possible"
|
| 27 |
+
case "+":
|
| 28 |
+
return arg1 + arg2
|
| 29 |
+
case "-":
|
| 30 |
+
return arg1 - arg2
|
| 31 |
+
case _:
|
| 32 |
+
return f"Error: '{arg3}' is an unsupported operation, Supported operations are +,-,*,/"
|
| 33 |
|
| 34 |
@tool
|
| 35 |
def get_current_time_in_timezone(timezone: str) -> str:
|