Crackershoot commited on
Commit
03c2ed7
·
verified ·
1 Parent(s): 3eb6639

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ model = LiteLLMModel(
21
 
22
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
23
  @tool
24
- def get_average_ar(beginning_ar:double, closing_ar:double)-> double: #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 takes that takes the beginning and closing accounts receivable amounts to calculate the average
27
  Args:
 
21
 
22
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
23
  @tool
24
+ def get_average_ar(beginning_ar:float, closing_ar:float)-> float: #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 takes that takes the beginning and closing accounts receivable amounts to calculate the average
27
  Args: