jonnnnnnnyChan commited on
Commit
325256c
·
verified ·
1 Parent(s): 40a1328

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,14 +18,14 @@ login(token)
18
 
19
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
20
  @tool
21
- def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
22
  #Keep this format for the description / args / args description but feel free to modify the tool
23
  """A tool that does nothing yet
24
  Args:
25
  arg1: the first argument
26
  arg2: the second argument
27
  """
28
- return "What magic will you build ?"
29
 
30
  @tool
31
  def get_current_time_in_timezone(timezone: str) -> str:
 
18
 
19
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
20
  @tool
21
+ def call_me_here(arg1:str, arg2:int)-> str: #it's import to specify the return type
22
  #Keep this format for the description / args / args description but feel free to modify the tool
23
  """A tool that does nothing yet
24
  Args:
25
  arg1: the first argument
26
  arg2: the second argument
27
  """
28
+ return f"How do you do '{arg1}',you are calling {arg2} now!"
29
 
30
  @tool
31
  def get_current_time_in_timezone(timezone: str) -> str: