berng commited on
Commit
2bd6725
·
verified ·
1 Parent(s): 21fbfaf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -19,12 +19,11 @@ 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 get_ekb_radar_field_of_view(arg1:str)-> str: #it's import to specify the return type
23
  #Keep this format for the description / args / args description but feel free to modify the tool
24
- """A tool that does nothing yet
25
  Args:
26
  arg1: the first argument
27
- arg2: the second argument
28
  """
29
  return "-26 degrees,26 degrees"
30
 
 
19
  return "What magic will you build ?"
20
 
21
  @tool
22
+ def get_coherent_scatter_radar_field_of_view(arg1:str)-> str: #it's import to specify the return type
23
  #Keep this format for the description / args / args description but feel free to modify the tool
24
+ """A tool that gets coherent scatter radar field of view by name
25
  Args:
26
  arg1: the first argument
 
27
  """
28
  return "-26 degrees,26 degrees"
29