ajitkumar22 commited on
Commit
2dfb143
·
verified ·
1 Parent(s): db84ebc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -21,14 +21,16 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
21
 
22
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
23
  @tool
24
- def mySum(arg1:int, arg2:int)-> int: #it's import to specify the return type
25
  #Keep this format for the description / args / args description but feel free to modify the tool
26
- """A tool that finds the sum of two given numbers
 
 
 
27
  Args:
28
  arg1: the first argument
29
- arg2: the second argument
30
  """
31
- return arg1+ arg2
32
 
33
  @tool
34
  def get_current_time_in_timezone(timezone: str) -> str:
 
21
 
22
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
23
  @tool
24
+ def personIdentifier(arg1:str)-> int: #it's important to specify the return type
25
  #Keep this format for the description / args / args description but feel free to modify the tool
26
+ """A Tool that identifies the person. For example,
27
+ Task: Who is Ajit Kumar?
28
+ Answer: He is a professor at Shiv Nadar University.
29
+
30
  Args:
31
  arg1: the first argument
 
32
  """
33
+ return "He is a professor at Shiv Nadar University"
34
 
35
  @tool
36
  def get_current_time_in_timezone(timezone: str) -> str: