benemo commited on
Commit
de9ba1d
·
verified ·
1 Parent(s): d59ae4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ 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
- result = "arg1" + "arg2"
30
  return result
31
 
32
  @tool
 
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