ml5050 commited on
Commit
95bf97b
·
verified ·
1 Parent(s): 9a8c112

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -6
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 my_cutom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
13
- #Keep this format for the description / args / args description but feel free to modify the tool
14
- """A tool that does nothing yet
15
  Args:
16
- arg1: the first argument
17
- arg2: the second argument
 
18
  """
19
- return "What magic will you build ?"
 
 
 
 
 
 
 
 
 
 
 
 
 
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: