benemo commited on
Commit
b714690
·
verified ·
1 Parent(s): 607551e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -26,7 +26,8 @@ def concat_tool(arg1:str, arg2:str)-> str: #it's import to specify the return ty
26
  arg1: the first argument given by user
27
  arg2: the second argument given by user
28
  """
29
- return "arg1 + arg2"
 
30
 
31
  @tool
32
  def get_current_time_in_timezone(timezone: str) -> str:
 
26
  arg1: the first argument given by user
27
  arg2: the second argument given by user
28
  """
29
+ result = "arg1 + arg2"
30
+ return result
31
 
32
  @tool
33
  def get_current_time_in_timezone(timezone: str) -> str: