ethompson93 commited on
Commit
1e2fd11
·
verified ·
1 Parent(s): 7752b5b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -19,13 +19,13 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
19
  return "What magic will you build ?"
20
 
21
  @tool
22
- def add_two_numbers(num1:float, num2:float)-> float:
23
- """ a tool that adds two numbers together and returns their sum
24
- Args:
25
- num1: the first number
26
- num2: the second number
27
- """
28
- return num1 + num2
29
 
30
  @tool
31
  def get_current_time_in_timezone(timezone: str) -> str:
 
19
  return "What magic will you build ?"
20
 
21
  @tool
22
+ def add_two_numbers(num1:float, num2:float)-> float:
23
+ """ a tool that adds two numbers together and returns their sum
24
+ Args:
25
+ num1: the first number
26
+ num2: the second number
27
+ """
28
+ return num1 + num2
29
 
30
  @tool
31
  def get_current_time_in_timezone(timezone: str) -> str: